On Wed, Dec 26, 2018 at 02:59:10PM +0100, Sebastien Marie wrote:
> Hi,
> 
> I would like to do a bit of cleanup for tryton sao webclient.

New diff, same purpose, better result.
 
> bower dependencies are currently installed a bit verbatim, and lot of
> unused files are installed too: it seems to me (who doesn't know npm
> enough) it is a complex task to distinguish between files used and
> others.

I have take the road to generate a tarball (hosted by me) with all
dependencies, and with only files intented for distribution. It was a
pain, but at least the result seems fine now.

/usr/local/share/tryton-sao-5.0
before: 66.9M
after: 5.7M
 
The diff removes also the nodejs dependencies, as it was only used to
build grunt and bower, and it isn't required anymore.

I included in files/ the script used to generate the sao-dependencies
tarball, if someone wants to look where comes from files. and a SHA256
file is also included in the archive if someone wants to check my work.

Maintaining the dependencies version up-to-date will be a bit
challenging, but not more than with bower directly: due to network
access restriction, the build was done on a snapshot at specific date.

Thanks.
-- 
Sebastien Marie


Index: Makefile
===================================================================
RCS file: /cvs/ports/productivity/tryton/5.0/sao/Makefile,v
retrieving revision 1.2
diff -u -p -r1.2 Makefile
--- Makefile    9 Dec 2018 13:38:58 -0000       1.2
+++ Makefile    27 Dec 2018 08:08:05 -0000
@@ -3,38 +3,33 @@
 COMMENT =              tryton web client
 
 VERSION =              5.0.1
-DEPVERSION =           0
+DEPVERSION =           1
 DISTNAME =             tryton-sao-${VERSION}
+REVISION =             0
 
 EXTRACT_SUFX =         .tgz
 WRKDIST =              ${WRKDIR}/package
 
 MASTER_SITES0 =                http://kapouay.odns.fr/pub/tryton/
 DISTFILES +=           tryton-sao-${VERSION}.tgz \
-                       sao-dependencies-${TRYTON_VERSION}-${DEPVERSION}.zip:0
-
-BUILD_DEPENDS +=       lang/node \
-                       devel/git
+                       
sao-dependencies-${TRYTON_VERSION}-${DEPVERSION}.tar.gz:0
 
 RUN_DEPENDS +=         productivity/tryton/${TRYTON_VERSION}/trytond
 
 SUBST_VARS +=          TRYTON_VERSION
-PORTHOME =             ${WRKDIR}/sao-dependencies-${TRYTON_VERSION}
 
+NO_BUILD =             Yes
 NO_TEST =              Yes
 
-do-build:
-       cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} npm install --production --offline
-       cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./node_modules/.bin/grunt
-
 do-install:
        ${INSTALL_DATA_DIR} ${PREFIX}/share/tryton-sao-${TRYTON_VERSION}
        cd ${WRKSRC} && tar cf - \
-               bower_components \
                locale \
                dist \
                images \
                index.html \
+       | tar xf - -C ${PREFIX}/share/tryton-sao-${TRYTON_VERSION}
+       cd ${WRKDIR}/sao-dependencies-${TRYTON_VERSION} && tar cf - 
bower_components \
        | tar xf - -C ${PREFIX}/share/tryton-sao-${TRYTON_VERSION}
 
        ${INSTALL_DATA_DIR} 
${PREFIX}/share/examples/tryton-sao-${TRYTON_VERSION}
Index: distinfo
===================================================================
RCS file: /cvs/ports/productivity/tryton/5.0/sao/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo    3 Dec 2018 12:28:14 -0000       1.1.1.1
+++ distinfo    27 Dec 2018 08:12:35 -0000
@@ -1,4 +1,4 @@
-SHA256 (tryton/sao-dependencies-5.0-0.zip) = 
gkAYrQ8+AD1ay98yGs23S3JAGgvMvi2aMSk21EXHEcg=
+SHA256 (tryton/sao-dependencies-5.0-1.tar.gz) = 
u4r+cv3tqpXbJsq9RbEq9eEoCftphcdfXuOVS/lw2OY=
 SHA256 (tryton/tryton-sao-5.0.1.tgz) = 
Z1EimZBEW+goXYgstjn9SIlOD8M06TDfr2364B7g/EU=
-SIZE (tryton/sao-dependencies-5.0-0.zip) = 37877499
+SIZE (tryton/sao-dependencies-5.0-1.tar.gz) = 916244
 SIZE (tryton/tryton-sao-5.0.1.tgz) = 452559
Index: files/sao-dependencies.sh
===================================================================
RCS file: files/sao-dependencies.sh
diff -N files/sao-dependencies.sh
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ files/sao-dependencies.sh   27 Dec 2018 08:10:52 -0000
@@ -0,0 +1,203 @@
+#!/bin/sh
+# little tool to grab all js-dependencies and generate a bower_components/
+# directory suitable for tryton-sao
+
+PATH='/usr/bin:/bin:/usr/sbin:/sbin'
+set -eu
+
+FETCHCMD='ftp'
+UNZIP='/usr/local/bin/7z x'
+
+TRYTON_VERSION='5.0'
+
+umask 022
+
+if [ $# -ne 0 ]; then
+       echo "usage: $0" >&2
+       exit 1
+fi
+
+OUTDIR="${PWD}/sao-dependencies-${TRYTON_VERSION}"
+
+if [ -d "${OUTDIR}" ]; then
+       echo "error: output directory already exists: ${OUTDIR}" >&2
+       exit 1
+fi
+
+EXTRACTDIR=$(mktemp -dt sao-dependencies.XXXXXXXX) || {
+       echo "error: unable to create temporary directory" >&2
+       exit 1
+}
+
+# https://getbootstrap.com/docs/3.3/getting-started/#download
+bootstrap() {
+       local V="$1"
+       local 
U="https://github.com/twbs/bootstrap/releases/download/v${V}/bootstrap-${V}-dist.zip";
+       local O="${OUTDIR}/bower_components/bootstrap/dist"
+
+       ${FETCHCMD} -o "${EXTRACTDIR}/bootstrap-${V}-dist.zip" -- "${U}"
+       ( cd "${EXTRACTDIR}" && ${UNZIP} "bootstrap-${V}-dist.zip" )
+       rm "${EXTRACTDIR}/bootstrap-${V}-dist.zip"
+
+       mkdir -p -- "${O}"
+       mv "${EXTRACTDIR}/bootstrap-${V}-dist"/{css,fonts,js} "${O}"
+       rmdir "${EXTRACTDIR}/bootstrap-${V}-dist"
+}
+
+# https://github.com/Eonasdan/bootstrap-datetimepicker/releases
+bootstrap_datetimepicker() {
+       local V="$1"
+       local 
U="https://github.com/Eonasdan/bootstrap-datetimepicker/archive/${V}.tar.gz";
+       local 
O="${OUTDIR}/bower_components/eonasdan-bootstrap-datetimepicker/build"
+
+       ${FETCHCMD} -o- -- "${U}" | tar zxf - -C "${EXTRACTDIR}"
+
+       mkdir -p "${O}"
+       mv "${EXTRACTDIR}/bootstrap-datetimepicker-${V}"/build/{js,css} "${O}"
+       rm -rf "${EXTRACTDIR}/bootstrap-datetimepicker-${V}"
+}
+
+# https://github.com/bright/bootstrap-rtl/releases
+bootstrap_rtl_ondemand() {
+       local V="$1"
+       local 
U="https://github.com/bright/bootstrap-rtl/archive/v${V}-ondemand.tar.gz";
+       local O="${OUTDIR}/bower_components/bootstrap-rtl-ondemand/dist"
+
+       ${FETCHCMD} -o- -- "${U}" | tar zxf - -C "${EXTRACTDIR}"
+
+       mkdir -p "${O}"
+       mv "${EXTRACTDIR}/bootstrap-rtl-${V}-ondemand/dist/css" "${O}"
+       rm -rf "${EXTRACTDIR}/bootstrap-rtl-${V}-ondemand"
+}
+
+# https://github.com/c3js/c3/releases
+c3() {
+       local V="$1"
+       local U="https://github.com/c3js/c3/archive/v${V}.tar.gz";
+       local O="${OUTDIR}/bower_components/c3"
+
+       ${FETCHCMD} -o- -- "${U}" | tar zxf - -C "${EXTRACTDIR}"
+
+       mkdir -p "${O}"
+       mv "${EXTRACTDIR}/c3-${V}"/c3.min.{css,js} "${O}"
+       mv "${EXTRACTDIR}/c3-${V}"/bower.json "${O}"    # for dependencies
+       rm -rf "${EXTRACTDIR}/c3-${V}"
+}
+
+# https://github.com/d3/d3/releases
+d3() {
+       local V="$1"
+       local U="https://github.com/d3/d3/releases/download/v${V}/d3.zip";
+       local O="${OUTDIR}/bower_components/d3"
+
+       ${FETCHCMD} -o "${EXTRACTDIR}/d3.zip" -- "${U}"
+       mkdir "${EXTRACTDIR}/d3"
+       ( cd "${EXTRACTDIR}/d3" && ${UNZIP} "../d3.zip" )
+       rm "${EXTRACTDIR}/d3.zip"
+
+       mkdir -p -- "${O}"
+       mv "${EXTRACTDIR}/d3/d3.min.js" "${O}"
+       rm -rf "${EXTRACTDIR}/d3"
+}
+
+# https://github.com/fullcalendar/fullcalendar/releases
+fullcalendar() {
+       local V="$1"
+       local 
U="https://github.com/fullcalendar/fullcalendar/releases/download/v${V}/fullcalendar-${V}.zip";
+       local O="${OUTDIR}/bower_components/fullcalendar/dist"
+
+       ${FETCHCMD} -o "${EXTRACTDIR}/fullcalendar-${V}.zip" -- "${U}"
+       ( cd "${EXTRACTDIR}" && ${UNZIP} "fullcalendar-${V}.zip" )
+       rm "${EXTRACTDIR}/fullcalendar-${V}.zip"
+
+       mkdir -p -- "${O}"
+       mv "${EXTRACTDIR}/fullcalendar-${V}"/fullcalendar.min.{js,css} "${O}"
+       mv "${EXTRACTDIR}/fullcalendar-${V}"/fullcalendar.print.min.css "${O}"
+       mv "${EXTRACTDIR}/fullcalendar-${V}"/gcal.min.js "${O}"
+       mv "${EXTRACTDIR}/fullcalendar-${V}"/locale{-all.js,} "${O}"
+       rm -rf "${EXTRACTDIR}/fullcalendar-${V}"
+}
+
+# https://github.com/guillaumepotier/gettext.js/releases
+gettext_js() {
+       local V="$1"
+       local 
U="https://github.com/guillaumepotier/gettext.js/archive/${V}.tar.gz";
+       local O="${OUTDIR}/bower_components/gettext.js/dist"
+
+       ${FETCHCMD} -o- -- "${U}" | tar zxf - -C "${EXTRACTDIR}"
+
+       mkdir -p -- "${O}"
+       mv "${EXTRACTDIR}/gettext.js-${V}/dist/gettext.min.js" "${O}"
+       rm -rf "${EXTRACTDIR}/gettext.js-${V}"
+}
+
+# https://jquery.com/download/
+jquery() {
+       local V="$1"
+       local U="https://code.jquery.com";
+       local O="${OUTDIR}/bower_components/jquery/dist"
+
+       mkdir -p "${O}"
+       ${FETCHCMD} -o "${O}/jquery.min.js"     "${U}/jquery-${V}.min.js"
+       ${FETCHCMD} -o "${O}/jquery.min.map"    "${U}/jquery-${V}.min.map"
+}
+
+# https://github.com/moment/moment/releases
+moment() {
+       local V="$1"
+       local U="https://github.com/moment/moment/archive/${V}.tar.gz";
+       local O="${OUTDIR}/bower_components/moment/min"
+
+       ${FETCHCMD} -o- -- "${U}" | tar zxf - -C "${EXTRACTDIR}"
+
+       mkdir -p -- "${O}"
+       mv 
"${EXTRACTDIR}/moment-${V}/min/"{locales,moment-with-locales,moment}.min.js 
"${O}"
+       rm -rf "${EXTRACTDIR}/moment-${V}"
+}
+
+# https://github.com/ccampbell/mousetrap/releases
+mousetrap() {
+       local V="$1"
+       local U="https://github.com/ccampbell/mousetrap/archive/${V}.tar.gz";
+       local O="${OUTDIR}/bower_components/mousetrap"
+
+       ${FETCHCMD} -o- -- "${U}" | tar zxf - -C "${EXTRACTDIR}"
+
+       mkdir -p -- "${O}"
+       mv "${EXTRACTDIR}/mousetrap-${V}/"{mousetrap.min.js,plugins} "${O}"
+       rm -rf "${EXTRACTDIR}/mousetrap-${V}"
+}
+
+# https://github.com/mholt/papaparse/releases
+papaparse() {
+       local V="$1"
+       local U="https://github.com/mholt/papaparse/archive/${V}.tar.gz";
+       local O="${OUTDIR}/bower_components/papaparse"
+
+       ${FETCHCMD} -o- -- "${U}" | tar zxf - -C "${EXTRACTDIR}"
+
+       mkdir -p -- "${O}"
+       mv "${EXTRACTDIR}/PapaParse-${V}/papaparse.min.js" "${O}"
+       rm -rf "${EXTRACTDIR}/PapaParse-${V}"
+}
+
+# download and extract files
+bootstrap                      '3.3.7'         # ^3.3.7
+bootstrap_datetimepicker       '4.17.47'       # ^4.17
+bootstrap_rtl_ondemand         '3.3.4'         # ^3.3.4-ondemand
+c3                             '0.6.11'        # ^0.6
+d3                             '5.7.0'         # ^5.0.0 (c3 dependency)
+fullcalendar                   '3.9.0'         # ^3.0
+gettext_js                     '0.5.5'         # ^0.5
+jquery                         '3.3.1'         # ^3
+moment                         '2.23.0'        # ^2.10
+mousetrap                      '1.6.2'         # ^1.6
+papaparse                      '4.6.2'         # ^4.1
+
+# cleanup (ensure it is empty)
+rmdir "${EXTRACTDIR}"
+
+# generate sha256
+( cd "${OUTDIR}" && find "bower_components" -type f -print0 \
+       | xargs -0 sha256 -b ) \
+       > "${OUTDIR}/SHA256"
Index: patches/patch-package_json
===================================================================
RCS file: patches/patch-package_json
diff -N patches/patch-package_json
--- patches/patch-package_json  3 Dec 2018 12:28:14 -0000       1.1.1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,14 +0,0 @@
-$OpenBSD: patch-package_json,v 1.1.1.1 2018/12/03 12:28:14 semarie Exp $
-For offline to not use the network.
-Index: package.json
---- package.json.orig
-+++ package.json
-@@ -32,7 +32,7 @@
-   ],
-   "scripts": {
-     "test": "./node_modules/.bin/grunt test",
--    "postinstall": "./node_modules/.bin/bower install"
-+    "postinstall": "./node_modules/.bin/bower install --offline"
-   },
-   "devDependencies": {
-     "grunt-contrib-nodeunit": "^0.4",
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/productivity/tryton/5.0/sao/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 PLIST
--- pkg/PLIST   3 Dec 2018 12:28:16 -0000       1.1.1.1
+++ pkg/PLIST   27 Dec 2018 08:13:17 -0000
@@ -14,77 +14,11 @@ share/tryton-sao-${TRYTON_VERSION}/
 share/tryton-sao-${TRYTON_VERSION}/bower_components/
 share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/
 share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/.bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/Gruntfile.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/LICENSE.bootstrap
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/README.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/UNLICENSE
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/assets/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/assets/ico/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/assets/ico/favicon.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/assets/js/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/assets/js/holder.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/assets/js/html5shiv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/assets/js/jquery.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/assets/js/respond.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/bootstrap/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/bower.json
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/dist/
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/dist/css/
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/dist/css/bootstrap-rtl-ondemand.css
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/dist/css/bootstrap-rtl-ondemand.css.map
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/dist/css/bootstrap-rtl-ondemand.min.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/dist/js/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/dist/js/holder.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/dist/js/html5shiv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/dist/js/jquery.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/dist/js/respond.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/alerts-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/badges-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/bootstrap-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/button-groups-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/carousel-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/close-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/dropdowns-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/flipped.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/forms-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/grid-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/input-groups-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/list-group-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/media-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/mixins/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/mixins-flipped.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/mixins-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/mixins/border-radius-flipped.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/mixins/gradients-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/mixins/grid-framework-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/mixins/grid-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/mixins/pagination-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/modals-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/navbar-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/navs-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/normalize-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/pager-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/pagination-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/panels-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/popovers-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/progress-bars-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/responsive-embed-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/tables-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/type-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/utilities-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/less/variables-rtl.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap-rtl-ondemand/package.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/.bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/CHANGELOG.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/Gemfile
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/Gemfile.lock
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/Gruntfile.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/ISSUE_TEMPLATE.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/LICENSE
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/README.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/bower.json
 share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/dist/
 share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/dist/css/
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/dist/css/bootstrap-theme.css
@@ -105,495 +39,13 @@ share/tryton-sao-${TRYTON_VERSION}/bower
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/dist/js/bootstrap.js
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/dist/js/bootstrap.min.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/dist/js/npm.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/fonts/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/fonts/glyphicons-halflings-regular.svg
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/grunt/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/grunt/.jshintrc
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/grunt/bs-commonjs-generator.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/grunt/bs-glyphicons-data-generator.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/grunt/bs-lessdoc-parser.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/grunt/bs-raw-files-generator.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/grunt/change-version.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/grunt/configBridge.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/grunt/npm-shrinkwrap.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/grunt/sauce_browsers.yml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/.jscsrc
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/.jshintrc
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/affix.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/alert.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/button.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/carousel.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/collapse.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/dropdown.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/modal.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/popover.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/scrollspy.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/tab.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/tooltip.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/js/transition.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/.csscomb.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/.csslintrc
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/alerts.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/badges.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/bootstrap.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/breadcrumbs.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/button-groups.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/buttons.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/carousel.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/close.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/code.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/component-animations.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/dropdowns.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/forms.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/glyphicons.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/grid.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/input-groups.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/jumbotron.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/labels.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/list-group.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/media.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/alerts.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/background-variant.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/border-radius.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/buttons.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/center-block.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/clearfix.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/forms.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/gradients.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/grid-framework.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/grid.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/hide-text.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/image.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/labels.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/list-group.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/nav-divider.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/nav-vertical-align.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/opacity.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/pagination.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/panels.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/progress-bar.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/reset-filter.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/reset-text.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/resize.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/responsive-visibility.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/size.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/tab-focus.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/table-row.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/text-emphasis.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/text-overflow.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/mixins/vendor-prefixes.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/modals.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/navbar.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/navs.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/normalize.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/pager.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/pagination.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/panels.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/popovers.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/print.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/progress-bars.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/responsive-embed.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/responsive-utilities.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/scaffolding.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/tables.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/theme.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/thumbnails.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/tooltip.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/type.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/utilities.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/variables.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/less/wells.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/nuget/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/nuget/MyGet.ps1
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/nuget/bootstrap.less.nuspec
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/nuget/bootstrap.nuspec
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/package.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/bootstrap/package.json
 share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/.bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/CONTRIBUTING.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/Gemfile
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/Gemfile.lock
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/LICENSE
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/MAINTAINANCE.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/README.md
 share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/c3.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/c3.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/c3.min.css
 share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/c3.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/codecov.yml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/config.rb
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/data/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/data/samples.yml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/404.html
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/CNAME
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/_footer.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/_index_item.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/_index_item_title.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/_reference_item_link.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/_reference_menu_item.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/_sample.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/_sample_editor.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/_samples_header.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/_script.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/_script_scroll.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/_sidemenu_item.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/apple-touch-icon-114x114-precomposed.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/apple-touch-icon-144x144-precomposed.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/apple-touch-icon-57x57-precomposed.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/apple-touch-icon-72x72-precomposed.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/apple-touch-icon-precomposed.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/apple-touch-icon.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/crossdomain.xml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/bootstrap.min.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/c3.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/c3.min.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/examples.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/foundation.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/foundation.min.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/gettingstarted.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/index.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/normalize.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/reference.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/api_axis_label.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/api_axis_range.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/api_data_color.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/api_data_name.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/api_flow.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/api_grid_x.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/api_resize.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_label.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_label_position.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_rotated.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_x_localtime.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_x_tick_count.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_x_tick_culling.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_x_tick_fit.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_x_tick_format.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_x_tick_rotate.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_x_tick_values.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_y2.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_y_padding.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_y_range.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/axes_y_tick_format.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/categorized.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/chart_area.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/chart_area_stacked.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/chart_bar.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/chart_bar_negative.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/chart_bar_stacked.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/chart_combination.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/chart_donut.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/chart_gauge.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/chart_pie.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/chart_scatter.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/chart_spline.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/chart_step.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/data_color.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/data_columned.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/data_json.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/data_label.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/data_label_format.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/data_load.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/data_name.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/data_order.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/data_rowed.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/data_stringx.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/data_url.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/data_xformat.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/grid_x_lines.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/grid_y_lines.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/interaction_zoom.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/legend_custom.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/legend_position.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/options_color.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/options_gridline.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/options_legend.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/options_padding.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/options_size.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/options_subchart.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/pie_label_format.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/point_show.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/region.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/region_timeseries.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/simple_multiple.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/simple_regions.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/simple_xy.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/simple_xy_multiple.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/style_grid.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/style_region.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/timeseries.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/tooltip_format.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/tooltip_grouped.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/tooltip_show.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/transform_area.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/transform_areaspline.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/transform_bar.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/transform_donut.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/transform_line.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/transform_pie.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/transform_scatter.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/transform_spline.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/samples/transition_duration.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/style.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/css/tomorrow.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/data/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/data/c3_string_x.csv
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/data/c3_test.csv
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/data/c3_test.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/data/c3_test2.csv
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/examples.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/gettingstarted.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/img/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/img/GitHub-Mark-64px.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/index.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/ace/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/ace/ace.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/ace/mode-javascript.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/ace/theme-tomorrow.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/ace/worker-javascript.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/c3.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/c3.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/d3-5.4.0.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/foundation.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/gettingstarted.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/highlight.pack.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/index.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/jquery-1.11.0.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/jquery-1.11.0.min.map
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/main.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/plugins.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/api_axis_label.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/api_axis_range.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/api_data_color.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/api_data_name.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/api_flow.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/api_grid_x.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/api_resize.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_label.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_label_position.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_rotated.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_x_localtime.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_x_tick_count.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_x_tick_culling.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_x_tick_fit.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_x_tick_format.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_x_tick_rotate.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_x_tick_values.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_y2.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_y_padding.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_y_range.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/axes_y_tick_format.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/categorized.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/chart_area.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/chart_area_stacked.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/chart_bar.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/chart_bar_stacked.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/chart_combination.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/chart_donut.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/chart_gauge.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/chart_pie.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/chart_scatter.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/chart_spline.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/chart_step.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/data_color.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/data_columned.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/data_json.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/data_label.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/data_label_format.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/data_load.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/data_name.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/data_number_format_l10n.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/data_order.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/data_rowed.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/data_stringx.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/data_url.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/data_xformat.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/grid_x_lines.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/grid_y_lines.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/interaction_zoom.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/interaction_zoom_by_drag.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/legend_custom.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/legend_position.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/options_color.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/options_gridline.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/options_legend.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/options_padding.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/options_size.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/options_subchart.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/pie_label_format.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/point_show.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/region.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/region_timeseries.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/simple.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/simple_multiple.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/simple_regions.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/simple_xy.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/simple_xy_multiple.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/style_grid.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/style_region.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/timeseries.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/tooltip_format.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/tooltip_grouped.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/tooltip_show.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/transform_area.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/transform_areaspline.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/transform_bar.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/transform_donut.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/transform_line.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/transform_pie.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/transform_scatter.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/transform_spline.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/samples/transition_duration.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/vendor/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/vendor/jquery-1.8.0.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/js/vendor/modernizr-2.6.1.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/layouts/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/layouts/layout.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/reference.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/robots.txt
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/api_axis_label.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/api_axis_range.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/api_data_color.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/api_data_name.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/api_flow.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/api_grid_x.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/api_resize.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_label.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_label_position.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_rotated.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_x_localtime.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_x_tick_count.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_x_tick_culling.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_x_tick_fit.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_x_tick_format.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_x_tick_rotate.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_x_tick_values.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_y2.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_y_padding.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_y_range.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/axes_y_tick_format.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/categorized.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/chart_area.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/chart_area_stacked.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/chart_bar.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/chart_bar_stacked.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/chart_combination.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/chart_donut.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/chart_gauge.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/chart_pie.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/chart_scatter.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/chart_spline.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/chart_step.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/data_color.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/data_columned.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/data_json.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/data_label.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/data_label_format.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/data_load.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/data_name.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/data_number_format_l10n.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/data_order.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/data_rowed.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/data_stringx.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/data_url.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/grid_x_lines.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/grid_y_lines.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/interaction_zoom.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/interaction_zoom_by_drag.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/legend_custom.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/legend_position.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/options_color.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/options_gridline.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/options_legend.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/options_padding.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/options_size.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/options_subchart.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/pie_label_format.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/point_show.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/region.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/region_timeseries.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/simple_multiple.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/simple_regions.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/simple_xy.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/simple_xy_multiple.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/style_grid.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/style_region.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/timeseries.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/tooltip_format.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/tooltip_grouped.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/tooltip_show.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/transform_area.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/transform_areaspline.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/transform_bar.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/transform_donut.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/transform_line.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/transform_pie.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/transform_scatter.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/transform_spline.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/docs/samples/transition_duration.html.haml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/extensions/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/extensions/chart-bubble/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/extensions/chart-bubble/bubble.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/extensions/chart-bubble/index.html
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/extensions/exporter/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/extensions/exporter/config.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/extensions/exporter/phantom-exporter.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/extensions/exporter/test.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/extensions/js/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/extensions/js/c3ext.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/karma.conf.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/package-lock.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/rollup.config.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/arc.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/area.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/axis.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/bar.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/brush.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/chart.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/focus.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/grid.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/legend.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/line.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/main.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/point.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/region.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/select_drag.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/text.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/title.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/tooltip.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/c3/src/scss/zoom.scss
 share/tryton-sao-${TRYTON_VERSION}/bower_components/d3/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/d3/.bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/d3/LICENSE
-share/tryton-sao-${TRYTON_VERSION}/bower_components/d3/README.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/d3/bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/d3/d3.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/d3/d3.min.js
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/.bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/CONTRIBUTING.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/Gruntfile.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/LICENSE
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/README.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/bower.json
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/build/
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/build/css/
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker-standalone.css
@@ -601,93 +53,11 @@ share/tryton-sao-${TRYTON_VERSION}/bower
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/build/js/
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/component.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/composer.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/ChangeLog.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/ContributorsGuide.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/Events.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/Extras.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/FAQ.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/Functions.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/Installing.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/Options.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/Version
 4 Changelog.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/Version
 4 Contributors guide.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/index.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/android-chrome-144x144.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/android-chrome-192x192.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/android-chrome-36x36.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/android-chrome-48x48.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/android-chrome-72x72.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/android-chrome-96x96.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/apple-touch-icon-114x114.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/apple-touch-icon-120x120.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/apple-touch-icon-144x144.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/apple-touch-icon-152x152.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/apple-touch-icon-180x180.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/apple-touch-icon-57x57.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/apple-touch-icon-60x60.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/apple-touch-icon-72x72.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/apple-touch-icon-76x76.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/apple-touch-icon-precomposed.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/apple-touch-icon.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/base.html
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/browserconfig.xml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/content.html
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/css/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/css/base.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/css/prettify-1.0.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/favicon-16x16.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/favicon-32x32.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/favicon-96x96.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/favicon.ico
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/js/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/js/base.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/js/prettify-1.0.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/manifest.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/mstile-144x144.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/mstile-150x150.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/mstile-310x150.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/mstile-310x310.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/mstile-70x70.png
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/nav.html
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/docs/theme/toc.html
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/mkdocs.yml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/package.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/js/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/js/bootstrap-datetimepicker.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/less/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/less/_bootstrap-datetimepicker.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/nuget/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/nuget/Bootstrap.v3.Datetimepicker.CSS.nuspec
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/nuget/Bootstrap.v3.Datetimepicker.nuspec
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/nuget/NuGet.exe
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/nuget/install.ps1
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/sass/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/sass/_bootstrap-datetimepicker.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/src/sass/bootstrap-datetimepicker-build.scss
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/tasks/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/eonasdan-bootstrap-datetimepicker/tasks/bump_version.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/.bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/CHANGELOG.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/CONTRIBUTING.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/LICENSE.txt
-share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/README.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/bower.json
 share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/fullcalendar.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/fullcalendar.d.ts
-share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/fullcalendar.js
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/fullcalendar.min.css
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/fullcalendar.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/fullcalendar.print.css
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/fullcalendar.print.min.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/gcal.js
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/gcal.min.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/locale/
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/locale-all.js
@@ -763,553 +133,19 @@ share/tryton-sao-${TRYTON_VERSION}/bower
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/locale/zh-cn.js
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/fullcalendar/dist/locale/zh-tw.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/gettext.js/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/gettext.js/.bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/gettext.js/.gitignore
-share/tryton-sao-${TRYTON_VERSION}/bower_components/gettext.js/bin/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/gettext.js/bin/po2json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/gettext.js/bower.json
 share/tryton-sao-${TRYTON_VERSION}/bower_components/gettext.js/dist/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/gettext.js/dist/gettext.js
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/gettext.js/dist/gettext.min.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/.bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/AUTHORS.txt
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/LICENSE.txt
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/README.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/bower.json
 share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/dist/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/dist/core.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/dist/jquery.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/dist/jquery.min.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/dist/jquery.min.map
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/dist/jquery.slim.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/dist/jquery.slim.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/dist/jquery.slim.min.map
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/external/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/external/sizzle/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/external/sizzle/LICENSE.txt
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/external/sizzle/dist/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/external/sizzle/dist/sizzle.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/external/sizzle/dist/sizzle.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/external/sizzle/dist/sizzle.min.map
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/.eslintrc.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/ajax/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/ajax.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/ajax/jsonp.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/ajax/load.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/ajax/parseXML.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/ajax/script.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/ajax/var/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/ajax/var/location.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/ajax/var/nonce.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/ajax/var/rquery.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/ajax/xhr.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/attributes/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/attributes.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/attributes/attr.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/attributes/classes.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/attributes/prop.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/attributes/support.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/attributes/val.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/callbacks.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/DOMEval.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/access.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/camelCase.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/init.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/nodeName.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/parseHTML.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/ready-no-deferred.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/ready.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/readyException.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/stripAndCollapse.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/support.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/toType.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/var/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/core/var/rsingleTag.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/addGetHookIf.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/adjustCSS.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/curCSS.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/hiddenVisibleSelectors.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/showHide.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/support.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/var/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/var/cssExpand.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/var/getStyles.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/var/isHiddenWithinTree.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/var/rboxStyle.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/var/rnumnonpx.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/css/var/swap.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/data/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/data.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/data/Data.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/data/var/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/data/var/acceptData.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/data/var/dataPriv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/data/var/dataUser.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/deferred/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/deferred.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/deferred/exceptionHook.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/deprecated.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/dimensions.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/effects/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/effects.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/effects/Tween.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/effects/animatedSelector.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/event/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/event.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/event/ajax.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/event/alias.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/event/focusin.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/event/support.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/event/trigger.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/exports/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/exports/amd.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/exports/global.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/jquery.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/manipulation/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/manipulation.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/manipulation/_evalUrl.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/manipulation/buildFragment.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/manipulation/getAll.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/manipulation/setGlobalEval.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/manipulation/support.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/manipulation/var/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/manipulation/var/rcheckableType.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/manipulation/var/rscriptType.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/manipulation/var/rtagName.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/manipulation/wrapMap.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/offset.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/queue/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/queue.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/queue/delay.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/selector-native.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/selector-sizzle.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/selector.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/serialize.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/traversing/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/traversing.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/traversing/findFilter.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/traversing/var/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/traversing/var/dir.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/traversing/var/rneedsContext.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/traversing/var/siblings.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/ObjectFunctionString.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/arr.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/class2type.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/concat.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/document.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/documentElement.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/fnToString.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/getProto.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/hasOwn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/indexOf.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/isFunction.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/isWindow.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/pnum.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/push.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/rcssNum.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/rnothtmlwhite.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/slice.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/support.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/var/toString.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/jquery/src/wrap.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/.bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/CHANGELOG.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/LICENSE
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/README.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/af.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ar-dz.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ar-kw.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ar-ly.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ar-ma.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ar-sa.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ar-tn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ar.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/az.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/be.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/bg.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/bm.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/bn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/bo.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/br.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/bs.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ca.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/cs.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/cv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/cy.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/da.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/de-at.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/de-ch.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/de.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/dv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/el.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/en-au.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/en-ca.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/en-gb.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/en-ie.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/en-il.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/en-nz.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/eo.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/es-do.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/es-us.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/es.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/et.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/eu.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/fa.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/fi.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/fo.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/fr-ca.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/fr-ch.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/fr.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/fy.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/gd.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/gl.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/gom-latn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/gu.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/he.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/hi.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/hr.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/hu.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/hy-am.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/id.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/is.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/it.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ja.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/jv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ka.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/kk.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/km.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/kn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ko.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ky.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/lb.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/lo.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/lt.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/lv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/me.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/mi.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/mk.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ml.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/mn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/mr.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ms-my.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ms.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/mt.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/my.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/nb.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ne.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/nl-be.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/nl.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/nn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/pa-in.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/pl.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/pt-br.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/pt.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ro.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ru.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/sd.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/se.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/si.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/sk.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/sl.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/sq.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/sr-cyrl.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/sr.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ss.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/sv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/sw.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ta.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/te.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/tet.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/tg.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/th.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/tl-ph.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/tlh.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/tr.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/tzl.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/tzm-latn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/tzm.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ug-cn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/uk.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/ur.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/uz-latn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/uz.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/vi.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/x-pseudo.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/yo.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/zh-cn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/zh-hk.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/locale/zh-tw.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/min/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/min/locales.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/min/locales.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/min/moment-with-locales.js
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/min/moment-with-locales.min.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/min/moment.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/moment.d.ts
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/moment.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/package-lock.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/create/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/create/check-overflow.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/create/date-from-array.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/create/from-anything.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/create/from-array.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/create/from-object.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/create/from-string-and-array.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/create/from-string-and-format.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/create/from-string.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/create/local.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/create/parsing-flags.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/create/utc.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/create/valid.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/abs.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/add-subtract.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/as.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/bubble.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/clone.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/constructor.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/create.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/duration.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/get.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/humanize.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/iso-string.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/prototype.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/duration/valid.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/format/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/format/format.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/base-config.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/calendar.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/constructor.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/en.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/formats.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/invalid.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/lists.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/locale.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/locales.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/ordinal.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/pre-post-format.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/prototype.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/relative.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/locale/set.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/add-subtract.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/calendar.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/clone.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/compare.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/constructor.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/creation-data.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/diff.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/format.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/from.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/get-set.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/locale.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/min-max.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/moment.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/now.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/prototype.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/start-end-of.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/to-type.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/to.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/moment/valid.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/parse/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/parse/regex.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/parse/token.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/aliases.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/constants.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/day-of-month.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/day-of-week.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/day-of-year.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/hour.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/millisecond.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/minute.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/month.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/offset.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/priorities.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/quarter.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/second.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/timestamp.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/timezone.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/units.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/week-calendar-utils.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/week-year.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/week.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/units/year.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/abs-ceil.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/abs-floor.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/abs-round.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/compare-arrays.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/defaults.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/deprecate.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/extend.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/has-own-prop.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/hooks.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/index-of.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/is-array.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/is-date.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/is-function.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/is-number.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/is-object-empty.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/is-object.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/is-undefined.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/keys.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/map.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/mod.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/some.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/to-int.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/lib/utils/zero-fill.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/af.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ar-dz.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ar-kw.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ar-ly.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ar-ma.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ar-sa.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ar-tn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ar.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/az.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/be.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/bg.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/bm.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/bn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/bo.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/br.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/bs.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ca.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/cs.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/cv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/cy.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/da.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/de-at.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/de-ch.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/de.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/dv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/el.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/en-au.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/en-ca.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/en-gb.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/en-ie.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/en-il.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/en-nz.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/eo.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/es-do.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/es-us.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/es.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/et.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/eu.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/fa.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/fi.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/fo.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/fr-ca.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/fr-ch.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/fr.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/fy.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/gd.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/gl.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/gom-latn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/gu.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/he.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/hi.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/hr.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/hu.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/hy-am.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/id.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/is.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/it.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ja.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/jv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ka.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/kk.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/km.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/kn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ko.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ky.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/lb.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/lo.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/lt.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/lv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/me.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/mi.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/mk.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ml.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/mn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/mr.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ms-my.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ms.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/mt.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/my.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/nb.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ne.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/nl-be.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/nl.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/nn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/pa-in.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/pl.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/pt-br.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/pt.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ro.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ru.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/sd.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/se.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/si.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/sk.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/sl.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/sq.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/sr-cyrl.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/sr.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ss.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/sv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/sw.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ta.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/te.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/tet.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/tg.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/th.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/tl-ph.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/tlh.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/tr.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/tzl.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/tzm-latn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/tzm.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ug-cn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/uk.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/ur.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/uz-latn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/uz.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/vi.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/x-pseudo.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/yo.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/zh-cn.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/zh-hk.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/locale/zh-tw.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/src/moment.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/templates/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/templates/default.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/templates/locale-header.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/moment/templates/test-header.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/.bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/.gitignore
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/Gruntfile.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/LICENSE
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/README.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/mousetrap.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/mousetrap.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/package.json
 share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/plugins/
 share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/plugins/README.md
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/plugins/bind-dictionary/
@@ -1332,99 +168,8 @@ share/tryton-sao-${TRYTON_VERSION}/bower
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/plugins/record/tests/index.html
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/plugins/record/tests/jelly.css
 
share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/plugins/record/tests/jelly.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/tests/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/tests/libs/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/tests/libs/chai-1.6.0.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/tests/libs/jquery-1.7.2.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/tests/libs/key-event.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/tests/libs/mocha-1.9.0.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/tests/libs/mocha-1.9.0.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/tests/libs/sinon-1.7.1.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/tests/libs/sinon-chai-2.4.0.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/tests/libs/sinon-ie-1.7.1.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/tests/mousetrap.html
-share/tryton-sao-${TRYTON_VERSION}/bower_components/mousetrap/tests/test.mousetrap.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/.bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/Gruntfile.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/LICENSE
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/README.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/CNAME
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/Caddyfile
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/demo.html
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/docs.html
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/faq.html
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/favicon.ico
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/index.html
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/css/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/css/common.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/css/demo.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/css/home.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/css/tomorrow.highlight.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/css/unsemantic.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/files/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/files/big.csv
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/files/malformed.tsv
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/files/normal.csv
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/js/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/js/common.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/js/demo.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/js/highlight.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/js/home.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/js/jquery.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/js/lovers.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/js/papaparse.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/docs/resources/js/skrollr.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/package.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/papaparse.js
 share/tryton-sao-${TRYTON_VERSION}/bower_components/papaparse/papaparse.min.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/.bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/AUTHORS.txt
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/CONTRIBUTING.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/History.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/LICENSE.txt
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/README.md
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/appveyor.yml
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/bower.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/build/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/build/browserstack-current-1.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/build/browserstack-current-2.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/build/browserstack-legacy-1.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/build/browserstack-legacy-2.json
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/build/release.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/build/run-browserstack.sh
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/build/tasks/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/build/tasks/test-on-node.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/qunit/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/qunit/qunit.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/qunit/qunit.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/reporter/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/reporter/diff.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/reporter/html.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/reporter/intro.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/reporter/outro.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/reporter/urlparams.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/assert.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/core/
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/core.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/core/config.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/core/initialize.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/core/logging.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/core/onerror.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/core/stacktrace.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/core/utilities.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/dump.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/equiv.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/export.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/intro.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/outro.js
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/qunit.css
-share/tryton-sao-${TRYTON_VERSION}/bower_components/qunit/src/test.js
 share/tryton-sao-${TRYTON_VERSION}/dist/
 share/tryton-sao-${TRYTON_VERSION}/dist/tryton-sao.css
 share/tryton-sao-${TRYTON_VERSION}/dist/tryton-sao.js

Reply via email to