diff --git a/.deploy/sandstorm/.env.sandstorm b/.deploy/sandstorm/.env.sandstorm deleted file mode 100755 index 60a4352d31..0000000000 --- a/.deploy/sandstorm/.env.sandstorm +++ /dev/null @@ -1,177 +0,0 @@ -# You can leave this on "local". If you change it to production most console commands will ask for extra confirmation. -# Never set it to "testing". -APP_ENV=local - -# Set to true if you want to see debug information in error screens. -APP_DEBUG=true - -# This should be your email address -SITE_OWNER=sandstorm@example.com - -# The encryption key for your database and sessions. Keep this very secure. -# If you generate a new one all existing data must be considered LOST. -# Change it to a string of exactly 32 chars or use command `php artisan key:generate` to generate it -APP_KEY=SomeRandomStringOf32CharsExactly - -# Change this value to your preferred time zone. -# Example: Europe/Amsterdam -TZ=UTC - -# This variable must match your installation's external address but keep in mind that -# it's only used on the command line as a fallback value. -APP_URL=http://localhost - -# TRUSTED_PROXIES is a useful variable when using Docker and/or a reverse proxy. -TRUSTED_PROXIES= - -# The log channel defines where your log entries go to. -# 'daily' is the default logging mode giving you 5 daily rotated log files in /storage/logs/. -# Several other options exist. You can use 'single' for one big fat error log (not recommended). -# Also available are 'syslog', 'errorlog' and 'stdout' which will log to the system itself. -LOG_CHANNEL=stdout - -# Log level. You can set this from least severe to most severe: -# debug, info, notice, warning, error, critical, alert, emergency -# If you set it to debug your logs will grow large, and fast. If you set it to emergency probably -# nothing will get logged, ever. -APP_LOG_LEVEL=debug - -# Database credentials. Make sure the database exists. I recommend a dedicated user for Firefly III -# If you use SQLite, set connection to `sqlite` and remove the database, username and password settings. -DB_CONNECTION=mysql -DB_HOST=127.0.0.1 -DB_PORT=3306 -DB_DATABASE=firefly -DB_USERNAME=firefly -DB_PASSWORD=firefly - -# If you're looking for performance improvements, you could install memcached. -CACHE_DRIVER=file -SESSION_DRIVER=file - -# You can configure another file storage backend if you cannot use the local storage option. -# To set this up, fill in the following variables. The upload path is used to store uploaded -# files and the export path is to store exported data (before download). -SFTP_HOST= -SFTP_PORT= -SFTP_UPLOAD_PATH= -SFTP_EXPORT_PATH= - -# SFTP uses either the username/password combination or the private key to authenticate. -SFTP_USERNAME= -SFTP_PASSWORD= -SFTP_PRIV_KEY= - -# Cookie settings. Should not be necessary to change these. -COOKIE_PATH="/" -COOKIE_DOMAIN= -COOKIE_SECURE=false - -# If you want Firefly III to mail you, update these settings -# For instructions, see: https://firefly-iii.readthedocs.io/en/latest/installation/mail.html -MAIL_DRIVER=log -MAIL_HOST=smtp.mailtrap.io -MAIL_PORT=2525 -MAIL_FROM=changeme@example.com -MAIL_USERNAME=null -MAIL_PASSWORD=null -MAIL_ENCRYPTION=null - -# Other mail drivers: -MAILGUN_DOMAIN= -MAILGUN_SECRET= -MANDRILL_SECRET= -SPARKPOST_SECRET= - -# Firefly III can send you the following messages -SEND_REGISTRATION_MAIL=true -SEND_ERROR_MESSAGE=true - -# These messages contain (sensitive) transaction information: -SEND_REPORT_JOURNALS=true - -# Set a Mapbox API key here (see mapbox.com) so there might be a map available at various places. -MAPBOX_API_KEY= - -# Firefly III currently supports two provider for live Currency Exchange Rates: -# "fixer" is the default (for backward compatibility), and "ratesapi" is the new one. -# RatesApi.IO (see https://ratesapi.io) is a FREE and OPEN SOURCE live currency exchange rates, -# built compatible with Fixer.IO, based on data published by European Central Bank, and don't require API key. -CER_PROVIDER=fixer -# If you have select "fixer" as default currency exchange rates, -# set a Fixer IO API key here (see https://fixer.io) to enable live currency exchange rates. -# Please note that this WILL ONLY WORK FOR PAID fixer.io accounts because they severely limited -# the free API up to the point where you might as well offer nothing. -FIXER_API_KEY= - -# If you wish to track your own behavior over Firefly III, set a valid analytics tracker ID here. -ANALYTICS_ID= - -# Most parts of the database are encrypted by default, but you can turn this off if you want to. -# This makes it easier to migrate your database. Not that some fields will never be decrypted. -USE_ENCRYPTION=true - -# Firefly III has two options for user authentication. "eloquent" is the default, -# and "ldap" for LDAP servers. -# For full instructions on these settings please visit: -# https://firefly-iii.readthedocs.io/en/latest/installation/authentication.html -LOGIN_PROVIDER=eloquent - -# LDAP connection configuration - # or FreeIPA or ActiveDirectory -ADLDAP_CONNECTION_SCHEME=OpenLDAP -ADLDAP_AUTO_CONNECT=true - -# LDAP connection settings -ADLDAP_CONTROLLERS= -ADLDAP_PORT=389 -ADLDAP_TIMEOUT=5 -ADLDAP_BASEDN="" -ADLDAP_FOLLOW_REFFERALS=false -ADLDAP_USE_SSL=false -ADLDAP_USE_TLS=false - -ADLDAP_ADMIN_USERNAME= -ADLDAP_ADMIN_PASSWORD= - -ADLDAP_ACCOUNT_PREFIX= -ADLDAP_ACCOUNT_SUFFIX= - -# LDAP authentication settings. -ADLDAP_PASSWORD_SYNC=false -ADLDAP_LOGIN_FALLBACK=false - -ADLDAP_DISCOVER_FIELD=distinguishedname -ADLDAP_AUTH_FIELD=distinguishedname - -# Will allow SSO if your server provides an AUTH_USER field. -WINDOWS_SSO_DISCOVER=samaccountname -WINDOWS_SSO_KEY=AUTH_USER - -# field to sync as local username. -ADLDAP_SYNC_FIELD=userprincipalname - -# You can disable the X-Frame-Options header if it interfears with tools like -# Organizr. This is at your own risk. -DISABLE_FRAME_HEADER=true - -# Leave the following configuration vars as is. -# Unless you like to tinker and know what you're doing. -APP_NAME=FireflyIII -ADLDAP_CONNECTION=default -BROADCAST_DRIVER=log -QUEUE_DRIVER=sync -REDIS_HOST=127.0.0.1 -REDIS_PASSWORD=null -REDIS_PORT=6379 -CACHE_PREFIX=firefly -SEARCH_RESULT_LIMIT=50 -PUSHER_KEY= -PUSHER_SECRET= -PUSHER_ID= -DEMO_USERNAME= -DEMO_PASSWORD= -IS_SANDSTORM=true -IS_HEROKU=false -BUNQ_USE_SANDBOX=false -FFIII_LAYOUT=v1 diff --git a/.sandstorm/.gitattributes b/.sandstorm/.gitattributes deleted file mode 100644 index 5a533b9f62..0000000000 --- a/.sandstorm/.gitattributes +++ /dev/null @@ -1,5 +0,0 @@ - - -# vagrant-spk creates shell scripts, which must end in \n, even on a \r\n system. -*.sh text eol=lf - diff --git a/.sandstorm/.gitignore b/.sandstorm/.gitignore deleted file mode 100644 index d70e1e39e4..0000000000 --- a/.sandstorm/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ - - -# This file stores a list of sub-paths of .sandstorm/ that should be ignored by git. -.vagrant - diff --git a/.sandstorm/Vagrantfile b/.sandstorm/Vagrantfile deleted file mode 100644 index 03d3e332f4..0000000000 --- a/.sandstorm/Vagrantfile +++ /dev/null @@ -1,110 +0,0 @@ -# -*- mode: ruby -*- -# vi: set ft=ruby : - -# Guess at a reasonable name for the VM based on the folder vagrant-spk is -# run from. The timestamp is there to avoid conflicts if you have multiple -# folders with the same name. -VM_NAME = File.basename(File.dirname(File.dirname(__FILE__))) + "_sandstorm_#{Time.now.utc.to_i}" - -# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! -VAGRANTFILE_API_VERSION = "2" - -# ugly hack to prevent hashicorp's bitrot. See https://github.com/hashicorp/vagrant/issues/9442 -# this setting is required for pre-2.0 vagrant, but causes an error as of 2.0.3, -# remove entirely when confident nobody uses vagrant 1.x for anything. -unless Vagrant::DEFAULT_SERVER_URL.frozen? - Vagrant::DEFAULT_SERVER_URL.replace('https://vagrantcloud.com') -end - -Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - # Base on the Sandstorm snapshots of the official Debian 8 (jessie) box. - config.vm.box = "debian/contrib-jessie64" - - if Vagrant.has_plugin?("vagrant-vbguest") then - # vagrant-vbguest is a Vagrant plugin that upgrades - # the version of VirtualBox Guest Additions within each - # guest. If you have the vagrant-vbguest plugin, then it - # needs to know how to compile kernel modules, etc., and so - # we give it this hint about operating system type. - config.vm.guest = "debian" - end - - # We forward port 6080, the Sandstorm web port, so that developers can - # visit their sandstorm app from their browser as local.sandstorm.io:6080 - # (aka 127.0.0.1:6080). - config.vm.network :forwarded_port, guest: 6080, host: 6080 - - # Use a shell script to "provision" the box. This installs Sandstorm using - # the bundled installer. - config.vm.provision "shell", inline: "sudo bash /opt/app/.sandstorm/global-setup.sh", keep_color: true - # Then, do stack-specific and app-specific setup. - config.vm.provision "shell", inline: "sudo bash /opt/app/.sandstorm/setup.sh", keep_color: true - - # Shared folders are configured per-provider since vboxsf can't handle >4096 open files, - # NFS requires privilege escalation every time you bring a VM up, - # and 9p is only available on libvirt. - - # Calculate the number of CPUs and the amount of RAM the system has, - # in a platform-dependent way; further logic below. - cpus = nil - total_kB_ram = nil - - host = RbConfig::CONFIG['host_os'] - if host =~ /darwin/ - cpus = `sysctl -n hw.ncpu`.to_i - total_kB_ram = `sysctl -n hw.memsize`.to_i / 1024 - elsif host =~ /linux/ - cpus = `nproc`.to_i - total_kB_ram = `grep MemTotal /proc/meminfo | awk '{print $2}'`.to_i - elsif host =~ /mingw/ - # powershell may not be available on Windows XP and Vista, so wrap this in a rescue block - begin - cpus = `powershell -Command "(Get-WmiObject Win32_Processor -Property NumberOfLogicalProcessors | Select-Object -Property NumberOfLogicalProcessors | Measure-Object NumberOfLogicalProcessors -Sum).Sum"`.to_i - total_kB_ram = `powershell -Command "Get-CimInstance -class cim_physicalmemory | % $_.Capacity}"`.to_i / 1024 - rescue - end - end - # Use the same number of CPUs within Vagrant as the system, with 1 - # as a default. - # - # Use at least 512MB of RAM, and if the system has more than 2GB of - # RAM, use 1/4 of the system RAM. This seems a reasonable compromise - # between having the Vagrant guest operating system not run out of - # RAM entirely (which it basically would if we went much lower than - # 512MB) and also allowing it to use up a healthily large amount of - # RAM so it can run faster on systems that can afford it. - if cpus.nil? or cpus.zero? - cpus = 1 - end - if total_kB_ram.nil? or total_kB_ram < 2048000 - assign_ram_mb = 512 - else - assign_ram_mb = (total_kB_ram / 1024 / 4) - end - # Actually apply these CPU/memory values to the providers. - config.vm.provider :virtualbox do |vb, override| - vb.cpus = cpus - vb.memory = assign_ram_mb - vb.name = VM_NAME - vb.customize ["modifyvm", :id, "--nictype1", "Am79C973"] - - # /opt/app and /host-dot-sandstorm are used by vagrant-spk - override.vm.synced_folder "..", "/opt/app" - override.vm.synced_folder ENV["HOME"] + "/.sandstorm", "/host-dot-sandstorm" - # /vagrant is not used by vagrant-spk; we need this line so it gets disabled; if we removed the - # line, vagrant would automatically insert a synced folder in /vagrant, which is not what we want. - override.vm.synced_folder "..", "/vagrant", disabled: true - end - config.vm.provider :libvirt do |libvirt, override| - libvirt.cpus = cpus - libvirt.memory = assign_ram_mb - libvirt.default_prefix = VM_NAME - - # /opt/app and /host-dot-sandstorm are used by vagrant-spk - override.vm.synced_folder "..", "/opt/app", type: "9p", accessmode: "passthrough" - override.vm.synced_folder ENV["HOME"] + "/.sandstorm", "/host-dot-sandstorm", type: "9p", accessmode: "passthrough" - # /vagrant is not used by vagrant-spk; we need this line so it gets disabled; if we removed the - # line, vagrant would automatically insert a synced folder in /vagrant, which is not what we want. - override.vm.synced_folder "..", "/vagrant", type: "9p", accessmode: "passthrough", disabled: true - end -end diff --git a/.sandstorm/app-graphics/firefly-iii-128.png b/.sandstorm/app-graphics/firefly-iii-128.png deleted file mode 100644 index 2c587a5ed7..0000000000 Binary files a/.sandstorm/app-graphics/firefly-iii-128.png and /dev/null differ diff --git a/.sandstorm/app-graphics/firefly-iii-150.png b/.sandstorm/app-graphics/firefly-iii-150.png deleted file mode 100644 index 171538ef45..0000000000 Binary files a/.sandstorm/app-graphics/firefly-iii-150.png and /dev/null differ diff --git a/.sandstorm/app-graphics/firefly-iii-24.png b/.sandstorm/app-graphics/firefly-iii-24.png deleted file mode 100644 index a12a63355d..0000000000 Binary files a/.sandstorm/app-graphics/firefly-iii-24.png and /dev/null differ diff --git a/.sandstorm/app-graphics/firefly-iii-48.png b/.sandstorm/app-graphics/firefly-iii-48.png deleted file mode 100644 index 9a14b4c79f..0000000000 Binary files a/.sandstorm/app-graphics/firefly-iii-48.png and /dev/null differ diff --git a/.sandstorm/build.sh b/.sandstorm/build.sh deleted file mode 100755 index ea65b354dd..0000000000 --- a/.sandstorm/build.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash -# Checks if there's a composer.json, and if so, installs/runs composer. -# This script only runs once, when the app connects to sandstorm. -set -euo pipefail - -echo "In build.sh" - -cd /opt/app -cp .deploy/sandstorm/.env.sandstorm .env - -if [ -f /opt/app/composer.json ] ; then - if [ ! -f composer.phar ] ; then - curl -sS https://getcomposer.org/installer | php - fi - php composer.phar install --no-dev --no-suggest -fi - -# link storage folder -rm -rf /opt/app/storage -ln -s /var/storage /opt/app \ No newline at end of file diff --git a/.sandstorm/changelog.md b/.sandstorm/changelog.md deleted file mode 100644 index 10b6f7f9eb..0000000000 --- a/.sandstorm/changelog.md +++ /dev/null @@ -1,812 +0,0 @@ -# 4.8.1.4 - -- [Issue 2680](https://github.com/firefly-iii/firefly-iii/issues/2680) Upgrade routine would delete all transaction groups. - -# 4.8.1.2 - -Firefly III v4.8.1.2 and onwards are licensed under the GNU Affero General -Public License. This will not meaningfully change Firefly III. This -particular license has some extra provisions that protect web-applications -such as this one. You can read the full license on the website of GNU. - -https://www.gnu.org/licenses/agpl-3.0.html - -### Added -- [Issue 2589](https://github.com/firefly-iii/firefly-iii/issues/2589) Can now search using `created_on:2019-10-22` and `updated_on:2019-10-22`. -- [Issue 2494](https://github.com/firefly-iii/firefly-iii/issues/2494) Add account balance to the dropdown. -- [Issue 2603](https://github.com/firefly-iii/firefly-iii/issues/2603) New keywords for reports. -- [Issue 2618](https://github.com/firefly-iii/firefly-iii/issues/2618) Page navigation in the footer of transaction lists. -- Option in your profile to delete meta-data from your administration. -- Add average to some reports. - -### Changed -- [Issue 2593](https://github.com/firefly-iii/firefly-iii/issues/2593) The budget overview is now fully multi-currency. -- [Issue 2613](https://github.com/firefly-iii/firefly-iii/issues/2613) Improved Mailgun configuration options. -- [Issue 2510](https://github.com/firefly-iii/firefly-iii/issues/2510) Maximum transaction description length is 1000 now. -- [Issue 2616](https://github.com/firefly-iii/firefly-iii/issues/2616) Docker instances should remember their OAuth tokens and keys better (even after a restart) -- [Issue 2675](https://github.com/firefly-iii/firefly-iii/issues/2675) Some spelling in the English is fixed. - -### Removed -- [Issue 2677](https://github.com/firefly-iii/firefly-iii/issues/2677) Superfluous help popup. - -### Fixed -- [Issue 2572](https://github.com/firefly-iii/firefly-iii/issues/2572) Sometimes users would get 404's after deleting stuff. -- [Issue 2587](https://github.com/firefly-iii/firefly-iii/issues/2587) Users would be redirected to JSON endpoints. -- [Issue 2596](https://github.com/firefly-iii/firefly-iii/issues/2596) Could not remove the last tag from a transaction. -- [Issue 2598](https://github.com/firefly-iii/firefly-iii/issues/2598) Fix an issue where foreign amounts were displayed incorrectly. -- [Issue 2599](https://github.com/firefly-iii/firefly-iii/issues/2599) Could add negative amounts to piggy banks and game the system. -- [Issue 2560](https://github.com/firefly-iii/firefly-iii/issues/2560) Search supports møre chäracters. -- [Issue 2626](https://github.com/firefly-iii/firefly-iii/issues/2626) Budgets would display amounts with too many decimals. -- [Issue 2629](https://github.com/firefly-iii/firefly-iii/issues/2629) [issue 2639](https://github.com/firefly-iii/firefly-iii/issues/2639) [issue 2640](https://github.com/firefly-iii/firefly-iii/issues/2640) [issue 2643](https://github.com/firefly-iii/firefly-iii/issues/2643) Line-breaks were not properly rendered in markdown. -- [Issue 2623](https://github.com/firefly-iii/firefly-iii/issues/2623) Budget spent line would make the start of the month twice. -- [Issue 2624](https://github.com/firefly-iii/firefly-iii/issues/2624) Editing a budget would redirect you to the wrong page. -- [Issue 2633](https://github.com/firefly-iii/firefly-iii/issues/2633) New transaction form sorts budgets wrong. -- [Issue 2567](https://github.com/firefly-iii/firefly-iii/issues/2567) Could not unlink bills. -- [Issue 2647](https://github.com/firefly-iii/firefly-iii/issues/2647) Date issue in category overview -- [Issue 2657](https://github.com/firefly-iii/firefly-iii/issues/2657) Possible fix for issue with transaction overview. -- [Issue 2658](https://github.com/firefly-iii/firefly-iii/issues/2658) Fixed overview of recurring transactions. -- [Issue 2480](https://github.com/firefly-iii/firefly-iii/issues/2480) SQLite can't handle a lot of variables so big update queries are now executed in chunks. -- [Issue 2683](https://github.com/firefly-iii/firefly-iii/issues/2683) Link to the wrong transaction. - - -### Security -- [Issue 2687](https://github.com/firefly-iii/firefly-iii/issues/2687) Budget overview shows budget limit totals for all users, not just the logged-in user. - -### API -- [Issue 2609](https://github.com/firefly-iii/firefly-iii/issues/2609) Summary endpoint would not always give the correct results. -- [Issue 2638](https://github.com/firefly-iii/firefly-iii/issues/2638) Link to correct journal in API. -- [Issue 2606](https://github.com/firefly-iii/firefly-iii/issues/2606) Budget endpoint gave error. -- [Issue 2637](https://github.com/firefly-iii/firefly-iii/issues/2637) Transaction / piggy bank event endpoint now returns results. -- An undocumented end point that allows you to search for accounts. Still a bit experimental. - Use: /api/v1/search/accounts?query=something&field=all (all,iban,id,number) - -# 4.8.1.1 - -- Add some sensible maximum amounts to form inputs. -- [Issue 2561](https://github.com/firefly-iii/firefly-iii/issues/2561) Fixes a query error on the /tags page that affected some MySQL users. -- [Issue 2563](https://github.com/firefly-iii/firefly-iii/issues/2563) Two destination fields when editing a recurring transaction. -- [Issue 2564](https://github.com/firefly-iii/firefly-iii/issues/2564) Ability to browse pages in the search results. -- [Issue 2573](https://github.com/firefly-iii/firefly-iii/issues/2573) Could not submit an transaction update after an error was corrected. -- [Issue 2577](https://github.com/firefly-iii/firefly-iii/issues/2577) Upgrade routine would wrongly store the categories of split transactions. -- [Issue 2590](https://github.com/firefly-iii/firefly-iii/issues/2590) Fix an issue in the audit report. -- [Issue 2592](https://github.com/firefly-iii/firefly-iii/issues/2592) Fix an issue with YNAB import. -- [Issue 2597](https://github.com/firefly-iii/firefly-iii/issues/2597) Fix an issue where users could not delete currencies. - -# 4.8.1 (API 0.10.2) - -- Firefly III 4.8.1 requires PHP 7.3. -- Support for Greek -- [Issue 2383](https://github.com/firefly-iii/firefly-iii/issues/2383) Some tables in reports now also report percentages. -- [Issue 2389](https://github.com/firefly-iii/firefly-iii/issues/2389) Add category / budget information to transaction lists. -- [Issue 2464](https://github.com/firefly-iii/firefly-iii/issues/2464) Can now search for tag. -- [Issue 2466](https://github.com/firefly-iii/firefly-iii/issues/2466) Can order recurring transactions in a more useful manner. -- [Issue 2497](https://github.com/firefly-iii/firefly-iii/issues/2497) Transaction creation moment in hover of tag title. -- [Issue 2471](https://github.com/firefly-iii/firefly-iii/issues/2471) Added date tag to table cells. -- [Issue 2291](https://github.com/firefly-iii/firefly-iii/issues/2291) All reports are now properly multi-currency. -- [Issue 2481](https://github.com/firefly-iii/firefly-iii/issues/2481) As part of the removal of local encryption, uploads and imports are no longer encrypted. -- [Issue 2495](https://github.com/firefly-iii/firefly-iii/issues/2495) A better message of transaction submission. -- [Issue 2506](https://github.com/firefly-iii/firefly-iii/issues/2506) Some bugs in tag report fixed. -- [Issue 2510](https://github.com/firefly-iii/firefly-iii/issues/2510) All transaction descriptions cut off at 255 chars. -- Better sum in bill view. -- Clean up docker files for flawless operation. -- The bunq API has changed, and support for bunq has been disabled. -- [Issue 2470](https://github.com/firefly-iii/firefly-iii/issues/2470) Bad links for transactions. -- [Issue 2480](https://github.com/firefly-iii/firefly-iii/issues/2480) Large queries would break in SQLite. -- [Issue 2484](https://github.com/firefly-iii/firefly-iii/issues/2484) Transaction description auto-complete. -- [Issue 2487](https://github.com/firefly-iii/firefly-iii/issues/2487) Fix issues with FinTS -- [Issue 2488](https://github.com/firefly-iii/firefly-iii/issues/2488) 404 after deleting a tag. -- [Issue 2490](https://github.com/firefly-iii/firefly-iii/issues/2490) "Reset form after submission" doesn't work. -- [Issue 2492](https://github.com/firefly-iii/firefly-iii/issues/2492) After submitting and fixing an error, the error is persistent. -- [Issue 2493](https://github.com/firefly-iii/firefly-iii/issues/2493) Auto detect transaction type is a bit better now. -- [Issue 2498](https://github.com/firefly-iii/firefly-iii/issues/2498) Pressing enter in some fields breaks the form. -- [Issue 2499](https://github.com/firefly-iii/firefly-iii/issues/2499) Auto-complete issues in transaction link form. -- [Issue 2500](https://github.com/firefly-iii/firefly-iii/issues/2500) Issue when submitting edited transactions. -- [Issue 2501](https://github.com/firefly-iii/firefly-iii/issues/2501) Better error messages for empty submissions. -- [Issue 2508](https://github.com/firefly-iii/firefly-iii/issues/2508) Can remove category from transaction. -- [Issue 2516](https://github.com/firefly-iii/firefly-iii/issues/2516) Can no longer import transactions with no amount. -- [Issue 2518](https://github.com/firefly-iii/firefly-iii/issues/2518) Link in balance box goes to current period. -- [Issue 2521](https://github.com/firefly-iii/firefly-iii/issues/2521) Foreign transaction currency is hidden when the user hasn't enabled foreign currencies. -- [Issue 2522](https://github.com/firefly-iii/firefly-iii/issues/2522) Some reports were missing the "overspent" field. -- [Issue 2526](https://github.com/firefly-iii/firefly-iii/issues/2526) It was impossible to remove the budget of a transaction. -- [Issue 2527](https://github.com/firefly-iii/firefly-iii/issues/2527) Some bulk edits were buggy. -- [Issue 2539](https://github.com/firefly-iii/firefly-iii/issues/2539) Fixed a typo. -- [Issue 2545](https://github.com/firefly-iii/firefly-iii/issues/2545) Deleted tags would still show up. -- [Issue 2547](https://github.com/firefly-iii/firefly-iii/issues/2547) Changing the opening balance to 0 will now remove it. -- [Issue 2549](https://github.com/firefly-iii/firefly-iii/issues/2549) Can now clone transactions again. -- [Issue 2550](https://github.com/firefly-iii/firefly-iii/issues/2550) Added missing locales for moment.js -- [Issue 2553](https://github.com/firefly-iii/firefly-iii/issues/2553) Fixed an issue with split transactions. -- [Issue 2555](https://github.com/firefly-iii/firefly-iii/issues/2555) Better error for when you submit the same account twice. -- [Issue 2439](https://github.com/firefly-iii/firefly-iii/issues/2439) SQL error in API post new user -- ... and many other bugs. -- [Issue 2475](https://github.com/firefly-iii/firefly-iii/issues/2475) Tags are now the same for all views. -- [Issue 2476](https://github.com/firefly-iii/firefly-iii/issues/2476) Amount is now represented equally in all views. -- [Issue 2477](https://github.com/firefly-iii/firefly-iii/issues/2477) Rules are easier to update. -- [Issue 2483](https://github.com/firefly-iii/firefly-iii/issues/2483) Several consistencies fixed. -- [Issue 2484](https://github.com/firefly-iii/firefly-iii/issues/2484) Transaction link view fixed. -- [Issue 2557](https://github.com/firefly-iii/firefly-iii/issues/2557) Fix for issue in summary API -- No longer have to submit mandatory fields to account end point. Just submit the field you wish to update, the rest will be untouched. -- Rules will no longer list the "user-action" trigger Rules will have a "moment" field that says either "update-journal" or "store-journal". - -# 4.8.0.3 (API 0.10.1) - -- Autocomplete for transaction description. -- [Issue 2438](https://github.com/firefly-iii/firefly-iii/issues/2438) Some balance issues when working with multiple currencies (a known issue) -- [Issue 2425](https://github.com/firefly-iii/firefly-iii/issues/2425) Transaction edit/create form is weird with the enter button -- [Issue 2424](https://github.com/firefly-iii/firefly-iii/issues/2424) auto complete tab doesn't work. -- [Issue 2441](https://github.com/firefly-iii/firefly-iii/issues/2441) Inconsistent character limit for currencies. -- [Issue 2443](https://github.com/firefly-iii/firefly-iii/issues/2443) 500 error when submitting budgets -- [Issue 2446](https://github.com/firefly-iii/firefly-iii/issues/2446) Can't update current amount for piggy bank -- [Issue 2440](https://github.com/firefly-iii/firefly-iii/issues/2440) Errors when interacting with recurring transactions -- [Issue 2439](https://github.com/firefly-iii/firefly-iii/issues/2439) SQL error in API post new user -- Transaction report (after import, over email) is mostly empty -- Mass edit checkboxes doesn't work in a tag overview -- [Issue 2437](https://github.com/firefly-iii/firefly-iii/issues/2437) CPU issues when viewing accounts, probably run-away queries. -- [Issue 2432](https://github.com/firefly-iii/firefly-iii/issues/2432) Can't disable all currencies except one / can't disable EUR and switch to something else. -- Option to edit the budget is gone from edit transaction form. -- [Issue 2453](https://github.com/firefly-iii/firefly-iii/issues/2453) Search view things -- [Issue 2449](https://github.com/firefly-iii/firefly-iii/issues/2449) Can't add invoice date. -- [Issue 2448](https://github.com/firefly-iii/firefly-iii/issues/2448) Bad link in transaction overview -- [Issue 2447](https://github.com/firefly-iii/firefly-iii/issues/2447) Bad link in bill overview -- Improvements to various API end-points. Docs are updated. - -# 4.8.0.2 (API 0.10.0) - -- [Issue 2203](https://github.com/firefly-iii/firefly-iii/issues/2203) Reconciliation inconsistencies. -- [Issue 2392](https://github.com/firefly-iii/firefly-iii/issues/2392) Bad namespace leads to installation errors. -- [Issue 2393](https://github.com/firefly-iii/firefly-iii/issues/2393) Missing budget selector. -- [Issue 2402](https://github.com/firefly-iii/firefly-iii/issues/2402) bad amounts in default report -- [Issue 2405](https://github.com/firefly-iii/firefly-iii/issues/2405) Due date can't be edited. -- [Issue 2404](https://github.com/firefly-iii/firefly-iii/issues/2404) bad page indicator in the "no category" transaction overview. -- [Issue 2407](https://github.com/firefly-iii/firefly-iii/issues/2407) Fix recurring transaction dates -- [Issue 2410](https://github.com/firefly-iii/firefly-iii/issues/2410) Transaction links inconsistent -- [Issue 2414](https://github.com/firefly-iii/firefly-iii/issues/2414) Can't edit recurring transactions -- [Issue 2415](https://github.com/firefly-iii/firefly-iii/issues/2415) Return here + reset form results in empty transaction form -- [Issue 2416](https://github.com/firefly-iii/firefly-iii/issues/2416) Some form inconsistencies. -- [Issue 2418](https://github.com/firefly-iii/firefly-iii/issues/2418) Reports are inaccurate or broken. -- [Issue 2422](https://github.com/firefly-iii/firefly-iii/issues/2422) PHP error when matching transactions. -- [Issue 2423](https://github.com/firefly-iii/firefly-iii/issues/2423) Reports are inaccurate or broken. -- [Issue 2426](https://github.com/firefly-iii/firefly-iii/issues/2426) Inconsistent documentation and instructions. -- [Issue 2427](https://github.com/firefly-iii/firefly-iii/issues/2427) Deleted account and "initial balance" accounts may appear in dropdowns. -- [Issue 2428](https://github.com/firefly-iii/firefly-iii/issues/2428) Reports are inaccurate or broken. -- [Issue 2429](https://github.com/firefly-iii/firefly-iii/issues/2429) Typo leads to SQL errors in available budgets API -- [Issue 2431](https://github.com/firefly-iii/firefly-iii/issues/2431) Issues creating new recurring transactions. -- [Issue 2434](https://github.com/firefly-iii/firefly-iii/issues/2434) You can edit the initial balance transaction but it fails to save. -- ARM build should work now. - -# 4.8.0.1 (API 0.10.0) - -- The balance box on the dashboard shows only negative numbers, skewing the results. -- Selecting or using tags in new transactions results in an error. -- Editing a transaction with tags will drop the tags from the transaction. -- [Issue 2382](https://github.com/firefly-iii/firefly-iii/issues/2382) Ranger config -- [Issue 2384](https://github.com/firefly-iii/firefly-iii/issues/2384) When upgrading manually, you may see: `The command "generate-keys" does not exist.` -- [Issue 2385](https://github.com/firefly-iii/firefly-iii/issues/2385) When upgrading manually, the firefly:verify command may fail to run. -- [Issue 2388](https://github.com/firefly-iii/firefly-iii/issues/2388) When registering as a new user, leaving the opening balance at 0 will give you an error. -- [Issue 2395](https://github.com/firefly-iii/firefly-iii/issues/2395) Editing split transactions is broken. -- [Issue 2397](https://github.com/firefly-iii/firefly-iii/issues/2397) Transfers are stored the wrong way around. -- [Issue 2399](https://github.com/firefly-iii/firefly-iii/issues/2399) Not all account balances are updated after you create a new transaction. -- [Issue 2401](https://github.com/firefly-iii/firefly-iii/issues/2401) Could not delete a split from a split transaction. - -# 4.8.0 (API 0.10.0) - -- Hungarian translation! -- New database model that changes the concept of "split transactions"; -- New installation routine with rewritten database integrity tests and upgrade code; -- Rewritten screen to create transactions which will now completely rely on the API; -- Most terminal commands now have the prefix `firefly-iii`. -- New MFA code that will generate backup codes for you and is more robust. MFA will have to be re-enabled for ALL users. -- This will probably be the last Firefly III version to have import routines for files, Bunq and others. These will be moved to separate applications that use the Firefly III API. -- The export function has been removed. -- [Issue 1652](https://github.com/firefly-iii/firefly-iii/issues/1652), new strings to use during the import. -- [Issue 1860](https://github.com/firefly-iii/firefly-iii/issues/1860), fixing the default currency not being on top in a JSON box. -- [Issue 2031](https://github.com/firefly-iii/firefly-iii/issues/2031), a fix for Triodos imports. -- [Issue 2153](https://github.com/firefly-iii/firefly-iii/issues/2153), problems with editing credit cards. -- [Issue 2179](https://github.com/firefly-iii/firefly-iii/issues/2179), consistent and correct redirect behavior. -- [Issue 2180](https://github.com/firefly-iii/firefly-iii/issues/2180), API issues with foreign amounts. -- [Issue 2187](https://github.com/firefly-iii/firefly-iii/issues/2187), bulk editing reconciled transactions was broken. -- [Issue 2188](https://github.com/firefly-iii/firefly-iii/issues/2188), redirect loop in bills -- [Issue 2189](https://github.com/firefly-iii/firefly-iii/issues/2189), bulk edit could not handle tags. -- [Issue 2203](https://github.com/firefly-iii/firefly-iii/issues/2203), [issue 2208](https://github.com/firefly-iii/firefly-iii/issues/2208), [issue 2352](https://github.com/firefly-iii/firefly-iii/issues/2352), reconciliation fixes -- [Issue 2204](https://github.com/firefly-iii/firefly-iii/issues/2204), transaction type fix -- [Issue 2211](https://github.com/firefly-iii/firefly-iii/issues/2211), mass edit fixes. -- [Issue 2212](https://github.com/firefly-iii/firefly-iii/issues/2212), bug in the API when deleting objects. -- [Issue 2214](https://github.com/firefly-iii/firefly-iii/issues/2214), could not view attachment. -- [Issue 2219](https://github.com/firefly-iii/firefly-iii/issues/2219), max amount was a little low. -- [Issue 2239](https://github.com/firefly-iii/firefly-iii/issues/2239), fixed ordering issue. -- [Issue 2246](https://github.com/firefly-iii/firefly-iii/issues/2246), could not disable EUR. -- [Issue 2268](https://github.com/firefly-iii/firefly-iii/issues/2268), could not import into liability accounts. -- [Issue 2293](https://github.com/firefly-iii/firefly-iii/issues/2293), could not trigger rule on deposits in some circumstances -- [Issue 2314](https://github.com/firefly-iii/firefly-iii/issues/2314), could not trigger rule on transfers in some circumstances -- [Issue 2325](https://github.com/firefly-iii/firefly-iii/issues/2325), some balance issues on the frontpage. -- [Issue 2328](https://github.com/firefly-iii/firefly-iii/issues/2328), some date range issues in reports -- [Issue 2331](https://github.com/firefly-iii/firefly-iii/issues/2331), some broken fields in reports. -- [Issue 2333](https://github.com/firefly-iii/firefly-iii/issues/2333), API issues with piggy banks. -- [Issue 2355](https://github.com/firefly-iii/firefly-iii/issues/2355), configuration issues with LDAP -- [Issue 2361](https://github.com/firefly-iii/firefly-iii/issues/2361), some ordering issues. -- Updated API to reflect the changes in the database. -- New API end-point for a summary of your data. -- Some new API charts. - -# 4.7.17.6 (API 0.9.2) - -- XSS issue in liability account redirect, found by [@0x2500](https://github.com/0x2500). - -# 4.7.17.5 (API 0.9.2) - -- Several XSS issues, found by [@0x2500](https://github.com/0x2500). - -# 4.7.17.4 (API 0.9.2) - -- Several XSS issues, found by [@0x2500](https://github.com/0x2500). - -# 4.7.17.3 (API 0.9.2) - -- XSS bug in file uploads (x2), found by [@dayn1ne](https://github.com/dayn1ne). -- XSS bug in search, found by [@dayn1ne](https://github.com/dayn1ne). - -# 4.7.17.2 (API 0.9.2) -- XSS bug in budget title, found by [@dayn1ne](https://github.com/dayn1ne). - -# 4.7.17 (API 0.9.2) -- Support for Norwegian! -- Clear cache during install routine. -- Add Firefly III version number to install routine. -- Initial release. -- [Issue 2159](https://github.com/firefly-iii/firefly-iii/issues/2159) Bad redirect due to Laravel upgrade. -- [Issue 2166](https://github.com/firefly-iii/firefly-iii/issues/2166) Importer had some issues with distinguishing double transfers. -- [Issue 2167](https://github.com/firefly-iii/firefly-iii/issues/2167) New LDAP package gave some configuration changes. -- [Issue 2173](https://github.com/firefly-iii/firefly-iii/issues/2173) Missing class when generating 2FA codes. - -# 4.7.16 (API 0.9.2) -- 4.7.16 was released to fix a persistent issue with broken user preferences. -- Firefly III now uses Laravel 5.8 - -# 4.7.15 (API 0.9.2) -- 4.7.15 was released to fix some issues upgrading from older versions. -- [Issue 2128](https://github.com/firefly-iii/firefly-iii/issues/2128) Support for Postgres SSL -- [Issue 2120](https://github.com/firefly-iii/firefly-iii/issues/2120) Add a missing meta tag, thanks to @lastlink -- Search is a lot faster now. -- [Issue 2125](https://github.com/firefly-iii/firefly-iii/issues/2125) Decryption issues during upgrade -- [Issue 2130](https://github.com/firefly-iii/firefly-iii/issues/2130) Fixed database migrations and rollbacks. -- [Issue 2135](https://github.com/firefly-iii/firefly-iii/issues/2135) Date fixes in transaction overview - -# 4.7.14 (API 0.9.2) -- 4.7.14 was released to fix an issue with the Composer installation script. - -# 4.7.13 (API 0.9.2) -- 4.7.13 was released to fix an issue that affected the Softaculous build. -- A routine has been added that warns about transactions with a 0.00 amount. -- PHP maximum execution time is now 600 seconds in the Docker image. -- Moved several files outside of the root of Firefly III -- Fix issue where missing preference breaks the database upgrade. -- [Issue 2100](https://github.com/firefly-iii/firefly-iii/issues/2100) Mass edit transactions results in a reset of the date. - -# 4.7.12 -- 4.7.12 was released to fix several shortcomings in v4.7.11's Docker image. Those in turn were caused by me. My apologies. -- [Issue 2085](https://github.com/firefly-iii/firefly-iii/issues/2085) Upgraded the LDAP code. To keep using LDAP, set the `LOGIN_PROVIDER` to `ldap`. -- [Issue 2061](https://github.com/firefly-iii/firefly-iii/issues/2061) Some users reported empty update popups. -- [Issue 2070](https://github.com/firefly-iii/firefly-iii/issues/2070) A cache issue prevented rules from being applied correctly. -- [Issue 2071](https://github.com/firefly-iii/firefly-iii/issues/2071) Several issues with Postgres and date values with time zone information in them. -- [Issue 2081](https://github.com/firefly-iii/firefly-iii/issues/2081) Rules were not being applied when importing using FinTS. -- [Issue 2082](https://github.com/firefly-iii/firefly-iii/issues/2082) The mass-editor changed all dates to today. - -# 4.7.11 -- Experimental audit logging channel to track important events (separate from debug logging). -- [Issue 2003](https://github.com/firefly-iii/firefly-iii/issues/2003), [issue 2006](https://github.com/firefly-iii/firefly-iii/issues/2006) Transactions can be stored with a timestamp. The user-interface does not support this yet. But the API does. -- Docker image tags a new manifest for arm and amd64. -- [skuzzle](https://github.com/skuzzle) removed an annoying console.log statement. -- [Issue 2048](https://github.com/firefly-iii/firefly-iii/issues/2048) Fix "Are you sure?" popup, thanks to @nescafe2002! -- [Issue 2049](https://github.com/firefly-iii/firefly-iii/issues/2049) Empty preferences would crash Firefly III. -- [Issue 2052](https://github.com/firefly-iii/firefly-iii/issues/2052) Rules could not auto-covert to liabilities. -- Webbased upgrade routine will also decrypt the database. -- Last use date for categories was off. -- The `date`-field in any transaction object now returns a ISO 8601 timestamp instead of a date. - -# 4.7.10 -- [Issue 2037](https://github.com/firefly-iii/firefly-iii/issues/2037) Added some new magic keywords to reports. -- Added a new currency exchange rate service, [ratesapi.io](https://ratesapi.io/), that does not require expensive API keys. Built by [@BoGnY](https://github.com/BoGnY). -- Added Chinese Traditional translations. Thanks! -- [Issue 1977](https://github.com/firefly-iii/firefly-iii/issues/1977) Docker image now includes memcached support -- [Issue 2031](https://github.com/firefly-iii/firefly-iii/issues/2031) A new generic debit/credit indicator for imports. -- The new Docker image no longer has the capability to run cron jobs, and will no longer generate your recurring transactions for you. This has been done to simplify the build and make sure your Docker container runs one service, as it should. To set up a cron job for your new Docker container, [check out the documentation](https://docs.firefly-iii.org/en/latest/installation/cronjob.html). -- Due to a change in the database structure, this upgrade will reset your preferences. Sorry about that. -- I will no longer accept PR's that introduce new currencies. -- Firefly III no longer encrypts the database and will [decrypt the database]() on its first run. -- [Issue 1923](https://github.com/firefly-iii/firefly-iii/issues/1923) Broken window position for date picker. -- [Issue 1967](https://github.com/firefly-iii/firefly-iii/issues/1967) Attachments were hidden in bill view. -- [Issue 1927](https://github.com/firefly-iii/firefly-iii/issues/1927) It was impossible to make recurring transactions skip. -- [Issue 1929](https://github.com/firefly-iii/firefly-iii/issues/1929) Fix the recurring transactions calendar overview. -- [Issue 1933](https://github.com/firefly-iii/firefly-iii/issues/1933) Fixed a bug that made it impossible to authenticate to FreeIPA servers. -- [Issue 1938](https://github.com/firefly-iii/firefly-iii/issues/1938) The importer can now handle the insane way Postbank (DE) formats its numbers. -- [Issue 1942](https://github.com/firefly-iii/firefly-iii/issues/1942) Favicons are relative so Scriptaculous installations work better. -- [Issue 1944](https://github.com/firefly-iii/firefly-iii/issues/1944) Make sure that the search allows you to mass-select transactions. -- [Issue 1945](https://github.com/firefly-iii/firefly-iii/issues/1945) Slight UI change so the drop-down menu renders better. -- [Issue 1955](https://github.com/firefly-iii/firefly-iii/issues/1955) Fixed a bug in the category report. -- [Issue 1968](https://github.com/firefly-iii/firefly-iii/issues/1968) The yearly range would jump to 1-Jan / 1-Jan instead of 1-Jan / 31-Dec -- [Issue 1975](https://github.com/firefly-iii/firefly-iii/issues/1975) Fixed explanation for missing credit card liabilities. -- [Issue 1979](https://github.com/firefly-iii/firefly-iii/issues/1979) Make sure tags are trimmed. -- [Issue 1983](https://github.com/firefly-iii/firefly-iii/issues/1983) Could not use your favorite decimal separator. -- [Issue 1989](https://github.com/firefly-iii/firefly-iii/issues/1989) Bug in YNAB importer forced you to select all accounts. -- [Issue 1990](https://github.com/firefly-iii/firefly-iii/issues/1990) Rule description was invisible in edit screen. -- [Issue 1996](https://github.com/firefly-iii/firefly-iii/issues/1996) Deleted budget would inadvertently also hide transactions. -- [Issue 2001](https://github.com/firefly-iii/firefly-iii/issues/2001) Various issues with tag chart view. -- [Issue 2009](https://github.com/firefly-iii/firefly-iii/issues/2009) Could not change recurrence back to "forever". -- [Issue 2033](https://github.com/firefly-iii/firefly-iii/issues/2033) Longitude can go from -180 to 180. -- [Issue 2034](https://github.com/firefly-iii/firefly-iii/issues/2034) Rules were not being triggered in mass-edit. -- [Issue 2043](https://github.com/firefly-iii/firefly-iii/issues/2043) In rare instances the repetition of a recurring transaction was displayed incorrectly. -- Fixed broken translations in the recurring transactions overview. -- When you create a recurring transfer you make make it fill (or empty) a piggy bank. This was not working, despite a fix in 4.7.8. -- Fixed a bug where the importer would not be capable of creating new currencies. -- Rule trigger tester would skip the amount. -- OAuth2 form can now submit back to original requester. -- Submitting transactions with a disabled currency will auto-enable the currency. -- The documentation now states that "Deposit" is a possible return when you get a transaction. -- "savingAsset" was incorrectly documented as "savingsAsset". -- Account endpoint can now return type "reconciliation" and "initial-balance" correctly. -- New API endpoint under `/summary/basic` that gives you a basic overview of the user's finances. -- New API endpoints under `/chart/*` to allow you to render charts. -- `/accounts/x/transactions` now supports the limit query parameter. -- `/budgets/x/transactions` now supports the limit query parameter. -- `/available_budgets` now supports custom start and end date parameters. -- New endpoint `/preferences/prefName` to retrieve a single preference. -- Added field `account_name` to all piggy banks. -- New tag cloud in API. - -# 4.7.9 -- [Issue 1622](https://github.com/firefly-iii/firefly-iii/issues/1622) Can now unlink a transaction from a bill. -- [Issue 1848](https://github.com/firefly-iii/firefly-iii/issues/1848) Added support for the Swiss Franc. -- [Issue 1828](https://github.com/firefly-iii/firefly-iii/issues/1828) Focus on fields for easy access. -- [Issue 1859](https://github.com/firefly-iii/firefly-iii/issues/1859) Warning when seeding database. -- Completely rewritten API. Check out the documentation [here](https://api-docs.firefly-iii.org/). -- Currencies can now be enabled and disabled, making for cleaner views. -- You can disable the `X-Frame-Options` header if this is necessary. -- New fancy favicons. -- Updated and improved docker build. -- Docker build no longer builds its own cURL. -- [Issue 1607](https://github.com/firefly-iii/firefly-iii/issues/1607) [issue 1857](https://github.com/firefly-iii/firefly-iii/issues/1857) [issue 1895](https://github.com/firefly-iii/firefly-iii/issues/1895) Improved bunq import and added support for auto-savings. -- [Issue 1766](https://github.com/firefly-iii/firefly-iii/issues/1766) Extra commands so cache dir is owned by www user. -- [Issue 1811](https://github.com/firefly-iii/firefly-iii/issues/1811) 404 when generating report without options. -- [Issue 1835](https://github.com/firefly-iii/firefly-iii/issues/1835) Strange debug popup removed. -- [Issue 1840](https://github.com/firefly-iii/firefly-iii/issues/1840) Error when exporting data. -- [Issue 1857](https://github.com/firefly-iii/firefly-iii/issues/1857) Bunq import words again (see above). -- [Issue 1858](https://github.com/firefly-iii/firefly-iii/issues/1858) SQL errors when importing CSV. -- [Issue 1861](https://github.com/firefly-iii/firefly-iii/issues/1861) Period navigator was broken. -- [Issue 1864](https://github.com/firefly-iii/firefly-iii/issues/1864) First description was empty on split transactions. -- [Issue 1865](https://github.com/firefly-iii/firefly-iii/issues/1865) Bad math when showing categories. -- [Issue 1868](https://github.com/firefly-iii/firefly-iii/issues/1868) Fixes to FinTS import. -- [Issue 1872](https://github.com/firefly-iii/firefly-iii/issues/1872) Some images had 404's. -- [Issue 1877](https://github.com/firefly-iii/firefly-iii/issues/1877) Several encryption / decryption issues. -- [Issue 1878](https://github.com/firefly-iii/firefly-iii/issues/1878) Wrong nav links -- [Issue 1884](https://github.com/firefly-iii/firefly-iii/issues/1884) Budget API improvements (see above) -- [Issue 1888](https://github.com/firefly-iii/firefly-iii/issues/1888) Transaction API improvements (see above) -- [Issue 1890](https://github.com/firefly-iii/firefly-iii/issues/1890) Fixes in Bills API -- [Issue 1891](https://github.com/firefly-iii/firefly-iii/issues/1891) Typo fixed. -- [Issue 1893](https://github.com/firefly-iii/firefly-iii/issues/1893) Update piggies from recurring transactions. -- [Issue 1898](https://github.com/firefly-iii/firefly-iii/issues/1898) Bug in tag report. -- [Issue 1901](https://github.com/firefly-iii/firefly-iii/issues/1901) Redirect when cloning transactions. -- [Issue 1909](https://github.com/firefly-iii/firefly-iii/issues/1909) Date range fixes. -- [Issue 1916](https://github.com/firefly-iii/firefly-iii/issues/1916) Date range fixes. - -# 4.7.8 - -- [Issue 1005](https://github.com/firefly-iii/firefly-iii/issues/1005) You can now configure Firefly III to use LDAP. -- [Issue 1071](https://github.com/firefly-iii/firefly-iii/issues/1071) You can execute transaction rules using the command line (so you can cronjob it) -- [Issue 1108](https://github.com/firefly-iii/firefly-iii/issues/1108) You can now reorder budgets. -- [Issue 1159](https://github.com/firefly-iii/firefly-iii/issues/1159) The ability to import transactions from FinTS-enabled banks. -- [Issue 1727](https://github.com/firefly-iii/firefly-iii/issues/1727) You can now use SFTP as storage for uploads and exports. -- [Issue 1733](https://github.com/firefly-iii/firefly-iii/issues/1733) You can configure Firefly III not to send emails with transaction information in them. -- [Issue 1040](https://github.com/firefly-iii/firefly-iii/issues/1040) Fixed various things that would not scale properly in the past. -- [Issue 1771](https://github.com/firefly-iii/firefly-iii/issues/1771) A link to the transaction that fits the bill. -- [Issue 1800](https://github.com/firefly-iii/firefly-iii/issues/1800) Icon updated to match others. -- MySQL database connection now forces the InnoDB to be used. -- [Issue 1583](https://github.com/firefly-iii/firefly-iii/issues/1583) Some times recurring transactions would not fire. -- [Issue 1607](https://github.com/firefly-iii/firefly-iii/issues/1607) Problems with the bunq API, finally solved?! (I feel like a clickbait YouTube video now) -- [Issue 1698](https://github.com/firefly-iii/firefly-iii/issues/1698) Certificate problems in the Docker container -- [Issue 1751](https://github.com/firefly-iii/firefly-iii/issues/1751) Bug in autocomplete -- [Issue 1760](https://github.com/firefly-iii/firefly-iii/issues/1760) Tag report bad math -- [Issue 1765](https://github.com/firefly-iii/firefly-iii/issues/1765) API inconsistencies for piggy banks. -- [Issue 1774](https://github.com/firefly-iii/firefly-iii/issues/1774) Integer exception in SQLite databases -- [Issue 1775](https://github.com/firefly-iii/firefly-iii/issues/1775) Heroku now supports all locales -- [Issue 1778](https://github.com/firefly-iii/firefly-iii/issues/1778) More autocomplete problems fixed -- [Issue 1747](https://github.com/firefly-iii/firefly-iii/issues/1747) Rules now stop at the right moment. -- [Issue 1781](https://github.com/firefly-iii/firefly-iii/issues/1781) Problems when creating new rules. -- [Issue 1784](https://github.com/firefly-iii/firefly-iii/issues/1784) Can now create a liability with an empty balance. -- [Issue 1785](https://github.com/firefly-iii/firefly-iii/issues/1785) Redirect error -- [Issue 1790](https://github.com/firefly-iii/firefly-iii/issues/1790) Show attachments for bills. -- [Issue 1792](https://github.com/firefly-iii/firefly-iii/issues/1792) Mention excluded accounts. -- [Issue 1798](https://github.com/firefly-iii/firefly-iii/issues/1798) Could not recreate deleted piggy banks -- [Issue 1805](https://github.com/firefly-iii/firefly-iii/issues/1805) Fixes when handling foreign currencies -- [Issue 1807](https://github.com/firefly-iii/firefly-iii/issues/1807) Also decrypt deleted records. -- [Issue 1812](https://github.com/firefly-iii/firefly-iii/issues/1812) Fix in transactions API -- [Issue 1815](https://github.com/firefly-iii/firefly-iii/issues/1815) Opening balance account name can now be translated. -- [Issue 1830](https://github.com/firefly-iii/firefly-iii/issues/1830) Multi-user in a single browser could leak autocomplete data. - -# 4.7.7 -- [Issue 954](https://github.com/firefly-iii/firefly-iii/issues/954) Some additional view chart ranges -- [Issue 1710](https://github.com/firefly-iii/firefly-iii/issues/1710) Added a new currency ([hamuz](https://github.com/hamuz)) -- Transactions will now store (in the database) how they were created. -- [Issue 907](https://github.com/firefly-iii/firefly-iii/issues/907) Better and more options on the transaction list. -- [Issue 1450](https://github.com/firefly-iii/firefly-iii/issues/1450) Add a rule to change the type of a transaction automagically -- [Issue 1701](https://github.com/firefly-iii/firefly-iii/issues/1701) Fix reference to PHP executable ([hertzg](https://github.com/hertzg)) -- Budget limits have currency information, for future expansion. -- Some charts and pages can handle multiple currencies better. -- New GA code for those who use it. -- The credit card liability type has been removed. -- [Issue 896](https://github.com/firefly-iii/firefly-iii/issues/896) Better redirection when coming from deleted objects. -- [Issue 1519](https://github.com/firefly-iii/firefly-iii/issues/1519) Fix autocomplete tags -- [Issue 1607](https://github.com/firefly-iii/firefly-iii/issues/1607) Some fixes for the bunq api calls -- [Issue 1650](https://github.com/firefly-iii/firefly-iii/issues/1650) Add a negated amount column for CSV imports ([hamuz](https://github.com/hamuz)) -- [Issue 1658](https://github.com/firefly-iii/firefly-iii/issues/1658) Make font heavy again. -- [Issue 1660](https://github.com/firefly-iii/firefly-iii/issues/1660) Add a negated amount column for CSV imports ([hamuz](https://github.com/hamuz)) -- [Issue 1667](https://github.com/firefly-iii/firefly-iii/issues/1667) Fix pie charts -- [Issue 1668](https://github.com/firefly-iii/firefly-iii/issues/1668) YNAB iso_code fix -- [Issue 1670](https://github.com/firefly-iii/firefly-iii/issues/1670) Fix piggy bank API error -- [Issue 1671](https://github.com/firefly-iii/firefly-iii/issues/1671) More options for liability accounts. -- [Issue 1673](https://github.com/firefly-iii/firefly-iii/issues/1673) Fix reconciliation issues. -- [Issue 1675](https://github.com/firefly-iii/firefly-iii/issues/1675) Wrong sum in tag report. -- [Issue 1679](https://github.com/firefly-iii/firefly-iii/issues/1679) Change type of a transaction wouldn't trigger rules. -- [Issue 1682](https://github.com/firefly-iii/firefly-iii/issues/1682) Add liability accounts to transaction conversion -- [Issue 1683](https://github.com/firefly-iii/firefly-iii/issues/1683) See matching transaction showed transfers twice. -- [Issue 1685](https://github.com/firefly-iii/firefly-iii/issues/1685) fix autocomplete for rules -- [Issue 1690](https://github.com/firefly-iii/firefly-iii/issues/1690) Missing highlighted button in intro popup -- [Issue 1691](https://github.com/firefly-iii/firefly-iii/issues/1691) No mention of liabilities in demo text -- [Issue 1695](https://github.com/firefly-iii/firefly-iii/issues/1695) Small fixes in bills pages. -- [Issue 1708](https://github.com/firefly-iii/firefly-iii/issues/1708) Fix by [mathieupost](https://github.com/mathieupost) for bunq -- [Issue 1709](https://github.com/firefly-iii/firefly-iii/issues/1709) Fix oauth buttons -- [Issue 1712](https://github.com/firefly-iii/firefly-iii/issues/1712) Double slash fix by [hamuz](https://github.com/hamuz) -- [Issue 1719](https://github.com/firefly-iii/firefly-iii/issues/1719) Add missing accounts to API -- [Issue 1720](https://github.com/firefly-iii/firefly-iii/issues/1720) Fix validation for transaction type. -- [Issue 1723](https://github.com/firefly-iii/firefly-iii/issues/1723) API broken for currency exchange rates. -- [Issue 1728](https://github.com/firefly-iii/firefly-iii/issues/1728) Fix problem with transaction factory. -- [Issue 1729](https://github.com/firefly-iii/firefly-iii/issues/1729) Fix bulk transaction editor -- [Issue 1731](https://github.com/firefly-iii/firefly-iii/issues/1731) API failure for budget limits. -- Secure headers now allow Mapbox and the 2FA QR code. - -# 4.7.6.2 -- Docker file builds again. -- Fix CSS of OAuth2 authorization view. - -# 4.7.6.1 -- An issue where I switched variables from the Docker `.env` file to the normal `.env` file and vice versa -- breaking both. -- [Issue 1649](https://github.com/firefly-iii/firefly-iii/issues/1649) 2FA QR code would not show up due to very strict security policy headers -- Docker build gave a cURL error whenever it runs PHP commands. - -# 4.7.6 -- [Issue 145](https://github.com/firefly-iii/firefly-iii/issues/145) You can now download transactions from YNAB. -- [Issue 306](https://github.com/firefly-iii/firefly-iii/issues/306) You can now add liabilities to Firefly III. -- [Issue 740](https://github.com/firefly-iii/firefly-iii/issues/740) Various charts are now currency aware. -- [Issue 833](https://github.com/firefly-iii/firefly-iii/issues/833) Bills can use non-default currencies. -- [Issue 1578](https://github.com/firefly-iii/firefly-iii/issues/1578) Firefly III will notify you if the cron job hasn't fired. -- [Issue 1623](https://github.com/firefly-iii/firefly-iii/issues/1623) New transactions will link back from the success message. -- [Issue 1624](https://github.com/firefly-iii/firefly-iii/issues/1624) transactions will link to the object. -- You can call the cron job over the web now (see docs). -- You don't need to call the cron job every minute any more. -- Various charts are now red/green to signify income and expenses. -- Option to add or remove accounts from the net worth calculations. -- This will be the last release on PHP 7.1. Future versions will require PHP 7.2. -- [Issue 1460](https://github.com/firefly-iii/firefly-iii/issues/1460) Downloading transactions from bunq should go more smoothly. -- [Issue 1464](https://github.com/firefly-iii/firefly-iii/issues/1464) Fixed the docker file to work on Raspberry Pi's. -- [Issue 1540](https://github.com/firefly-iii/firefly-iii/issues/1540) The Docker file now has a working cron job for recurring transactions. -- [Issue 1564](https://github.com/firefly-iii/firefly-iii/issues/1564) Fix double transfers when importing from bunq. -- [Issue 1575](https://github.com/firefly-iii/firefly-iii/issues/1575) Some views would give a XSRF token warning -- [Issue 1576](https://github.com/firefly-iii/firefly-iii/issues/1576) Fix assigning budgets -- [Issue 1580](https://github.com/firefly-iii/firefly-iii/issues/1580) Missing string for translation -- [Issue 1581](https://github.com/firefly-iii/firefly-iii/issues/1581) Expand help text -- [Issue 1584](https://github.com/firefly-iii/firefly-iii/issues/1584) Link to administration is back. -- [Issue 1586](https://github.com/firefly-iii/firefly-iii/issues/1586) Date fields in import were mislabeled. -- [Issue 1593](https://github.com/firefly-iii/firefly-iii/issues/1593) Link types are translatable. -- [Issue 1594](https://github.com/firefly-iii/firefly-iii/issues/1594) Very long breadcrumbs are weird. -- [Issue 1598](https://github.com/firefly-iii/firefly-iii/issues/1598) Fix budget calculations. -- [Issue 1597](https://github.com/firefly-iii/firefly-iii/issues/1597) Piggy banks are always inactive. -- [Issue 1605](https://github.com/firefly-iii/firefly-iii/issues/1605) System will ignore foreign currency setting if user doesn't indicate the amount. -- [Issue 1608](https://github.com/firefly-iii/firefly-iii/issues/1608) Spelling error in command line import. -- [Issue 1609](https://github.com/firefly-iii/firefly-iii/issues/1609) Link to budgets page was absolute. -- [Issue 1615](https://github.com/firefly-iii/firefly-iii/issues/1615) Fix currency bug in transactions. -- [Issue 1616](https://github.com/firefly-iii/firefly-iii/issues/1616) Fix null pointer exception in pie charts. -- [Issue 1617](https://github.com/firefly-iii/firefly-iii/issues/1617) Fix for complex tag names in URL's. -- [Issue 1620](https://github.com/firefly-iii/firefly-iii/issues/1620) Fixed index reference in API. -- [Issue 1639](https://github.com/firefly-iii/firefly-iii/issues/1639) Firefly III trusts the Heroku load balancer, fixing deployment on Heroku. -- [Issue 1642](https://github.com/firefly-iii/firefly-iii/issues/1642) Fix issue with split journals. -- [Issue 1643](https://github.com/firefly-iii/firefly-iii/issues/1643) Fix reconciliation issue. -- Users can no longer give income a budget. -- Fix bug in Spectre import. -- Heroku would not make you owner. -- Add `.htaccess` files to all public directories. -- New secure headers will make Firefly III slightly more secure. -- The rule "tester" will now also take the "strict"-checkbox into account. - -# 4.7.5.3 -- [Issue 1527](https://github.com/firefly-iii/firefly-iii/issues/1527), fixed views for transactions without a budget. -- [Issue 1553](https://github.com/firefly-iii/firefly-iii/issues/1553), report could not handle transactions before the first one in the system. -- [Issue 1549](https://github.com/firefly-iii/firefly-iii/issues/1549) update a budget will also update any rules that refer to that budget. -- [Issue 1530](https://github.com/firefly-iii/firefly-iii/issues/1530), fix issue with bill chart. -- [Issue 1563](https://github.com/firefly-iii/firefly-iii/issues/1563), fix piggy bank suggested amount -- [Issue 1571](https://github.com/firefly-iii/firefly-iii/issues/1571), fix OAuth in Sandstorm -- [Issue 1568](https://github.com/firefly-iii/firefly-iii/issues/1568), bug in Sandstorm user code. -- [Issue 1569](https://github.com/firefly-iii/firefly-iii/issues/1569), optimized Sandstorm build by [ocdtrekkie](https://github.com/ocdtrekkie) -- Fixed a bug where transfers would be stored inversely when using the CSV import. -- Retired the "Rabobank description"-fix, because it is no longer necessary. -- Fixed a bug where users could not delete budget limits in the API. -- Piggy bank notes are visible again. - -# 4.7.5.1 -- [Issue 1531](https://github.com/firefly-iii/firefly-iii/issues/1531), the database routine incorrectly reports empty categories. -- [Issue 1532](https://github.com/firefly-iii/firefly-iii/issues/1532), broken dropdown for autosuggest things. -- [Issue 1533](https://github.com/firefly-iii/firefly-iii/issues/1533), fix where the import could not import category names. -- [Issue 1538](https://github.com/firefly-iii/firefly-iii/issues/1538), fix a bug where Spectre would not work when ignoring rules. -- [Issue 1542](https://github.com/firefly-iii/firefly-iii/issues/1542), fix a bug where the importer was incapable of generating new currencies. -- [Issue 1541](https://github.com/firefly-iii/firefly-iii/issues/1541), no longer ignore composer.lock in Docker ignore. -- Bills are stored inactive. - -# 4.7.5 -- A new feature called "recurring transactions" that will make Firefly III automatically create transactions for you. -- New API end points for attachments, available budgets, budgets, budget limits, categories, configuration, currency exchange rates, journal links, link types, piggy banks, preferences, recurring transactions, rules, rule groups and tags. -- Added support for YunoHost. -- The 2FA secret is visible so you can type it into 2FA apps. -- Bunq and Spectre imports will now ask to apply rules. -- Sandstorm users can now make API keys. -- Various typo's in the English translations. [issue 1493](https://github.com/firefly-iii/firefly-iii/issues/1493) -- Bug where Spectre was never called [issue 1492](https://github.com/firefly-iii/firefly-iii/issues/1492) -- Clear cache after journal is created through API [issue 1483](https://github.com/firefly-iii/firefly-iii/issues/1483) -- Make sure docker directories exist [issue 1500](https://github.com/firefly-iii/firefly-iii/issues/1500) -- Broken link to bill edit [issue 1505](https://github.com/firefly-iii/firefly-iii/issues/1505) -- Several bugs in the editing of split transactions [issue 1509](https://github.com/firefly-iii/firefly-iii/issues/1509) -- Import routine ignored formatting of several date fields [issue 1510](https://github.com/firefly-iii/firefly-iii/issues/1510) -- Piggy bank events now show the correct currency [issue 1446](https://github.com/firefly-iii/firefly-iii/issues/1446) -- Inactive accounts are no longer suggested [issue 1463](https://github.com/firefly-iii/firefly-iii/issues/1463) -- Some income / expense charts are less confusing [issue 1518](https://github.com/firefly-iii/firefly-iii/issues/1518) -- Validation bug in multi-currency create view [issue 1521](https://github.com/firefly-iii/firefly-iii/issues/1521) - -# 4.7.4 -- [Issue 1409](https://github.com/firefly-iii/firefly-iii/issues/1409), add Indian Rupee and explain that users can do this themselves [issue 1413](https://github.com/firefly-iii/firefly-iii/issues/1413) -- [Issue 1445](https://github.com/firefly-iii/firefly-iii/issues/1445), upgrade Curl in Docker image. -- [Issue 1386](https://github.com/firefly-iii/firefly-iii/issues/1386), quick links to often used pages. -- [Issue 1405](https://github.com/firefly-iii/firefly-iii/issues/1405), show proposed amount to piggy banks. -- [Issue 1416](https://github.com/firefly-iii/firefly-iii/issues/1416), ability to delete lost attachments. -- A completely rewritten import routine that can handle bunq (thanks everybody for testing!), CSV files and Spectre. Please make sure you read about this at http://bit.ly/FF3-new-import -- [Issue 1392](https://github.com/firefly-iii/firefly-iii/issues/1392), explicitly mention rules are inactive (when they are). -- [Issue 1406](https://github.com/firefly-iii/firefly-iii/issues/1406), bill conversion to rules will be smarter about the rules they create. -- [Issue 1369](https://github.com/firefly-iii/firefly-iii/issues/1369), you can now properly order piggy banks again. -- [Issue 1389](https://github.com/firefly-iii/firefly-iii/issues/1389), null-pointer in the import routine. -- [Issue 1400](https://github.com/firefly-iii/firefly-iii/issues/1400), missing translation. -- [Issue 1403](https://github.com/firefly-iii/firefly-iii/issues/1403), bill would always be marked as inactive in edit screen. -- [Issue 1418](https://github.com/firefly-iii/firefly-iii/issues/1418), missing note text on bill page. -- Export routine would break when encountering un-decryptable files. -- [Issue 1425](https://github.com/firefly-iii/firefly-iii/issues/1425), empty fields when edit multiple transactions at once. -- [Issue 1449](https://github.com/firefly-iii/firefly-iii/issues/1449), bad calculations in "budget left to spend" view. -- [Issue 1451](https://github.com/firefly-iii/firefly-iii/issues/1451), same but in another view. -- [Issue 1453](https://github.com/firefly-iii/firefly-iii/issues/1453), same as [issue 1403](https://github.com/firefly-iii/firefly-iii/issues/1403). -- [Issue 1455](https://github.com/firefly-iii/firefly-iii/issues/1455), could add income to a budget. -- [Issue 1442](https://github.com/firefly-iii/firefly-iii/issues/1442), issues with editing a split deposit. -- [Issue 1452](https://github.com/firefly-iii/firefly-iii/issues/1452), date range problems with tags. -- [Issue 1458](https://github.com/firefly-iii/firefly-iii/issues/1458), same for transactions. -- [Issue 1415](https://github.com/firefly-iii/firefly-iii/issues/1415), will email you when OAuth2 keys are generated. - -# 4.7.3.2 -- Forgot to increase the version number :(. - -# 4.7.3.1 -- Fixed a critical bug where the rules-engine would fire inadvertently. - -# 4.7.3 -- Currency added to API -- Firfely III will also generate a cash wallet for new users. -- Can now reset Spectre and bunq settings -- Docker file has a time zone -- Allow database connection to be configured in Docker file -- Can now view and edit attachments in edit-screen -- User can visit hidden `/attachments` page -- [Issue 1356](https://github.com/firefly-iii/firefly-iii/issues/1356): Budgets will show the remaining amount per day -- [Issue 1367](https://github.com/firefly-iii/firefly-iii/issues/1367): Rules now come in strict and non-strict mode. -- Added a security.txt -- More support for trusted proxies -- Improved edit routine for split transactions. -- Upgrade routine can handle `proc_close` being disabled. -- Bills now use rules to match transactions, making it more flexible. -- [Issue 1328](https://github.com/firefly-iii/firefly-iii/issues/1328): piggy banks no have a more useful chart. -- Spectre API upgraded to v4 -- Move to MariaDB ([issue 1366](https://github.com/firefly-iii/firefly-iii/issues/1366)) -- Piggy banks take currency from parent account ([issue 1334](https://github.com/firefly-iii/firefly-iii/issues/1334)) -- [Issue 1341](https://github.com/firefly-iii/firefly-iii/issues/1341): Removed depricated command from dockerfile -- Several issues with docker image ([issue 1320](https://github.com/firefly-iii/firefly-iii/issues/1320), [issue 1382](https://github.com/firefly-iii/firefly-iii/issues/1382)). -- Fix giant tags and division by zero ([issue 1325](https://github.com/firefly-iii/firefly-iii/issues/1325) and others) -- Several issues with bunq import ([issue 1352](https://github.com/firefly-iii/firefly-iii/issues/1352), [issue 1330](https://github.com/firefly-iii/firefly-iii/issues/1330), [issue 1378](https://github.com/firefly-iii/firefly-iii/issues/1378), [issue 1380](https://github.com/firefly-iii/firefly-iii/issues/1380)) -- [Issue 1246](https://github.com/firefly-iii/firefly-iii/issues/1246): date picker is internationalised -- [Issue 1327](https://github.com/firefly-iii/firefly-iii/issues/1327): fix formattting issues in piggy banks -- [Issue 1348](https://github.com/firefly-iii/firefly-iii/issues/1348): 500 error in API -- [Issue 1349](https://github.com/firefly-iii/firefly-iii/issues/1349): Errors in import routine -- Several fixes for (multi-currency) reconciliation ([issue 1336](https://github.com/firefly-iii/firefly-iii/issues/1336), [issue 1363](https://github.com/firefly-iii/firefly-iii/issues/1363)) -- [Issue 1353](https://github.com/firefly-iii/firefly-iii/issues/1353): return NULL values in range-indicator -- Bug in split transaction edit routine -- Piggy bank percentage was very specific. -- Logging in Slack is easier to config. -- [Issue 1312](https://github.com/firefly-iii/firefly-iii/issues/1312) Import broken for ING accounts -- [Issue 1313](https://github.com/firefly-iii/firefly-iii/issues/1313) Error when creating new asset account -- [Issue 1317](https://github.com/firefly-iii/firefly-iii/issues/1317) Forgot an include :( -- Null pointer exception in transaction overview. -- Installations running in subdirs were incapable of creating OAuth tokens. -- OAuth keys were not created in all cases. - -# 4.7.2 -- [Issue 1123](https://github.com/firefly-iii/firefly-iii/issues/1123) First browser based update routine. -- Add support for Italian. -- [Issue 1232](https://github.com/firefly-iii/firefly-iii/issues/1232) Allow user to specify Docker database port. -- [Issue 1197](https://github.com/firefly-iii/firefly-iii/issues/1197) Beter account list overview -- [Issue 1202](https://github.com/firefly-iii/firefly-iii/issues/1202) Some budgetary warnings -- [Issue 1284](https://github.com/firefly-iii/firefly-iii/issues/1284) Experimental support for bunq import -- [Issue 1248](https://github.com/firefly-iii/firefly-iii/issues/1248) Ability to import BIC, ability to import SEPA fields. -- [Issue 1102](https://github.com/firefly-iii/firefly-iii/issues/1102) Summary line for bills -- More info to debug page. -- [Issue 1186](https://github.com/firefly-iii/firefly-iii/issues/1186) You can see the latest account balance in CRUD forms -- Add Kubernetes YAML files, kindly created by a FF3 user. -- [Issue 1244](https://github.com/firefly-iii/firefly-iii/issues/1244) Better line for "today" marker and add it to other chart as well ([issue 1214](https://github.com/firefly-iii/firefly-iii/issues/1214)) -- [Issue 1219](https://github.com/firefly-iii/firefly-iii/issues/1219) Languages in dropdown -- [Issue 1189](https://github.com/firefly-iii/firefly-iii/issues/1189) Inactive accounts get removed from net worth -- [Issue 1220](https://github.com/firefly-iii/firefly-iii/issues/1220) Attachment description and notes migrated to just "notes". -- [Issue 1236](https://github.com/firefly-iii/firefly-iii/issues/1236) Multi currency balance box -- [Issue 1240](https://github.com/firefly-iii/firefly-iii/issues/1240) Better overview for accounts. -- [Issue 1292](https://github.com/firefly-iii/firefly-iii/issues/1292) Removed some charts from the "all"-overview of budgets and categories -- [Issue 1245](https://github.com/firefly-iii/firefly-iii/issues/1245) Improved recognition of IBANs -- Improved import routine. -- Update notifier will wait three days before notifying users. -- [Issue 1300](https://github.com/firefly-iii/firefly-iii/issues/1300) Virtual balance of credit cards does not count for net worth -- [Issue 1247](https://github.com/firefly-iii/firefly-iii/issues/1247) Can now see overspent amount -- [Issue 1221](https://github.com/firefly-iii/firefly-iii/issues/1221) Upgrade to Laravel 5.6 -- [Issue 1187](https://github.com/firefly-iii/firefly-iii/issues/1187) Updated the password verifier to use Troy Hunt's new API -- Revenue chart is now on frontpage permanently -- [Issue 1153](https://github.com/firefly-iii/firefly-iii/issues/1153) 2FA settings are in your profile now -- [Issue 1227](https://github.com/firefly-iii/firefly-iii/issues/1227) Can set the timezone in config or in Docker -- [Issue 1294](https://github.com/firefly-iii/firefly-iii/issues/1294) Ability to link a transaction to itself -- Correct reference to journal description in split form. -- [Issue 1234](https://github.com/firefly-iii/firefly-iii/issues/1234) Fix budget page issues in SQLite -- [Issue 1262](https://github.com/firefly-iii/firefly-iii/issues/1262) Can now use double and epty headers in CSV files -- [Issue 1258](https://github.com/firefly-iii/firefly-iii/issues/1258) Fixed a possible date mismatch in piggy banks -- [Issue 1283](https://github.com/firefly-iii/firefly-iii/issues/1283) Bulk delete was broken -- [Issue 1293](https://github.com/firefly-iii/firefly-iii/issues/1293) Layout problem with notes -- [Issue 1257](https://github.com/firefly-iii/firefly-iii/issues/1257) Improve transaction lists query count -- [Issue 1291](https://github.com/firefly-iii/firefly-iii/issues/1291) Fixer IO problems -- [Issue 1239](https://github.com/firefly-iii/firefly-iii/issues/1239) Could not edit expense or revenue accounts ([issue 1298](https://github.com/firefly-iii/firefly-iii/issues/1298)) -- [Issue 1297](https://github.com/firefly-iii/firefly-iii/issues/1297) Could not convert to withdrawal -- [Issue 1226](https://github.com/firefly-iii/firefly-iii/issues/1226) Category overview in default report shows no income. -- Various other bugs and problems ([issue 1198](https://github.com/firefly-iii/firefly-iii/issues/1198), [issue 1213](https://github.com/firefly-iii/firefly-iii/issues/1213), [issue 1237](https://github.com/firefly-iii/firefly-iii/issues/1237), [issue 1238](https://github.com/firefly-iii/firefly-iii/issues/1238), [issue 1199](https://github.com/firefly-iii/firefly-iii/issues/1199), [issue 1200](https://github.com/firefly-iii/firefly-iii/issues/1200)) -- Fixed an issue with token validation on the command line. - -# 4.7.1 -- A brand new API. Read about it in the [documentation](http://firefly-iii.readthedocs.io/en/latest/). -- Add support for Spanish. [issue 1194](https://github.com/firefly-iii/firefly-iii/issues/1194) -- Some custom preferences are selected by default for a better user experience. -- Some new currencies [issue 1211](https://github.com/firefly-iii/firefly-iii/issues/1211) -- Fixed [issue 1155](https://github.com/firefly-iii/firefly-iii/issues/1155) (reported by [ndandanov](https://github.com/ndandanov)) -- [Issue 1156](https://github.com/firefly-iii/firefly-iii/issues/1156) [issue 1182](https://github.com/firefly-iii/firefly-iii/issues/1182) and other issues related to SQLite databases. -- Multi-page budget overview was broken (reported by [jinformatique](https://github.com/jinformatique)) -- Importing CSV files with semi-colons in them did not work [issue 1172](https://github.com/firefly-iii/firefly-iii/issues/1172) [issue 1183](https://github.com/firefly-iii/firefly-iii/issues/1183) [issue 1210](https://github.com/firefly-iii/firefly-iii/issues/1210) -- Could not use account number that was in use by a deleted account [issue 1174](https://github.com/firefly-iii/firefly-iii/issues/1174) -- Fixed spelling error that lead to 404's [issue 1175](https://github.com/firefly-iii/firefly-iii/issues/1175) [issue 1190](https://github.com/firefly-iii/firefly-iii/issues/1190) -- Fixed tag autocomplete [issue 1178](https://github.com/firefly-iii/firefly-iii/issues/1178) -- Better links for "new transaction" buttons [issue 1185](https://github.com/firefly-iii/firefly-iii/issues/1185) -- Cache errors in budget charts [issue 1192](https://github.com/firefly-iii/firefly-iii/issues/1192) -- Deleting transactions that are linked to other other transactions would lead to errors [issue 1209](https://github.com/firefly-iii/firefly-iii/issues/1209) - -# 4.7.0 -- Support for Russian and Portuguese (Brazil) -- Support for the Spectre API (Salt Edge) -- Many strings now translatable thanks to [Nik-vr](https://github.com/Nik-vr) ([issue 1118](https://github.com/firefly-iii/firefly-iii/issues/1118), [issue 1116](https://github.com/firefly-iii/firefly-iii/issues/1116), [issue 1109](https://github.com/firefly-iii/firefly-iii/issues/1109), ) -- Many buttons to quickly create stuff -- Sum of tables in reports, requested by [MacPaille](https://github.com/MacPaille) ([issue 1106](https://github.com/firefly-iii/firefly-iii/issues/1106)) -- Future versions of Firefly III will notify you there is a new version, as suggested by [8bitgentleman](https://github.com/8bitgentleman) in [issue 1050](https://github.com/firefly-iii/firefly-iii/issues/1050) -- Improved net worth box [issue 1101](https://github.com/firefly-iii/firefly-iii/issues/1101) ([Nik-vr](https://github.com/Nik-vr)) -- Nice dropdown in transaction list [issue 1082](https://github.com/firefly-iii/firefly-iii/issues/1082) -- Better support for local fonts thanks to [devlearner](https://github.com/devlearner) ([issue 1145](https://github.com/firefly-iii/firefly-iii/issues/1145)) -- Improve attachment support and view capabilities (suggested by [trinhit](https://github.com/trinhit) in [issue 1146](https://github.com/firefly-iii/firefly-iii/issues/1146)) -- Whole new [read me file](https://github.com/firefly-iii/firefly-iii/blob/master/readme.md), [new end user documentation](https://firefly-iii.readthedocs.io/en/latest/) and an [updated website](https://www.firefly-iii.org/)! -- Many charts and info-blocks now scale property ([issue 989](https://github.com/firefly-iii/firefly-iii/issues/989) and [issue 1040](https://github.com/firefly-iii/firefly-iii/issues/1040)) -- Charts work in IE thanks to [devlearner](https://github.com/devlearner) ([issue 1107](https://github.com/firefly-iii/firefly-iii/issues/1107)) -- Various fixes in import routine -- Bug that left charts empty ([issue 1088](https://github.com/firefly-iii/firefly-iii/issues/1088)), reported by various users amongst which [jinformatique](https://github.com/jinformatique) -- [Issue 1124](https://github.com/firefly-iii/firefly-iii/issues/1124), as reported by [gavu](https://github.com/gavu) -- [Issue 1125](https://github.com/firefly-iii/firefly-iii/issues/1125), as reported by [gavu](https://github.com/gavu) -- [Issue 1126](https://github.com/firefly-iii/firefly-iii/issues/1126), as reported by [gavu](https://github.com/gavu) -- [Issue 1131](https://github.com/firefly-iii/firefly-iii/issues/1131), as reported by [dp87](https://github.com/dp87) -- [Issue 1129](https://github.com/firefly-iii/firefly-iii/issues/1129), as reported by [gavu](https://github.com/gavu) -- [Issue 1132](https://github.com/firefly-iii/firefly-iii/issues/1132), as reported by [gavu](https://github.com/gavu) -- Issue with cache in Sandstorm ([issue 1130](https://github.com/firefly-iii/firefly-iii/issues/1130)) -- [Issue 1134](https://github.com/firefly-iii/firefly-iii/issues/1134) -- [Issue 1140](https://github.com/firefly-iii/firefly-iii/issues/1140) -- [Issue 1141](https://github.com/firefly-iii/firefly-iii/issues/1141), reported by [ErikFontanel](https://github.com/ErikFontanel) -- [Issue 1142](https://github.com/firefly-iii/firefly-iii/issues/1142) -- Removed many access rights from the demo user - -# 4.6.13 -- [Issue 1074](https://github.com/firefly-iii/firefly-iii/issues/1074), suggested by [MacPaille](https://github.com/MacPaille) -- [Issue 1077](https://github.com/firefly-iii/firefly-iii/issues/1077), suggested by [wtercato](https://github.com/wtercato) -- Bulk edit of transactions thanks to [vicmosin](https://github.com/vicmosin) ([issue 1078](https://github.com/firefly-iii/firefly-iii/issues/1078)) -- Support for Turkish. -- [Issue 1090](https://github.com/firefly-iii/firefly-iii/issues/1090), suggested by [Findus23](https://github.com/Findus23) -- [Issue 1097](https://github.com/firefly-iii/firefly-iii/issues/1097), suggested by [kelvinhammond](https://github.com/kelvinhammond) -- [Issue 1093](https://github.com/firefly-iii/firefly-iii/issues/1093), suggested by [jinformatique](https://github.com/jinformatique) -- [Issue 1098](https://github.com/firefly-iii/firefly-iii/issues/1098), suggested by [Nik-vr](https://github.com/Nik-vr) -- [Issue 972](https://github.com/firefly-iii/firefly-iii/issues/972), reported by [pjotrvdh](https://github.com/pjotrvdh) -- [Issue 1079](https://github.com/firefly-iii/firefly-iii/issues/1079), reported by [gavu](https://github.com/gavu) -- [Issue 1080](https://github.com/firefly-iii/firefly-iii/issues/1080), reported by [zjean](https://github.com/zjean) -- [Issue 1083](https://github.com/firefly-iii/firefly-iii/issues/1083), reported by [skuzzle](https://github.com/skuzzle) -- [Issue 1085](https://github.com/firefly-iii/firefly-iii/issues/1085), reported by [nicoschreiner](https://github.com/nicoschreiner) -- [Issue 1087](https://github.com/firefly-iii/firefly-iii/issues/1087), reported by [4oo4](https://github.com/4oo4) -- [Issue 1089](https://github.com/firefly-iii/firefly-iii/issues/1089), reported by [robin5210](https://github.com/robin5210) -- [Issue 1092](https://github.com/firefly-iii/firefly-iii/issues/1092), reported by [kelvinhammond](https://github.com/kelvinhammond) -- [Issue 1096](https://github.com/firefly-iii/firefly-iii/issues/1096), reported by [wtercato](https://github.com/wtercato) - -# 4.6.12 -- Support for Indonesian. -- New report, see [issue 384](https://github.com/firefly-iii/firefly-iii/issues/384) -- [Issue 964](https://github.com/firefly-iii/firefly-iii/issues/964) as suggested by [gavu](https://github.com/gavu) -- Greatly improved Docker support and documentation. -- [Issue 1046](https://github.com/firefly-iii/firefly-iii/issues/1046), as reported by [pkoziol](https://github.com/pkoziol) -- [Issue 1047](https://github.com/firefly-iii/firefly-iii/issues/1047), as reported by [pkoziol](https://github.com/pkoziol) -- [Issue 1048](https://github.com/firefly-iii/firefly-iii/issues/1048), as reported by [webence](https://github.com/webence) -- [Issue 1049](https://github.com/firefly-iii/firefly-iii/issues/1049), as reported by [nicoschreiner](https://github.com/nicoschreiner) -- [Issue 1015](https://github.com/firefly-iii/firefly-iii/issues/1015), as reporterd by a user on Tweakers.net -- [Issue 1056](https://github.com/firefly-iii/firefly-iii/issues/1056), as reported by [repercussion](https://github.com/repercussion) -- [Issue 1061](https://github.com/firefly-iii/firefly-iii/issues/1061), as reported by [Meizikyn](https://github.com/Meizikyn) -- [Issue 1045](https://github.com/firefly-iii/firefly-iii/issues/1045), as reported by [gavu](https://github.com/gavu) -- First code for [issue 1040](https://github.com/firefly-iii/firefly-iii/issues/1040) ([simonsmiley](https://github.com/simonsmiley)) -- [Issue 1059](https://github.com/firefly-iii/firefly-iii/issues/1059), as reported by [4oo4](https://github.com/4oo4) -- [Issue 1063](https://github.com/firefly-iii/firefly-iii/issues/1063), as reported by [pkoziol](https://github.com/pkoziol) -- [Issue 1064](https://github.com/firefly-iii/firefly-iii/issues/1064), as reported by [pkoziol](https://github.com/pkoziol) -- [Issue 1066](https://github.com/firefly-iii/firefly-iii/issues/1066), reported by [wtercato](https://github.com/wtercato) - -# 4.6.1.1 -- Import routine can scan for matching bills, [issue 956](https://github.com/firefly-iii/firefly-iii/issues/956) -- Import will no longer scan for rules, this has become optional. Originally suggested in [issue 956](https://github.com/firefly-iii/firefly-iii/issues/956) by [gavu](https://github.com/gavu) -- [Issue 1033](https://github.com/firefly-iii/firefly-iii/issues/1033), as reported by [Jumanjii](https://github.com/Jumanjii) -- [Issue 1033](https://github.com/firefly-iii/firefly-iii/issues/1034), as reported by [Aquariu](https://github.com/Aquariu) -- Extra admin check for [issue 1039](https://github.com/firefly-iii/firefly-iii/issues/1039), as reported by [ocdtrekkie](https://github.com/ocdtrekkie) -- Missing translations ([issue 1026](https://github.com/firefly-iii/firefly-iii/issues/1026)), as reported by [gavu](https://github.com/gavu) and [zjean](https://github.com/zjean) -- [Issue 1028](https://github.com/firefly-iii/firefly-iii/issues/1028), reported by [zjean](https://github.com/zjean) -- [Issue 1029](https://github.com/firefly-iii/firefly-iii/issues/1029), reported by [zjean](https://github.com/zjean) -- [Issue 1030](https://github.com/firefly-iii/firefly-iii/issues/1030), as reported by [Traxxi](https://github.com/Traxxi) -- [Issue 1036](https://github.com/firefly-iii/firefly-iii/issues/1036), as reported by [webence](https://github.com/webence) -- [Issue 1038](https://github.com/firefly-iii/firefly-iii/issues/1038), as reported by [gavu](https://github.com/gavu) - -# 4.6.11 -- A debug page at `/debug` for easier debug. -- Strings translatable (see [issue 976](https://github.com/firefly-iii/firefly-iii/issues/976)), thanks to [Findus23](https://github.com/Findus23) -- Even more strings are translatable (and translated), thanks to [pkoziol](https://github.com/pkoziol) (see [issue 979](https://github.com/firefly-iii/firefly-iii/issues/979)) -- Reconciliation of accounts ([issue 736](https://github.com/firefly-iii/firefly-iii/issues/736)), as requested by [kristophr](https://github.com/kristophr) and several others -- Extended currency list, as suggested by @emuhendis in [issue 994](https://github.com/firefly-iii/firefly-iii/issues/994) -- [Issue 996](https://github.com/firefly-iii/firefly-iii/issues/996) as suggested by [dp87](https://github.com/dp87) -- Disabled Heroku support until I get it working again. -- [Issue 980](https://github.com/firefly-iii/firefly-iii/issues/980), reported by [Tim-Frensch](https://github.com/Tim-Frensch) -- [Issue 987](https://github.com/firefly-iii/firefly-iii/issues/987), reported by [gavu](https://github.com/gavu) -- [Issue 988](https://github.com/firefly-iii/firefly-iii/issues/988), reported by [gavu](https://github.com/gavu) -- [Issue 992](https://github.com/firefly-iii/firefly-iii/issues/992), reported by [ncicovic](https://github.com/ncicovic) -- [Issue 993](https://github.com/firefly-iii/firefly-iii/issues/993), reported by [gavu](https://github.com/gavu) -- [Issue 997](https://github.com/firefly-iii/firefly-iii/issues/997), reported by [gavu](https://github.com/gavu) -- [Issue 1000](https://github.com/firefly-iii/firefly-iii/issues/1000), reported by [xpfgsyb](https://github.com/xpfgsyb) -- [Issue 1001](https://github.com/firefly-iii/firefly-iii/issues/1001), reported by [gavu](https://github.com/gavu) -- [Issue 1002](https://github.com/firefly-iii/firefly-iii/issues/1002), reported by [ursweiss](https://github.com/ursweiss) -- [Issue 1003](https://github.com/firefly-iii/firefly-iii/issues/1003), reported by [ursweiss](https://github.com/ursweiss) -- [Issue 1004](https://github.com/firefly-iii/firefly-iii/issues/1004), reported by [Aquariu](https://github.com/Aquariu) -- [Issue 1010](https://github.com/firefly-iii/firefly-iii/issues/1010) -- [Issue 1014](https://github.com/firefly-iii/firefly-iii/issues/1014), reported by [ursweiss](https://github.com/ursweiss) -- [Issue 1016](https://github.com/firefly-iii/firefly-iii/issues/1016) -- [Issue 1024](https://github.com/firefly-iii/firefly-iii/issues/1024), reported by [gavu](https://github.com/gavu) -- [Issue 1025](https://github.com/firefly-iii/firefly-iii/issues/1025), reported by [gavu](https://github.com/gavu) - -# 4.6.10 -- Greatly expanded Docker support thanks to [alazare619](https://github.com/alazare619) -- [Issue 967](https://github.com/firefly-iii/firefly-iii/issues/967), thanks to [Aquariu](https://github.com/Aquariu) -- Improved Sandstorm support. -- [Issue 963](https://github.com/firefly-iii/firefly-iii/issues/963), as reported by [gavu](https://github.com/gavu) -- [Issue 970](https://github.com/firefly-iii/firefly-iii/issues/970), as reported by [gavu](https://github.com/gavu) -- [Issue 971](https://github.com/firefly-iii/firefly-iii/issues/971), as reported by [gavu](https://github.com/gavu) -- Various Sandstorm.io related issues. - -# 4.6.9.1 -- Updated license -- Updated file list - -# 4.6.9 -- First version that works! - -# 3.4.3 -- Initial release on Sandstorm.io \ No newline at end of file diff --git a/.sandstorm/description.md b/.sandstorm/description.md deleted file mode 100644 index e9f6874f3f..0000000000 --- a/.sandstorm/description.md +++ /dev/null @@ -1,3 +0,0 @@ -"Firefly III" is a financial manager. It can help you keep track of expenses, income, budgets and everything in between. It even supports credit cards, shared household accounts and savings accounts! It’s pretty fancy. You should use it to save and organise money. - -Firefly works on the principle that if you know where you’re money is going, you can stop it from going there. \ No newline at end of file diff --git a/.sandstorm/global-setup.sh b/.sandstorm/global-setup.sh deleted file mode 100755 index 6f1d1da99d..0000000000 --- a/.sandstorm/global-setup.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/bash -set -euo pipefail - -# Set options for curl. Since we only want to show errors from these curl commands, we also use -# 'cat' to buffer the output; for more information: -# https://github.com/sandstorm-io/vagrant-spk/issues/158 - -CURL_OPTS="--silent --show-error" -echo localhost > /etc/hostname -hostname localhost - -# Install curl that is needed below. -apt-get update -apt-get install -y curl - -# The following line copies stderr through stderr to cat without accidentally leaving it in the -# output file. Be careful when changing. See: https://github.com/sandstorm-io/vagrant-spk/pull/159 -curl $CURL_OPTS https://install.sandstorm.io/ 2>&1 > /host-dot-sandstorm/caches/install.sh | cat - -SANDSTORM_CURRENT_VERSION=$(curl $CURL_OPTS -f "https://install.sandstorm.io/dev?from=0&type=install") -SANDSTORM_PACKAGE="sandstorm-$SANDSTORM_CURRENT_VERSION.tar.xz" -if [[ ! -f /host-dot-sandstorm/caches/$SANDSTORM_PACKAGE ]] ; then - echo -n "Downloading Sandstorm version ${SANDSTORM_CURRENT_VERSION}..." - curl $CURL_OPTS --output "/host-dot-sandstorm/caches/$SANDSTORM_PACKAGE.partial" "https://dl.sandstorm.io/$SANDSTORM_PACKAGE" 2>&1 | cat - mv "/host-dot-sandstorm/caches/$SANDSTORM_PACKAGE.partial" "/host-dot-sandstorm/caches/$SANDSTORM_PACKAGE" - echo "...done." -fi -if [ ! -e /opt/sandstorm/latest/sandstorm ] ; then - echo -n "Installing Sandstorm version ${SANDSTORM_CURRENT_VERSION}..." - bash /host-dot-sandstorm/caches/install.sh -d -e "/host-dot-sandstorm/caches/$SANDSTORM_PACKAGE" >/dev/null - echo "...done." -fi -modprobe ip_tables -# Make the vagrant user part of the sandstorm group so that commands like -# `spk dev` work. -usermod -a -G 'sandstorm' 'vagrant' -# Bind to all addresses, so the vagrant port-forward works. -sudo sed --in-place='' \ - --expression='s/^BIND_IP=.*/BIND_IP=0.0.0.0/' \ - /opt/sandstorm/sandstorm.conf -sudo service sandstorm restart -# Enable apt-cacher-ng proxy to make things faster if one appears to be running on the gateway IP -GATEWAY_IP=$(ip route | grep ^default | cut -d ' ' -f 3) -if nc -z "$GATEWAY_IP" 3142 ; then - echo "Acquire::http::Proxy \"http://$GATEWAY_IP:3142\";" > /etc/apt/apt.conf.d/80httpproxy -fi -# Configure apt to retry fetching things that fail to download. -echo "APT::Acquire::Retries \"10\";" > /etc/apt/apt.conf.d/80sandstorm-retry diff --git a/.sandstorm/launcher.sh b/.sandstorm/launcher.sh deleted file mode 100755 index 9395e9f7e7..0000000000 --- a/.sandstorm/launcher.sh +++ /dev/null @@ -1,62 +0,0 @@ -#!/bin/bash - -# Runs every time we create a new grain! -echo "Now in launcher.sh" - -# Create a bunch of folders under the clean /var that php, nginx, and mysql expect to exist -mkdir -p /var/lib/mysql -mkdir -p /var/lib/nginx -mkdir -p /var/lib/php/sessions/ -mkdir -p /var/log -mkdir -p /var/log/mysql -mkdir -p /var/log/nginx -# Wipe /var/run, since pidfiles and socket files from previous launches should go away -# Someday: I'd prefer a tmpfs for these. -rm -rf /var/run -mkdir -p /var/run -rm -rf /var/tmp -mkdir -p /var/tmp -mkdir -p /var/run/mysqld - -# make storage directories -rm -rf /var/storage -mkdir -p /var/storage/app/public -mkdir -p /var/storage/build -mkdir -p /var/storage/database -mkdir -p /var/storage/debugbar -mkdir -p /var/storage/export -mkdir -p /var/storage/framework/cache/v1 -mkdir -p /var/storage/framework/sessions -mkdir -p /var/storage/framework/views/v1 -mkdir -p /var/storage/logs -mkdir -p /var/storage/upload - -# Ensure mysql tables created -HOME=/etc/mysql /usr/bin/mysql_install_db --force - -# Spawn mysqld, php -HOME=/etc/mysql /usr/sbin/mysqld & - -/usr/sbin/php-fpm7.2 --nodaemonize --fpm-config /etc/php/7.2/fpm/php-fpm.conf & - -# Wait until mysql and php have bound their sockets, indicating readiness -while [ ! -e /var/run/mysqld/mysqld.sock ] ; do - echo "waiting for mysql to be available at /var/run/mysqld/mysqld.sock" - sleep .5 -done -while [ ! -e /var/run/php7.2-fpm.sock ] ; do - echo "waiting for php7.2-fpm to be available at /var/run/php7.2-fpm.sock" - sleep .5 -done - -echo "Installing database.." -# Install database for Firefly III -echo "CREATE DATABASE IF NOT EXISTS firefly; GRANT ALL on firefly.* TO 'firefly'@'localhost' IDENTIFIED BY 'firefly';" | mysql -uroot -echo "Done!" - -echo "Migrating..." -php /opt/app/artisan migrate --seed --force -echo "Done!" - -# Start nginx. -/usr/sbin/nginx -c /opt/app/.sandstorm/service-config/nginx.conf -g "daemon off;" diff --git a/.sandstorm/pgp-keyring b/.sandstorm/pgp-keyring deleted file mode 100644 index b0dec3c169..0000000000 Binary files a/.sandstorm/pgp-keyring and /dev/null differ diff --git a/.sandstorm/pgp-signature b/.sandstorm/pgp-signature deleted file mode 100644 index 82e5fc8a52..0000000000 Binary files a/.sandstorm/pgp-signature and /dev/null differ diff --git a/.sandstorm/sandstorm-files.list b/.sandstorm/sandstorm-files.list deleted file mode 100644 index d39ad4f733..0000000000 --- a/.sandstorm/sandstorm-files.list +++ /dev/null @@ -1,9738 +0,0 @@ -# *** WARNING: GENERATED FILE *** -# This file is automatically updated and rewritten in sorted order every time -# the app runs in dev mode. You may manually add or remove files, but don't -# expect comments or ordering to be retained. -app-graphics -bin/bash -bin/cat -bin/chmod -bin/dash -bin/dir -bin/grep -bin/hostname -bin/ls -bin/mkdir -bin/nano -bin/rm -bin/sed -bin/sh -bin/sleep -bin/stty -etc/alternatives/php -etc/alternatives/vi -etc/bash.bashrc -etc/bindresvport.blacklist -etc/default/nss -etc/hosts.allow -etc/hosts.deny -etc/inputrc -etc/ld.so.cache -etc/locale.alias -etc/localtime -etc/mysql/conf.d -etc/mysql/conf.d/mysqld_safe_syslog.cnf -etc/mysql/conf.d/sandstorm.cnf -etc/mysql/my.cnf -etc/nanorc -etc/php/7.2/cli/conf.d -etc/php/7.2/cli/conf.d/10-mysqlnd.ini -etc/php/7.2/cli/conf.d/10-opcache.ini -etc/php/7.2/cli/conf.d/10-pdo.ini -etc/php/7.2/cli/conf.d/15-xml.ini -etc/php/7.2/cli/conf.d/20-bcmath.ini -etc/php/7.2/cli/conf.d/20-calendar.ini -etc/php/7.2/cli/conf.d/20-ctype.ini -etc/php/7.2/cli/conf.d/20-curl.ini -etc/php/7.2/cli/conf.d/20-dom.ini -etc/php/7.2/cli/conf.d/20-exif.ini -etc/php/7.2/cli/conf.d/20-fileinfo.ini -etc/php/7.2/cli/conf.d/20-ftp.ini -etc/php/7.2/cli/conf.d/20-gd.ini -etc/php/7.2/cli/conf.d/20-gettext.ini -etc/php/7.2/cli/conf.d/20-iconv.ini -etc/php/7.2/cli/conf.d/20-intl.ini -etc/php/7.2/cli/conf.d/20-json.ini -etc/php/7.2/cli/conf.d/20-ldap.ini -etc/php/7.2/cli/conf.d/20-mbstring.ini -etc/php/7.2/cli/conf.d/20-mysqli.ini -etc/php/7.2/cli/conf.d/20-pdo_mysql.ini -etc/php/7.2/cli/conf.d/20-phar.ini -etc/php/7.2/cli/conf.d/20-posix.ini -etc/php/7.2/cli/conf.d/20-readline.ini -etc/php/7.2/cli/conf.d/20-shmop.ini -etc/php/7.2/cli/conf.d/20-simplexml.ini -etc/php/7.2/cli/conf.d/20-sockets.ini -etc/php/7.2/cli/conf.d/20-sysvmsg.ini -etc/php/7.2/cli/conf.d/20-sysvsem.ini -etc/php/7.2/cli/conf.d/20-sysvshm.ini -etc/php/7.2/cli/conf.d/20-tokenizer.ini -etc/php/7.2/cli/conf.d/20-wddx.ini -etc/php/7.2/cli/conf.d/20-xmlreader.ini -etc/php/7.2/cli/conf.d/20-xmlwriter.ini -etc/php/7.2/cli/conf.d/20-xsl.ini -etc/php/7.2/cli/conf.d/20-zip.ini -etc/php/7.2/cli/php.ini -etc/php/7.2/fpm/conf.d -etc/php/7.2/fpm/conf.d/10-mysqlnd.ini -etc/php/7.2/fpm/conf.d/10-opcache.ini -etc/php/7.2/fpm/conf.d/10-pdo.ini -etc/php/7.2/fpm/conf.d/15-xml.ini -etc/php/7.2/fpm/conf.d/20-bcmath.ini -etc/php/7.2/fpm/conf.d/20-calendar.ini -etc/php/7.2/fpm/conf.d/20-ctype.ini -etc/php/7.2/fpm/conf.d/20-curl.ini -etc/php/7.2/fpm/conf.d/20-dom.ini -etc/php/7.2/fpm/conf.d/20-exif.ini -etc/php/7.2/fpm/conf.d/20-fileinfo.ini -etc/php/7.2/fpm/conf.d/20-ftp.ini -etc/php/7.2/fpm/conf.d/20-gd.ini -etc/php/7.2/fpm/conf.d/20-gettext.ini -etc/php/7.2/fpm/conf.d/20-iconv.ini -etc/php/7.2/fpm/conf.d/20-intl.ini -etc/php/7.2/fpm/conf.d/20-json.ini -etc/php/7.2/fpm/conf.d/20-ldap.ini -etc/php/7.2/fpm/conf.d/20-mbstring.ini -etc/php/7.2/fpm/conf.d/20-mysqli.ini -etc/php/7.2/fpm/conf.d/20-pdo_mysql.ini -etc/php/7.2/fpm/conf.d/20-phar.ini -etc/php/7.2/fpm/conf.d/20-posix.ini -etc/php/7.2/fpm/conf.d/20-readline.ini -etc/php/7.2/fpm/conf.d/20-shmop.ini -etc/php/7.2/fpm/conf.d/20-simplexml.ini -etc/php/7.2/fpm/conf.d/20-sockets.ini -etc/php/7.2/fpm/conf.d/20-sysvmsg.ini -etc/php/7.2/fpm/conf.d/20-sysvsem.ini -etc/php/7.2/fpm/conf.d/20-sysvshm.ini -etc/php/7.2/fpm/conf.d/20-tokenizer.ini -etc/php/7.2/fpm/conf.d/20-wddx.ini -etc/php/7.2/fpm/conf.d/20-xmlreader.ini -etc/php/7.2/fpm/conf.d/20-xmlwriter.ini -etc/php/7.2/fpm/conf.d/20-xsl.ini -etc/php/7.2/fpm/conf.d/20-zip.ini -etc/php/7.2/fpm/php-fpm.conf -etc/php/7.2/fpm/php.ini -etc/php/7.2/fpm/pool.d -etc/php/7.2/fpm/pool.d/www.conf -etc/php/7.2/mods-available/bcmath.ini -etc/php/7.2/mods-available/calendar.ini -etc/php/7.2/mods-available/ctype.ini -etc/php/7.2/mods-available/curl.ini -etc/php/7.2/mods-available/dom.ini -etc/php/7.2/mods-available/exif.ini -etc/php/7.2/mods-available/fileinfo.ini -etc/php/7.2/mods-available/ftp.ini -etc/php/7.2/mods-available/gd.ini -etc/php/7.2/mods-available/gettext.ini -etc/php/7.2/mods-available/iconv.ini -etc/php/7.2/mods-available/intl.ini -etc/php/7.2/mods-available/json.ini -etc/php/7.2/mods-available/ldap.ini -etc/php/7.2/mods-available/mbstring.ini -etc/php/7.2/mods-available/mysqli.ini -etc/php/7.2/mods-available/mysqlnd.ini -etc/php/7.2/mods-available/opcache.ini -etc/php/7.2/mods-available/pdo.ini -etc/php/7.2/mods-available/pdo_mysql.ini -etc/php/7.2/mods-available/phar.ini -etc/php/7.2/mods-available/posix.ini -etc/php/7.2/mods-available/readline.ini -etc/php/7.2/mods-available/shmop.ini -etc/php/7.2/mods-available/simplexml.ini -etc/php/7.2/mods-available/sockets.ini -etc/php/7.2/mods-available/sysvmsg.ini -etc/php/7.2/mods-available/sysvsem.ini -etc/php/7.2/mods-available/sysvshm.ini -etc/php/7.2/mods-available/tokenizer.ini -etc/php/7.2/mods-available/wddx.ini -etc/php/7.2/mods-available/xml.ini -etc/php/7.2/mods-available/xmlreader.ini -etc/php/7.2/mods-available/xmlwriter.ini -etc/php/7.2/mods-available/xsl.ini -etc/php/7.2/mods-available/zip.ini -etc/services -etc/ssl/openssl.cnf -etc/vim/vimrc.tiny -lib/terminfo/a/ansi -lib/terminfo/d/dumb -lib/x86_64-linux-gnu/ld-2.19.so -lib/x86_64-linux-gnu/libacl.so.1 -lib/x86_64-linux-gnu/libacl.so.1.1.0 -lib/x86_64-linux-gnu/libaio.so.1 -lib/x86_64-linux-gnu/libaio.so.1.0.1 -lib/x86_64-linux-gnu/libattr.so.1 -lib/x86_64-linux-gnu/libattr.so.1.1.0 -lib/x86_64-linux-gnu/libbsd.so.0 -lib/x86_64-linux-gnu/libbsd.so.0.7.0 -lib/x86_64-linux-gnu/libbz2.so.1.0 -lib/x86_64-linux-gnu/libbz2.so.1.0.4 -lib/x86_64-linux-gnu/libc-2.19.so -lib/x86_64-linux-gnu/libc.so.6 -lib/x86_64-linux-gnu/libcom_err.so.2 -lib/x86_64-linux-gnu/libcom_err.so.2.1 -lib/x86_64-linux-gnu/libcrypt-2.19.so -lib/x86_64-linux-gnu/libcrypt.so.1 -lib/x86_64-linux-gnu/libdl-2.19.so -lib/x86_64-linux-gnu/libdl.so.2 -lib/x86_64-linux-gnu/libexpat.so.1 -lib/x86_64-linux-gnu/libexpat.so.1.6.0 -lib/x86_64-linux-gnu/libgcc_s.so.1 -lib/x86_64-linux-gnu/libgcrypt.so.20 -lib/x86_64-linux-gnu/libgcrypt.so.20.0.3 -lib/x86_64-linux-gnu/libgpg-error.so.0 -lib/x86_64-linux-gnu/libgpg-error.so.0.13.0 -lib/x86_64-linux-gnu/libkeyutils.so.1 -lib/x86_64-linux-gnu/libkeyutils.so.1.5 -lib/x86_64-linux-gnu/liblzma.so.5 -lib/x86_64-linux-gnu/liblzma.so.5.0.0 -lib/x86_64-linux-gnu/libm-2.19.so -lib/x86_64-linux-gnu/libm.so.6 -lib/x86_64-linux-gnu/libncurses.so.5 -lib/x86_64-linux-gnu/libncurses.so.5.9 -lib/x86_64-linux-gnu/libncursesw.so.5 -lib/x86_64-linux-gnu/libncursesw.so.5.9 -lib/x86_64-linux-gnu/libnsl-2.19.so -lib/x86_64-linux-gnu/libnsl.so.1 -lib/x86_64-linux-gnu/libnss_compat-2.19.so -lib/x86_64-linux-gnu/libnss_compat.so.2 -lib/x86_64-linux-gnu/libnss_dns-2.19.so -lib/x86_64-linux-gnu/libnss_dns.so.2 -lib/x86_64-linux-gnu/libnss_files-2.19.so -lib/x86_64-linux-gnu/libnss_files.so.2 -lib/x86_64-linux-gnu/libnss_nis-2.19.so -lib/x86_64-linux-gnu/libnss_nis.so.2 -lib/x86_64-linux-gnu/libpcre.so.3 -lib/x86_64-linux-gnu/libpcre.so.3.13.3 -lib/x86_64-linux-gnu/libpng12.so.0 -lib/x86_64-linux-gnu/libpng12.so.0.50.0 -lib/x86_64-linux-gnu/libpthread-2.19.so -lib/x86_64-linux-gnu/libpthread.so.0 -lib/x86_64-linux-gnu/libreadline.so.6 -lib/x86_64-linux-gnu/libreadline.so.6.3 -lib/x86_64-linux-gnu/libresolv-2.19.so -lib/x86_64-linux-gnu/libresolv.so.2 -lib/x86_64-linux-gnu/librt-2.19.so -lib/x86_64-linux-gnu/librt.so.1 -lib/x86_64-linux-gnu/libselinux.so.1 -lib/x86_64-linux-gnu/libsystemd.so.0 -lib/x86_64-linux-gnu/libsystemd.so.0.3.1 -lib/x86_64-linux-gnu/libtinfo.so.5 -lib/x86_64-linux-gnu/libtinfo.so.5.9 -lib/x86_64-linux-gnu/libwrap.so.0 -lib/x86_64-linux-gnu/libwrap.so.0.7.6 -lib/x86_64-linux-gnu/libz.so.1 -lib/x86_64-linux-gnu/libz.so.1.2.8 -lib64/ld-linux-x86-64.so.2 -opt/app/.env -opt/app/.env.example -opt/app/.gitattributes -opt/app/.htaccess -opt/app/.sandstorm/.gitattributes -opt/app/.sandstorm/.vagrant/machines/default/virtualbox/action_provision -opt/app/.sandstorm/.vagrant/machines/default/virtualbox/action_set_name -opt/app/.sandstorm/.vagrant/machines/default/virtualbox/box_meta -opt/app/.sandstorm/.vagrant/machines/default/virtualbox/creator_uid -opt/app/.sandstorm/.vagrant/machines/default/virtualbox/id -opt/app/.sandstorm/.vagrant/machines/default/virtualbox/index_uuid -opt/app/.sandstorm/.vagrant/machines/default/virtualbox/private_key -opt/app/.sandstorm/.vagrant/machines/default/virtualbox/synced_folders -opt/app/.sandstorm/.vagrant/machines/default/virtualbox/vagrant_cwd -opt/app/.sandstorm/.vagrant/rgloader/loader.rb -opt/app/.sandstorm/Vagrantfile -opt/app/.sandstorm/app-graphics/firefly-iii-128.png -opt/app/.sandstorm/app-graphics/firefly-iii-150.png -opt/app/.sandstorm/app-graphics/firefly-iii-24.png -opt/app/.sandstorm/app-graphics/firefly-iii-48.png -opt/app/.sandstorm/build.sh -opt/app/.sandstorm/changelog.md -opt/app/.sandstorm/description.md -opt/app/.sandstorm/global-setup.sh -opt/app/.sandstorm/launcher.sh -opt/app/.sandstorm/pgp-keyring -opt/app/.sandstorm/pgp-signature -opt/app/.sandstorm/sandstorm-files.list -opt/app/.sandstorm/sandstorm-pkgdef.capnp -opt/app/.sandstorm/screenshots/screenshot-1.png -opt/app/.sandstorm/screenshots/screenshot-2.png -opt/app/.sandstorm/screenshots/screenshot-3.png -opt/app/.sandstorm/service-config/mime.types -opt/app/.sandstorm/service-config/nginx.conf -opt/app/.sandstorm/setup.sh -opt/app/.sandstorm/stack -opt/app/Dockerfile.amd64 -opt/app/Dockerfile.arm -opt/app/Dockerfile.arm64 -opt/app/LICENSE -opt/app/app.json -opt/app/app/Api/V1/Controllers/AboutController.php -opt/app/app/Api/V1/Controllers/AccountController.php -opt/app/app/Api/V1/Controllers/AttachmentController.php -opt/app/app/Api/V1/Controllers/AvailableBudgetController.php -opt/app/app/Api/V1/Controllers/BillController.php -opt/app/app/Api/V1/Controllers/BudgetController.php -opt/app/app/Api/V1/Controllers/BudgetLimitController.php -opt/app/app/Api/V1/Controllers/CategoryController.php -opt/app/app/Api/V1/Controllers/Chart/AccountController.php -opt/app/app/Api/V1/Controllers/Chart/AvailableBudgetController.php -opt/app/app/Api/V1/Controllers/Chart/CategoryController.php -opt/app/app/Api/V1/Controllers/ConfigurationController.php -opt/app/app/Api/V1/Controllers/Controller.php -opt/app/app/Api/V1/Controllers/CurrencyController.php -opt/app/app/Api/V1/Controllers/CurrencyExchangeRateController.php -opt/app/app/Api/V1/Controllers/ImportController.php -opt/app/app/Api/V1/Controllers/LinkTypeController.php -opt/app/app/Api/V1/Controllers/PiggyBankController.php -opt/app/app/Api/V1/Controllers/PreferenceController.php -opt/app/app/Api/V1/Controllers/RecurrenceController.php -opt/app/app/Api/V1/Controllers/RuleController.php -opt/app/app/Api/V1/Controllers/RuleGroupController.php -opt/app/app/Api/V1/Controllers/SummaryController.php -opt/app/app/Api/V1/Controllers/TagController.php -opt/app/app/Api/V1/Controllers/TransactionController.php -opt/app/app/Api/V1/Controllers/TransactionLinkController.php -opt/app/app/Api/V1/Controllers/UserController.php -opt/app/app/Api/V1/Requests/AccountRequest.php -opt/app/app/Api/V1/Requests/AttachmentRequest.php -opt/app/app/Api/V1/Requests/AvailableBudgetRequest.php -opt/app/app/Api/V1/Requests/BillRequest.php -opt/app/app/Api/V1/Requests/BudgetLimitRequest.php -opt/app/app/Api/V1/Requests/BudgetRequest.php -opt/app/app/Api/V1/Requests/CategoryRequest.php -opt/app/app/Api/V1/Requests/ConfigurationRequest.php -opt/app/app/Api/V1/Requests/CurrencyRequest.php -opt/app/app/Api/V1/Requests/LinkTypeRequest.php -opt/app/app/Api/V1/Requests/PiggyBankRequest.php -opt/app/app/Api/V1/Requests/PreferenceRequest.php -opt/app/app/Api/V1/Requests/RecurrenceRequest.php -opt/app/app/Api/V1/Requests/Request.php -opt/app/app/Api/V1/Requests/RuleGroupRequest.php -opt/app/app/Api/V1/Requests/RuleRequest.php -opt/app/app/Api/V1/Requests/TagRequest.php -opt/app/app/Api/V1/Requests/TransactionLinkRequest.php -opt/app/app/Api/V1/Requests/TransactionRequest.php -opt/app/app/Api/V1/Requests/UserRequest.php -opt/app/app/Console/Commands -opt/app/app/Console/Commands/ApplyRules.php -opt/app/app/Console/Commands/CreateExport.php -opt/app/app/Console/Commands/CreateImport.php -opt/app/app/Console/Commands/Cron.php -opt/app/app/Console/Commands/DecryptAttachment.php -opt/app/app/Console/Commands/DecryptDatabase.php -opt/app/app/Console/Commands/EncryptFile.php -opt/app/app/Console/Commands/Import.php -opt/app/app/Console/Commands/ScanAttachments.php -opt/app/app/Console/Commands/UpgradeDatabase.php -opt/app/app/Console/Commands/UpgradeFireflyInstructions.php -opt/app/app/Console/Commands/VerifiesAccessToken.php -opt/app/app/Console/Commands/VerifyDatabase.php -opt/app/app/Console/Kernel.php -opt/app/app/Events/AdminRequestedTestMessage.php -opt/app/app/Events/Event.php -opt/app/app/Events/RegisteredUser.php -opt/app/app/Events/RequestedNewPassword.php -opt/app/app/Events/RequestedReportOnJournals.php -opt/app/app/Events/RequestedVersionCheckStatus.php -opt/app/app/Events/StoredTransactionJournal.php -opt/app/app/Events/UpdatedTransactionJournal.php -opt/app/app/Events/UserChangedEmail.php -opt/app/app/Exceptions/FireflyException.php -opt/app/app/Exceptions/Handler.php -opt/app/app/Exceptions/NotImplementedException.php -opt/app/app/Exceptions/ValidationException.php -opt/app/app/Export/Collector/AttachmentCollector.php -opt/app/app/Export/Collector/BasicCollector.php -opt/app/app/Export/Collector/CollectorInterface.php -opt/app/app/Export/Collector/UploadCollector.php -opt/app/app/Export/Entry/Entry.php -opt/app/app/Export/ExpandedProcessor.php -opt/app/app/Export/Exporter/BasicExporter.php -opt/app/app/Export/Exporter/CsvExporter.php -opt/app/app/Export/Exporter/ExporterInterface.php -opt/app/app/Export/ProcessorInterface.php -opt/app/app/Factory/AccountFactory.php -opt/app/app/Factory/AccountMetaFactory.php -opt/app/app/Factory/AttachmentFactory.php -opt/app/app/Factory/BillFactory.php -opt/app/app/Factory/BudgetFactory.php -opt/app/app/Factory/CategoryFactory.php -opt/app/app/Factory/PiggyBankEventFactory.php -opt/app/app/Factory/PiggyBankFactory.php -opt/app/app/Factory/RecurrenceFactory.php -opt/app/app/Factory/TagFactory.php -opt/app/app/Factory/TransactionCurrencyFactory.php -opt/app/app/Factory/TransactionFactory.php -opt/app/app/Factory/TransactionJournalFactory.php -opt/app/app/Factory/TransactionJournalMetaFactory.php -opt/app/app/Factory/TransactionTypeFactory.php -opt/app/app/Generator/Chart/Basic/ChartJsGenerator.php -opt/app/app/Generator/Chart/Basic/GeneratorInterface.php -opt/app/app/Generator/Report/Account/MonthReportGenerator.php -opt/app/app/Generator/Report/Account/MultiYearReportGenerator.php -opt/app/app/Generator/Report/Account/YearReportGenerator.php -opt/app/app/Generator/Report/Audit/MonthReportGenerator.php -opt/app/app/Generator/Report/Audit/MultiYearReportGenerator.php -opt/app/app/Generator/Report/Audit/YearReportGenerator.php -opt/app/app/Generator/Report/Budget/MonthReportGenerator.php -opt/app/app/Generator/Report/Budget/MultiYearReportGenerator.php -opt/app/app/Generator/Report/Budget/YearReportGenerator.php -opt/app/app/Generator/Report/Category/MonthReportGenerator.php -opt/app/app/Generator/Report/Category/MultiYearReportGenerator.php -opt/app/app/Generator/Report/Category/YearReportGenerator.php -opt/app/app/Generator/Report/ReportGeneratorFactory.php -opt/app/app/Generator/Report/ReportGeneratorInterface.php -opt/app/app/Generator/Report/Standard/MonthReportGenerator.php -opt/app/app/Generator/Report/Standard/MultiYearReportGenerator.php -opt/app/app/Generator/Report/Standard/YearReportGenerator.php -opt/app/app/Generator/Report/Support.php -opt/app/app/Generator/Report/Tag/MonthReportGenerator.php -opt/app/app/Generator/Report/Tag/MultiYearReportGenerator.php -opt/app/app/Generator/Report/Tag/YearReportGenerator.php -opt/app/app/Handlers/Events/APIEventHandler.php -opt/app/app/Handlers/Events/AdminEventHandler.php -opt/app/app/Handlers/Events/AutomationHandler.php -opt/app/app/Handlers/Events/StoredJournalEventHandler.php -opt/app/app/Handlers/Events/UpdatedJournalEventHandler.php -opt/app/app/Handlers/Events/UserEventHandler.php -opt/app/app/Handlers/Events/VersionCheckEventHandler.php -opt/app/app/Helpers/Attachments/AttachmentHelper.php -opt/app/app/Helpers/Attachments/AttachmentHelperInterface.php -opt/app/app/Helpers/Chart/MetaPieChart.php -opt/app/app/Helpers/Chart/MetaPieChartInterface.php -opt/app/app/Helpers/Collection/Balance.php -opt/app/app/Helpers/Collection/BalanceEntry.php -opt/app/app/Helpers/Collection/BalanceHeader.php -opt/app/app/Helpers/Collection/BalanceLine.php -opt/app/app/Helpers/Collection/Bill.php -opt/app/app/Helpers/Collection/BillLine.php -opt/app/app/Helpers/Collection/Category.php -opt/app/app/Helpers/Collector/TransactionCollector.php -opt/app/app/Helpers/Collector/TransactionCollectorInterface.php -opt/app/app/Helpers/Filter/AmountFilter.php -opt/app/app/Helpers/Filter/CountAttachmentsFilter.php -opt/app/app/Helpers/Filter/DoubleTransactionFilter.php -opt/app/app/Helpers/Filter/EmptyFilter.php -opt/app/app/Helpers/Filter/FilterInterface.php -opt/app/app/Helpers/Filter/InternalTransferFilter.php -opt/app/app/Helpers/Filter/NegativeAmountFilter.php -opt/app/app/Helpers/Filter/OpposingAccountFilter.php -opt/app/app/Helpers/Filter/PositiveAmountFilter.php -opt/app/app/Helpers/Filter/SplitIndicatorFilter.php -opt/app/app/Helpers/Filter/TransactionViewFilter.php -opt/app/app/Helpers/Filter/TransferFilter.php -opt/app/app/Helpers/FiscalHelper.php -opt/app/app/Helpers/FiscalHelperInterface.php -opt/app/app/Helpers/Help/Help.php -opt/app/app/Helpers/Help/HelpInterface.php -opt/app/app/Helpers/Report/BalanceReportHelper.php -opt/app/app/Helpers/Report/BalanceReportHelperInterface.php -opt/app/app/Helpers/Report/BudgetReportHelper.php -opt/app/app/Helpers/Report/BudgetReportHelperInterface.php -opt/app/app/Helpers/Report/NetWorth.php -opt/app/app/Helpers/Report/NetWorthInterface.php -opt/app/app/Helpers/Report/PopupReport.php -opt/app/app/Helpers/Report/PopupReportInterface.php -opt/app/app/Helpers/Report/ReportHelper.php -opt/app/app/Helpers/Report/ReportHelperInterface.php -opt/app/app/Helpers/Update/UpdateTrait.php -opt/app/app/Http/Controllers/Account/CreateController.php -opt/app/app/Http/Controllers/Account/DeleteController.php -opt/app/app/Http/Controllers/Account/EditController.php -opt/app/app/Http/Controllers/Account/IndexController.php -opt/app/app/Http/Controllers/Account/ReconcileController.php -opt/app/app/Http/Controllers/Account/ShowController.php -opt/app/app/Http/Controllers/Admin/ConfigurationController.php -opt/app/app/Http/Controllers/Admin/HomeController.php -opt/app/app/Http/Controllers/Admin/LinkController.php -opt/app/app/Http/Controllers/Admin/UpdateController.php -opt/app/app/Http/Controllers/Admin/UserController.php -opt/app/app/Http/Controllers/AttachmentController.php -opt/app/app/Http/Controllers/Auth/ForgotPasswordController.php -opt/app/app/Http/Controllers/Auth/LoginController.php -opt/app/app/Http/Controllers/Auth/RegisterController.php -opt/app/app/Http/Controllers/Auth/ResetPasswordController.php -opt/app/app/Http/Controllers/Auth/TwoFactorController.php -opt/app/app/Http/Controllers/BillController.php -opt/app/app/Http/Controllers/Budget/AmountController.php -opt/app/app/Http/Controllers/Budget/CreateController.php -opt/app/app/Http/Controllers/Budget/DeleteController.php -opt/app/app/Http/Controllers/Budget/EditController.php -opt/app/app/Http/Controllers/Budget/IndexController.php -opt/app/app/Http/Controllers/Budget/ShowController.php -opt/app/app/Http/Controllers/Category/NoCategoryController.php -opt/app/app/Http/Controllers/Category/ShowController.php -opt/app/app/Http/Controllers/CategoryController.php -opt/app/app/Http/Controllers/Chart/AccountController.php -opt/app/app/Http/Controllers/Chart/BillController.php -opt/app/app/Http/Controllers/Chart/BudgetController.php -opt/app/app/Http/Controllers/Chart/BudgetReportController.php -opt/app/app/Http/Controllers/Chart/CategoryController.php -opt/app/app/Http/Controllers/Chart/CategoryReportController.php -opt/app/app/Http/Controllers/Chart/ExpenseReportController.php -opt/app/app/Http/Controllers/Chart/PiggyBankController.php -opt/app/app/Http/Controllers/Chart/ReportController.php -opt/app/app/Http/Controllers/Chart/TagReportController.php -opt/app/app/Http/Controllers/Controller.php -opt/app/app/Http/Controllers/CurrencyController.php -opt/app/app/Http/Controllers/DebugController.php -opt/app/app/Http/Controllers/ExportController.php -opt/app/app/Http/Controllers/HelpController.php -opt/app/app/Http/Controllers/HomeController.php -opt/app/app/Http/Controllers/Import/CallbackController.php -opt/app/app/Http/Controllers/Import/IndexController.php -opt/app/app/Http/Controllers/Import/JobConfigurationController.php -opt/app/app/Http/Controllers/Import/JobStatusController.php -opt/app/app/Http/Controllers/Import/PrerequisitesController.php -opt/app/app/Http/Controllers/JavascriptController.php -opt/app/app/Http/Controllers/Json/AutoCompleteController.php -opt/app/app/Http/Controllers/Json/BoxController.php -opt/app/app/Http/Controllers/Json/ExchangeController.php -opt/app/app/Http/Controllers/Json/FrontpageController.php -opt/app/app/Http/Controllers/Json/IntroController.php -opt/app/app/Http/Controllers/Json/ReconcileController.php -opt/app/app/Http/Controllers/Json/RecurrenceController.php -opt/app/app/Http/Controllers/JsonController.php -opt/app/app/Http/Controllers/NewUserController.php -opt/app/app/Http/Controllers/PiggyBankController.php -opt/app/app/Http/Controllers/Popup/ReportController.php -opt/app/app/Http/Controllers/PreferencesController.php -opt/app/app/Http/Controllers/ProfileController.php -opt/app/app/Http/Controllers/Recurring/CreateController.php -opt/app/app/Http/Controllers/Recurring/DeleteController.php -opt/app/app/Http/Controllers/Recurring/EditController.php -opt/app/app/Http/Controllers/Recurring/IndexController.php -opt/app/app/Http/Controllers/Report/AccountController.php -opt/app/app/Http/Controllers/Report/BalanceController.php -opt/app/app/Http/Controllers/Report/BudgetController.php -opt/app/app/Http/Controllers/Report/CategoryController.php -opt/app/app/Http/Controllers/Report/ExpenseController.php -opt/app/app/Http/Controllers/Report/OperationsController.php -opt/app/app/Http/Controllers/ReportController.php -opt/app/app/Http/Controllers/Rule/CreateController.php -opt/app/app/Http/Controllers/Rule/DeleteController.php -opt/app/app/Http/Controllers/Rule/EditController.php -opt/app/app/Http/Controllers/Rule/IndexController.php -opt/app/app/Http/Controllers/Rule/SelectController.php -opt/app/app/Http/Controllers/RuleGroupController.php -opt/app/app/Http/Controllers/SearchController.php -opt/app/app/Http/Controllers/System/CronController.php -opt/app/app/Http/Controllers/System/InstallController.php -opt/app/app/Http/Controllers/TagController.php -opt/app/app/Http/Controllers/Transaction/BulkController.php -opt/app/app/Http/Controllers/Transaction/ConvertController.php -opt/app/app/Http/Controllers/Transaction/LinkController.php -opt/app/app/Http/Controllers/Transaction/MassController.php -opt/app/app/Http/Controllers/Transaction/SingleController.php -opt/app/app/Http/Controllers/Transaction/SplitController.php -opt/app/app/Http/Controllers/TransactionController.php -opt/app/app/Http/Kernel.php -opt/app/app/Http/Middleware/Authenticate.php -opt/app/app/Http/Middleware/AuthenticateTwoFactor.php -opt/app/app/Http/Middleware/Binder.php -opt/app/app/Http/Middleware/EncryptCookies.php -opt/app/app/Http/Middleware/Installer.php -opt/app/app/Http/Middleware/IsAdmin.php -opt/app/app/Http/Middleware/IsDemoUser.php -opt/app/app/Http/Middleware/IsSandStormUser.php -opt/app/app/Http/Middleware/Range.php -opt/app/app/Http/Middleware/RedirectIfAuthenticated.php -opt/app/app/Http/Middleware/RedirectIfTwoFactorAuthenticated.php -opt/app/app/Http/Middleware/Sandstorm.php -opt/app/app/Http/Middleware/SecureHeaders.php -opt/app/app/Http/Middleware/StartFireflySession.php -opt/app/app/Http/Middleware/TrimStrings.php -opt/app/app/Http/Middleware/TrustProxies.php -opt/app/app/Http/Middleware/VerifyCsrfToken.php -opt/app/app/Http/Requests/AccountFormRequest.php -opt/app/app/Http/Requests/AttachmentFormRequest.php -opt/app/app/Http/Requests/BillFormRequest.php -opt/app/app/Http/Requests/BudgetFormRequest.php -opt/app/app/Http/Requests/BudgetIncomeRequest.php -opt/app/app/Http/Requests/BulkEditJournalRequest.php -opt/app/app/Http/Requests/CategoryFormRequest.php -opt/app/app/Http/Requests/ConfigurationRequest.php -opt/app/app/Http/Requests/CurrencyFormRequest.php -opt/app/app/Http/Requests/DeleteAccountFormRequest.php -opt/app/app/Http/Requests/EmailFormRequest.php -opt/app/app/Http/Requests/ExportFormRequest.php -opt/app/app/Http/Requests/JournalFormRequest.php -opt/app/app/Http/Requests/JournalLinkRequest.php -opt/app/app/Http/Requests/LinkTypeFormRequest.php -opt/app/app/Http/Requests/MassDeleteJournalRequest.php -opt/app/app/Http/Requests/MassEditJournalRequest.php -opt/app/app/Http/Requests/NewUserFormRequest.php -opt/app/app/Http/Requests/PiggyBankFormRequest.php -opt/app/app/Http/Requests/ProfileFormRequest.php -opt/app/app/Http/Requests/ReconciliationStoreRequest.php -opt/app/app/Http/Requests/ReconciliationUpdateRequest.php -opt/app/app/Http/Requests/RecurrenceFormRequest.php -opt/app/app/Http/Requests/ReportFormRequest.php -opt/app/app/Http/Requests/Request.php -opt/app/app/Http/Requests/RuleFormRequest.php -opt/app/app/Http/Requests/RuleGroupFormRequest.php -opt/app/app/Http/Requests/SelectTransactionsRequest.php -opt/app/app/Http/Requests/SplitJournalFormRequest.php -opt/app/app/Http/Requests/TagFormRequest.php -opt/app/app/Http/Requests/TestRuleFormRequest.php -opt/app/app/Http/Requests/TokenFormRequest.php -opt/app/app/Http/Requests/UserFormRequest.php -opt/app/app/Http/Requests/UserRegistrationRequest.php -opt/app/app/Import/Converter/Amount.php -opt/app/app/Import/Converter/AmountCredit.php -opt/app/app/Import/Converter/AmountDebit.php -opt/app/app/Import/Converter/AmountNegated.php -opt/app/app/Import/Converter/BankDebitCredit.php -opt/app/app/Import/Converter/ConverterInterface.php -opt/app/app/Import/JobConfiguration/BunqJobConfiguration.php -opt/app/app/Import/JobConfiguration/FakeJobConfiguration.php -opt/app/app/Import/JobConfiguration/FileJobConfiguration.php -opt/app/app/Import/JobConfiguration/FinTSConfigurationSteps.php -opt/app/app/Import/JobConfiguration/FinTSJobConfiguration.php -opt/app/app/Import/JobConfiguration/JobConfigurationInterface.php -opt/app/app/Import/JobConfiguration/SpectreJobConfiguration.php -opt/app/app/Import/JobConfiguration/YnabJobConfiguration.php -opt/app/app/Import/Mapper/AssetAccountIbans.php -opt/app/app/Import/Mapper/AssetAccounts.php -opt/app/app/Import/Mapper/Bills.php -opt/app/app/Import/Mapper/Budgets.php -opt/app/app/Import/Mapper/Categories.php -opt/app/app/Import/Mapper/MapperInterface.php -opt/app/app/Import/Mapper/OpposingAccountIbans.php -opt/app/app/Import/Mapper/OpposingAccounts.php -opt/app/app/Import/Mapper/Tags.php -opt/app/app/Import/Mapper/TransactionCurrencies.php -opt/app/app/Import/MapperPreProcess/PreProcessorInterface.php -opt/app/app/Import/MapperPreProcess/TagsComma.php -opt/app/app/Import/MapperPreProcess/TagsSpace.php -opt/app/app/Import/Prerequisites/BunqPrerequisites.php -opt/app/app/Import/Prerequisites/FakePrerequisites.php -opt/app/app/Import/Prerequisites/FilePrerequisites.php -opt/app/app/Import/Prerequisites/PrerequisitesInterface.php -opt/app/app/Import/Prerequisites/SpectrePrerequisites.php -opt/app/app/Import/Prerequisites/YnabPrerequisites.php -opt/app/app/Import/Routine/BunqRoutine.php -opt/app/app/Import/Routine/FakeRoutine.php -opt/app/app/Import/Routine/FileRoutine.php -opt/app/app/Import/Routine/FinTSRoutine.php -opt/app/app/Import/Routine/RoutineInterface.php -opt/app/app/Import/Routine/SpectreRoutine.php -opt/app/app/Import/Routine/YnabRoutine.php -opt/app/app/Import/Specifics/AbnAmroDescription.php -opt/app/app/Import/Specifics/IngDescription.php -opt/app/app/Import/Specifics/PresidentsChoice.php -opt/app/app/Import/Specifics/RabobankDescription.php -opt/app/app/Import/Specifics/SnsDescription.php -opt/app/app/Import/Specifics/SpecificInterface.php -opt/app/app/Import/Storage/ImportArrayStorage.php -opt/app/app/Jobs/CreateRecurringTransactions.php -opt/app/app/Jobs/ExecuteRuleGroupOnExistingTransactions.php -opt/app/app/Jobs/ExecuteRuleOnExistingTransactions.php -opt/app/app/Jobs/Job.php -opt/app/app/Jobs/MailError.php -opt/app/app/Mail/AccessTokenCreatedMail.php -opt/app/app/Mail/AdminTestMail.php -opt/app/app/Mail/ConfirmEmailChangeMail.php -opt/app/app/Mail/OAuthTokenCreatedMail.php -opt/app/app/Mail/RegisteredUser.php -opt/app/app/Mail/ReportNewJournalsMail.php -opt/app/app/Mail/RequestedNewPassword.php -opt/app/app/Mail/UndoEmailChangeMail.php -opt/app/app/Models/Account.php -opt/app/app/Models/AccountMeta.php -opt/app/app/Models/AccountType.php -opt/app/app/Models/Attachment.php -opt/app/app/Models/AvailableBudget.php -opt/app/app/Models/Bill.php -opt/app/app/Models/Budget.php -opt/app/app/Models/BudgetLimit.php -opt/app/app/Models/Category.php -opt/app/app/Models/Configuration.php -opt/app/app/Models/CurrencyExchangeRate.php -opt/app/app/Models/ExportJob.php -opt/app/app/Models/ImportJob.php -opt/app/app/Models/LinkType.php -opt/app/app/Models/Note.php -opt/app/app/Models/PiggyBank.php -opt/app/app/Models/PiggyBankEvent.php -opt/app/app/Models/PiggyBankRepetition.php -opt/app/app/Models/Preference.php -opt/app/app/Models/Recurrence.php -opt/app/app/Models/RecurrenceMeta.php -opt/app/app/Models/RecurrenceRepetition.php -opt/app/app/Models/RecurrenceTransaction.php -opt/app/app/Models/RecurrenceTransactionMeta.php -opt/app/app/Models/Role.php -opt/app/app/Models/Rule.php -opt/app/app/Models/RuleAction.php -opt/app/app/Models/RuleGroup.php -opt/app/app/Models/RuleTrigger.php -opt/app/app/Models/Tag.php -opt/app/app/Models/Transaction.php -opt/app/app/Models/TransactionCurrency.php -opt/app/app/Models/TransactionGroup.php -opt/app/app/Models/TransactionJournal.php -opt/app/app/Models/TransactionJournalLink.php -opt/app/app/Models/TransactionJournalMeta.php -opt/app/app/Models/TransactionType.php -opt/app/app/Providers/AccountServiceProvider.php -opt/app/app/Providers/AdminServiceProvider.php -opt/app/app/Providers/AppServiceProvider.php -opt/app/app/Providers/AttachmentServiceProvider.php -opt/app/app/Providers/AuthServiceProvider.php -opt/app/app/Providers/BillServiceProvider.php -opt/app/app/Providers/BroadcastServiceProvider.php -opt/app/app/Providers/BudgetServiceProvider.php -opt/app/app/Providers/CategoryServiceProvider.php -opt/app/app/Providers/CurrencyServiceProvider.php -opt/app/app/Providers/EventServiceProvider.php -opt/app/app/Providers/ExportJobServiceProvider.php -opt/app/app/Providers/FireflyServiceProvider.php -opt/app/app/Providers/FireflySessionProvider.php -opt/app/app/Providers/JournalServiceProvider.php -opt/app/app/Providers/PiggyBankServiceProvider.php -opt/app/app/Providers/RecurringServiceProvider.php -opt/app/app/Providers/RouteServiceProvider.php -opt/app/app/Providers/RuleGroupServiceProvider.php -opt/app/app/Providers/RuleServiceProvider.php -opt/app/app/Providers/SearchServiceProvider.php -opt/app/app/Providers/SessionServiceProvider.php -opt/app/app/Providers/TagServiceProvider.php -opt/app/app/Repositories/Account/AccountRepository.php -opt/app/app/Repositories/Account/AccountRepositoryInterface.php -opt/app/app/Repositories/Account/AccountTasker.php -opt/app/app/Repositories/Account/AccountTaskerInterface.php -opt/app/app/Repositories/Attachment/AttachmentRepository.php -opt/app/app/Repositories/Attachment/AttachmentRepositoryInterface.php -opt/app/app/Repositories/Bill/BillRepository.php -opt/app/app/Repositories/Bill/BillRepositoryInterface.php -opt/app/app/Repositories/Budget/BudgetRepository.php -opt/app/app/Repositories/Budget/BudgetRepositoryInterface.php -opt/app/app/Repositories/Category/CategoryRepository.php -opt/app/app/Repositories/Category/CategoryRepositoryInterface.php -opt/app/app/Repositories/Currency/CurrencyRepository.php -opt/app/app/Repositories/Currency/CurrencyRepositoryInterface.php -opt/app/app/Repositories/ExportJob/ExportJobRepository.php -opt/app/app/Repositories/ExportJob/ExportJobRepositoryInterface.php -opt/app/app/Repositories/ImportJob/ImportJobRepository.php -opt/app/app/Repositories/ImportJob/ImportJobRepositoryInterface.php -opt/app/app/Repositories/Journal/JournalRepository.php -opt/app/app/Repositories/Journal/JournalRepositoryInterface.php -opt/app/app/Repositories/LinkType/LinkTypeRepository.php -opt/app/app/Repositories/LinkType/LinkTypeRepositoryInterface.php -opt/app/app/Repositories/PiggyBank/PiggyBankRepository.php -opt/app/app/Repositories/PiggyBank/PiggyBankRepositoryInterface.php -opt/app/app/Repositories/Recurring/RecurringRepository.php -opt/app/app/Repositories/Recurring/RecurringRepositoryInterface.php -opt/app/app/Repositories/Rule/RuleRepository.php -opt/app/app/Repositories/Rule/RuleRepositoryInterface.php -opt/app/app/Repositories/RuleGroup/RuleGroupRepository.php -opt/app/app/Repositories/RuleGroup/RuleGroupRepositoryInterface.php -opt/app/app/Repositories/Tag/TagRepository.php -opt/app/app/Repositories/Tag/TagRepositoryInterface.php -opt/app/app/Repositories/User/UserRepository.php -opt/app/app/Repositories/User/UserRepositoryInterface.php -opt/app/app/Rules/BelongsUser.php -opt/app/app/Rules/IsAssetAccountId.php -opt/app/app/Rules/IsBoolean.php -opt/app/app/Rules/IsDateOrTime.php -opt/app/app/Rules/IsValidAttachmentModel.php -opt/app/app/Rules/UniqueIban.php -opt/app/app/Rules/ValidRecurrenceRepetitionType.php -opt/app/app/Rules/ValidRecurrenceRepetitionValue.php -opt/app/app/Rules/ValidTransactions.php -opt/app/app/Rules/ZeroOrMore.php -opt/app/app/Services/Bunq/ApiContext.php -opt/app/app/Services/Bunq/MonetaryAccount.php -opt/app/app/Services/Bunq/Payment.php -opt/app/app/Services/Currency/ExchangeRateInterface.php -opt/app/app/Services/Currency/FixerIOv2.php -opt/app/app/Services/Currency/RatesApiIOv1.php -opt/app/app/Services/Github/Object/GithubObject.php -opt/app/app/Services/Github/Object/Release.php -opt/app/app/Services/Github/Request/GithubRequest.php -opt/app/app/Services/Github/Request/UpdateRequest.php -opt/app/app/Services/IP/IPRetrievalInterface.php -opt/app/app/Services/IP/IpifyOrg.php -opt/app/app/Services/Internal/Destroy/AccountDestroyService.php -opt/app/app/Services/Internal/Destroy/BillDestroyService.php -opt/app/app/Services/Internal/Destroy/BudgetDestroyService.php -opt/app/app/Services/Internal/Destroy/CategoryDestroyService.php -opt/app/app/Services/Internal/Destroy/CurrencyDestroyService.php -opt/app/app/Services/Internal/Destroy/JournalDestroyService.php -opt/app/app/Services/Internal/Destroy/RecurrenceDestroyService.php -opt/app/app/Services/Internal/File/EncryptService.php -opt/app/app/Services/Internal/Support/AccountServiceTrait.php -opt/app/app/Services/Internal/Support/BillServiceTrait.php -opt/app/app/Services/Internal/Support/JournalServiceTrait.php -opt/app/app/Services/Internal/Support/RecurringTransactionTrait.php -opt/app/app/Services/Internal/Support/TransactionServiceTrait.php -opt/app/app/Services/Internal/Support/TransactionTypeTrait.php -opt/app/app/Services/Internal/Update/AccountUpdateService.php -opt/app/app/Services/Internal/Update/BillUpdateService.php -opt/app/app/Services/Internal/Update/CategoryUpdateService.php -opt/app/app/Services/Internal/Update/CurrencyUpdateService.php -opt/app/app/Services/Internal/Update/JournalUpdateService.php -opt/app/app/Services/Internal/Update/RecurrenceUpdateService.php -opt/app/app/Services/Internal/Update/TransactionUpdateService.php -opt/app/app/Services/Password/PwndVerifierV2.php -opt/app/app/Services/Password/Verifier.php -opt/app/app/Services/Spectre/Exception/DuplicatedCustomerException.php -opt/app/app/Services/Spectre/Exception/SpectreException.php -opt/app/app/Services/Spectre/Exception/WrongRequestFormatException.php -opt/app/app/Services/Spectre/Object/Account.php -opt/app/app/Services/Spectre/Object/Attempt.php -opt/app/app/Services/Spectre/Object/Customer.php -opt/app/app/Services/Spectre/Object/Holder.php -opt/app/app/Services/Spectre/Object/Login.php -opt/app/app/Services/Spectre/Object/SpectreObject.php -opt/app/app/Services/Spectre/Object/Token.php -opt/app/app/Services/Spectre/Object/Transaction.php -opt/app/app/Services/Spectre/Object/TransactionExtra.php -opt/app/app/Services/Spectre/Request/CreateTokenRequest.php -opt/app/app/Services/Spectre/Request/ListAccountsRequest.php -opt/app/app/Services/Spectre/Request/ListCustomersRequest.php -opt/app/app/Services/Spectre/Request/ListLoginsRequest.php -opt/app/app/Services/Spectre/Request/ListTransactionsRequest.php -opt/app/app/Services/Spectre/Request/NewCustomerRequest.php -opt/app/app/Services/Spectre/Request/SpectreRequest.php -opt/app/app/Services/Ynab/Request/GetAccountsRequest.php -opt/app/app/Services/Ynab/Request/GetBudgetsRequest.php -opt/app/app/Services/Ynab/Request/GetTransactionsRequest.php -opt/app/app/Services/Ynab/Request/YnabRequest.php -opt/app/app/Support/Amount.php -opt/app/app/Support/Binder/AccountList.php -opt/app/app/Support/Binder/BinderInterface.php -opt/app/app/Support/Binder/BudgetList.php -opt/app/app/Support/Binder/CLIToken.php -opt/app/app/Support/Binder/CategoryList.php -opt/app/app/Support/Binder/ConfigurationName.php -opt/app/app/Support/Binder/CurrencyCode.php -opt/app/app/Support/Binder/Date.php -opt/app/app/Support/Binder/ImportProvider.php -opt/app/app/Support/Binder/JournalList.php -opt/app/app/Support/Binder/SimpleJournalList.php -opt/app/app/Support/Binder/TagList.php -opt/app/app/Support/Binder/TagOrId.php -opt/app/app/Support/Binder/UnfinishedJournal.php -opt/app/app/Support/CacheProperties.php -opt/app/app/Support/ChartColour.php -opt/app/app/Support/Cronjobs/AbstractCronjob.php -opt/app/app/Support/Cronjobs/RecurringCronjob.php -opt/app/app/Support/Domain.php -opt/app/app/Support/ExpandedForm.php -opt/app/app/Support/Facades/Amount.php -opt/app/app/Support/Facades/ExpandedForm.php -opt/app/app/Support/Facades/FireflyConfig.php -opt/app/app/Support/Facades/Navigation.php -opt/app/app/Support/Facades/Preferences.php -opt/app/app/Support/Facades/Steam.php -opt/app/app/Support/FinTS/FinTS.php -opt/app/app/Support/FinTS/MetadataParser.php -opt/app/app/Support/FireflyConfig.php -opt/app/app/Support/Http/Api/AccountFilter.php -opt/app/app/Support/Http/Api/TransactionFilter.php -opt/app/app/Support/Http/Controllers/AugumentData.php -opt/app/app/Support/Http/Controllers/AutoCompleteCollector.php -opt/app/app/Support/Http/Controllers/BasicDataSupport.php -opt/app/app/Support/Http/Controllers/ChartGeneration.php -opt/app/app/Support/Http/Controllers/CreateStuff.php -opt/app/app/Support/Http/Controllers/CronRunner.php -opt/app/app/Support/Http/Controllers/DateCalculation.php -opt/app/app/Support/Http/Controllers/GetConfigurationData.php -opt/app/app/Support/Http/Controllers/ModelInformation.php -opt/app/app/Support/Http/Controllers/PeriodOverview.php -opt/app/app/Support/Http/Controllers/RenderPartialViews.php -opt/app/app/Support/Http/Controllers/RequestInformation.php -opt/app/app/Support/Http/Controllers/RuleManagement.php -opt/app/app/Support/Http/Controllers/TransactionCalculation.php -opt/app/app/Support/Http/Controllers/UserNavigation.php -opt/app/app/Support/Import/Information/GetSpectreCustomerTrait.php -opt/app/app/Support/Import/Information/GetSpectreTokenTrait.php -opt/app/app/Support/Import/JobConfiguration/Bunq/BunqJobConfigurationInterface.php -opt/app/app/Support/Import/JobConfiguration/Bunq/ChooseAccountsHandler.php -opt/app/app/Support/Import/JobConfiguration/Bunq/NewBunqJobHandler.php -opt/app/app/Support/Import/JobConfiguration/File/ConfigureMappingHandler.php -opt/app/app/Support/Import/JobConfiguration/File/ConfigureRolesHandler.php -opt/app/app/Support/Import/JobConfiguration/File/ConfigureUploadHandler.php -opt/app/app/Support/Import/JobConfiguration/File/FileConfigurationInterface.php -opt/app/app/Support/Import/JobConfiguration/File/NewFileJobHandler.php -opt/app/app/Support/Import/JobConfiguration/FinTS/ChooseAccountHandler.php -opt/app/app/Support/Import/JobConfiguration/FinTS/FinTSConfigurationInterface.php -opt/app/app/Support/Import/JobConfiguration/FinTS/NewFinTSJobHandler.php -opt/app/app/Support/Import/JobConfiguration/Spectre/AuthenticatedHandler.php -opt/app/app/Support/Import/JobConfiguration/Spectre/ChooseAccountsHandler.php -opt/app/app/Support/Import/JobConfiguration/Spectre/ChooseLoginHandler.php -opt/app/app/Support/Import/JobConfiguration/Spectre/DoAuthenticateHandler.php -opt/app/app/Support/Import/JobConfiguration/Spectre/NewSpectreJobHandler.php -opt/app/app/Support/Import/JobConfiguration/Spectre/SpectreJobConfigurationInterface.php -opt/app/app/Support/Import/JobConfiguration/Ynab/NewYnabJobHandler.php -opt/app/app/Support/Import/JobConfiguration/Ynab/SelectAccountsHandler.php -opt/app/app/Support/Import/JobConfiguration/Ynab/SelectBudgetHandler.php -opt/app/app/Support/Import/JobConfiguration/Ynab/YnabJobConfigurationInterface.php -opt/app/app/Support/Import/Placeholder/ColumnValue.php -opt/app/app/Support/Import/Placeholder/ImportTransaction.php -opt/app/app/Support/Import/Routine/Bunq/PaymentConverter.php -opt/app/app/Support/Import/Routine/Bunq/StageImportDataHandler.php -opt/app/app/Support/Import/Routine/Bunq/StageNewHandler.php -opt/app/app/Support/Import/Routine/Fake/StageAhoyHandler.php -opt/app/app/Support/Import/Routine/Fake/StageFinalHandler.php -opt/app/app/Support/Import/Routine/Fake/StageNewHandler.php -opt/app/app/Support/Import/Routine/File/AssetAccountMapper.php -opt/app/app/Support/Import/Routine/File/CSVProcessor.php -opt/app/app/Support/Import/Routine/File/CurrencyMapper.php -opt/app/app/Support/Import/Routine/File/FileProcessorInterface.php -opt/app/app/Support/Import/Routine/File/ImportableConverter.php -opt/app/app/Support/Import/Routine/File/ImportableCreator.php -opt/app/app/Support/Import/Routine/File/LineReader.php -opt/app/app/Support/Import/Routine/File/MappedValuesValidator.php -opt/app/app/Support/Import/Routine/File/MappingConverger.php -opt/app/app/Support/Import/Routine/File/OFXProcessor.php -opt/app/app/Support/Import/Routine/File/OpposingAccountMapper.php -opt/app/app/Support/Import/Routine/FinTS/StageImportDataHandler.php -opt/app/app/Support/Import/Routine/Spectre/StageAuthenticatedHandler.php -opt/app/app/Support/Import/Routine/Spectre/StageImportDataHandler.php -opt/app/app/Support/Import/Routine/Spectre/StageNewHandler.php -opt/app/app/Support/Import/Routine/Ynab/GetAccountsHandler.php -opt/app/app/Support/Import/Routine/Ynab/ImportDataHandler.php -opt/app/app/Support/Import/Routine/Ynab/StageGetAccessHandler.php -opt/app/app/Support/Import/Routine/Ynab/StageGetBudgetsHandler.php -opt/app/app/Support/Import/Routine/Ynab/StageGetTransactionsHandler.php -opt/app/app/Support/Import/Routine/Ynab/StageMatchAccountsHandler.php -opt/app/app/Support/Logging/AuditLogger.php -opt/app/app/Support/Logging/AuditProcessor.php -opt/app/app/Support/Navigation.php -opt/app/app/Support/Preferences.php -opt/app/app/Support/Repositories/Recurring/CalculateRangeOccurrences.php -opt/app/app/Support/Repositories/Recurring/CalculateXOccurrences.php -opt/app/app/Support/Repositories/Recurring/FiltersWeekends.php -opt/app/app/Support/Search/Modifier.php -opt/app/app/Support/Search/Search.php -opt/app/app/Support/Search/SearchInterface.php -opt/app/app/Support/Steam.php -opt/app/app/Support/Twig/AmountFormat.php -opt/app/app/Support/Twig/Extension/Account.php -opt/app/app/Support/Twig/Extension/Transaction.php -opt/app/app/Support/Twig/Extension/TransactionJournal.php -opt/app/app/Support/Twig/General.php -opt/app/app/Support/Twig/Journal.php -opt/app/app/Support/Twig/Loader/AccountLoader.php -opt/app/app/Support/Twig/Loader/TransactionJournalLoader.php -opt/app/app/Support/Twig/Loader/TransactionLoader.php -opt/app/app/Support/Twig/Rule.php -opt/app/app/Support/Twig/Transaction.php -opt/app/app/Support/Twig/Translation.php -opt/app/app/TransactionRules/Actions/ActionInterface.php -opt/app/app/TransactionRules/Actions/AddTag.php -opt/app/app/TransactionRules/Actions/AppendDescription.php -opt/app/app/TransactionRules/Actions/AppendNotes.php -opt/app/app/TransactionRules/Actions/ClearBudget.php -opt/app/app/TransactionRules/Actions/ClearCategory.php -opt/app/app/TransactionRules/Actions/ClearNotes.php -opt/app/app/TransactionRules/Actions/ConvertToDeposit.php -opt/app/app/TransactionRules/Actions/ConvertToTransfer.php -opt/app/app/TransactionRules/Actions/ConvertToWithdrawal.php -opt/app/app/TransactionRules/Actions/LinkToBill.php -opt/app/app/TransactionRules/Actions/PrependDescription.php -opt/app/app/TransactionRules/Actions/PrependNotes.php -opt/app/app/TransactionRules/Actions/RemoveAllTags.php -opt/app/app/TransactionRules/Actions/RemoveTag.php -opt/app/app/TransactionRules/Actions/SetBudget.php -opt/app/app/TransactionRules/Actions/SetCategory.php -opt/app/app/TransactionRules/Actions/SetDescription.php -opt/app/app/TransactionRules/Actions/SetDestinationAccount.php -opt/app/app/TransactionRules/Actions/SetNotes.php -opt/app/app/TransactionRules/Actions/SetSourceAccount.php -opt/app/app/TransactionRules/Factory/ActionFactory.php -opt/app/app/TransactionRules/Factory/TriggerFactory.php -opt/app/app/TransactionRules/Processor.php -opt/app/app/TransactionRules/TransactionMatcher.php -opt/app/app/TransactionRules/Triggers/AbstractTrigger.php -opt/app/app/TransactionRules/Triggers/AmountExactly.php -opt/app/app/TransactionRules/Triggers/AmountLess.php -opt/app/app/TransactionRules/Triggers/AmountMore.php -opt/app/app/TransactionRules/Triggers/BudgetIs.php -opt/app/app/TransactionRules/Triggers/CategoryIs.php -opt/app/app/TransactionRules/Triggers/CurrencyIs.php -opt/app/app/TransactionRules/Triggers/DescriptionContains.php -opt/app/app/TransactionRules/Triggers/DescriptionEnds.php -opt/app/app/TransactionRules/Triggers/DescriptionIs.php -opt/app/app/TransactionRules/Triggers/DescriptionStarts.php -opt/app/app/TransactionRules/Triggers/FromAccountContains.php -opt/app/app/TransactionRules/Triggers/FromAccountEnds.php -opt/app/app/TransactionRules/Triggers/FromAccountIs.php -opt/app/app/TransactionRules/Triggers/FromAccountStarts.php -opt/app/app/TransactionRules/Triggers/HasAnyBudget.php -opt/app/app/TransactionRules/Triggers/HasAnyCategory.php -opt/app/app/TransactionRules/Triggers/HasAnyTag.php -opt/app/app/TransactionRules/Triggers/HasAttachment.php -opt/app/app/TransactionRules/Triggers/HasNoBudget.php -opt/app/app/TransactionRules/Triggers/HasNoCategory.php -opt/app/app/TransactionRules/Triggers/HasNoTag.php -opt/app/app/TransactionRules/Triggers/NotesAny.php -opt/app/app/TransactionRules/Triggers/NotesAre.php -opt/app/app/TransactionRules/Triggers/NotesContain.php -opt/app/app/TransactionRules/Triggers/NotesEmpty.php -opt/app/app/TransactionRules/Triggers/NotesEnd.php -opt/app/app/TransactionRules/Triggers/NotesStart.php -opt/app/app/TransactionRules/Triggers/TagIs.php -opt/app/app/TransactionRules/Triggers/ToAccountContains.php -opt/app/app/TransactionRules/Triggers/ToAccountEnds.php -opt/app/app/TransactionRules/Triggers/ToAccountIs.php -opt/app/app/TransactionRules/Triggers/ToAccountStarts.php -opt/app/app/TransactionRules/Triggers/TransactionType.php -opt/app/app/TransactionRules/Triggers/TriggerInterface.php -opt/app/app/TransactionRules/Triggers/UserAction.php -opt/app/app/Transformers/AbstractTransformer.php -opt/app/app/Transformers/AccountTransformer.php -opt/app/app/Transformers/AttachmentTransformer.php -opt/app/app/Transformers/AvailableBudgetTransformer.php -opt/app/app/Transformers/BillTransformer.php -opt/app/app/Transformers/BudgetLimitTransformer.php -opt/app/app/Transformers/BudgetTransformer.php -opt/app/app/Transformers/CategoryTransformer.php -opt/app/app/Transformers/CurrencyExchangeRateTransformer.php -opt/app/app/Transformers/CurrencyTransformer.php -opt/app/app/Transformers/ImportJobTransformer.php -opt/app/app/Transformers/LinkTypeTransformer.php -opt/app/app/Transformers/PiggyBankEventTransformer.php -opt/app/app/Transformers/PiggyBankTransformer.php -opt/app/app/Transformers/PreferenceTransformer.php -opt/app/app/Transformers/RecurrenceTransformer.php -opt/app/app/Transformers/RuleGroupTransformer.php -opt/app/app/Transformers/RuleTransformer.php -opt/app/app/Transformers/TagTransformer.php -opt/app/app/Transformers/TransactionLinkTransformer.php -opt/app/app/Transformers/TransactionTransformer.php -opt/app/app/Transformers/UserTransformer.php -opt/app/app/User.php -opt/app/app/Validation/FireflyValidator.php -opt/app/app/Validation/RecurrenceValidation.php -opt/app/app/Validation/TransactionValidation.php -opt/app/artisan -opt/app/bootstrap/app.php -opt/app/bootstrap/cache/packages.php -opt/app/bootstrap/cache/services.php -opt/app/changelog.md -opt/app/composer.json -opt/app/composer.lock -opt/app/composer.phar -opt/app/config -opt/app/config/app.php -opt/app/config/auth.php -opt/app/config/breadcrumbs.php -opt/app/config/broadcasting.php -opt/app/config/cache.php -opt/app/config/csv.php -opt/app/config/database.php -opt/app/config/filesystems.php -opt/app/config/firefly.php -opt/app/config/google2fa.php -opt/app/config/hashing.php -opt/app/config/import.php -opt/app/config/intro.php -opt/app/config/ldap.php -opt/app/config/ldap_auth.php -opt/app/config/logging.php -opt/app/config/mail.php -opt/app/config/queue.php -opt/app/config/services.php -opt/app/config/session.php -opt/app/config/twigbridge.php -opt/app/config/upgrade.php -opt/app/config/view.php -opt/app/database/factories/AccountFactory.php -opt/app/database/factories/ModelFactory.php -opt/app/database/factories/UserFactory.php -opt/app/database/migrations -opt/app/database/migrations/2016_06_16_000000_create_support_tables.php -opt/app/database/migrations/2016_06_16_000001_create_users_table.php -opt/app/database/migrations/2016_06_16_000002_create_main_tables.php -opt/app/database/migrations/2016_08_25_091522_changes_for_3101.php -opt/app/database/migrations/2016_09_12_121359_fix_nullables.php -opt/app/database/migrations/2016_10_09_150037_expand_transactions_table.php -opt/app/database/migrations/2016_10_22_075804_changes_for_v410.php -opt/app/database/migrations/2016_11_24_210552_changes_for_v420.php -opt/app/database/migrations/2016_12_22_150431_changes_for_v430.php -opt/app/database/migrations/2016_12_28_203205_changes_for_v431.php -opt/app/database/migrations/2017_04_13_163623_changes_for_v440.php -opt/app/database/migrations/2017_06_02_105232_changes_for_v450.php -opt/app/database/migrations/2017_08_20_062014_changes_for_v470.php -opt/app/database/migrations/2017_11_04_170844_changes_for_v470a.php -opt/app/database/migrations/2018_01_01_000001_create_oauth_auth_codes_table.php -opt/app/database/migrations/2018_01_01_000002_create_oauth_access_tokens_table.php -opt/app/database/migrations/2018_01_01_000003_create_oauth_refresh_tokens_table.php -opt/app/database/migrations/2018_01_01_000004_create_oauth_clients_table.php -opt/app/database/migrations/2018_01_01_000005_create_oauth_personal_access_clients_table.php -opt/app/database/migrations/2018_03_19_141348_changes_for_v472.php -opt/app/database/migrations/2018_04_07_210913_changes_for_v473.php -opt/app/database/migrations/2018_04_29_174524_changes_for_v474.php -opt/app/database/migrations/2018_06_08_200526_changes_for_v475.php -opt/app/database/migrations/2018_09_05_195147_changes_for_v477.php -opt/app/database/migrations/2018_11_06_172532_changes_for_v479.php -opt/app/database/migrations/2019_01_28_193833_changes_for_v4710.php -opt/app/database/migrations/2019_02_05_055516_changes_for_v4711.php -opt/app/database/migrations/2019_02_11_170529_changes_for_v4712.php -opt/app/database/seeds/AccountTypeSeeder.php -opt/app/database/seeds/ConfigSeeder.php -opt/app/database/seeds/DatabaseSeeder.php -opt/app/database/seeds/LinkTypeSeeder.php -opt/app/database/seeds/PermissionSeeder.php -opt/app/database/seeds/TransactionCurrencySeeder.php -opt/app/database/seeds/TransactionTypeSeeder.php -opt/app/docker-compose.yml -opt/app/index.php -opt/app/public/.htaccess -opt/app/public/.well-known/security.txt -opt/app/public/android-chrome-192x192.png -opt/app/public/android-chrome-512x512.png -opt/app/public/apple-touch-icon-120x120-precomposed.png -opt/app/public/apple-touch-icon-120x120.png -opt/app/public/apple-touch-icon-152x152-precomposed.png -opt/app/public/apple-touch-icon-152x152.png -opt/app/public/apple-touch-icon-180x180-precomposed.png -opt/app/public/apple-touch-icon-180x180.png -opt/app/public/apple-touch-icon-60x60-precomposed.png -opt/app/public/apple-touch-icon-60x60.png -opt/app/public/apple-touch-icon-76x76-precomposed.png -opt/app/public/apple-touch-icon-76x76.png -opt/app/public/apple-touch-icon-precomposed.png -opt/app/public/apple-touch-icon.png -opt/app/public/browserconfig.xml -opt/app/public/favicon-16x16.png -opt/app/public/favicon-32x32.png -opt/app/public/favicon.ico -opt/app/public/index.php -opt/app/public/manifest.json -opt/app/public/mix-manifest.json -opt/app/public/mstile-144x144.png -opt/app/public/mstile-150x150.png -opt/app/public/mstile-310x150.png -opt/app/public/mstile-310x310.png -opt/app/public/mstile-70x70.png -opt/app/public/robots.txt -opt/app/public/safari-pinned-tab.svg -opt/app/public/site.webmanifest -opt/app/public/undefined.js -opt/app/public/v1/css/.htaccess -opt/app/public/v1/css/bootstrap-multiselect.css -opt/app/public/v1/css/bootstrap-sortable.css -opt/app/public/v1/css/bootstrap-tagsinput.css -opt/app/public/v1/css/daterangepicker.css -opt/app/public/v1/css/firefly.css -opt/app/public/v1/css/gf-roboto.css -opt/app/public/v1/css/gf-source.css -opt/app/public/v1/css/jquery-ui/.htaccess -opt/app/public/v1/css/jquery-ui/images/.htaccess -opt/app/public/v1/css/jquery-ui/images/ui-icons_444444_256x240.png -opt/app/public/v1/css/jquery-ui/images/ui-icons_555555_256x240.png -opt/app/public/v1/css/jquery-ui/images/ui-icons_777620_256x240.png -opt/app/public/v1/css/jquery-ui/images/ui-icons_777777_256x240.png -opt/app/public/v1/css/jquery-ui/images/ui-icons_cc0000_256x240.png -opt/app/public/v1/css/jquery-ui/images/ui-icons_ffffff_256x240.png -opt/app/public/v1/css/jquery-ui/jquery-ui.structure.min.css -opt/app/public/v1/css/jquery-ui/jquery-ui.theme.min.css -opt/app/public/v1/fonts/.htaccess -opt/app/public/v1/fonts/Roboto-Regular-cyrillic-ext.woff2 -opt/app/public/v1/fonts/Roboto-Regular-cyrillic.woff2 -opt/app/public/v1/fonts/Roboto-Regular-greek-ext.woff2 -opt/app/public/v1/fonts/Roboto-Regular-greek.woff2 -opt/app/public/v1/fonts/Roboto-Regular-latin-ext.woff2 -opt/app/public/v1/fonts/Roboto-Regular-latin.woff2 -opt/app/public/v1/fonts/Roboto-Regular-vietnamese.woff2 -opt/app/public/v1/fonts/SourceSansPro-Bold-cyrillic-ext.woff -opt/app/public/v1/fonts/SourceSansPro-Bold-cyrillic-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-Bold-cyrillic.woff -opt/app/public/v1/fonts/SourceSansPro-Bold-cyrillic.woff2 -opt/app/public/v1/fonts/SourceSansPro-Bold-greek-ext.woff -opt/app/public/v1/fonts/SourceSansPro-Bold-greek-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-Bold-greek.woff -opt/app/public/v1/fonts/SourceSansPro-Bold-greek.woff2 -opt/app/public/v1/fonts/SourceSansPro-Bold-latin-ext.woff -opt/app/public/v1/fonts/SourceSansPro-Bold-latin-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-Bold-latin.woff -opt/app/public/v1/fonts/SourceSansPro-Bold-latin.woff2 -opt/app/public/v1/fonts/SourceSansPro-Bold-vietnamese.woff -opt/app/public/v1/fonts/SourceSansPro-Bold-vietnamese.woff2 -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-cyrillic-ext.woff -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-cyrillic-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-cyrillic.woff -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-cyrillic.woff2 -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-greek-ext.woff -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-greek-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-greek.woff -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-greek.woff2 -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-latin-ext.woff -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-latin-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-latin.woff -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-latin.woff2 -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-vietnamese.woff -opt/app/public/v1/fonts/SourceSansPro-BoldItalic-vietnamese.woff2 -opt/app/public/v1/fonts/SourceSansPro-Italic-cyrillic-ext.woff -opt/app/public/v1/fonts/SourceSansPro-Italic-cyrillic-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-Italic-cyrillic.woff -opt/app/public/v1/fonts/SourceSansPro-Italic-cyrillic.woff2 -opt/app/public/v1/fonts/SourceSansPro-Italic-greek-ext.woff -opt/app/public/v1/fonts/SourceSansPro-Italic-greek-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-Italic-greek.woff -opt/app/public/v1/fonts/SourceSansPro-Italic-greek.woff2 -opt/app/public/v1/fonts/SourceSansPro-Italic-latin-ext.woff -opt/app/public/v1/fonts/SourceSansPro-Italic-latin-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-Italic-latin.woff -opt/app/public/v1/fonts/SourceSansPro-Italic-latin.woff2 -opt/app/public/v1/fonts/SourceSansPro-Italic-vietnamese.woff -opt/app/public/v1/fonts/SourceSansPro-Italic-vietnamese.woff2 -opt/app/public/v1/fonts/SourceSansPro-Light-cyrillic-ext.woff -opt/app/public/v1/fonts/SourceSansPro-Light-cyrillic-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-Light-cyrillic.woff -opt/app/public/v1/fonts/SourceSansPro-Light-cyrillic.woff2 -opt/app/public/v1/fonts/SourceSansPro-Light-greek-ext.woff -opt/app/public/v1/fonts/SourceSansPro-Light-greek-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-Light-greek.woff -opt/app/public/v1/fonts/SourceSansPro-Light-greek.woff2 -opt/app/public/v1/fonts/SourceSansPro-Light-latin-ext.woff -opt/app/public/v1/fonts/SourceSansPro-Light-latin-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-Light-latin.woff -opt/app/public/v1/fonts/SourceSansPro-Light-latin.woff2 -opt/app/public/v1/fonts/SourceSansPro-Light-vietnamese.woff -opt/app/public/v1/fonts/SourceSansPro-Light-vietnamese.woff2 -opt/app/public/v1/fonts/SourceSansPro-LightItalic-cyrillic-ext.woff -opt/app/public/v1/fonts/SourceSansPro-LightItalic-cyrillic-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-LightItalic-cyrillic.woff -opt/app/public/v1/fonts/SourceSansPro-LightItalic-cyrillic.woff2 -opt/app/public/v1/fonts/SourceSansPro-LightItalic-greek-ext.woff -opt/app/public/v1/fonts/SourceSansPro-LightItalic-greek-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-LightItalic-greek.woff -opt/app/public/v1/fonts/SourceSansPro-LightItalic-greek.woff2 -opt/app/public/v1/fonts/SourceSansPro-LightItalic-latin-ext.woff -opt/app/public/v1/fonts/SourceSansPro-LightItalic-latin-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-LightItalic-latin.woff -opt/app/public/v1/fonts/SourceSansPro-LightItalic-latin.woff2 -opt/app/public/v1/fonts/SourceSansPro-LightItalic-vietnamese.woff -opt/app/public/v1/fonts/SourceSansPro-LightItalic-vietnamese.woff2 -opt/app/public/v1/fonts/SourceSansPro-Regular-cyrillic-ext.woff -opt/app/public/v1/fonts/SourceSansPro-Regular-cyrillic-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-Regular-cyrillic.woff -opt/app/public/v1/fonts/SourceSansPro-Regular-cyrillic.woff2 -opt/app/public/v1/fonts/SourceSansPro-Regular-greek-ext.woff -opt/app/public/v1/fonts/SourceSansPro-Regular-greek-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-Regular-greek.woff -opt/app/public/v1/fonts/SourceSansPro-Regular-greek.woff2 -opt/app/public/v1/fonts/SourceSansPro-Regular-latin-ext.woff -opt/app/public/v1/fonts/SourceSansPro-Regular-latin-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-Regular-latin.woff -opt/app/public/v1/fonts/SourceSansPro-Regular-latin.woff2 -opt/app/public/v1/fonts/SourceSansPro-Regular-vietnamese.woff -opt/app/public/v1/fonts/SourceSansPro-Regular-vietnamese.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBold-cyrillic-ext.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBold-cyrillic-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBold-cyrillic.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBold-cyrillic.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBold-greek-ext.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBold-greek-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBold-greek.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBold-greek.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBold-latin-ext.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBold-latin-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBold-latin.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBold-latin.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBold-vietnamese.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBold-vietnamese.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-cyrillic-ext.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-cyrillic-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-cyrillic.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-cyrillic.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-greek-ext.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-greek-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-greek.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-greek.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-latin-ext.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-latin-ext.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-latin.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-latin.woff2 -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-vietnamese.woff -opt/app/public/v1/fonts/SourceSansPro-SemiBoldItalic-vietnamese.woff2 -opt/app/public/v1/fonts/lato-100.woff -opt/app/public/v1/fonts/lato-100.woff2 -opt/app/public/v1/fonts/roboto-light-300.woff -opt/app/public/v1/fonts/roboto-light-300.woff2 -opt/app/public/v1/fonts/vendor/.htaccess -opt/app/public/v1/fonts/vendor/bootstrap-sass/.htaccess -opt/app/public/v1/fonts/vendor/bootstrap-sass/bootstrap/.htaccess -opt/app/public/v1/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot -opt/app/public/v1/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.svg -opt/app/public/v1/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.ttf -opt/app/public/v1/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff -opt/app/public/v1/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2 -opt/app/public/v1/fonts/vendor/font-awesome/.htaccess -opt/app/public/v1/fonts/vendor/font-awesome/fontawesome-webfont.eot -opt/app/public/v1/fonts/vendor/font-awesome/fontawesome-webfont.svg -opt/app/public/v1/fonts/vendor/font-awesome/fontawesome-webfont.ttf -opt/app/public/v1/fonts/vendor/font-awesome/fontawesome-webfont.woff -opt/app/public/v1/fonts/vendor/font-awesome/fontawesome-webfont.woff2 -opt/app/public/v1/images/.htaccess -opt/app/public/v1/images/error.png -opt/app/public/v1/images/flags/.htaccess -opt/app/public/v1/images/flags/de_DE.png -opt/app/public/v1/images/flags/es_ES.png -opt/app/public/v1/images/flags/fr_FR.png -opt/app/public/v1/images/flags/id_ID.png -opt/app/public/v1/images/flags/it_IT.png -opt/app/public/v1/images/flags/nl_NL.png -opt/app/public/v1/images/flags/pl_PL.png -opt/app/public/v1/images/flags/pt_BR.png -opt/app/public/v1/images/flags/ru_RU.png -opt/app/public/v1/images/flags/tr_TR.png -opt/app/public/v1/images/image.png -opt/app/public/v1/images/loading-small.gif -opt/app/public/v1/images/loading-wide.gif -opt/app/public/v1/images/logos/.htaccess -opt/app/public/v1/images/logos/bunq.png -opt/app/public/v1/images/logos/csv.png -opt/app/public/v1/images/logos/fake.png -opt/app/public/v1/images/logos/file.png -opt/app/public/v1/images/logos/fints.png -opt/app/public/v1/images/logos/plaid.png -opt/app/public/v1/images/logos/quovo.png -opt/app/public/v1/images/logos/spectre.png -opt/app/public/v1/images/logos/ynab.png -opt/app/public/v1/images/logos/yodlee.png -opt/app/public/v1/images/page_green.png -opt/app/public/v1/images/page_white_acrobat.png -opt/app/public/v1/js/.htaccess -opt/app/public/v1/js/app.js -opt/app/public/v1/js/ff/.htaccess -opt/app/public/v1/js/ff/accounts/.htaccess -opt/app/public/v1/js/ff/accounts/create.js -opt/app/public/v1/js/ff/accounts/edit-reconciliation.js -opt/app/public/v1/js/ff/accounts/edit.js -opt/app/public/v1/js/ff/accounts/reconcile.js -opt/app/public/v1/js/ff/accounts/show.js -opt/app/public/v1/js/ff/admin/.htaccess -opt/app/public/v1/js/ff/admin/update/.htaccess -opt/app/public/v1/js/ff/admin/update/index.js -opt/app/public/v1/js/ff/bills/.htaccess -opt/app/public/v1/js/ff/bills/create.js -opt/app/public/v1/js/ff/bills/edit.js -opt/app/public/v1/js/ff/bills/show.js -opt/app/public/v1/js/ff/budgets/.htaccess -opt/app/public/v1/js/ff/budgets/create.js -opt/app/public/v1/js/ff/budgets/edit.js -opt/app/public/v1/js/ff/budgets/index.js -opt/app/public/v1/js/ff/budgets/show.js -opt/app/public/v1/js/ff/categories/.htaccess -opt/app/public/v1/js/ff/categories/create.js -opt/app/public/v1/js/ff/categories/edit.js -opt/app/public/v1/js/ff/categories/index.js -opt/app/public/v1/js/ff/categories/show-by-date.js -opt/app/public/v1/js/ff/categories/show.js -opt/app/public/v1/js/ff/charts.defaults.js -opt/app/public/v1/js/ff/charts.js -opt/app/public/v1/js/ff/common/autocomplete.js -opt/app/public/v1/js/ff/export/.htaccess -opt/app/public/v1/js/ff/export/index.js -opt/app/public/v1/js/ff/firefly.js -opt/app/public/v1/js/ff/guest.js -opt/app/public/v1/js/ff/help.js -opt/app/public/v1/js/ff/import/.htaccess -opt/app/public/v1/js/ff/import/file/.htaccess -opt/app/public/v1/js/ff/import/file/configure-upload.js -opt/app/public/v1/js/ff/import/status.js -opt/app/public/v1/js/ff/import/status_v2.js -opt/app/public/v1/js/ff/index.js -opt/app/public/v1/js/ff/install/.htaccess -opt/app/public/v1/js/ff/install/index.js -opt/app/public/v1/js/ff/intro/.htaccess -opt/app/public/v1/js/ff/intro/intro.js -opt/app/public/v1/js/ff/moment/.htaccess -opt/app/public/v1/js/ff/moment/de_DE.js -opt/app/public/v1/js/ff/moment/en_US.js -opt/app/public/v1/js/ff/moment/es_ES.js -opt/app/public/v1/js/ff/moment/fr_FR.js -opt/app/public/v1/js/ff/moment/id_ID.js -opt/app/public/v1/js/ff/moment/it_IT.js -opt/app/public/v1/js/ff/moment/nl_NL.js -opt/app/public/v1/js/ff/moment/pl_PL.js -opt/app/public/v1/js/ff/moment/pt_BR.js -opt/app/public/v1/js/ff/moment/ru_RU.js -opt/app/public/v1/js/ff/moment/tr_TR.js -opt/app/public/v1/js/ff/piggy-banks/.htaccess -opt/app/public/v1/js/ff/piggy-banks/create.js -opt/app/public/v1/js/ff/piggy-banks/edit.js -opt/app/public/v1/js/ff/piggy-banks/index.js -opt/app/public/v1/js/ff/piggy-banks/show.js -opt/app/public/v1/js/ff/preferences/.htaccess -opt/app/public/v1/js/ff/preferences/index.js -opt/app/public/v1/js/ff/recurring/.htaccess -opt/app/public/v1/js/ff/recurring/create.js -opt/app/public/v1/js/ff/recurring/edit.js -opt/app/public/v1/js/ff/reports/.htaccess -opt/app/public/v1/js/ff/reports/account/.htaccess -opt/app/public/v1/js/ff/reports/account/month.js -opt/app/public/v1/js/ff/reports/all.js -opt/app/public/v1/js/ff/reports/audit/.htaccess -opt/app/public/v1/js/ff/reports/audit/all.js -opt/app/public/v1/js/ff/reports/budget/.htaccess -opt/app/public/v1/js/ff/reports/budget/month.js -opt/app/public/v1/js/ff/reports/category/.htaccess -opt/app/public/v1/js/ff/reports/category/month.js -opt/app/public/v1/js/ff/reports/default/.htaccess -opt/app/public/v1/js/ff/reports/default/all.js -opt/app/public/v1/js/ff/reports/default/month.js -opt/app/public/v1/js/ff/reports/default/multi-year.js -opt/app/public/v1/js/ff/reports/default/year.js -opt/app/public/v1/js/ff/reports/index.js -opt/app/public/v1/js/ff/reports/tag/.htaccess -opt/app/public/v1/js/ff/reports/tag/month.js -opt/app/public/v1/js/ff/rule-groups/create.js -opt/app/public/v1/js/ff/rule-groups/edit.js -opt/app/public/v1/js/ff/rules/.htaccess -opt/app/public/v1/js/ff/rules/create-edit.js -opt/app/public/v1/js/ff/rules/index.js -opt/app/public/v1/js/ff/rules/select-transactions.js -opt/app/public/v1/js/ff/search/.htaccess -opt/app/public/v1/js/ff/search/index.js -opt/app/public/v1/js/ff/tags/.htaccess -opt/app/public/v1/js/ff/tags/create-edit.js -opt/app/public/v1/js/ff/tags/index.js -opt/app/public/v1/js/ff/tags/show.js -opt/app/public/v1/js/ff/transactions/.htaccess -opt/app/public/v1/js/ff/transactions/convert.js -opt/app/public/v1/js/ff/transactions/list.js -opt/app/public/v1/js/ff/transactions/mass/.htaccess -opt/app/public/v1/js/ff/transactions/mass/edit-bulk.js -opt/app/public/v1/js/ff/transactions/mass/edit.js -opt/app/public/v1/js/ff/transactions/show.js -opt/app/public/v1/js/ff/transactions/single/.htaccess -opt/app/public/v1/js/ff/transactions/single/common.js -opt/app/public/v1/js/ff/transactions/single/create.js -opt/app/public/v1/js/ff/transactions/single/edit.js -opt/app/public/v1/js/ff/transactions/split/.htaccess -opt/app/public/v1/js/ff/transactions/split/edit.js -opt/app/public/v1/js/lib/.htaccess -opt/app/public/v1/js/lib/Chart.bundle.min.js -opt/app/public/v1/js/lib/accounting.min.js -opt/app/public/v1/js/lib/bootstrap-multiselect.js -opt/app/public/v1/js/lib/bootstrap-sortable.js -opt/app/public/v1/js/lib/bootstrap-tagsinput.min.js -opt/app/public/v1/js/lib/bootstrap-tagsinput.min.js.map -opt/app/public/v1/js/lib/bootstrap3-typeahead.min.js -opt/app/public/v1/js/lib/chartjs-plugin-annotation.min.js -opt/app/public/v1/js/lib/daterangepicker.js -opt/app/public/v1/js/lib/html5shiv.min.js -opt/app/public/v1/js/lib/jquery-ui.min.js -opt/app/public/v1/js/lib/jquery.color-2.1.2.min.js -opt/app/public/v1/js/lib/modernizr-custom.js -opt/app/public/v1/js/lib/moment.min.js -opt/app/public/v1/js/lib/respond.min.js -opt/app/public/v1/js/lib/typeahead/.htaccess -opt/app/public/v1/js/lib/typeahead/bloodhound.js -opt/app/public/v1/js/lib/typeahead/bloodhound.min.js -opt/app/public/v1/js/lib/typeahead/typeahead.bundle.js -opt/app/public/v1/js/lib/typeahead/typeahead.bundle.min.js -opt/app/public/v1/js/lib/typeahead/typeahead.jquery.js -opt/app/public/v1/js/lib/typeahead/typeahead.jquery.min.js -opt/app/public/v1/lib/.htaccess -opt/app/public/v1/lib/adminlte/.htaccess -opt/app/public/v1/lib/adminlte/css/.htaccess -opt/app/public/v1/lib/adminlte/css/AdminLTE.css -opt/app/public/v1/lib/adminlte/css/AdminLTE.min.css -opt/app/public/v1/lib/adminlte/css/skins/.htaccess -opt/app/public/v1/lib/adminlte/css/skins/skin-blue-light.css -opt/app/public/v1/lib/adminlte/css/skins/skin-blue-light.min.css -opt/app/public/v1/lib/adminlte/img/.htaccess -opt/app/public/v1/lib/adminlte/img/icons.png -opt/app/public/v1/lib/adminlte/js/.htaccess -opt/app/public/v1/lib/adminlte/js/adminlte.js -opt/app/public/v1/lib/adminlte/js/adminlte.min.js -opt/app/public/v1/lib/adminlte/js/app.js -opt/app/public/v1/lib/adminlte/js/app.min.js -opt/app/public/v1/lib/bs/css/bootstrap-theme.css -opt/app/public/v1/lib/bs/css/bootstrap-theme.css.map -opt/app/public/v1/lib/bs/css/bootstrap-theme.min.css -opt/app/public/v1/lib/bs/css/bootstrap-theme.min.css.map -opt/app/public/v1/lib/bs/css/bootstrap.css -opt/app/public/v1/lib/bs/css/bootstrap.css.map -opt/app/public/v1/lib/bs/css/bootstrap.min.css -opt/app/public/v1/lib/bs/css/bootstrap.min.css.map -opt/app/public/v1/lib/bs/fonts/glyphicons-halflings-regular.eot -opt/app/public/v1/lib/bs/fonts/glyphicons-halflings-regular.svg -opt/app/public/v1/lib/bs/fonts/glyphicons-halflings-regular.ttf -opt/app/public/v1/lib/bs/fonts/glyphicons-halflings-regular.woff -opt/app/public/v1/lib/bs/fonts/glyphicons-halflings-regular.woff2 -opt/app/public/v1/lib/bs/js/bootstrap.js -opt/app/public/v1/lib/bs/js/bootstrap.min.js -opt/app/public/v1/lib/bs/js/npm.js -opt/app/public/v1/lib/fa/css/font-awesome.css -opt/app/public/v1/lib/fa/css/font-awesome.min.css -opt/app/public/v1/lib/fa/fonts/FontAwesome.otf -opt/app/public/v1/lib/fa/fonts/fontawesome-webfont.eot -opt/app/public/v1/lib/fa/fonts/fontawesome-webfont.svg -opt/app/public/v1/lib/fa/fonts/fontawesome-webfont.ttf -opt/app/public/v1/lib/fa/fonts/fontawesome-webfont.woff -opt/app/public/v1/lib/fa/fonts/fontawesome-webfont.woff2 -opt/app/public/v1/lib/fc/.htaccess -opt/app/public/v1/lib/fc/fullcalendar.css -opt/app/public/v1/lib/fc/fullcalendar.js -opt/app/public/v1/lib/fc/fullcalendar.min.css -opt/app/public/v1/lib/fc/fullcalendar.min.js -opt/app/public/v1/lib/fc/fullcalendar.print.css -opt/app/public/v1/lib/fc/fullcalendar.print.min.css -opt/app/public/v1/lib/intro/.htaccess -opt/app/public/v1/lib/intro/intro.min.js -opt/app/public/v1/lib/intro/introjs-rtl.min.css -opt/app/public/v1/lib/intro/introjs.min.css -opt/app/public/v1/lib/leaflet/.htaccess -opt/app/public/v1/lib/leaflet/images/.htaccess -opt/app/public/v1/lib/leaflet/images/layers-2x.png -opt/app/public/v1/lib/leaflet/images/layers.png -opt/app/public/v1/lib/leaflet/images/marker-icon-2x.png -opt/app/public/v1/lib/leaflet/images/marker-icon.png -opt/app/public/v1/lib/leaflet/images/marker-shadow.png -opt/app/public/v1/lib/leaflet/leaflet-src.js -opt/app/public/v1/lib/leaflet/leaflet-src.js.map -opt/app/public/v1/lib/leaflet/leaflet.css -opt/app/public/v1/lib/leaflet/leaflet.js -opt/app/public/v1/lib/leaflet/leaflet.js.map -opt/app/public/v2/assets/css/dashboard.css -opt/app/public/v2/assets/css/dashboard.rtl.css -opt/app/public/v2/assets/css/gf-source.css -opt/app/public/v2/assets/css/tabler.css -opt/app/public/v2/assets/css/tabler.rtl.css -opt/app/public/v2/assets/fonts/feather/feather-webfont.eot -opt/app/public/v2/assets/fonts/feather/feather-webfont.svg -opt/app/public/v2/assets/fonts/feather/feather-webfont.ttf -opt/app/public/v2/assets/fonts/feather/feather-webfont.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-cyrillic-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-cyrillic-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-cyrillic.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-cyrillic.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-greek-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-greek-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-greek.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-greek.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-latin-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-latin-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-latin.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-latin.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-vietnamese.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Bold-vietnamese.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-cyrillic-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-cyrillic-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-cyrillic.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-cyrillic.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-greek-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-greek-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-greek.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-greek.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-latin-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-latin-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-latin.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-latin.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-vietnamese.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-BoldItalic-vietnamese.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-cyrillic-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-cyrillic-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-cyrillic.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-cyrillic.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-greek-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-greek-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-greek.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-greek.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-latin-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-latin-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-latin.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-latin.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-vietnamese.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Italic-vietnamese.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-cyrillic-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-cyrillic-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-cyrillic.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-cyrillic.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-greek-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-greek-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-greek.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-greek.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-latin-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-latin-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-latin.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-latin.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-vietnamese.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Light-vietnamese.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-cyrillic-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-cyrillic-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-cyrillic.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-cyrillic.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-greek-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-greek-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-greek.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-greek.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-latin-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-latin-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-latin.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-latin.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-vietnamese.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-LightItalic-vietnamese.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-cyrillic-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-cyrillic-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-cyrillic.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-cyrillic.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-greek-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-greek-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-greek.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-greek.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-latin-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-latin-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-latin.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-latin.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-vietnamese.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-Regular-vietnamese.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-cyrillic-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-cyrillic-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-cyrillic.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-cyrillic.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-greek-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-greek-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-greek.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-greek.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-latin-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-latin-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-latin.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-latin.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-vietnamese.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBold-vietnamese.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-cyrillic-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-cyrillic-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-cyrillic.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-cyrillic.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-greek-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-greek-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-greek.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-greek.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-latin-ext.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-latin-ext.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-latin.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-latin.woff2 -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-vietnamese.woff -opt/app/public/v2/assets/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic-vietnamese.woff2 -opt/app/public/v2/assets/images/basic-logo-ff3.png -opt/app/public/v2/assets/images/browsers/android-browser.svg -opt/app/public/v2/assets/images/browsers/aol-explorer.svg -opt/app/public/v2/assets/images/browsers/blackberry.svg -opt/app/public/v2/assets/images/browsers/camino.svg -opt/app/public/v2/assets/images/browsers/chrome.svg -opt/app/public/v2/assets/images/browsers/chromium.svg -opt/app/public/v2/assets/images/browsers/dolphin.svg -opt/app/public/v2/assets/images/browsers/edge.svg -opt/app/public/v2/assets/images/browsers/firefox.svg -opt/app/public/v2/assets/images/browsers/ie.svg -opt/app/public/v2/assets/images/browsers/maxthon.svg -opt/app/public/v2/assets/images/browsers/mozilla.svg -opt/app/public/v2/assets/images/browsers/netscape.svg -opt/app/public/v2/assets/images/browsers/opera.svg -opt/app/public/v2/assets/images/browsers/safari.svg -opt/app/public/v2/assets/images/browsers/sleipnir.svg -opt/app/public/v2/assets/images/browsers/uc-browser.svg -opt/app/public/v2/assets/images/browsers/vivaldi.svg -opt/app/public/v2/assets/images/crypto-currencies/bitcoin.svg -opt/app/public/v2/assets/images/crypto-currencies/cardano.svg -opt/app/public/v2/assets/images/crypto-currencies/dash.svg -opt/app/public/v2/assets/images/crypto-currencies/eos.svg -opt/app/public/v2/assets/images/crypto-currencies/ethereum.svg -opt/app/public/v2/assets/images/crypto-currencies/litecoin.svg -opt/app/public/v2/assets/images/crypto-currencies/nem.svg -opt/app/public/v2/assets/images/crypto-currencies/ripple.svg -opt/app/public/v2/assets/images/firefly-iii-128.png -opt/app/public/v2/assets/images/firefly-iii-48.png -opt/app/public/v2/assets/images/flags/ad.svg -opt/app/public/v2/assets/images/flags/ae.svg -opt/app/public/v2/assets/images/flags/af.svg -opt/app/public/v2/assets/images/flags/ag.svg -opt/app/public/v2/assets/images/flags/ai.svg -opt/app/public/v2/assets/images/flags/al.svg -opt/app/public/v2/assets/images/flags/am.svg -opt/app/public/v2/assets/images/flags/ao.svg -opt/app/public/v2/assets/images/flags/aq.svg -opt/app/public/v2/assets/images/flags/ar.svg -opt/app/public/v2/assets/images/flags/as.svg -opt/app/public/v2/assets/images/flags/at.svg -opt/app/public/v2/assets/images/flags/au.svg -opt/app/public/v2/assets/images/flags/aw.svg -opt/app/public/v2/assets/images/flags/ax.svg -opt/app/public/v2/assets/images/flags/az.svg -opt/app/public/v2/assets/images/flags/ba.svg -opt/app/public/v2/assets/images/flags/bb.svg -opt/app/public/v2/assets/images/flags/bd.svg -opt/app/public/v2/assets/images/flags/be.svg -opt/app/public/v2/assets/images/flags/bf.svg -opt/app/public/v2/assets/images/flags/bg.svg -opt/app/public/v2/assets/images/flags/bh.svg -opt/app/public/v2/assets/images/flags/bi.svg -opt/app/public/v2/assets/images/flags/bj.svg -opt/app/public/v2/assets/images/flags/bl.svg -opt/app/public/v2/assets/images/flags/bm.svg -opt/app/public/v2/assets/images/flags/bn.svg -opt/app/public/v2/assets/images/flags/bo.svg -opt/app/public/v2/assets/images/flags/bq.svg -opt/app/public/v2/assets/images/flags/br.svg -opt/app/public/v2/assets/images/flags/bs.svg -opt/app/public/v2/assets/images/flags/bt.svg -opt/app/public/v2/assets/images/flags/bv.svg -opt/app/public/v2/assets/images/flags/bw.svg -opt/app/public/v2/assets/images/flags/by.svg -opt/app/public/v2/assets/images/flags/bz.svg -opt/app/public/v2/assets/images/flags/ca.svg -opt/app/public/v2/assets/images/flags/cc.svg -opt/app/public/v2/assets/images/flags/cd.svg -opt/app/public/v2/assets/images/flags/cf.svg -opt/app/public/v2/assets/images/flags/cg.svg -opt/app/public/v2/assets/images/flags/ch.svg -opt/app/public/v2/assets/images/flags/ci.svg -opt/app/public/v2/assets/images/flags/ck.svg -opt/app/public/v2/assets/images/flags/cl.svg -opt/app/public/v2/assets/images/flags/cm.svg -opt/app/public/v2/assets/images/flags/cn.svg -opt/app/public/v2/assets/images/flags/co.svg -opt/app/public/v2/assets/images/flags/cr.svg -opt/app/public/v2/assets/images/flags/cu.svg -opt/app/public/v2/assets/images/flags/cv.svg -opt/app/public/v2/assets/images/flags/cw.svg -opt/app/public/v2/assets/images/flags/cx.svg -opt/app/public/v2/assets/images/flags/cy.svg -opt/app/public/v2/assets/images/flags/cz.svg -opt/app/public/v2/assets/images/flags/de.svg -opt/app/public/v2/assets/images/flags/dj.svg -opt/app/public/v2/assets/images/flags/dk.svg -opt/app/public/v2/assets/images/flags/dm.svg -opt/app/public/v2/assets/images/flags/do.svg -opt/app/public/v2/assets/images/flags/dz.svg -opt/app/public/v2/assets/images/flags/ec.svg -opt/app/public/v2/assets/images/flags/ee.svg -opt/app/public/v2/assets/images/flags/eg.svg -opt/app/public/v2/assets/images/flags/eh.svg -opt/app/public/v2/assets/images/flags/er.svg -opt/app/public/v2/assets/images/flags/es.svg -opt/app/public/v2/assets/images/flags/et.svg -opt/app/public/v2/assets/images/flags/eu.svg -opt/app/public/v2/assets/images/flags/fi.svg -opt/app/public/v2/assets/images/flags/fj.svg -opt/app/public/v2/assets/images/flags/fk.svg -opt/app/public/v2/assets/images/flags/fm.svg -opt/app/public/v2/assets/images/flags/fo.svg -opt/app/public/v2/assets/images/flags/fr.svg -opt/app/public/v2/assets/images/flags/ga.svg -opt/app/public/v2/assets/images/flags/gb-eng.svg -opt/app/public/v2/assets/images/flags/gb-nir.svg -opt/app/public/v2/assets/images/flags/gb-sct.svg -opt/app/public/v2/assets/images/flags/gb-wls.svg -opt/app/public/v2/assets/images/flags/gb.svg -opt/app/public/v2/assets/images/flags/gd.svg -opt/app/public/v2/assets/images/flags/ge.svg -opt/app/public/v2/assets/images/flags/gf.svg -opt/app/public/v2/assets/images/flags/gg.svg -opt/app/public/v2/assets/images/flags/gh.svg -opt/app/public/v2/assets/images/flags/gi.svg -opt/app/public/v2/assets/images/flags/gl.svg -opt/app/public/v2/assets/images/flags/gm.svg -opt/app/public/v2/assets/images/flags/gn.svg -opt/app/public/v2/assets/images/flags/gp.svg -opt/app/public/v2/assets/images/flags/gq.svg -opt/app/public/v2/assets/images/flags/gr.svg -opt/app/public/v2/assets/images/flags/gs.svg -opt/app/public/v2/assets/images/flags/gt.svg -opt/app/public/v2/assets/images/flags/gu.svg -opt/app/public/v2/assets/images/flags/gw.svg -opt/app/public/v2/assets/images/flags/gy.svg -opt/app/public/v2/assets/images/flags/hk.svg -opt/app/public/v2/assets/images/flags/hm.svg -opt/app/public/v2/assets/images/flags/hn.svg -opt/app/public/v2/assets/images/flags/hr.svg -opt/app/public/v2/assets/images/flags/ht.svg -opt/app/public/v2/assets/images/flags/hu.svg -opt/app/public/v2/assets/images/flags/id.svg -opt/app/public/v2/assets/images/flags/ie.svg -opt/app/public/v2/assets/images/flags/il.svg -opt/app/public/v2/assets/images/flags/im.svg -opt/app/public/v2/assets/images/flags/in.svg -opt/app/public/v2/assets/images/flags/io.svg -opt/app/public/v2/assets/images/flags/iq.svg -opt/app/public/v2/assets/images/flags/ir.svg -opt/app/public/v2/assets/images/flags/is.svg -opt/app/public/v2/assets/images/flags/it.svg -opt/app/public/v2/assets/images/flags/je.svg -opt/app/public/v2/assets/images/flags/jm.svg -opt/app/public/v2/assets/images/flags/jo.svg -opt/app/public/v2/assets/images/flags/jp.svg -opt/app/public/v2/assets/images/flags/ke.svg -opt/app/public/v2/assets/images/flags/kg.svg -opt/app/public/v2/assets/images/flags/kh.svg -opt/app/public/v2/assets/images/flags/ki.svg -opt/app/public/v2/assets/images/flags/km.svg -opt/app/public/v2/assets/images/flags/kn.svg -opt/app/public/v2/assets/images/flags/kp.svg -opt/app/public/v2/assets/images/flags/kr.svg -opt/app/public/v2/assets/images/flags/kw.svg -opt/app/public/v2/assets/images/flags/ky.svg -opt/app/public/v2/assets/images/flags/kz.svg -opt/app/public/v2/assets/images/flags/la.svg -opt/app/public/v2/assets/images/flags/lb.svg -opt/app/public/v2/assets/images/flags/lc.svg -opt/app/public/v2/assets/images/flags/li.svg -opt/app/public/v2/assets/images/flags/lk.svg -opt/app/public/v2/assets/images/flags/lr.svg -opt/app/public/v2/assets/images/flags/ls.svg -opt/app/public/v2/assets/images/flags/lt.svg -opt/app/public/v2/assets/images/flags/lu.svg -opt/app/public/v2/assets/images/flags/lv.svg -opt/app/public/v2/assets/images/flags/ly.svg -opt/app/public/v2/assets/images/flags/ma.svg -opt/app/public/v2/assets/images/flags/mc.svg -opt/app/public/v2/assets/images/flags/md.svg -opt/app/public/v2/assets/images/flags/me.svg -opt/app/public/v2/assets/images/flags/mf.svg -opt/app/public/v2/assets/images/flags/mg.svg -opt/app/public/v2/assets/images/flags/mh.svg -opt/app/public/v2/assets/images/flags/mk.svg -opt/app/public/v2/assets/images/flags/ml.svg -opt/app/public/v2/assets/images/flags/mm.svg -opt/app/public/v2/assets/images/flags/mn.svg -opt/app/public/v2/assets/images/flags/mo.svg -opt/app/public/v2/assets/images/flags/mp.svg -opt/app/public/v2/assets/images/flags/mq.svg -opt/app/public/v2/assets/images/flags/mr.svg -opt/app/public/v2/assets/images/flags/ms.svg -opt/app/public/v2/assets/images/flags/mt.svg -opt/app/public/v2/assets/images/flags/mu.svg -opt/app/public/v2/assets/images/flags/mv.svg -opt/app/public/v2/assets/images/flags/mw.svg -opt/app/public/v2/assets/images/flags/mx.svg -opt/app/public/v2/assets/images/flags/my.svg -opt/app/public/v2/assets/images/flags/mz.svg -opt/app/public/v2/assets/images/flags/na.svg -opt/app/public/v2/assets/images/flags/nc.svg -opt/app/public/v2/assets/images/flags/ne.svg -opt/app/public/v2/assets/images/flags/nf.svg -opt/app/public/v2/assets/images/flags/ng.svg -opt/app/public/v2/assets/images/flags/ni.svg -opt/app/public/v2/assets/images/flags/nl.svg -opt/app/public/v2/assets/images/flags/no.svg -opt/app/public/v2/assets/images/flags/np.svg -opt/app/public/v2/assets/images/flags/nr.svg -opt/app/public/v2/assets/images/flags/nu.svg -opt/app/public/v2/assets/images/flags/nz.svg -opt/app/public/v2/assets/images/flags/om.svg -opt/app/public/v2/assets/images/flags/pa.svg -opt/app/public/v2/assets/images/flags/pe.svg -opt/app/public/v2/assets/images/flags/pf.svg -opt/app/public/v2/assets/images/flags/pg.svg -opt/app/public/v2/assets/images/flags/ph.svg -opt/app/public/v2/assets/images/flags/pk.svg -opt/app/public/v2/assets/images/flags/pl.svg -opt/app/public/v2/assets/images/flags/pm.svg -opt/app/public/v2/assets/images/flags/pn.svg -opt/app/public/v2/assets/images/flags/pr.svg -opt/app/public/v2/assets/images/flags/ps.svg -opt/app/public/v2/assets/images/flags/pt.svg -opt/app/public/v2/assets/images/flags/pw.svg -opt/app/public/v2/assets/images/flags/py.svg -opt/app/public/v2/assets/images/flags/qa.svg -opt/app/public/v2/assets/images/flags/re.svg -opt/app/public/v2/assets/images/flags/ro.svg -opt/app/public/v2/assets/images/flags/rs.svg -opt/app/public/v2/assets/images/flags/ru.svg -opt/app/public/v2/assets/images/flags/rw.svg -opt/app/public/v2/assets/images/flags/sa.svg -opt/app/public/v2/assets/images/flags/sb.svg -opt/app/public/v2/assets/images/flags/sc.svg -opt/app/public/v2/assets/images/flags/sd.svg -opt/app/public/v2/assets/images/flags/se.svg -opt/app/public/v2/assets/images/flags/sg.svg -opt/app/public/v2/assets/images/flags/sh.svg -opt/app/public/v2/assets/images/flags/si.svg -opt/app/public/v2/assets/images/flags/sj.svg -opt/app/public/v2/assets/images/flags/sk.svg -opt/app/public/v2/assets/images/flags/sl.svg -opt/app/public/v2/assets/images/flags/sm.svg -opt/app/public/v2/assets/images/flags/sn.svg -opt/app/public/v2/assets/images/flags/so.svg -opt/app/public/v2/assets/images/flags/sr.svg -opt/app/public/v2/assets/images/flags/ss.svg -opt/app/public/v2/assets/images/flags/st.svg -opt/app/public/v2/assets/images/flags/sv.svg -opt/app/public/v2/assets/images/flags/sx.svg -opt/app/public/v2/assets/images/flags/sy.svg -opt/app/public/v2/assets/images/flags/sz.svg -opt/app/public/v2/assets/images/flags/tc.svg -opt/app/public/v2/assets/images/flags/td.svg -opt/app/public/v2/assets/images/flags/tf.svg -opt/app/public/v2/assets/images/flags/tg.svg -opt/app/public/v2/assets/images/flags/th.svg -opt/app/public/v2/assets/images/flags/tj.svg -opt/app/public/v2/assets/images/flags/tk.svg -opt/app/public/v2/assets/images/flags/tl.svg -opt/app/public/v2/assets/images/flags/tm.svg -opt/app/public/v2/assets/images/flags/tn.svg -opt/app/public/v2/assets/images/flags/to.svg -opt/app/public/v2/assets/images/flags/tr.svg -opt/app/public/v2/assets/images/flags/tt.svg -opt/app/public/v2/assets/images/flags/tv.svg -opt/app/public/v2/assets/images/flags/tw.svg -opt/app/public/v2/assets/images/flags/tz.svg -opt/app/public/v2/assets/images/flags/ua.svg -opt/app/public/v2/assets/images/flags/ug.svg -opt/app/public/v2/assets/images/flags/um.svg -opt/app/public/v2/assets/images/flags/un.svg -opt/app/public/v2/assets/images/flags/us.svg -opt/app/public/v2/assets/images/flags/uy.svg -opt/app/public/v2/assets/images/flags/uz.svg -opt/app/public/v2/assets/images/flags/va.svg -opt/app/public/v2/assets/images/flags/vc.svg -opt/app/public/v2/assets/images/flags/ve.svg -opt/app/public/v2/assets/images/flags/vg.svg -opt/app/public/v2/assets/images/flags/vi.svg -opt/app/public/v2/assets/images/flags/vn.svg -opt/app/public/v2/assets/images/flags/vu.svg -opt/app/public/v2/assets/images/flags/wf.svg -opt/app/public/v2/assets/images/flags/ws.svg -opt/app/public/v2/assets/images/flags/ye.svg -opt/app/public/v2/assets/images/flags/yt.svg -opt/app/public/v2/assets/images/flags/za.svg -opt/app/public/v2/assets/images/flags/zm.svg -opt/app/public/v2/assets/images/flags/zw.svg -opt/app/public/v2/assets/images/payments/2checkout-dark.svg -opt/app/public/v2/assets/images/payments/2checkout.svg -opt/app/public/v2/assets/images/payments/alipay-dark.svg -opt/app/public/v2/assets/images/payments/alipay.svg -opt/app/public/v2/assets/images/payments/amazon-dark.svg -opt/app/public/v2/assets/images/payments/amazon.svg -opt/app/public/v2/assets/images/payments/americanexpress-dark.svg -opt/app/public/v2/assets/images/payments/americanexpress.svg -opt/app/public/v2/assets/images/payments/applepay-dark.svg -opt/app/public/v2/assets/images/payments/applepay.svg -opt/app/public/v2/assets/images/payments/bancontact-dark.svg -opt/app/public/v2/assets/images/payments/bancontact.svg -opt/app/public/v2/assets/images/payments/bitcoin-dark.svg -opt/app/public/v2/assets/images/payments/bitcoin.svg -opt/app/public/v2/assets/images/payments/bitpay-dark.svg -opt/app/public/v2/assets/images/payments/bitpay.svg -opt/app/public/v2/assets/images/payments/cirrus-dark.svg -opt/app/public/v2/assets/images/payments/cirrus.svg -opt/app/public/v2/assets/images/payments/clickandbuy-dark.svg -opt/app/public/v2/assets/images/payments/clickandbuy.svg -opt/app/public/v2/assets/images/payments/coinkite-dark.svg -opt/app/public/v2/assets/images/payments/coinkite.svg -opt/app/public/v2/assets/images/payments/dinersclub-dark.svg -opt/app/public/v2/assets/images/payments/dinersclub.svg -opt/app/public/v2/assets/images/payments/directdebit-dark.svg -opt/app/public/v2/assets/images/payments/directdebit.svg -opt/app/public/v2/assets/images/payments/discover-dark.svg -opt/app/public/v2/assets/images/payments/discover.svg -opt/app/public/v2/assets/images/payments/dwolla-dark.svg -opt/app/public/v2/assets/images/payments/dwolla.svg -opt/app/public/v2/assets/images/payments/ebay-dark.svg -opt/app/public/v2/assets/images/payments/ebay.svg -opt/app/public/v2/assets/images/payments/eway-dark.svg -opt/app/public/v2/assets/images/payments/eway.svg -opt/app/public/v2/assets/images/payments/giropay-dark.svg -opt/app/public/v2/assets/images/payments/giropay.svg -opt/app/public/v2/assets/images/payments/googlewallet-dark.svg -opt/app/public/v2/assets/images/payments/googlewallet.svg -opt/app/public/v2/assets/images/payments/ingenico-dark.svg -opt/app/public/v2/assets/images/payments/ingenico.svg -opt/app/public/v2/assets/images/payments/jcb-dark.svg -opt/app/public/v2/assets/images/payments/jcb.svg -opt/app/public/v2/assets/images/payments/klarna-dark.svg -opt/app/public/v2/assets/images/payments/klarna.svg -opt/app/public/v2/assets/images/payments/laser-dark.svg -opt/app/public/v2/assets/images/payments/laser.svg -opt/app/public/v2/assets/images/payments/maestro-dark.svg -opt/app/public/v2/assets/images/payments/maestro.svg -opt/app/public/v2/assets/images/payments/mastercard-dark.svg -opt/app/public/v2/assets/images/payments/mastercard.svg -opt/app/public/v2/assets/images/payments/monero-dark.svg -opt/app/public/v2/assets/images/payments/monero.svg -opt/app/public/v2/assets/images/payments/neteller-dark.svg -opt/app/public/v2/assets/images/payments/neteller.svg -opt/app/public/v2/assets/images/payments/ogone-dark.svg -opt/app/public/v2/assets/images/payments/ogone.svg -opt/app/public/v2/assets/images/payments/okpay-dark.svg -opt/app/public/v2/assets/images/payments/okpay.svg -opt/app/public/v2/assets/images/payments/paybox-dark.svg -opt/app/public/v2/assets/images/payments/paybox.svg -opt/app/public/v2/assets/images/payments/paymill-dark.svg -opt/app/public/v2/assets/images/payments/paymill.svg -opt/app/public/v2/assets/images/payments/payone-dark.svg -opt/app/public/v2/assets/images/payments/payone.svg -opt/app/public/v2/assets/images/payments/payoneer-dark.svg -opt/app/public/v2/assets/images/payments/payoneer.svg -opt/app/public/v2/assets/images/payments/paypal-dark.svg -opt/app/public/v2/assets/images/payments/paypal.svg -opt/app/public/v2/assets/images/payments/paysafecard-dark.svg -opt/app/public/v2/assets/images/payments/paysafecard.svg -opt/app/public/v2/assets/images/payments/payu-dark.svg -opt/app/public/v2/assets/images/payments/payu.svg -opt/app/public/v2/assets/images/payments/payza-dark.svg -opt/app/public/v2/assets/images/payments/payza.svg -opt/app/public/v2/assets/images/payments/ripple-dark.svg -opt/app/public/v2/assets/images/payments/ripple.svg -opt/app/public/v2/assets/images/payments/sage-dark.svg -opt/app/public/v2/assets/images/payments/sage.svg -opt/app/public/v2/assets/images/payments/sepa-dark.svg -opt/app/public/v2/assets/images/payments/sepa.svg -opt/app/public/v2/assets/images/payments/shopify-dark.svg -opt/app/public/v2/assets/images/payments/shopify.svg -opt/app/public/v2/assets/images/payments/skrill-dark.svg -opt/app/public/v2/assets/images/payments/skrill.svg -opt/app/public/v2/assets/images/payments/solo-dark.svg -opt/app/public/v2/assets/images/payments/solo.svg -opt/app/public/v2/assets/images/payments/square-dark.svg -opt/app/public/v2/assets/images/payments/square.svg -opt/app/public/v2/assets/images/payments/stripe-dark.svg -opt/app/public/v2/assets/images/payments/stripe.svg -opt/app/public/v2/assets/images/payments/switch-dark.svg -opt/app/public/v2/assets/images/payments/switch.svg -opt/app/public/v2/assets/images/payments/ukash-dark.svg -opt/app/public/v2/assets/images/payments/ukash.svg -opt/app/public/v2/assets/images/payments/unionpay-dark.svg -opt/app/public/v2/assets/images/payments/unionpay.svg -opt/app/public/v2/assets/images/payments/verifone-dark.svg -opt/app/public/v2/assets/images/payments/verifone.svg -opt/app/public/v2/assets/images/payments/verisign-dark.svg -opt/app/public/v2/assets/images/payments/verisign.svg -opt/app/public/v2/assets/images/payments/visa-dark.svg -opt/app/public/v2/assets/images/payments/visa.svg -opt/app/public/v2/assets/images/payments/webmoney-dark.svg -opt/app/public/v2/assets/images/payments/webmoney.svg -opt/app/public/v2/assets/images/payments/westernunion-dark.svg -opt/app/public/v2/assets/images/payments/westernunion.svg -opt/app/public/v2/assets/images/payments/worldpay-dark.svg -opt/app/public/v2/assets/images/payments/worldpay.svg -opt/app/public/v2/assets/js/core.js -opt/app/public/v2/assets/js/dashboard.js -opt/app/public/v2/assets/js/require.min.js -opt/app/public/v2/assets/js/vendors/bootstrap.bundle.min.js -opt/app/public/v2/assets/js/vendors/chart.bundle.min.js -opt/app/public/v2/assets/js/vendors/circle-progress.min.js -opt/app/public/v2/assets/js/vendors/jquery-3.2.1.min.js -opt/app/public/v2/assets/js/vendors/jquery-3.2.1.slim.min.js -opt/app/public/v2/assets/js/vendors/jquery-jvectormap-2.0.3.min.js -opt/app/public/v2/assets/js/vendors/jquery-jvectormap-de-merc.js -opt/app/public/v2/assets/js/vendors/jquery-jvectormap-world-mill.js -opt/app/public/v2/assets/js/vendors/jquery.sparkline.min.js -opt/app/public/v2/assets/js/vendors/jquery.tablesorter.min.js -opt/app/public/v2/assets/js/vendors/selectize.min.js -opt/app/public/v2/assets/plugins/charts-c3/js/c3.min.js -opt/app/public/v2/assets/plugins/charts-c3/js/d3.v3.min.js -opt/app/public/v2/assets/plugins/charts-c3/plugin.css -opt/app/public/v2/assets/plugins/charts-c3/plugin.js -opt/app/public/v2/assets/plugins/fullcalendar/js/fullcalendar.min.js -opt/app/public/v2/assets/plugins/fullcalendar/js/moment.min.js -opt/app/public/v2/assets/plugins/fullcalendar/plugin.css -opt/app/public/v2/assets/plugins/fullcalendar/plugin.js -opt/app/public/v2/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.eot -opt/app/public/v2/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.svg -opt/app/public/v2/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.ttf -opt/app/public/v2/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.woff -opt/app/public/v2/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.woff2 -opt/app/public/v2/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.eot -opt/app/public/v2/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.svg -opt/app/public/v2/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.ttf -opt/app/public/v2/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.woff -opt/app/public/v2/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.woff2 -opt/app/public/v2/assets/plugins/iconfonts/fonts/themify/themify.eot -opt/app/public/v2/assets/plugins/iconfonts/fonts/themify/themify.svg -opt/app/public/v2/assets/plugins/iconfonts/fonts/themify/themify.ttf -opt/app/public/v2/assets/plugins/iconfonts/fonts/themify/themify.woff -opt/app/public/v2/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.eot -opt/app/public/v2/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.svg -opt/app/public/v2/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.ttf -opt/app/public/v2/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.woff -opt/app/public/v2/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.woff2 -opt/app/public/v2/assets/plugins/iconfonts/plugin.css -opt/app/public/v2/assets/plugins/input-mask/js/jquery.mask.min.js -opt/app/public/v2/assets/plugins/input-mask/plugin.js -opt/app/public/v2/assets/plugins/maps-google/plugin.css -opt/app/public/v2/assets/plugins/maps-google/plugin.js -opt/app/public/v2/assets/plugins/prismjs/js/prism.pack.js -opt/app/public/v2/assets/plugins/prismjs/plugin.css -opt/app/public/v2/assets/plugins/prismjs/plugin.js -opt/app/public/v2/lib/font-awesome/4.7.0/css/font-awesome.css -opt/app/public/v2/lib/font-awesome/4.7.0/css/font-awesome.min.css -opt/app/public/v2/lib/font-awesome/4.7.0/fonts/FontAwesome.otf -opt/app/public/v2/lib/font-awesome/4.7.0/fonts/fontawesome-webfont.eot -opt/app/public/v2/lib/font-awesome/4.7.0/fonts/fontawesome-webfont.svg -opt/app/public/v2/lib/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf -opt/app/public/v2/lib/font-awesome/4.7.0/fonts/fontawesome-webfont.woff -opt/app/public/v2/lib/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2 -opt/app/public/web.config -opt/app/readme.md -opt/app/resources/assets/js/app.js -opt/app/resources/assets/js/bootstrap.js -opt/app/resources/assets/js/components/ExampleComponent.vue -opt/app/resources/assets/js/components/bills/Index.vue -opt/app/resources/assets/js/components/passport/AuthorizedClients.vue -opt/app/resources/assets/js/components/passport/Clients.vue -opt/app/resources/assets/js/components/passport/PersonalAccessTokens.vue -opt/app/resources/assets/sass/_variables.scss -opt/app/resources/assets/sass/app.scss -opt/app/resources/lang/de_DE/auth.php -opt/app/resources/lang/de_DE/bank.php -opt/app/resources/lang/de_DE/breadcrumbs.php -opt/app/resources/lang/de_DE/components.php -opt/app/resources/lang/de_DE/config.php -opt/app/resources/lang/de_DE/csv.php -opt/app/resources/lang/de_DE/demo.php -opt/app/resources/lang/de_DE/firefly.php -opt/app/resources/lang/de_DE/form.php -opt/app/resources/lang/de_DE/help.php -opt/app/resources/lang/de_DE/import.php -opt/app/resources/lang/de_DE/intro.php -opt/app/resources/lang/de_DE/list.php -opt/app/resources/lang/de_DE/pagination.php -opt/app/resources/lang/de_DE/passwords.php -opt/app/resources/lang/de_DE/validation.php -opt/app/resources/lang/en_US/auth.php -opt/app/resources/lang/en_US/bank.php -opt/app/resources/lang/en_US/breadcrumbs.php -opt/app/resources/lang/en_US/components.php -opt/app/resources/lang/en_US/config.php -opt/app/resources/lang/en_US/csv.php -opt/app/resources/lang/en_US/demo.php -opt/app/resources/lang/en_US/firefly.php -opt/app/resources/lang/en_US/form.php -opt/app/resources/lang/en_US/import.php -opt/app/resources/lang/en_US/intro.php -opt/app/resources/lang/en_US/list.php -opt/app/resources/lang/en_US/pagination.php -opt/app/resources/lang/en_US/passwords.php -opt/app/resources/lang/en_US/validation.php -opt/app/resources/lang/es_ES/auth.php -opt/app/resources/lang/es_ES/bank.php -opt/app/resources/lang/es_ES/breadcrumbs.php -opt/app/resources/lang/es_ES/components.php -opt/app/resources/lang/es_ES/config.php -opt/app/resources/lang/es_ES/csv.php -opt/app/resources/lang/es_ES/demo.php -opt/app/resources/lang/es_ES/firefly.php -opt/app/resources/lang/es_ES/form.php -opt/app/resources/lang/es_ES/import.php -opt/app/resources/lang/es_ES/intro.php -opt/app/resources/lang/es_ES/list.php -opt/app/resources/lang/es_ES/pagination.php -opt/app/resources/lang/es_ES/passwords.php -opt/app/resources/lang/es_ES/validation.php -opt/app/resources/lang/fr_FR/auth.php -opt/app/resources/lang/fr_FR/bank.php -opt/app/resources/lang/fr_FR/breadcrumbs.php -opt/app/resources/lang/fr_FR/components.php -opt/app/resources/lang/fr_FR/config.php -opt/app/resources/lang/fr_FR/csv.php -opt/app/resources/lang/fr_FR/demo.php -opt/app/resources/lang/fr_FR/firefly.php -opt/app/resources/lang/fr_FR/form.php -opt/app/resources/lang/fr_FR/help.php -opt/app/resources/lang/fr_FR/import.php -opt/app/resources/lang/fr_FR/intro.php -opt/app/resources/lang/fr_FR/list.php -opt/app/resources/lang/fr_FR/pagination.php -opt/app/resources/lang/fr_FR/passwords.php -opt/app/resources/lang/fr_FR/validation.php -opt/app/resources/lang/id_ID/auth.php -opt/app/resources/lang/id_ID/bank.php -opt/app/resources/lang/id_ID/breadcrumbs.php -opt/app/resources/lang/id_ID/components.php -opt/app/resources/lang/id_ID/config.php -opt/app/resources/lang/id_ID/csv.php -opt/app/resources/lang/id_ID/demo.php -opt/app/resources/lang/id_ID/firefly.php -opt/app/resources/lang/id_ID/form.php -opt/app/resources/lang/id_ID/import.php -opt/app/resources/lang/id_ID/intro.php -opt/app/resources/lang/id_ID/list.php -opt/app/resources/lang/id_ID/pagination.php -opt/app/resources/lang/id_ID/passwords.php -opt/app/resources/lang/id_ID/validation.php -opt/app/resources/lang/it_IT/auth.php -opt/app/resources/lang/it_IT/bank.php -opt/app/resources/lang/it_IT/breadcrumbs.php -opt/app/resources/lang/it_IT/components.php -opt/app/resources/lang/it_IT/config.php -opt/app/resources/lang/it_IT/csv.php -opt/app/resources/lang/it_IT/demo.php -opt/app/resources/lang/it_IT/firefly.php -opt/app/resources/lang/it_IT/form.php -opt/app/resources/lang/it_IT/import.php -opt/app/resources/lang/it_IT/intro.php -opt/app/resources/lang/it_IT/list.php -opt/app/resources/lang/it_IT/pagination.php -opt/app/resources/lang/it_IT/passwords.php -opt/app/resources/lang/it_IT/validation.php -opt/app/resources/lang/nl_NL/auth.php -opt/app/resources/lang/nl_NL/bank.php -opt/app/resources/lang/nl_NL/breadcrumbs.php -opt/app/resources/lang/nl_NL/components.php -opt/app/resources/lang/nl_NL/config.php -opt/app/resources/lang/nl_NL/csv.php -opt/app/resources/lang/nl_NL/demo.php -opt/app/resources/lang/nl_NL/firefly.php -opt/app/resources/lang/nl_NL/form.php -opt/app/resources/lang/nl_NL/help.php -opt/app/resources/lang/nl_NL/import.php -opt/app/resources/lang/nl_NL/intro.php -opt/app/resources/lang/nl_NL/list.php -opt/app/resources/lang/nl_NL/pagination.php -opt/app/resources/lang/nl_NL/passwords.php -opt/app/resources/lang/nl_NL/validation.php -opt/app/resources/lang/pl_PL/auth.php -opt/app/resources/lang/pl_PL/bank.php -opt/app/resources/lang/pl_PL/breadcrumbs.php -opt/app/resources/lang/pl_PL/components.php -opt/app/resources/lang/pl_PL/config.php -opt/app/resources/lang/pl_PL/csv.php -opt/app/resources/lang/pl_PL/demo.php -opt/app/resources/lang/pl_PL/firefly.php -opt/app/resources/lang/pl_PL/form.php -opt/app/resources/lang/pl_PL/help.php -opt/app/resources/lang/pl_PL/import.php -opt/app/resources/lang/pl_PL/intro.php -opt/app/resources/lang/pl_PL/list.php -opt/app/resources/lang/pl_PL/pagination.php -opt/app/resources/lang/pl_PL/passwords.php -opt/app/resources/lang/pl_PL/validation.php -opt/app/resources/lang/pt_BR/auth.php -opt/app/resources/lang/pt_BR/bank.php -opt/app/resources/lang/pt_BR/breadcrumbs.php -opt/app/resources/lang/pt_BR/components.php -opt/app/resources/lang/pt_BR/config.php -opt/app/resources/lang/pt_BR/csv.php -opt/app/resources/lang/pt_BR/demo.php -opt/app/resources/lang/pt_BR/firefly.php -opt/app/resources/lang/pt_BR/form.php -opt/app/resources/lang/pt_BR/import.php -opt/app/resources/lang/pt_BR/intro.php -opt/app/resources/lang/pt_BR/list.php -opt/app/resources/lang/pt_BR/pagination.php -opt/app/resources/lang/pt_BR/passwords.php -opt/app/resources/lang/pt_BR/validation.php -opt/app/resources/lang/ru_RU/auth.php -opt/app/resources/lang/ru_RU/bank.php -opt/app/resources/lang/ru_RU/breadcrumbs.php -opt/app/resources/lang/ru_RU/components.php -opt/app/resources/lang/ru_RU/config.php -opt/app/resources/lang/ru_RU/csv.php -opt/app/resources/lang/ru_RU/demo.php -opt/app/resources/lang/ru_RU/firefly.php -opt/app/resources/lang/ru_RU/form.php -opt/app/resources/lang/ru_RU/import.php -opt/app/resources/lang/ru_RU/intro.php -opt/app/resources/lang/ru_RU/list.php -opt/app/resources/lang/ru_RU/pagination.php -opt/app/resources/lang/ru_RU/passwords.php -opt/app/resources/lang/ru_RU/validation.php -opt/app/resources/lang/tr_TR/auth.php -opt/app/resources/lang/tr_TR/bank.php -opt/app/resources/lang/tr_TR/breadcrumbs.php -opt/app/resources/lang/tr_TR/components.php -opt/app/resources/lang/tr_TR/config.php -opt/app/resources/lang/tr_TR/csv.php -opt/app/resources/lang/tr_TR/demo.php -opt/app/resources/lang/tr_TR/firefly.php -opt/app/resources/lang/tr_TR/form.php -opt/app/resources/lang/tr_TR/import.php -opt/app/resources/lang/tr_TR/intro.php -opt/app/resources/lang/tr_TR/list.php -opt/app/resources/lang/tr_TR/pagination.php -opt/app/resources/lang/tr_TR/passwords.php -opt/app/resources/lang/tr_TR/validation.php -opt/app/resources/lang/zh_CN/auth.php -opt/app/resources/lang/zh_CN/bank.php -opt/app/resources/lang/zh_CN/breadcrumbs.php -opt/app/resources/lang/zh_CN/components.php -opt/app/resources/lang/zh_CN/config.php -opt/app/resources/lang/zh_CN/csv.php -opt/app/resources/lang/zh_CN/demo.php -opt/app/resources/lang/zh_CN/firefly.php -opt/app/resources/lang/zh_CN/form.php -opt/app/resources/lang/zh_CN/import.php -opt/app/resources/lang/zh_CN/intro.php -opt/app/resources/lang/zh_CN/list.php -opt/app/resources/lang/zh_CN/pagination.php -opt/app/resources/lang/zh_CN/passwords.php -opt/app/resources/lang/zh_CN/validation.php -opt/app/resources/lang/zh_TW/auth.php -opt/app/resources/lang/zh_TW/bank.php -opt/app/resources/lang/zh_TW/breadcrumbs.php -opt/app/resources/lang/zh_TW/components.php -opt/app/resources/lang/zh_TW/config.php -opt/app/resources/lang/zh_TW/csv.php -opt/app/resources/lang/zh_TW/demo.php -opt/app/resources/lang/zh_TW/firefly.php -opt/app/resources/lang/zh_TW/form.php -opt/app/resources/lang/zh_TW/import.php -opt/app/resources/lang/zh_TW/intro.php -opt/app/resources/lang/zh_TW/list.php -opt/app/resources/lang/zh_TW/pagination.php -opt/app/resources/lang/zh_TW/passwords.php -opt/app/resources/lang/zh_TW/validation.php -opt/app/resources/stubs/binary.bin -opt/app/resources/stubs/csv.csv -opt/app/resources/stubs/demo-configuration.json -opt/app/resources/stubs/demo-import.csv -opt/app/resources/views/v1/accounts/create.twig -opt/app/resources/views/v1/accounts/delete.twig -opt/app/resources/views/v1/accounts/edit.twig -opt/app/resources/views/v1/accounts/index.twig -opt/app/resources/views/v1/accounts/reconcile/edit.twig -opt/app/resources/views/v1/accounts/reconcile/index.twig -opt/app/resources/views/v1/accounts/reconcile/overview.twig -opt/app/resources/views/v1/accounts/reconcile/show.twig -opt/app/resources/views/v1/accounts/reconcile/transactions.twig -opt/app/resources/views/v1/accounts/show.twig -opt/app/resources/views/v1/admin/configuration/index.twig -opt/app/resources/views/v1/admin/index.twig -opt/app/resources/views/v1/admin/link/create.twig -opt/app/resources/views/v1/admin/link/delete.twig -opt/app/resources/views/v1/admin/link/edit.twig -opt/app/resources/views/v1/admin/link/index.twig -opt/app/resources/views/v1/admin/link/show.twig -opt/app/resources/views/v1/admin/update/index.twig -opt/app/resources/views/v1/admin/users/delete.twig -opt/app/resources/views/v1/admin/users/edit.twig -opt/app/resources/views/v1/admin/users/index.twig -opt/app/resources/views/v1/admin/users/show.twig -opt/app/resources/views/v1/attachments/delete.twig -opt/app/resources/views/v1/attachments/edit.twig -opt/app/resources/views/v1/attachments/index.twig -opt/app/resources/views/v1/auth/login.twig -opt/app/resources/views/v1/auth/lost-two-factor.twig -opt/app/resources/views/v1/auth/passwords/email.twig -opt/app/resources/views/v1/auth/passwords/reset.twig -opt/app/resources/views/v1/auth/register.twig -opt/app/resources/views/v1/auth/two-factor.twig -opt/app/resources/views/v1/bills/create.twig -opt/app/resources/views/v1/bills/delete.twig -opt/app/resources/views/v1/bills/edit.twig -opt/app/resources/views/v1/bills/index.twig -opt/app/resources/views/v1/bills/show.twig -opt/app/resources/views/v1/budgets/create.twig -opt/app/resources/views/v1/budgets/delete.twig -opt/app/resources/views/v1/budgets/edit.twig -opt/app/resources/views/v1/budgets/income.twig -opt/app/resources/views/v1/budgets/index.twig -opt/app/resources/views/v1/budgets/info.twig -opt/app/resources/views/v1/budgets/no-budget.twig -opt/app/resources/views/v1/budgets/show.twig -opt/app/resources/views/v1/categories/create.twig -opt/app/resources/views/v1/categories/delete.twig -opt/app/resources/views/v1/categories/edit.twig -opt/app/resources/views/v1/categories/index.twig -opt/app/resources/views/v1/categories/no-category.twig -opt/app/resources/views/v1/categories/show.twig -opt/app/resources/views/v1/currencies/create.twig -opt/app/resources/views/v1/currencies/delete.twig -opt/app/resources/views/v1/currencies/edit.twig -opt/app/resources/views/v1/currencies/index.twig -opt/app/resources/views/v1/debug.twig -opt/app/resources/views/v1/demo/accounts/index.twig -opt/app/resources/views/v1/demo/budgets/index.twig -opt/app/resources/views/v1/demo/currencies/index.twig -opt/app/resources/views/v1/demo/home.twig -opt/app/resources/views/v1/demo/import/index.twig -opt/app/resources/views/v1/demo/index.twig -opt/app/resources/views/v1/demo/no-demo-text.twig -opt/app/resources/views/v1/demo/piggy-banks/index.twig -opt/app/resources/views/v1/demo/profile/index.twig -opt/app/resources/views/v1/demo/recurring/index.twig -opt/app/resources/views/v1/demo/recurring/recurring-create.twig -opt/app/resources/views/v1/demo/reports/index.twig -opt/app/resources/views/v1/demo/transactions/index.twig -opt/app/resources/views/v1/emails/access-token-created-html.twig -opt/app/resources/views/v1/emails/access-token-created-text.twig -opt/app/resources/views/v1/emails/admin-test-html.twig -opt/app/resources/views/v1/emails/admin-test-text.twig -opt/app/resources/views/v1/emails/confirm-account-html.twig -opt/app/resources/views/v1/emails/confirm-account-text.twig -opt/app/resources/views/v1/emails/confirm-email-change-html.twig -opt/app/resources/views/v1/emails/confirm-email-change-text.twig -opt/app/resources/views/v1/emails/error-html.twig -opt/app/resources/views/v1/emails/error-text.twig -opt/app/resources/views/v1/emails/footer-html.twig -opt/app/resources/views/v1/emails/footer-text.twig -opt/app/resources/views/v1/emails/header-html.twig -opt/app/resources/views/v1/emails/header-text.twig -opt/app/resources/views/v1/emails/oauth-client-created-html.twig -opt/app/resources/views/v1/emails/oauth-client-created-text.twig -opt/app/resources/views/v1/emails/password-html.twig -opt/app/resources/views/v1/emails/password-text.twig -opt/app/resources/views/v1/emails/registered-html.twig -opt/app/resources/views/v1/emails/registered-text.twig -opt/app/resources/views/v1/emails/report-new-journals-html.twig -opt/app/resources/views/v1/emails/report-new-journals-text.twig -opt/app/resources/views/v1/emails/undo-email-change-html.twig -opt/app/resources/views/v1/emails/undo-email-change-text.twig -opt/app/resources/views/v1/error.twig -opt/app/resources/views/v1/errors/404.twig -opt/app/resources/views/v1/errors/500.twig -opt/app/resources/views/v1/errors/503.twig -opt/app/resources/views/v1/errors/FireflyException.twig -opt/app/resources/views/v1/export/index.twig -opt/app/resources/views/v1/form/amount-no-currency.twig -opt/app/resources/views/v1/form/amount-small.twig -opt/app/resources/views/v1/form/amount.twig -opt/app/resources/views/v1/form/assetAccountCheckList.twig -opt/app/resources/views/v1/form/balance.twig -opt/app/resources/views/v1/form/checkbox.twig -opt/app/resources/views/v1/form/date.twig -opt/app/resources/views/v1/form/feedback.twig -opt/app/resources/views/v1/form/file.twig -opt/app/resources/views/v1/form/help.twig -opt/app/resources/views/v1/form/integer.twig -opt/app/resources/views/v1/form/location.twig -opt/app/resources/views/v1/form/non-selectable-amount.twig -opt/app/resources/views/v1/form/number.twig -opt/app/resources/views/v1/form/options.twig -opt/app/resources/views/v1/form/password.twig -opt/app/resources/views/v1/form/percentage.twig -opt/app/resources/views/v1/form/select.twig -opt/app/resources/views/v1/form/static.twig -opt/app/resources/views/v1/form/tags.twig -opt/app/resources/views/v1/form/text.twig -opt/app/resources/views/v1/form/textarea.twig -opt/app/resources/views/v1/import/bank/form.twig -opt/app/resources/views/v1/import/bunq/choose-accounts.twig -opt/app/resources/views/v1/import/bunq/prerequisites.twig -opt/app/resources/views/v1/import/fake/apply-rules.twig -opt/app/resources/views/v1/import/fake/enter-album.twig -opt/app/resources/views/v1/import/fake/enter-artist.twig -opt/app/resources/views/v1/import/fake/enter-song.twig -opt/app/resources/views/v1/import/fake/prerequisites.twig -opt/app/resources/views/v1/import/file/configure-upload.twig -opt/app/resources/views/v1/import/file/map.twig -opt/app/resources/views/v1/import/file/new.twig -opt/app/resources/views/v1/import/file/roles.twig -opt/app/resources/views/v1/import/fints/choose_account.twig -opt/app/resources/views/v1/import/fints/new.twig -opt/app/resources/views/v1/import/index.twig -opt/app/resources/views/v1/import/spectre/accounts.twig -opt/app/resources/views/v1/import/spectre/choose-login.twig -opt/app/resources/views/v1/import/spectre/prerequisites.twig -opt/app/resources/views/v1/import/spectre/redirect.twig -opt/app/resources/views/v1/import/status.twig -opt/app/resources/views/v1/import/ynab/accounts.twig -opt/app/resources/views/v1/import/ynab/prerequisites.twig -opt/app/resources/views/v1/import/ynab/redirect.twig -opt/app/resources/views/v1/import/ynab/select-budgets.twig -opt/app/resources/views/v1/index.twig -opt/app/resources/views/v1/install/index.twig -opt/app/resources/views/v1/javascript/accounts.twig -opt/app/resources/views/v1/javascript/currencies.twig -opt/app/resources/views/v1/javascript/variables.twig -opt/app/resources/views/v1/json/piggy-banks.twig -opt/app/resources/views/v1/layout/default.twig -opt/app/resources/views/v1/layout/empty.twig -opt/app/resources/views/v1/layout/guest.twig -opt/app/resources/views/v1/layout/install.twig -opt/app/resources/views/v1/list/accounts.twig -opt/app/resources/views/v1/list/bills.twig -opt/app/resources/views/v1/list/categories.twig -opt/app/resources/views/v1/list/journals-tiny.twig -opt/app/resources/views/v1/list/journals.twig -opt/app/resources/views/v1/list/periods.twig -opt/app/resources/views/v1/list/piggy-bank-events.twig -opt/app/resources/views/v1/list/piggy-banks.twig -opt/app/resources/views/v1/list/transactions.twig -opt/app/resources/views/v1/new-user/index.twig -opt/app/resources/views/v1/partials/boxes.twig -opt/app/resources/views/v1/partials/breadcrumbs.twig -opt/app/resources/views/v1/partials/control-bar.twig -opt/app/resources/views/v1/partials/empty.twig -opt/app/resources/views/v1/partials/favicons.twig -opt/app/resources/views/v1/partials/flashes.twig -opt/app/resources/views/v1/partials/journal-row.twig -opt/app/resources/views/v1/partials/menu-sidebar.twig -opt/app/resources/views/v1/partials/page-header.twig -opt/app/resources/views/v1/partials/password-modal.twig -opt/app/resources/views/v1/partials/transaction-row.twig -opt/app/resources/views/v1/piggy-banks/add-mobile.twig -opt/app/resources/views/v1/piggy-banks/add.twig -opt/app/resources/views/v1/piggy-banks/create.twig -opt/app/resources/views/v1/piggy-banks/delete.twig -opt/app/resources/views/v1/piggy-banks/edit.twig -opt/app/resources/views/v1/piggy-banks/index.twig -opt/app/resources/views/v1/piggy-banks/remove-mobile.twig -opt/app/resources/views/v1/piggy-banks/remove.twig -opt/app/resources/views/v1/piggy-banks/show.twig -opt/app/resources/views/v1/popup/list/journals.twig -opt/app/resources/views/v1/popup/report/balance-amount.twig -opt/app/resources/views/v1/popup/report/budget-spent-amount.twig -opt/app/resources/views/v1/popup/report/category-entry.twig -opt/app/resources/views/v1/popup/report/expense-entry.twig -opt/app/resources/views/v1/popup/report/income-entry.twig -opt/app/resources/views/v1/preferences/index.twig -opt/app/resources/views/v1/profile/change-email.twig -opt/app/resources/views/v1/profile/change-password.twig -opt/app/resources/views/v1/profile/code.twig -opt/app/resources/views/v1/profile/delete-account.twig -opt/app/resources/views/v1/profile/index.twig -opt/app/resources/views/v1/recurring/create.twig -opt/app/resources/views/v1/recurring/delete.twig -opt/app/resources/views/v1/recurring/edit.twig -opt/app/resources/views/v1/recurring/index.twig -opt/app/resources/views/v1/recurring/show.twig -opt/app/resources/views/v1/reports/account/report.twig -opt/app/resources/views/v1/reports/audit/report.twig -opt/app/resources/views/v1/reports/budget/month.twig -opt/app/resources/views/v1/reports/category/month.twig -opt/app/resources/views/v1/reports/default/month.twig -opt/app/resources/views/v1/reports/default/multi-year.twig -opt/app/resources/views/v1/reports/default/year.twig -opt/app/resources/views/v1/reports/index.twig -opt/app/resources/views/v1/reports/options/account.twig -opt/app/resources/views/v1/reports/options/budget.twig -opt/app/resources/views/v1/reports/options/category.twig -opt/app/resources/views/v1/reports/options/no-options.twig -opt/app/resources/views/v1/reports/options/tag.twig -opt/app/resources/views/v1/reports/partials/accounts.twig -opt/app/resources/views/v1/reports/partials/balance.twig -opt/app/resources/views/v1/reports/partials/bills.twig -opt/app/resources/views/v1/reports/partials/budget-period.twig -opt/app/resources/views/v1/reports/partials/budgets.twig -opt/app/resources/views/v1/reports/partials/categories.twig -opt/app/resources/views/v1/reports/partials/category-period.twig -opt/app/resources/views/v1/reports/partials/exp-budgets.twig -opt/app/resources/views/v1/reports/partials/exp-categories.twig -opt/app/resources/views/v1/reports/partials/exp-not-grouped.twig -opt/app/resources/views/v1/reports/partials/income-expenses.twig -opt/app/resources/views/v1/reports/partials/journals-audit.twig -opt/app/resources/views/v1/reports/partials/operations.twig -opt/app/resources/views/v1/reports/partials/tags.twig -opt/app/resources/views/v1/reports/partials/top-transactions.twig -opt/app/resources/views/v1/reports/tag/month.twig -opt/app/resources/views/v1/rules/index.twig -opt/app/resources/views/v1/rules/partials/action.twig -opt/app/resources/views/v1/rules/partials/test-trigger-modal.twig -opt/app/resources/views/v1/rules/partials/trigger.twig -opt/app/resources/views/v1/rules/rule-group/create.twig -opt/app/resources/views/v1/rules/rule-group/delete.twig -opt/app/resources/views/v1/rules/rule-group/edit.twig -opt/app/resources/views/v1/rules/rule-group/select-transactions.twig -opt/app/resources/views/v1/rules/rule/create.twig -opt/app/resources/views/v1/rules/rule/delete.twig -opt/app/resources/views/v1/rules/rule/edit.twig -opt/app/resources/views/v1/rules/rule/select-transactions.twig -opt/app/resources/views/v1/search/index.twig -opt/app/resources/views/v1/search/search.twig -opt/app/resources/views/v1/tags/create.twig -opt/app/resources/views/v1/tags/delete.twig -opt/app/resources/views/v1/tags/edit.twig -opt/app/resources/views/v1/tags/index.twig -opt/app/resources/views/v1/tags/show.twig -opt/app/resources/views/v1/test/test.twig -opt/app/resources/views/v1/transactions/bulk/edit.twig -opt/app/resources/views/v1/transactions/convert.twig -opt/app/resources/views/v1/transactions/index.twig -opt/app/resources/views/v1/transactions/links/delete.twig -opt/app/resources/views/v1/transactions/mass/delete.twig -opt/app/resources/views/v1/transactions/mass/edit.twig -opt/app/resources/views/v1/transactions/show.twig -opt/app/resources/views/v1/transactions/single/create.twig -opt/app/resources/views/v1/transactions/single/delete.twig -opt/app/resources/views/v1/transactions/single/edit.twig -opt/app/resources/views/v1/transactions/split/edit.twig -opt/app/resources/views/v1/vendor/passport/authorize.twig -opt/app/resources/views/v2/auth/login.twig -opt/app/resources/views/v2/auth/passwords/email.twig -opt/app/resources/views/v2/auth/passwords/reset.twig -opt/app/resources/views/v2/auth/register.twig -opt/app/resources/views/v2/emails/access-token-created-html.twig -opt/app/resources/views/v2/emails/access-token-created-text.twig -opt/app/resources/views/v2/emails/admin-test-html.twig -opt/app/resources/views/v2/emails/admin-test-text.twig -opt/app/resources/views/v2/emails/confirm-account-html.twig -opt/app/resources/views/v2/emails/confirm-account-text.twig -opt/app/resources/views/v2/emails/confirm-email-change-html.twig -opt/app/resources/views/v2/emails/confirm-email-change-text.twig -opt/app/resources/views/v2/emails/error-html.twig -opt/app/resources/views/v2/emails/error-text.twig -opt/app/resources/views/v2/emails/footer-html.twig -opt/app/resources/views/v2/emails/footer-text.twig -opt/app/resources/views/v2/emails/header-html.twig -opt/app/resources/views/v2/emails/header-text.twig -opt/app/resources/views/v2/emails/oauth-client-created-html.twig -opt/app/resources/views/v2/emails/oauth-client-created-text.twig -opt/app/resources/views/v2/emails/password-html.twig -opt/app/resources/views/v2/emails/password-text.twig -opt/app/resources/views/v2/emails/registered-html.twig -opt/app/resources/views/v2/emails/registered-text.twig -opt/app/resources/views/v2/emails/report-new-journals-html.twig -opt/app/resources/views/v2/emails/report-new-journals-text.twig -opt/app/resources/views/v2/emails/undo-email-change-html.twig -opt/app/resources/views/v2/emails/undo-email-change-text.twig -opt/app/resources/views/v2/error.twig -opt/app/resources/views/v2/index.twig -opt/app/resources/views/v2/layout/auth.twig -opt/app/resources/views/v2/layout/default.twig -opt/app/resources/views/v2/partials/favicons.twig -opt/app/resources/views/v2/partials/index_boxes.twig -opt/app/resources/views/v2/partials/password_modal.twig -opt/app/resources/views/v2/partials/top_bar.twig -opt/app/resources/views/v2/partials/top_menu.twig -opt/app/routes/api.php -opt/app/routes/breadcrumbs.php -opt/app/routes/channels.php -opt/app/routes/console.php -opt/app/routes/web.php -opt/app/server.php -opt/app/storage -opt/app/vendor/adldap2/adldap2-laravel/.github/issue_template.md -opt/app/vendor/adldap2/adldap2-laravel/composer.json -opt/app/vendor/adldap2/adldap2-laravel/docs/.nojekyll -opt/app/vendor/adldap2/adldap2-laravel/docs/_sidebar.md -opt/app/vendor/adldap2/adldap2-laravel/docs/auth.md -opt/app/vendor/adldap2/adldap2-laravel/docs/auth/events.md -opt/app/vendor/adldap2/adldap2-laravel/docs/auth/importing.md -opt/app/vendor/adldap2/adldap2-laravel/docs/auth/installation.md -opt/app/vendor/adldap2/adldap2-laravel/docs/auth/introduction.md -opt/app/vendor/adldap2/adldap2-laravel/docs/auth/middleware.md -opt/app/vendor/adldap2/adldap2-laravel/docs/auth/model-binding.md -opt/app/vendor/adldap2/adldap2-laravel/docs/auth/setup.md -opt/app/vendor/adldap2/adldap2-laravel/docs/auth/testing.md -opt/app/vendor/adldap2/adldap2-laravel/docs/index.html -opt/app/vendor/adldap2/adldap2-laravel/docs/installation.md -opt/app/vendor/adldap2/adldap2-laravel/docs/readme.md -opt/app/vendor/adldap2/adldap2-laravel/docs/setup.md -opt/app/vendor/adldap2/adldap2-laravel/docs/tutorials/basics.md -opt/app/vendor/adldap2/adldap2-laravel/docs/tutorials/users.md -opt/app/vendor/adldap2/adldap2-laravel/docs/upgrading.md -opt/app/vendor/adldap2/adldap2-laravel/docs/usage.md -opt/app/vendor/adldap2/adldap2-laravel/license.md -opt/app/vendor/adldap2/adldap2-laravel/readme.md -opt/app/vendor/adldap2/adldap2-laravel/src/AdldapAuthServiceProvider.php -opt/app/vendor/adldap2/adldap2-laravel/src/AdldapServiceProvider.php -opt/app/vendor/adldap2/adldap2-laravel/src/Auth/DatabaseUserProvider.php -opt/app/vendor/adldap2/adldap2-laravel/src/Auth/NoDatabaseUserProvider.php -opt/app/vendor/adldap2/adldap2-laravel/src/Auth/Provider.php -opt/app/vendor/adldap2/adldap2-laravel/src/Commands/Console/Import.php -opt/app/vendor/adldap2/adldap2-laravel/src/Commands/Import.php -opt/app/vendor/adldap2/adldap2-laravel/src/Commands/SyncPassword.php -opt/app/vendor/adldap2/adldap2-laravel/src/Config/auth.php -opt/app/vendor/adldap2/adldap2-laravel/src/Config/config.php -opt/app/vendor/adldap2/adldap2-laravel/src/Events/Authenticated.php -opt/app/vendor/adldap2/adldap2-laravel/src/Events/AuthenticatedModelTrashed.php -opt/app/vendor/adldap2/adldap2-laravel/src/Events/AuthenticatedWithCredentials.php -opt/app/vendor/adldap2/adldap2-laravel/src/Events/AuthenticatedWithWindows.php -opt/app/vendor/adldap2/adldap2-laravel/src/Events/Authenticating.php -opt/app/vendor/adldap2/adldap2-laravel/src/Events/AuthenticationFailed.php -opt/app/vendor/adldap2/adldap2-laravel/src/Events/AuthenticationRejected.php -opt/app/vendor/adldap2/adldap2-laravel/src/Events/AuthenticationSuccessful.php -opt/app/vendor/adldap2/adldap2-laravel/src/Events/DiscoveredWithCredentials.php -opt/app/vendor/adldap2/adldap2-laravel/src/Events/Imported.php -opt/app/vendor/adldap2/adldap2-laravel/src/Events/Importing.php -opt/app/vendor/adldap2/adldap2-laravel/src/Events/Synchronized.php -opt/app/vendor/adldap2/adldap2-laravel/src/Events/Synchronizing.php -opt/app/vendor/adldap2/adldap2-laravel/src/Facades/Adldap.php -opt/app/vendor/adldap2/adldap2-laravel/src/Facades/Resolver.php -opt/app/vendor/adldap2/adldap2-laravel/src/Listeners/BindsLdapUserModel.php -opt/app/vendor/adldap2/adldap2-laravel/src/Listeners/LogAuthenticated.php -opt/app/vendor/adldap2/adldap2-laravel/src/Listeners/LogAuthentication.php -opt/app/vendor/adldap2/adldap2-laravel/src/Listeners/LogAuthenticationFailure.php -opt/app/vendor/adldap2/adldap2-laravel/src/Listeners/LogAuthenticationRejection.php -opt/app/vendor/adldap2/adldap2-laravel/src/Listeners/LogAuthenticationSuccess.php -opt/app/vendor/adldap2/adldap2-laravel/src/Listeners/LogDiscovery.php -opt/app/vendor/adldap2/adldap2-laravel/src/Listeners/LogImport.php -opt/app/vendor/adldap2/adldap2-laravel/src/Listeners/LogSynchronized.php -opt/app/vendor/adldap2/adldap2-laravel/src/Listeners/LogSynchronizing.php -opt/app/vendor/adldap2/adldap2-laravel/src/Listeners/LogTrashedModel.php -opt/app/vendor/adldap2/adldap2-laravel/src/Listeners/LogWindowsAuth.php -opt/app/vendor/adldap2/adldap2-laravel/src/Middleware/WindowsAuthenticate.php -opt/app/vendor/adldap2/adldap2-laravel/src/Resolvers/ResolverInterface.php -opt/app/vendor/adldap2/adldap2-laravel/src/Resolvers/UserResolver.php -opt/app/vendor/adldap2/adldap2-laravel/src/Scopes/MemberOfScope.php -opt/app/vendor/adldap2/adldap2-laravel/src/Scopes/ScopeInterface.php -opt/app/vendor/adldap2/adldap2-laravel/src/Scopes/UidScope.php -opt/app/vendor/adldap2/adldap2-laravel/src/Scopes/UpnScope.php -opt/app/vendor/adldap2/adldap2-laravel/src/Traits/HasLdapUser.php -opt/app/vendor/adldap2/adldap2-laravel/src/Traits/ValidatesUsers.php -opt/app/vendor/adldap2/adldap2-laravel/src/Validation/Rules/DenyTrashed.php -opt/app/vendor/adldap2/adldap2-laravel/src/Validation/Rules/OnlyImported.php -opt/app/vendor/adldap2/adldap2-laravel/src/Validation/Rules/Rule.php -opt/app/vendor/adldap2/adldap2-laravel/src/Validation/Validator.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Console/ImportTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/DatabaseImporterTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/DatabaseProviderTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/DatabaseTestCase.php -opt/app/vendor/adldap2/adldap2-laravel/tests/EloquentAuthenticateTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Handlers/LdapAttributeHandler.php -opt/app/vendor/adldap2/adldap2-laravel/tests/HasLdapUserTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Listeners/LogAuthenticatedTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Listeners/LogAuthenticationFailureTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Listeners/LogAuthenticationRejectionTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Listeners/LogAuthenticationSuccessTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Listeners/LogAuthenticationTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Listeners/LogDiscoveryTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Listeners/LogImportTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Listeners/LogSynchronizedTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Listeners/LogSynchronizingTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Listeners/LogTrashedModelTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Listeners/LogWindowsAuthTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Models/TestUser.php -opt/app/vendor/adldap2/adldap2-laravel/tests/NoDatabaseProviderTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/NoDatabaseTestCase.php -opt/app/vendor/adldap2/adldap2-laravel/tests/Scopes/JohnDoeScope.php -opt/app/vendor/adldap2/adldap2-laravel/tests/TestCase.php -opt/app/vendor/adldap2/adldap2-laravel/tests/UserResolverTest.php -opt/app/vendor/adldap2/adldap2-laravel/tests/WindowsAuthenticateTest.php -opt/app/vendor/adldap2/adldap2/.gitattributes -opt/app/vendor/adldap2/adldap2/.github/issue_template.md -opt/app/vendor/adldap2/adldap2/composer.json -opt/app/vendor/adldap2/adldap2/docs/.nojekyll -opt/app/vendor/adldap2/adldap2/docs/_sidebar.md -opt/app/vendor/adldap2/adldap2/docs/distinguished-names.md -opt/app/vendor/adldap2/adldap2/docs/events.md -opt/app/vendor/adldap2/adldap2/docs/index.html -opt/app/vendor/adldap2/adldap2/docs/installation.md -opt/app/vendor/adldap2/adldap2/docs/logging.md -opt/app/vendor/adldap2/adldap2/docs/models/computer.md -opt/app/vendor/adldap2/adldap2/docs/models/contact.md -opt/app/vendor/adldap2/adldap2/docs/models/container.md -opt/app/vendor/adldap2/adldap2/docs/models/group.md -opt/app/vendor/adldap2/adldap2/docs/models/model.md -opt/app/vendor/adldap2/adldap2/docs/models/ou.md -opt/app/vendor/adldap2/adldap2/docs/models/printer.md -opt/app/vendor/adldap2/adldap2/docs/models/root-dse.md -opt/app/vendor/adldap2/adldap2/docs/models/traits/has-critical-system-object.md -opt/app/vendor/adldap2/adldap2/docs/models/traits/has-description.md -opt/app/vendor/adldap2/adldap2/docs/models/traits/has-last-login-last-logoff.md -opt/app/vendor/adldap2/adldap2/docs/models/traits/has-member-of.md -opt/app/vendor/adldap2/adldap2/docs/models/user.md -opt/app/vendor/adldap2/adldap2/docs/readme.md -opt/app/vendor/adldap2/adldap2/docs/searching.md -opt/app/vendor/adldap2/adldap2/docs/setup.md -opt/app/vendor/adldap2/adldap2/docs/troubleshooting.md -opt/app/vendor/adldap2/adldap2/license.md -opt/app/vendor/adldap2/adldap2/readme.md -opt/app/vendor/adldap2/adldap2/src/Adldap.php -opt/app/vendor/adldap2/adldap2/src/AdldapException.php -opt/app/vendor/adldap2/adldap2/src/AdldapInterface.php -opt/app/vendor/adldap2/adldap2/src/Auth/BindException.php -opt/app/vendor/adldap2/adldap2/src/Auth/Events/Attempting.php -opt/app/vendor/adldap2/adldap2/src/Auth/Events/Binding.php -opt/app/vendor/adldap2/adldap2/src/Auth/Events/Bound.php -opt/app/vendor/adldap2/adldap2/src/Auth/Events/Event.php -opt/app/vendor/adldap2/adldap2/src/Auth/Events/Failed.php -opt/app/vendor/adldap2/adldap2/src/Auth/Events/Passed.php -opt/app/vendor/adldap2/adldap2/src/Auth/Guard.php -opt/app/vendor/adldap2/adldap2/src/Auth/GuardInterface.php -opt/app/vendor/adldap2/adldap2/src/Auth/PasswordRequiredException.php -opt/app/vendor/adldap2/adldap2/src/Auth/UsernameRequiredException.php -opt/app/vendor/adldap2/adldap2/src/Configuration/ConfigurationException.php -opt/app/vendor/adldap2/adldap2/src/Configuration/DomainConfiguration.php -opt/app/vendor/adldap2/adldap2/src/Configuration/Validators/ArrayValidator.php -opt/app/vendor/adldap2/adldap2/src/Configuration/Validators/BooleanValidator.php -opt/app/vendor/adldap2/adldap2/src/Configuration/Validators/ClassValidator.php -opt/app/vendor/adldap2/adldap2/src/Configuration/Validators/IntegerValidator.php -opt/app/vendor/adldap2/adldap2/src/Configuration/Validators/StringOrNullValidator.php -opt/app/vendor/adldap2/adldap2/src/Configuration/Validators/Validator.php -opt/app/vendor/adldap2/adldap2/src/Connections/ConnectionException.php -opt/app/vendor/adldap2/adldap2/src/Connections/ConnectionInterface.php -opt/app/vendor/adldap2/adldap2/src/Connections/DetailedError.php -opt/app/vendor/adldap2/adldap2/src/Connections/Ldap.php -opt/app/vendor/adldap2/adldap2/src/Connections/Provider.php -opt/app/vendor/adldap2/adldap2/src/Connections/ProviderInterface.php -opt/app/vendor/adldap2/adldap2/src/Events/Dispatcher.php -opt/app/vendor/adldap2/adldap2/src/Events/DispatcherInterface.php -opt/app/vendor/adldap2/adldap2/src/Events/DispatchesEvents.php -opt/app/vendor/adldap2/adldap2/src/Log/EventLogger.php -opt/app/vendor/adldap2/adldap2/src/Log/LogsInformation.php -opt/app/vendor/adldap2/adldap2/src/Models/Attributes/AccountControl.php -opt/app/vendor/adldap2/adldap2/src/Models/Attributes/DistinguishedName.php -opt/app/vendor/adldap2/adldap2/src/Models/Attributes/Guid.php -opt/app/vendor/adldap2/adldap2/src/Models/Attributes/MbString.php -opt/app/vendor/adldap2/adldap2/src/Models/Attributes/Sid.php -opt/app/vendor/adldap2/adldap2/src/Models/Attributes/TSProperty.php -opt/app/vendor/adldap2/adldap2/src/Models/Attributes/TSPropertyArray.php -opt/app/vendor/adldap2/adldap2/src/Models/BatchModification.php -opt/app/vendor/adldap2/adldap2/src/Models/Computer.php -opt/app/vendor/adldap2/adldap2/src/Models/Concerns/HasAttributes.php -opt/app/vendor/adldap2/adldap2/src/Models/Concerns/HasCriticalSystemObject.php -opt/app/vendor/adldap2/adldap2/src/Models/Concerns/HasDescription.php -opt/app/vendor/adldap2/adldap2/src/Models/Concerns/HasEvents.php -opt/app/vendor/adldap2/adldap2/src/Models/Concerns/HasLastLogonAndLogOff.php -opt/app/vendor/adldap2/adldap2/src/Models/Concerns/HasMemberOf.php -opt/app/vendor/adldap2/adldap2/src/Models/Concerns/HasUserAccountControl.php -opt/app/vendor/adldap2/adldap2/src/Models/Concerns/HasUserProperties.php -opt/app/vendor/adldap2/adldap2/src/Models/Contact.php -opt/app/vendor/adldap2/adldap2/src/Models/Container.php -opt/app/vendor/adldap2/adldap2/src/Models/Entry.php -opt/app/vendor/adldap2/adldap2/src/Models/Events/Created.php -opt/app/vendor/adldap2/adldap2/src/Models/Events/Creating.php -opt/app/vendor/adldap2/adldap2/src/Models/Events/Deleted.php -opt/app/vendor/adldap2/adldap2/src/Models/Events/Deleting.php -opt/app/vendor/adldap2/adldap2/src/Models/Events/Event.php -opt/app/vendor/adldap2/adldap2/src/Models/Events/Saved.php -opt/app/vendor/adldap2/adldap2/src/Models/Events/Saving.php -opt/app/vendor/adldap2/adldap2/src/Models/Events/Updated.php -opt/app/vendor/adldap2/adldap2/src/Models/Events/Updating.php -opt/app/vendor/adldap2/adldap2/src/Models/Factory.php -opt/app/vendor/adldap2/adldap2/src/Models/ForeignSecurityPrincipal.php -opt/app/vendor/adldap2/adldap2/src/Models/Group.php -opt/app/vendor/adldap2/adldap2/src/Models/Model.php -opt/app/vendor/adldap2/adldap2/src/Models/ModelDoesNotExistException.php -opt/app/vendor/adldap2/adldap2/src/Models/ModelNotFoundException.php -opt/app/vendor/adldap2/adldap2/src/Models/OrganizationalUnit.php -opt/app/vendor/adldap2/adldap2/src/Models/Printer.php -opt/app/vendor/adldap2/adldap2/src/Models/RootDse.php -opt/app/vendor/adldap2/adldap2/src/Models/User.php -opt/app/vendor/adldap2/adldap2/src/Models/UserPasswordIncorrectException.php -opt/app/vendor/adldap2/adldap2/src/Models/UserPasswordPolicyException.php -opt/app/vendor/adldap2/adldap2/src/Query/Builder.php -opt/app/vendor/adldap2/adldap2/src/Query/Factory.php -opt/app/vendor/adldap2/adldap2/src/Query/Grammar.php -opt/app/vendor/adldap2/adldap2/src/Query/Operator.php -opt/app/vendor/adldap2/adldap2/src/Query/Paginator.php -opt/app/vendor/adldap2/adldap2/src/Query/Processor.php -opt/app/vendor/adldap2/adldap2/src/Schemas/ActiveDirectory.php -opt/app/vendor/adldap2/adldap2/src/Schemas/FreeIPA.php -opt/app/vendor/adldap2/adldap2/src/Schemas/OpenLDAP.php -opt/app/vendor/adldap2/adldap2/src/Schemas/Schema.php -opt/app/vendor/adldap2/adldap2/src/Schemas/SchemaInterface.php -opt/app/vendor/adldap2/adldap2/src/Utilities.php -opt/app/vendor/autoload.php -opt/app/vendor/bacon/bacon-qr-code/CHANGELOG.md -opt/app/vendor/bacon/bacon-qr-code/LICENSE -opt/app/vendor/bacon/bacon-qr-code/README.md -opt/app/vendor/bacon/bacon-qr-code/composer.json -opt/app/vendor/bacon/bacon-qr-code/src/Common/BitArray.php -opt/app/vendor/bacon/bacon-qr-code/src/Common/BitMatrix.php -opt/app/vendor/bacon/bacon-qr-code/src/Common/BitUtils.php -opt/app/vendor/bacon/bacon-qr-code/src/Common/CharacterSetEci.php -opt/app/vendor/bacon/bacon-qr-code/src/Common/EcBlock.php -opt/app/vendor/bacon/bacon-qr-code/src/Common/EcBlocks.php -opt/app/vendor/bacon/bacon-qr-code/src/Common/ErrorCorrectionLevel.php -opt/app/vendor/bacon/bacon-qr-code/src/Common/FormatInformation.php -opt/app/vendor/bacon/bacon-qr-code/src/Common/Mode.php -opt/app/vendor/bacon/bacon-qr-code/src/Common/ReedSolomonCodec.php -opt/app/vendor/bacon/bacon-qr-code/src/Common/Version.php -opt/app/vendor/bacon/bacon-qr-code/src/Encoder/BlockPair.php -opt/app/vendor/bacon/bacon-qr-code/src/Encoder/ByteMatrix.php -opt/app/vendor/bacon/bacon-qr-code/src/Encoder/Encoder.php -opt/app/vendor/bacon/bacon-qr-code/src/Encoder/MaskUtil.php -opt/app/vendor/bacon/bacon-qr-code/src/Encoder/MatrixUtil.php -opt/app/vendor/bacon/bacon-qr-code/src/Encoder/QrCode.php -opt/app/vendor/bacon/bacon-qr-code/src/Exception/ExceptionInterface.php -opt/app/vendor/bacon/bacon-qr-code/src/Exception/InvalidArgumentException.php -opt/app/vendor/bacon/bacon-qr-code/src/Exception/OutOfBoundsException.php -opt/app/vendor/bacon/bacon-qr-code/src/Exception/RuntimeException.php -opt/app/vendor/bacon/bacon-qr-code/src/Exception/UnexpectedValueException.php -opt/app/vendor/bacon/bacon-qr-code/src/Exception/WriterException.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Color/Alpha.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Color/Cmyk.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Color/ColorInterface.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Color/Gray.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Color/Rgb.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Eye/CompositeEye.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Eye/EyeInterface.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Eye/ModuleEye.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Eye/SimpleCircleEye.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Eye/SquareEye.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Image/EpsImageBackEnd.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Image/ImageBackEndInterface.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Image/ImagickImageBackEnd.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Image/SvgImageBackEnd.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Image/TransformationMatrix.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/ImageRenderer.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Module/DotsModule.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Module/EdgeIterator/Edge.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Module/EdgeIterator/EdgeIterator.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Module/ModuleInterface.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Module/RoundnessModule.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Module/SquareModule.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Path/Close.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Path/Curve.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Path/EllipticArc.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Path/Line.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Path/Move.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Path/OperationInterface.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/Path/Path.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/PlainTextRenderer.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/RendererInterface.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/RendererStyle/EyeFill.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/RendererStyle/Fill.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/RendererStyle/Gradient.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/RendererStyle/GradientType.php -opt/app/vendor/bacon/bacon-qr-code/src/Renderer/RendererStyle/RendererStyle.php -opt/app/vendor/bacon/bacon-qr-code/src/Writer.php -opt/app/vendor/bin/bunq-install -opt/app/vendor/bin/commonmark -opt/app/vendor/bin/doctrine-dbal -opt/app/vendor/bin/generate-defuse-key -opt/app/vendor/bin/var-dump-server -opt/app/vendor/bunq/sdk_php/.github/ISSUE_TEMPLATE.md -opt/app/vendor/bunq/sdk_php/.github/PULL_REQUEST_TEMPLATE.md -opt/app/vendor/bunq/sdk_php/.gitmodules -opt/app/vendor/bunq/sdk_php/.zappr.yaml -opt/app/vendor/bunq/sdk_php/LICENSE.md -opt/app/vendor/bunq/sdk_php/bin/bunq-install -opt/app/vendor/bunq/sdk_php/composer.json -opt/app/vendor/bunq/sdk_php/src/Context/ApiContext.php -opt/app/vendor/bunq/sdk_php/src/Context/BunqContext.php -opt/app/vendor/bunq/sdk_php/src/Context/InstallationContext.php -opt/app/vendor/bunq/sdk_php/src/Context/SessionContext.php -opt/app/vendor/bunq/sdk_php/src/Context/UserContext.php -opt/app/vendor/bunq/sdk_php/src/Exception/ApiException.php -opt/app/vendor/bunq/sdk_php/src/Exception/BadRequestException.php -opt/app/vendor/bunq/sdk_php/src/Exception/BunqException.php -opt/app/vendor/bunq/sdk_php/src/Exception/EXCEPTION.md -opt/app/vendor/bunq/sdk_php/src/Exception/ExceptionFactory.php -opt/app/vendor/bunq/sdk_php/src/Exception/ForbiddenException.php -opt/app/vendor/bunq/sdk_php/src/Exception/MethodNotAllowedException.php -opt/app/vendor/bunq/sdk_php/src/Exception/NotFoundException.php -opt/app/vendor/bunq/sdk_php/src/Exception/PleaseContactBunqException.php -opt/app/vendor/bunq/sdk_php/src/Exception/SecurityException.php -opt/app/vendor/bunq/sdk_php/src/Exception/TooManyRequestsException.php -opt/app/vendor/bunq/sdk_php/src/Exception/UnauthorizedException.php -opt/app/vendor/bunq/sdk_php/src/Exception/UnknownApiErrorException.php -opt/app/vendor/bunq/sdk_php/src/Http/ApiClient.php -opt/app/vendor/bunq/sdk_php/src/Http/BunqResponse.php -opt/app/vendor/bunq/sdk_php/src/Http/BunqResponseRaw.php -opt/app/vendor/bunq/sdk_php/src/Http/Certificate/api.bunq.com.pubkey.pem -opt/app/vendor/bunq/sdk_php/src/Http/Handler/HandlerBase.php -opt/app/vendor/bunq/sdk_php/src/Http/Handler/HandlerUtil.php -opt/app/vendor/bunq/sdk_php/src/Http/Handler/RequestHandlerAuthentication.php -opt/app/vendor/bunq/sdk_php/src/Http/Handler/RequestHandlerBase.php -opt/app/vendor/bunq/sdk_php/src/Http/Handler/RequestHandlerEncryption.php -opt/app/vendor/bunq/sdk_php/src/Http/Handler/RequestHandlerSignature.php -opt/app/vendor/bunq/sdk_php/src/Http/Handler/ResponseHandlerBase.php -opt/app/vendor/bunq/sdk_php/src/Http/Handler/ResponseHandlerError.php -opt/app/vendor/bunq/sdk_php/src/Http/Handler/ResponseHandlerSignature.php -opt/app/vendor/bunq/sdk_php/src/Http/Pagination.php -opt/app/vendor/bunq/sdk_php/src/Model/Core/AnchorObjectInterface.php -opt/app/vendor/bunq/sdk_php/src/Model/Core/BunqModel.php -opt/app/vendor/bunq/sdk_php/src/Model/Core/BunqResponseInstallation.php -opt/app/vendor/bunq/sdk_php/src/Model/Core/BunqResponseSessionServer.php -opt/app/vendor/bunq/sdk_php/src/Model/Core/DeviceServerInternal.php -opt/app/vendor/bunq/sdk_php/src/Model/Core/Id.php -opt/app/vendor/bunq/sdk_php/src/Model/Core/Installation.php -opt/app/vendor/bunq/sdk_php/src/Model/Core/SandboxUserInternal.php -opt/app/vendor/bunq/sdk_php/src/Model/Core/ServerPublicKey.php -opt/app/vendor/bunq/sdk_php/src/Model/Core/SessionServer.php -opt/app/vendor/bunq/sdk_php/src/Model/Core/Token.php -opt/app/vendor/bunq/sdk_php/src/Model/Core/Uuid.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/AttachmentConversationContent.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/AttachmentMonetaryAccount.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/AttachmentPublic.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/AttachmentPublicContent.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/AttachmentTab.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/AttachmentTabContent.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/Avatar.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BillingContractSubscription.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqMeFundraiserProfile.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqMeFundraiserResult.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqMeTab.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqMeTabEntry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqMeTabResultInquiry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqMeTabResultResponse.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseAttachmentPublic.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseAttachmentTab.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseAvatar.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseBillingContractSubscriptionList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseBunqMeTab.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseBunqMeTabList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCard.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCardBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCardDebit.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCardGeneratedCvc2.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCardGeneratedCvc2List.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCardList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCardNameList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCashRegister.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCashRegisterList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCashRegisterQrCode.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCashRegisterQrCodeList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCertificatePinned.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCertificatePinnedList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCustomer.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCustomerLimitList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCustomerList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCustomerStatementExport.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseCustomerStatementExportList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseDevice.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseDeviceList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseDeviceServer.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseDeviceServerList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseDraftPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseDraftPaymentList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseDraftShareInviteApiKey.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseDraftShareInviteApiKeyList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseDraftShareInviteBank.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseDraftShareInviteBankList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseEvent.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseEventList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseExportAnnualOverview.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseExportAnnualOverviewList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseFeatureAnnouncement.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseIdealMerchantTransaction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseIdealMerchantTransactionList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseInstallationServerPublicKeyList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseInt.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseInvoice.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseInvoiceByUser.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseInvoiceByUserList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseInvoiceList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseMasterCardAction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseMasterCardActionList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseMonetaryAccount.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseMonetaryAccountBank.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseMonetaryAccountBankList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseMonetaryAccountJoint.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseMonetaryAccountJointList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseMonetaryAccountList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseMonetaryAccountSavings.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseMonetaryAccountSavingsList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentBankSwitchServiceNetherlandsIncomingPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentBankSwitchServiceNetherlandsIncomingPaymentList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentBunqMeFundraiserResult.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentBunqMeFundraiserResultList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentDraftPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentDraftPaymentList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentIdealMerchantTransaction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentIdealMerchantTransactionList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentMasterCardAction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentMasterCardActionList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentPaymentBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentPaymentBatchList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentPaymentList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentRequestInquiry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentRequestInquiryBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentRequestInquiryBatchList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentRequestInquiryList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentRequestResponse.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentRequestResponseList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentScheduleInstance.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentScheduleInstanceList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentSofortMerchantTransaction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentSofortMerchantTransactionList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentWhitelistResult.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteAttachmentWhitelistResultList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextBankSwitchServiceNetherlandsIncomingPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextBankSwitchServiceNetherlandsIncomingPaymentList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextBunqMeFundraiserResult.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextBunqMeFundraiserResultList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextDraftPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextDraftPaymentList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextIdealMerchantTransaction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextIdealMerchantTransactionList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextMasterCardAction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextMasterCardActionList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextPaymentBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextPaymentBatchList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextPaymentList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextRequestInquiry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextRequestInquiryBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextRequestInquiryBatchList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextRequestInquiryList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextRequestResponse.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextRequestResponseList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextScheduleInstance.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextScheduleInstanceList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextSofortMerchantTransaction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextSofortMerchantTransactionList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextWhitelistResult.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNoteTextWhitelistResultList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseNull.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponsePayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponsePaymentBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponsePaymentBatchList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponsePaymentList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponsePermittedIp.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponsePermittedIpList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseRequestInquiry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseRequestInquiryBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseRequestInquiryBatchList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseRequestInquiryList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseRequestResponse.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseRequestResponseList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseSandboxUser.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseSchedule.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseScheduleInstance.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseScheduleInstanceList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseScheduleList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseSchedulePayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseSchedulePaymentList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseScheduleUserList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseShareInviteBankInquiry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseShareInviteBankInquiryList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseShareInviteBankResponse.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseShareInviteBankResponseList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseString.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTab.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTabAttachmentTab.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTabItemShop.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTabItemShopList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTabList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTabResultInquiry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTabResultInquiryList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTabResultResponse.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTabResultResponseList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTabUsageMultiple.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTabUsageMultipleList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTabUsageSingle.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTabUsageSingleList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTokenQrRequestIdeal.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseTokenQrRequestSofort.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseUser.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseUserCompany.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseUserCredentialPasswordIp.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseUserCredentialPasswordIpList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseUserList.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/BunqResponseUserPerson.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/Card.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/CardBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/CardDebit.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/CardGeneratedCvc2.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/CardName.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/CardReplace.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/CashRegister.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/CashRegisterQrCode.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/CashRegisterQrCodeContent.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/CertificatePinned.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/ChatMessage.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/Customer.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/CustomerLimit.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/CustomerStatementExport.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/CustomerStatementExportContent.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/Device.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/DeviceServer.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/DraftPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/DraftShareInviteApiKey.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/DraftShareInviteApiKeyQrCodeContent.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/DraftShareInviteBank.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/DraftShareInviteBankQrCodeContent.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/Event.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/ExportAnnualOverview.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/ExportAnnualOverviewContent.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/FeatureAnnouncement.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/IdealMerchantTransaction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/InstallationServerPublicKey.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/Invoice.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/InvoiceByUser.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/MasterCardAction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/MonetaryAccount.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/MonetaryAccountBank.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/MonetaryAccountJoint.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/MonetaryAccountLight.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/MonetaryAccountProfile.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/MonetaryAccountSavings.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteAttachmentBankSwitchServiceNetherlandsIncomingPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteAttachmentBunqMeFundraiserResult.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteAttachmentDraftPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteAttachmentIdealMerchantTransaction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteAttachmentMasterCardAction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteAttachmentPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteAttachmentPaymentBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteAttachmentRequestInquiry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteAttachmentRequestInquiryBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteAttachmentRequestResponse.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteAttachmentScheduleInstance.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteAttachmentSofortMerchantTransaction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteAttachmentWhitelistResult.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteTextBankSwitchServiceNetherlandsIncomingPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteTextBunqMeFundraiserResult.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteTextDraftPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteTextIdealMerchantTransaction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteTextMasterCardAction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteTextPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteTextPaymentBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteTextRequestInquiry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteTextRequestInquiryBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteTextRequestResponse.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteTextScheduleInstance.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteTextSofortMerchantTransaction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/NoteTextWhitelistResult.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/Payment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/PaymentBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/PermittedIp.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/RequestInquiry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/RequestInquiryBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/RequestResponse.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/SandboxUser.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/Schedule.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/ScheduleInstance.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/SchedulePayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/SchedulePaymentBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/ScheduleUser.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/Session.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/ShareInviteBankAmountUsed.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/ShareInviteBankInquiry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/ShareInviteBankInquiryBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/ShareInviteBankResponse.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/Tab.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/TabAttachmentTab.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/TabAttachmentTabContent.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/TabItem.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/TabItemShop.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/TabItemShopBatch.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/TabQrCodeContent.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/TabResultInquiry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/TabResultResponse.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/TabUsageMultiple.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/TabUsageSingle.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/TokenQrRequestIdeal.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/TokenQrRequestSofort.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/User.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/UserApiKey.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/UserCompany.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/UserCredentialPasswordIp.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/UserLight.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/UserPerson.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/Whitelist.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Endpoint/WhitelistResult.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/Address.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/Amount.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/Attachment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/AttachmentMonetaryAccountPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/AttachmentPublic.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/AttachmentTab.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/Avatar.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/BudgetRestriction.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/BunqId.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/BunqMeMerchantAvailable.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/CardBatchEntry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/CardCountryPermission.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/CardLimit.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/CardMagStripePermission.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/CardPinAssignment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/Certificate.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/CoOwner.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/DraftPaymentAnchorObject.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/DraftPaymentEntry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/DraftPaymentResponse.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/DraftShareInviteEntry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/Error.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/EventObject.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/Geolocation.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/Image.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/InvoiceItem.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/InvoiceItemGroup.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/Issuer.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/LabelCard.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/LabelMonetaryAccount.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/LabelUser.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/MonetaryAccountProfileDrain.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/MonetaryAccountProfileFill.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/MonetaryAccountSetting.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/NotificationAnchorObject.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/NotificationFilter.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/NotificationUrl.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/PermittedDevice.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/Pointer.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/RequestInquiryReference.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/RequestReferenceSplitTheBillAnchorObject.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/ScheduleAnchorObject.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/ScheduleInstanceAnchorObject.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/SchedulePaymentEntry.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/ShareDetail.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/ShareDetailDraftPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/ShareDetailPayment.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/ShareDetailReadOnly.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/TabTextWaitingScreen.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/TabVisibility.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/TaxResident.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/Ubo.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/UserApiKeyAnchoredUser.php -opt/app/vendor/bunq/sdk_php/src/Model/Generated/Object/WhitelistResultViewAnchoredObject.php -opt/app/vendor/bunq/sdk_php/src/Security/KeyPair.php -opt/app/vendor/bunq/sdk_php/src/Security/PrivateKey.php -opt/app/vendor/bunq/sdk_php/src/Security/PublicKey.php -opt/app/vendor/bunq/sdk_php/src/Util/BunqEnum.php -opt/app/vendor/bunq/sdk_php/src/Util/BunqEnumApiEnvironmentType.php -opt/app/vendor/bunq/sdk_php/src/Util/FileUtil.php -opt/app/vendor/bunq/sdk_php/src/Util/InstallationUtil.php -opt/app/vendor/bunq/sdk_php/src/Util/ModelUtil.php -opt/app/vendor/composer/ClassLoader.php -opt/app/vendor/composer/LICENSE -opt/app/vendor/composer/autoload_classmap.php -opt/app/vendor/composer/autoload_files.php -opt/app/vendor/composer/autoload_namespaces.php -opt/app/vendor/composer/autoload_psr4.php -opt/app/vendor/composer/autoload_real.php -opt/app/vendor/composer/autoload_static.php -opt/app/vendor/composer/installed.json -opt/app/vendor/danhunsaker/laravel-flysystem-others/.travis-phpunit-hhvm.xml -opt/app/vendor/danhunsaker/laravel-flysystem-others/.travis-phpunit.xml -opt/app/vendor/danhunsaker/laravel-flysystem-others/LICENSE -opt/app/vendor/danhunsaker/laravel-flysystem-others/README.md -opt/app/vendor/danhunsaker/laravel-flysystem-others/composer.json -opt/app/vendor/danhunsaker/laravel-flysystem-others/config/filesystems.php -opt/app/vendor/danhunsaker/laravel-flysystem-others/src/FlysystemOtherManager.php -opt/app/vendor/danhunsaker/laravel-flysystem-others/src/FlysystemOtherServiceProvider.php -opt/app/vendor/danhunsaker/laravel-flysystem-service/.travis-phpunit-hhvm.xml -opt/app/vendor/danhunsaker/laravel-flysystem-service/.travis-phpunit.xml -opt/app/vendor/danhunsaker/laravel-flysystem-service/LICENSE -opt/app/vendor/danhunsaker/laravel-flysystem-service/README.md -opt/app/vendor/danhunsaker/laravel-flysystem-service/composer.json -opt/app/vendor/danhunsaker/laravel-flysystem-service/config/filesystems.php -opt/app/vendor/danhunsaker/laravel-flysystem-service/src/FlysystemManager.php -opt/app/vendor/danhunsaker/laravel-flysystem-service/src/FlysystemServiceProvider.php -opt/app/vendor/dasprid/enum/.coveralls.yml -opt/app/vendor/dasprid/enum/README.md -opt/app/vendor/dasprid/enum/composer.json -opt/app/vendor/dasprid/enum/phpcs.xml -opt/app/vendor/dasprid/enum/phpunit.xml.dist -opt/app/vendor/dasprid/enum/src/AbstractEnum.php -opt/app/vendor/dasprid/enum/src/EnumMap.php -opt/app/vendor/dasprid/enum/src/Exception/CloneNotSupportedException.php -opt/app/vendor/dasprid/enum/src/Exception/ExceptionInterface.php -opt/app/vendor/dasprid/enum/src/Exception/ExpectationException.php -opt/app/vendor/dasprid/enum/src/Exception/IllegalArgumentException.php -opt/app/vendor/dasprid/enum/src/Exception/MismatchException.php -opt/app/vendor/dasprid/enum/src/Exception/SerializeNotSupportedException.php -opt/app/vendor/dasprid/enum/src/Exception/UnserializeNotSupportedException.php -opt/app/vendor/dasprid/enum/src/NullValue.php -opt/app/vendor/dasprid/enum/test/AbstractEnumTest.php -opt/app/vendor/dasprid/enum/test/EnumMapTest.php -opt/app/vendor/dasprid/enum/test/NullValueTest.php -opt/app/vendor/dasprid/enum/test/Planet.php -opt/app/vendor/dasprid/enum/test/WeekDay.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/composer.json -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/config/breadcrumbs.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/src/BreadcrumbsException.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/src/BreadcrumbsGenerator.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/src/BreadcrumbsManager.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/src/BreadcrumbsServiceProvider.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/src/Exceptions/DuplicateBreadcrumbException.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/src/Exceptions/InvalidBreadcrumbException.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/src/Exceptions/UnnamedRouteException.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/src/Exceptions/ViewNotSetException.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/src/Facades/Breadcrumbs.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/views/bootstrap2.blade.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/views/bootstrap3.blade.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/views/bootstrap4.blade.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/views/bulma.blade.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/views/foundation6.blade.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/views/json-ld.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/views/materialize.blade.php -opt/app/vendor/davejamesmiller/laravel-breadcrumbs/views/uikit.blade.php -opt/app/vendor/defuse/php-encryption/.php_cs -opt/app/vendor/defuse/php-encryption/LICENSE -opt/app/vendor/defuse/php-encryption/README.md -opt/app/vendor/defuse/php-encryption/bin/generate-defuse-key -opt/app/vendor/defuse/php-encryption/composer.json -opt/app/vendor/defuse/php-encryption/dist/Makefile -opt/app/vendor/defuse/php-encryption/dist/box.json -opt/app/vendor/defuse/php-encryption/dist/signingkey.asc -opt/app/vendor/defuse/php-encryption/docs/CryptoDetails.md -opt/app/vendor/defuse/php-encryption/docs/FAQ.md -opt/app/vendor/defuse/php-encryption/docs/InstallingAndVerifying.md -opt/app/vendor/defuse/php-encryption/docs/InternalDeveloperDocs.md -opt/app/vendor/defuse/php-encryption/docs/Tutorial.md -opt/app/vendor/defuse/php-encryption/docs/UpgradingFromV1.2.md -opt/app/vendor/defuse/php-encryption/docs/classes/Crypto.md -opt/app/vendor/defuse/php-encryption/docs/classes/File.md -opt/app/vendor/defuse/php-encryption/docs/classes/Key.md -opt/app/vendor/defuse/php-encryption/docs/classes/KeyProtectedByPassword.md -opt/app/vendor/defuse/php-encryption/psalm.xml -opt/app/vendor/defuse/php-encryption/src/Core.php -opt/app/vendor/defuse/php-encryption/src/Crypto.php -opt/app/vendor/defuse/php-encryption/src/DerivedKeys.php -opt/app/vendor/defuse/php-encryption/src/Encoding.php -opt/app/vendor/defuse/php-encryption/src/Exception/BadFormatException.php -opt/app/vendor/defuse/php-encryption/src/Exception/CryptoException.php -opt/app/vendor/defuse/php-encryption/src/Exception/EnvironmentIsBrokenException.php -opt/app/vendor/defuse/php-encryption/src/Exception/IOException.php -opt/app/vendor/defuse/php-encryption/src/Exception/WrongKeyOrModifiedCiphertextException.php -opt/app/vendor/defuse/php-encryption/src/File.php -opt/app/vendor/defuse/php-encryption/src/Key.php -opt/app/vendor/defuse/php-encryption/src/KeyOrPassword.php -opt/app/vendor/defuse/php-encryption/src/KeyProtectedByPassword.php -opt/app/vendor/defuse/php-encryption/src/RuntimeTests.php -opt/app/vendor/doctrine/cache/LICENSE -opt/app/vendor/doctrine/cache/README.md -opt/app/vendor/doctrine/cache/UPGRADE.md -opt/app/vendor/doctrine/cache/composer.json -opt/app/vendor/doctrine/cache/docs/en/index.rst -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ApcCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ApcuCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ArrayCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/Cache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ChainCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ClearableCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/CouchbaseBucketCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/CouchbaseCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ExtMongoDBCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FileCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FlushableCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/LegacyMongoDBCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MemcacheCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MemcachedCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MongoDBCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MultiDeleteCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MultiGetCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MultiOperationCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MultiPutCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/PhpFileCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/PredisCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/RedisCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/RiakCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/Version.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/VoidCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/WinCacheCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/XcacheCache.php -opt/app/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ZendDataCache.php -opt/app/vendor/doctrine/dbal/.doctrine-project.json -opt/app/vendor/doctrine/dbal/LICENSE -opt/app/vendor/doctrine/dbal/README.md -opt/app/vendor/doctrine/dbal/SECURITY.md -opt/app/vendor/doctrine/dbal/UPGRADE.md -opt/app/vendor/doctrine/dbal/bin/doctrine-dbal -opt/app/vendor/doctrine/dbal/bin/doctrine-dbal.php -opt/app/vendor/doctrine/dbal/composer.json -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Cache/ArrayStatement.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Cache/CacheException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Cache/QueryCacheProfile.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Cache/ResultCacheStatement.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/ColumnCase.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Configuration.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/ConnectionException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connections/MasterSlaveConnection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractDB2Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractDriverException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractOracleDriver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractOracleDriver/EasyConnectString.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractPostgreSQLDriver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractSQLAnywhereDriver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractSQLServerDriver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractSQLiteDriver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Connection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/DriverException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/DrizzlePDOMySql/Connection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/DrizzlePDOMySql/Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/ExceptionConverterDriver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/IBMDB2/DB2Connection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/IBMDB2/DB2Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/IBMDB2/DB2Exception.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/IBMDB2/DB2Statement.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/MysqliConnection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/MysqliException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/OCI8Exception.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOIbm/Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOMySql/Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOOracle/Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOPgSql/Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlite/Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlsrv/Connection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlsrv/Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlsrv/Statement.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PingableConnection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/ResultStatement.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLAnywhere/Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLAnywhere/SQLAnywhereConnection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLAnywhere/SQLAnywhereException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLAnywhere/SQLAnywhereStatement.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLSrv/Driver.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLSrv/LastInsertId.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvConnection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvStatement.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/ServerInfoAwareConnection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Statement.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/StatementIterator.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/DriverManager.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/ConnectionEventArgs.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/Listeners/MysqlSessionInit.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/Listeners/OracleSessionInit.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/Listeners/SQLSessionInit.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaAlterTableAddColumnEventArgs.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaAlterTableChangeColumnEventArgs.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaAlterTableEventArgs.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaAlterTableRemoveColumnEventArgs.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaAlterTableRenameColumnEventArgs.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaColumnDefinitionEventArgs.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaCreateTableColumnEventArgs.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaCreateTableEventArgs.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaDropTableEventArgs.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaEventArgs.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/SchemaIndexDefinitionEventArgs.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Events.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/ConnectionException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/ConstraintViolationException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/DatabaseObjectExistsException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/DatabaseObjectNotFoundException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/DeadlockException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/DriverException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/ForeignKeyConstraintViolationException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/InvalidArgumentException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/InvalidFieldNameException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/LockWaitTimeoutException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/NonUniqueFieldNameException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/NotNullConstraintViolationException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/ReadOnlyException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/RetryableException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/ServerException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/SyntaxErrorException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/TableExistsException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/TableNotFoundException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/UniqueConstraintViolationException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/FetchMode.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Id/TableGenerator.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Id/TableGeneratorSchemaVisitor.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/LockMode.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Logging/DebugStack.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Logging/EchoSQLLogger.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Logging/LoggerChain.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Logging/SQLLogger.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/ParameterType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/DB2Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/DateIntervalUnit.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/DB2Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/DrizzleKeywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/KeywordList.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MariaDb102Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MsSQLKeywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MySQL57Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MySQL80Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MySQLKeywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/OracleKeywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL100Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL91Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL92Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL94Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQLKeywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/ReservedKeywordsValidator.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLAnywhere11Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLAnywhere12Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLAnywhere16Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLAnywhereKeywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLServer2005Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLServer2008Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLServer2012Keywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLServerKeywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/SQLiteKeywords.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MariaDb1027Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MySQL57Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MySQL80Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/OraclePlatform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL100Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL91Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL92Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL94Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLAnywhere11Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLAnywhere12Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLAnywhere16Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLAnywherePlatform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLAzurePlatform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLServer2005Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLServer2008Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLServer2012Platform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SQLServerPlatform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SqlitePlatform.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/TrimMode.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Portability/Connection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Portability/Statement.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Query/Expression/CompositeExpression.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Query/Expression/ExpressionBuilder.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Query/QueryBuilder.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Query/QueryException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/SQLParserUtils.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/SQLParserUtilsException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/AbstractAsset.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Column.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/ColumnDiff.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Comparator.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Constraint.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/DB2SchemaManager.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/DrizzleSchemaManager.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/ForeignKeyConstraint.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Identifier.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Index.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/MySqlSchemaManager.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/OracleSchemaManager.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/SQLAnywhereSchemaManager.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/SQLServerSchemaManager.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Schema.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/SchemaConfig.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/SchemaDiff.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/SchemaException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Sequence.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/SqliteSchemaManager.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Synchronizer/AbstractSchemaSynchronizer.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Synchronizer/SchemaSynchronizer.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Synchronizer/SingleDatabaseSynchronizer.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Table.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/TableDiff.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/View.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/AbstractVisitor.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/DropSchemaSqlCollector.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/Graphviz.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/NamespaceVisitor.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/RemoveNamespacedAssets.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/SchemaDiffVisitor.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/Visitor.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Sharding/PoolingShardConnection.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Sharding/PoolingShardManager.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureFederationsSynchronizer.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Sharding/SQLAzure/Schema/MultiTenantVisitor.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Sharding/ShardChoser/MultiTenantShardChoser.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Sharding/ShardChoser/ShardChoser.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Sharding/ShardManager.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Sharding/ShardingException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Tools/Console/Command/ImportCommand.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Tools/Console/Command/ReservedWordsCommand.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Tools/Console/Command/RunSqlCommand.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Tools/Console/ConsoleRunner.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Tools/Console/Helper/ConnectionHelper.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Tools/Dumper.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/TransactionIsolationLevel.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/ArrayType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/BigIntType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/BinaryType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/BlobType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/BooleanType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/ConversionException.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/DateImmutableType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/DateIntervalType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/DateTimeImmutableType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/DateTimeType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/DateTimeTzImmutableType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/DateTimeTzType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/DateType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/DecimalType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/FloatType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/GuidType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/IntegerType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/JsonArrayType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/JsonType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/ObjectType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/PhpDateTimeMappingType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/PhpIntegerMappingType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/SimpleArrayType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/SmallIntType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/StringType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/TextType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/TimeImmutableType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/TimeType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/Type.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/VarDateTimeImmutableType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/VarDateTimeType.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/Version.php -opt/app/vendor/doctrine/dbal/lib/Doctrine/DBAL/VersionAwarePlatformDriver.php -opt/app/vendor/doctrine/event-manager/LICENSE -opt/app/vendor/doctrine/event-manager/README.md -opt/app/vendor/doctrine/event-manager/composer.json -opt/app/vendor/doctrine/event-manager/docs/en/index.rst -opt/app/vendor/doctrine/event-manager/docs/en/reference/index.rst -opt/app/vendor/doctrine/event-manager/docs/en/sidebar.rst -opt/app/vendor/doctrine/event-manager/lib/Doctrine/Common/EventArgs.php -opt/app/vendor/doctrine/event-manager/lib/Doctrine/Common/EventManager.php -opt/app/vendor/doctrine/event-manager/lib/Doctrine/Common/EventSubscriber.php -opt/app/vendor/doctrine/inflector/LICENSE -opt/app/vendor/doctrine/inflector/README.md -opt/app/vendor/doctrine/inflector/composer.json -opt/app/vendor/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php -opt/app/vendor/doctrine/lexer/LICENSE -opt/app/vendor/doctrine/lexer/README.md -opt/app/vendor/doctrine/lexer/composer.json -opt/app/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php -opt/app/vendor/dragonmantank/cron-expression/.editorconfig -opt/app/vendor/dragonmantank/cron-expression/CHANGELOG.md -opt/app/vendor/dragonmantank/cron-expression/LICENSE -opt/app/vendor/dragonmantank/cron-expression/README.md -opt/app/vendor/dragonmantank/cron-expression/composer.json -opt/app/vendor/dragonmantank/cron-expression/src/Cron/AbstractField.php -opt/app/vendor/dragonmantank/cron-expression/src/Cron/CronExpression.php -opt/app/vendor/dragonmantank/cron-expression/src/Cron/DayOfMonthField.php -opt/app/vendor/dragonmantank/cron-expression/src/Cron/DayOfWeekField.php -opt/app/vendor/dragonmantank/cron-expression/src/Cron/FieldFactory.php -opt/app/vendor/dragonmantank/cron-expression/src/Cron/FieldInterface.php -opt/app/vendor/dragonmantank/cron-expression/src/Cron/HoursField.php -opt/app/vendor/dragonmantank/cron-expression/src/Cron/MinutesField.php -opt/app/vendor/dragonmantank/cron-expression/src/Cron/MonthField.php -opt/app/vendor/dragonmantank/cron-expression/tests/Cron/AbstractFieldTest.php -opt/app/vendor/dragonmantank/cron-expression/tests/Cron/CronExpressionTest.php -opt/app/vendor/dragonmantank/cron-expression/tests/Cron/DayOfMonthFieldTest.php -opt/app/vendor/dragonmantank/cron-expression/tests/Cron/DayOfWeekFieldTest.php -opt/app/vendor/dragonmantank/cron-expression/tests/Cron/FieldFactoryTest.php -opt/app/vendor/dragonmantank/cron-expression/tests/Cron/HoursFieldTest.php -opt/app/vendor/dragonmantank/cron-expression/tests/Cron/MinutesFieldTest.php -opt/app/vendor/dragonmantank/cron-expression/tests/Cron/MonthFieldTest.php -opt/app/vendor/egulias/email-validator/EmailValidator/EmailLexer.php -opt/app/vendor/egulias/email-validator/EmailValidator/EmailParser.php -opt/app/vendor/egulias/email-validator/EmailValidator/EmailValidator.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/AtextAfterCFWS.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/CRLFAtTheEnd.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/CRLFX2.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/CRNoLF.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/CharNotAllowed.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/CommaInDomain.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/ConsecutiveAt.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/ConsecutiveDot.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/DomainHyphened.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/DotAtEnd.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/DotAtStart.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingAT.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingATEXT.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingCTEXT.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingDTEXT.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingDomainLiteralClose.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingQPair.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/InvalidEmail.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/NoDNSRecord.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/NoDomainPart.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/NoLocalPart.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/UnclosedComment.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/UnclosedQuotedString.php -opt/app/vendor/egulias/email-validator/EmailValidator/Exception/UnopenedComment.php -opt/app/vendor/egulias/email-validator/EmailValidator/Parser/DomainPart.php -opt/app/vendor/egulias/email-validator/EmailValidator/Parser/LocalPart.php -opt/app/vendor/egulias/email-validator/EmailValidator/Parser/Parser.php -opt/app/vendor/egulias/email-validator/EmailValidator/Validation/DNSCheckValidation.php -opt/app/vendor/egulias/email-validator/EmailValidator/Validation/EmailValidation.php -opt/app/vendor/egulias/email-validator/EmailValidator/Validation/Error/RFCWarnings.php -opt/app/vendor/egulias/email-validator/EmailValidator/Validation/Error/SpoofEmail.php -opt/app/vendor/egulias/email-validator/EmailValidator/Validation/Exception/EmptyValidationList.php -opt/app/vendor/egulias/email-validator/EmailValidator/Validation/MultipleErrors.php -opt/app/vendor/egulias/email-validator/EmailValidator/Validation/MultipleValidationWithAnd.php -opt/app/vendor/egulias/email-validator/EmailValidator/Validation/NoRFCWarningsValidation.php -opt/app/vendor/egulias/email-validator/EmailValidator/Validation/RFCValidation.php -opt/app/vendor/egulias/email-validator/EmailValidator/Validation/SpoofCheckValidation.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/AddressLiteral.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/CFWSNearAt.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/CFWSWithFWS.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/Comment.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/DeprecatedComment.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/DomainLiteral.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/DomainTooLong.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/EmailTooLong.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/IPV6BadChar.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/IPV6ColonEnd.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/IPV6ColonStart.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/IPV6Deprecated.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/IPV6DoubleColon.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/IPV6GroupCount.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/IPV6MaxGroups.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/LabelTooLong.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/LocalTooLong.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/NoDNSMXRecord.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/ObsoleteDTEXT.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/QuotedPart.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/QuotedString.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/TLD.php -opt/app/vendor/egulias/email-validator/EmailValidator/Warning/Warning.php -opt/app/vendor/egulias/email-validator/LICENSE -opt/app/vendor/egulias/email-validator/README.md -opt/app/vendor/egulias/email-validator/composer.json -opt/app/vendor/egulias/email-validator/phpunit.xml.dist -opt/app/vendor/erusev/parsedown/LICENSE.txt -opt/app/vendor/erusev/parsedown/Parsedown.php -opt/app/vendor/erusev/parsedown/README.md -opt/app/vendor/erusev/parsedown/composer.json -opt/app/vendor/fideloper/proxy/LICENSE.md -opt/app/vendor/fideloper/proxy/composer.json -opt/app/vendor/fideloper/proxy/config/trustedproxy.php -opt/app/vendor/fideloper/proxy/src/TrustProxies.php -opt/app/vendor/fideloper/proxy/src/TrustedProxyServiceProvider.php -opt/app/vendor/firebase/php-jwt/LICENSE -opt/app/vendor/firebase/php-jwt/README.md -opt/app/vendor/firebase/php-jwt/composer.json -opt/app/vendor/firebase/php-jwt/src/BeforeValidException.php -opt/app/vendor/firebase/php-jwt/src/ExpiredException.php -opt/app/vendor/firebase/php-jwt/src/JWT.php -opt/app/vendor/firebase/php-jwt/src/SignatureInvalidException.php -opt/app/vendor/guzzlehttp/guzzle/CHANGELOG.md -opt/app/vendor/guzzlehttp/guzzle/LICENSE -opt/app/vendor/guzzlehttp/guzzle/README.md -opt/app/vendor/guzzlehttp/guzzle/UPGRADING.md -opt/app/vendor/guzzlehttp/guzzle/composer.json -opt/app/vendor/guzzlehttp/guzzle/src/Client.php -opt/app/vendor/guzzlehttp/guzzle/src/ClientInterface.php -opt/app/vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php -opt/app/vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php -opt/app/vendor/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php -opt/app/vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php -opt/app/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php -opt/app/vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php -opt/app/vendor/guzzlehttp/guzzle/src/Exception/ClientException.php -opt/app/vendor/guzzlehttp/guzzle/src/Exception/ConnectException.php -opt/app/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php -opt/app/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php -opt/app/vendor/guzzlehttp/guzzle/src/Exception/SeekException.php -opt/app/vendor/guzzlehttp/guzzle/src/Exception/ServerException.php -opt/app/vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php -opt/app/vendor/guzzlehttp/guzzle/src/Exception/TransferException.php -opt/app/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php -opt/app/vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php -opt/app/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php -opt/app/vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php -opt/app/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php -opt/app/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php -opt/app/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php -opt/app/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php -opt/app/vendor/guzzlehttp/guzzle/src/HandlerStack.php -opt/app/vendor/guzzlehttp/guzzle/src/MessageFormatter.php -opt/app/vendor/guzzlehttp/guzzle/src/Middleware.php -opt/app/vendor/guzzlehttp/guzzle/src/Pool.php -opt/app/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php -opt/app/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php -opt/app/vendor/guzzlehttp/guzzle/src/RequestOptions.php -opt/app/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php -opt/app/vendor/guzzlehttp/guzzle/src/TransferStats.php -opt/app/vendor/guzzlehttp/guzzle/src/UriTemplate.php -opt/app/vendor/guzzlehttp/guzzle/src/functions.php -opt/app/vendor/guzzlehttp/guzzle/src/functions_include.php -opt/app/vendor/guzzlehttp/promises/CHANGELOG.md -opt/app/vendor/guzzlehttp/promises/LICENSE -opt/app/vendor/guzzlehttp/promises/Makefile -opt/app/vendor/guzzlehttp/promises/README.md -opt/app/vendor/guzzlehttp/promises/composer.json -opt/app/vendor/guzzlehttp/promises/src/AggregateException.php -opt/app/vendor/guzzlehttp/promises/src/CancellationException.php -opt/app/vendor/guzzlehttp/promises/src/Coroutine.php -opt/app/vendor/guzzlehttp/promises/src/EachPromise.php -opt/app/vendor/guzzlehttp/promises/src/FulfilledPromise.php -opt/app/vendor/guzzlehttp/promises/src/Promise.php -opt/app/vendor/guzzlehttp/promises/src/PromiseInterface.php -opt/app/vendor/guzzlehttp/promises/src/PromisorInterface.php -opt/app/vendor/guzzlehttp/promises/src/RejectedPromise.php -opt/app/vendor/guzzlehttp/promises/src/RejectionException.php -opt/app/vendor/guzzlehttp/promises/src/TaskQueue.php -opt/app/vendor/guzzlehttp/promises/src/TaskQueueInterface.php -opt/app/vendor/guzzlehttp/promises/src/functions.php -opt/app/vendor/guzzlehttp/promises/src/functions_include.php -opt/app/vendor/guzzlehttp/psr7/.editorconfig -opt/app/vendor/guzzlehttp/psr7/CHANGELOG.md -opt/app/vendor/guzzlehttp/psr7/LICENSE -opt/app/vendor/guzzlehttp/psr7/README.md -opt/app/vendor/guzzlehttp/psr7/composer.json -opt/app/vendor/guzzlehttp/psr7/src/AppendStream.php -opt/app/vendor/guzzlehttp/psr7/src/BufferStream.php -opt/app/vendor/guzzlehttp/psr7/src/CachingStream.php -opt/app/vendor/guzzlehttp/psr7/src/DroppingStream.php -opt/app/vendor/guzzlehttp/psr7/src/FnStream.php -opt/app/vendor/guzzlehttp/psr7/src/InflateStream.php -opt/app/vendor/guzzlehttp/psr7/src/LazyOpenStream.php -opt/app/vendor/guzzlehttp/psr7/src/LimitStream.php -opt/app/vendor/guzzlehttp/psr7/src/MessageTrait.php -opt/app/vendor/guzzlehttp/psr7/src/MultipartStream.php -opt/app/vendor/guzzlehttp/psr7/src/NoSeekStream.php -opt/app/vendor/guzzlehttp/psr7/src/PumpStream.php -opt/app/vendor/guzzlehttp/psr7/src/Request.php -opt/app/vendor/guzzlehttp/psr7/src/Response.php -opt/app/vendor/guzzlehttp/psr7/src/Rfc7230.php -opt/app/vendor/guzzlehttp/psr7/src/ServerRequest.php -opt/app/vendor/guzzlehttp/psr7/src/Stream.php -opt/app/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php -opt/app/vendor/guzzlehttp/psr7/src/StreamWrapper.php -opt/app/vendor/guzzlehttp/psr7/src/UploadedFile.php -opt/app/vendor/guzzlehttp/psr7/src/Uri.php -opt/app/vendor/guzzlehttp/psr7/src/UriNormalizer.php -opt/app/vendor/guzzlehttp/psr7/src/UriResolver.php -opt/app/vendor/guzzlehttp/psr7/src/functions.php -opt/app/vendor/guzzlehttp/psr7/src/functions_include.php -opt/app/vendor/laravel/framework/LICENSE.md -opt/app/vendor/laravel/framework/README.md -opt/app/vendor/laravel/framework/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Access/AuthorizationException.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Access/Gate.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Access/HandlesAuthorization.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Access/Response.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/AuthManager.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/AuthServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Authenticatable.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/AuthenticationException.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Console/AuthMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Console/ClearResetsCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Console/stubs/make/controllers/HomeController.stub -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Console/stubs/make/routes.stub -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Console/stubs/make/views/auth/login.stub -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Console/stubs/make/views/auth/passwords/email.stub -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Console/stubs/make/views/auth/passwords/reset.stub -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Console/stubs/make/views/auth/register.stub -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Console/stubs/make/views/auth/verify.stub -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Console/stubs/make/views/home.stub -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Console/stubs/make/views/layouts/app.stub -opt/app/vendor/laravel/framework/src/Illuminate/Auth/CreatesUserProviders.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/DatabaseUserProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/EloquentUserProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Events/Attempting.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Events/Authenticated.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Events/Failed.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Events/Lockout.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Events/Login.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Events/Logout.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Events/PasswordReset.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Events/Registered.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Events/Verified.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/GenericUser.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/GuardHelpers.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Listeners/SendEmailVerificationNotification.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Middleware/AuthenticateWithBasicAuth.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authorize.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/MustVerifyEmail.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Notifications/ResetPassword.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Notifications/VerifyEmail.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Passwords/CanResetPassword.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Passwords/DatabaseTokenRepository.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Passwords/PasswordBroker.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Passwords/PasswordBrokerManager.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Passwords/PasswordResetServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Passwords/TokenRepositoryInterface.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/Recaller.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/RequestGuard.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/SessionGuard.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/TokenGuard.php -opt/app/vendor/laravel/framework/src/Illuminate/Auth/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/BroadcastController.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/BroadcastEvent.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/BroadcastException.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/BroadcastManager.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/BroadcastServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/Broadcaster.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/LogBroadcaster.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/NullBroadcaster.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/PusherBroadcaster.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/RedisBroadcaster.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/Broadcasters/UsePusherChannelConventions.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/Channel.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/InteractsWithSockets.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/PendingBroadcast.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/PresenceChannel.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/PrivateChannel.php -opt/app/vendor/laravel/framework/src/Illuminate/Broadcasting/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Bus/BusServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php -opt/app/vendor/laravel/framework/src/Illuminate/Bus/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Bus/Queueable.php -opt/app/vendor/laravel/framework/src/Illuminate/Bus/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Cache/ApcStore.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/ApcWrapper.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/ArrayStore.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/CacheServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/Console/CacheTableCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/Console/ClearCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/Console/ForgetCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/Console/stubs/cache.stub -opt/app/vendor/laravel/framework/src/Illuminate/Cache/DatabaseStore.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/DynamoDbLock.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/DynamoDbStore.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/Events/CacheEvent.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/Events/CacheHit.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/Events/CacheMissed.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/Events/KeyForgotten.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/Events/KeyWritten.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/FileStore.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Cache/Lock.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/LuaScripts.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/MemcachedConnector.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/MemcachedLock.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/MemcachedStore.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/NullStore.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/RateLimiter.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/RedisLock.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/RedisStore.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/RedisTaggedCache.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/Repository.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/RetrievesMultipleKeys.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/TagSet.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/TaggableStore.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/TaggedCache.php -opt/app/vendor/laravel/framework/src/Illuminate/Cache/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Config/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Config/Repository.php -opt/app/vendor/laravel/framework/src/Illuminate/Config/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Console/Application.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Command.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/ConfirmableTrait.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/DetectsApplicationNamespace.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Events/ArtisanStarting.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Events/CommandFinished.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Events/CommandStarting.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/GeneratorCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Console/OutputStyle.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Parser.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Scheduling/CacheEventMutex.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Scheduling/CacheSchedulingMutex.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Scheduling/CallbackEvent.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Scheduling/CommandBuilder.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Scheduling/Event.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Scheduling/EventMutex.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Scheduling/ManagesFrequencies.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Scheduling/Schedule.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Scheduling/ScheduleFinishCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Scheduling/ScheduleRunCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/Scheduling/SchedulingMutex.php -opt/app/vendor/laravel/framework/src/Illuminate/Console/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php -opt/app/vendor/laravel/framework/src/Illuminate/Container/Container.php -opt/app/vendor/laravel/framework/src/Illuminate/Container/ContextualBindingBuilder.php -opt/app/vendor/laravel/framework/src/Illuminate/Container/EntryNotFoundException.php -opt/app/vendor/laravel/framework/src/Illuminate/Container/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Container/RewindableGenerator.php -opt/app/vendor/laravel/framework/src/Illuminate/Container/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Auth/Access/Authorizable.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Auth/Access/Gate.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Auth/Authenticatable.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Auth/CanResetPassword.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Auth/Factory.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Auth/Guard.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Auth/MustVerifyEmail.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Auth/PasswordBroker.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Auth/PasswordBrokerFactory.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Auth/StatefulGuard.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Auth/SupportsBasicAuth.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Auth/UserProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Broadcasting/Broadcaster.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Broadcasting/Factory.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Broadcasting/ShouldBroadcast.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Broadcasting/ShouldBroadcastNow.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Bus/Dispatcher.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Bus/QueueingDispatcher.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Cache/Factory.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Cache/Lock.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Cache/LockProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Cache/LockTimeoutException.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Cache/Repository.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Cache/Store.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Config/Repository.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Console/Application.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Console/Kernel.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Container/BindingResolutionException.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Container/Container.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Container/ContextualBindingBuilder.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Cookie/Factory.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Cookie/QueueingFactory.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Database/ModelIdentifier.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Debug/ExceptionHandler.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Encryption/DecryptException.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Encryption/EncryptException.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Encryption/Encrypter.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Events/Dispatcher.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Filesystem/Cloud.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Filesystem/Factory.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Filesystem/FileExistsException.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Filesystem/FileNotFoundException.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Filesystem/Filesystem.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Foundation/Application.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Hashing/Hasher.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Http/Kernel.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Mail/MailQueue.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Mail/Mailable.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Mail/Mailer.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Notifications/Dispatcher.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Notifications/Factory.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Pagination/LengthAwarePaginator.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Pagination/Paginator.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Pipeline/Hub.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Pipeline/Pipeline.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Queue/EntityNotFoundException.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Queue/EntityResolver.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Queue/Factory.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Queue/Job.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Queue/Monitor.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Queue/Queue.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Queue/QueueableCollection.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Queue/QueueableEntity.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Queue/ShouldQueue.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Redis/Connection.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Redis/Factory.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Redis/LimiterTimeoutException.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Routing/BindingRegistrar.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Routing/Registrar.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Routing/ResponseFactory.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Routing/UrlGenerator.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Routing/UrlRoutable.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Session/Session.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Support/Arrayable.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Support/DeferrableProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Support/Htmlable.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Support/Jsonable.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Support/MessageBag.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Support/MessageProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Support/Renderable.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Support/Responsable.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Translation/HasLocalePreference.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Translation/Loader.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Translation/Translator.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Validation/Factory.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Validation/ImplicitRule.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Validation/Rule.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Validation/ValidatesWhenResolved.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/Validation/Validator.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/View/Engine.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/View/Factory.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/View/View.php -opt/app/vendor/laravel/framework/src/Illuminate/Contracts/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Cookie/CookieJar.php -opt/app/vendor/laravel/framework/src/Illuminate/Cookie/CookieServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Cookie/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php -opt/app/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php -opt/app/vendor/laravel/framework/src/Illuminate/Cookie/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Database/Capsule/Manager.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Concerns/ManagesTransactions.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Connection.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/ConnectionInterface.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/ConnectionResolver.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/ConnectionResolverInterface.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectorInterface.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Connectors/PostgresConnector.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Connectors/SQLiteConnector.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Connectors/SqlServerConnector.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Factories/FactoryMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Factories/stubs/factory.stub -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/BaseCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/InstallCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/RefreshCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/ResetCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/RollbackCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/StatusCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/TableGuesser.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeederMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/stubs/seeder.stub -opt/app/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/DatabaseServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/DetectsDeadlocks.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/DetectsLostConnections.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Collection.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasEvents.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasGlobalScopes.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasTimestamps.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HidesAttributes.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/QueriesRelationships.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factory.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/FactoryBuilder.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/HigherOrderBuilderProxy.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/JsonEncodingException.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/MassAssignmentException.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/ModelNotFoundException.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/QueueEntityResolver.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/RelationNotFoundException.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsTo.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/BelongsToMany.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Concerns/AsPivot.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Concerns/InteractsWithPivotTable.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Concerns/SupportsDefaultModels.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasMany.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasManyThrough.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasOne.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasOneOrMany.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/HasOneThrough.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphMany.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphOne.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphOneOrMany.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphPivot.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphTo.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphToMany.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Pivot.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Scope.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/SoftDeletes.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/SoftDeletingScope.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Events/ConnectionEvent.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Events/QueryExecuted.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Events/StatementPrepared.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Events/TransactionBeginning.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Events/TransactionCommitted.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Events/TransactionRolledBack.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Grammar.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Database/MigrationServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migration.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Migrations/MigrationCreator.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Migrations/MigrationRepositoryInterface.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Migrations/stubs/blank.stub -opt/app/vendor/laravel/framework/src/Illuminate/Database/Migrations/stubs/create.stub -opt/app/vendor/laravel/framework/src/Illuminate/Database/Migrations/stubs/update.stub -opt/app/vendor/laravel/framework/src/Illuminate/Database/MySqlConnection.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/PostgresConnection.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/Expression.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/Grammars/Grammar.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/Grammars/MySqlGrammar.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/Grammars/PostgresGrammar.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/Grammars/SQLiteGrammar.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/Grammars/SqlServerGrammar.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/JoinClause.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/JsonExpression.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/MySqlProcessor.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/PostgresProcessor.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/SQLiteProcessor.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/SqlServerProcessor.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/QueryException.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/README.md -opt/app/vendor/laravel/framework/src/Illuminate/Database/SQLiteConnection.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/Blueprint.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/Builder.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/ColumnDefinition.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/Grammars/ChangeColumn.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/Grammars/Grammar.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/Grammars/MySqlGrammar.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/Grammars/PostgresGrammar.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/Grammars/RenameColumn.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/Grammars/SQLiteGrammar.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/Grammars/SqlServerGrammar.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/MySqlBuilder.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/PostgresBuilder.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/SQLiteBuilder.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Schema/SqlServerBuilder.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/Seeder.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/SqlServerConnection.php -opt/app/vendor/laravel/framework/src/Illuminate/Database/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php -opt/app/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Encryption/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Encryption/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Events/CallQueuedListener.php -opt/app/vendor/laravel/framework/src/Illuminate/Events/Dispatcher.php -opt/app/vendor/laravel/framework/src/Illuminate/Events/EventServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Events/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Events/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Filesystem/Cache.php -opt/app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php -opt/app/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php -opt/app/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemManager.php -opt/app/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Filesystem/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Filesystem/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/AliasLoader.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Application.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Auth/Access/Authorizable.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Auth/Access/AuthorizesRequests.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Auth/AuthenticatesUsers.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Auth/RedirectsUsers.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Auth/RegistersUsers.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Auth/ResetsPasswords.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Auth/SendsPasswordResetEmails.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Auth/ThrottlesLogins.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Auth/User.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Auth/VerifiesEmails.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadEnvironmentVariables.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/SetRequestForConsole.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Bus/Dispatchable.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Bus/DispatchesJobs.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Bus/PendingChain.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Bus/PendingDispatch.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/ComposerScripts.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/AppNameCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ChannelMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ClearCompiledCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ClosureCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ConfigCacheCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ConfigClearCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ConsoleMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/DownCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/EnvironmentCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/EventGenerateCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/EventMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ExceptionMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/JobMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/KeyGenerateCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ListenerMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/MailMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ModelMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/NotificationMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ObserverMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/OptimizeClearCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/OptimizeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/PackageDiscoverCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/PolicyMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/PresetCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Presets/Bootstrap.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Presets/None.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Presets/Preset.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Presets/React.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Presets/Vue.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Presets/bootstrap-stubs/_variables.scss -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Presets/bootstrap-stubs/app.scss -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Presets/none-stubs/app.js -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Presets/none-stubs/bootstrap.js -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Presets/react-stubs/Example.js -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Presets/react-stubs/app.js -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Presets/vue-stubs/ExampleComponent.vue -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/Presets/vue-stubs/app.js -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ProviderMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/QueuedCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/RequestMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ResourceMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/RouteCacheCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/RouteClearCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/RouteListCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/RuleMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ServeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/StorageLinkCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/TestMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/UpCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/VendorPublishCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ViewCacheCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/ViewClearCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/channel.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/console.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/event-handler-queued.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/event-handler.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/event.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/exception-render-report.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/exception-render.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/exception-report.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/exception.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/job-queued.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/job.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/listener-duck.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/listener-queued-duck.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/listener-queued.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/listener.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/mail.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/markdown-mail.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/markdown-notification.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/markdown.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/model.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/notification.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/observer.plain.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/observer.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/pivot.model.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/policy.plain.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/policy.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/provider.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/request.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/resource-collection.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/resource.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/routes.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/rule.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/test.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/unit-test.stub -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/EnvironmentDetector.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Events/Dispatchable.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Events/LocaleUpdated.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/WhoopsHandler.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/401.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/403.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/404.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/419.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/429.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/500.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/503.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/illustrated-layout.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/layout.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/minimal.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Events/RequestHandled.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Exceptions/MaintenanceModeException.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Http/FormRequest.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Inspiring.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Providers/ArtisanServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Providers/ComposerServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Providers/ConsoleSupportServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Providers/FormRequestServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Providers/FoundationServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/AuthServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/EventServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Assert.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithAuthentication.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithConsole.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithContainer.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithDatabase.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithExceptionHandling.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithRedis.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithSession.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/MocksApplicationServices.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/HasInDatabase.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/SeeInOrder.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/Constraints/SoftDeletedInDatabase.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/DatabaseMigrations.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/DatabaseTransactions.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/PendingCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/RefreshDatabase.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/RefreshDatabaseState.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/TestCase.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/TestResponse.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/WithFaker.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/WithoutEvents.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Testing/WithoutMiddleware.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/Validation/ValidatesRequests.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php -opt/app/vendor/laravel/framework/src/Illuminate/Foundation/stubs/facade.stub -opt/app/vendor/laravel/framework/src/Illuminate/Hashing/AbstractHasher.php -opt/app/vendor/laravel/framework/src/Illuminate/Hashing/Argon2IdHasher.php -opt/app/vendor/laravel/framework/src/Illuminate/Hashing/ArgonHasher.php -opt/app/vendor/laravel/framework/src/Illuminate/Hashing/BcryptHasher.php -opt/app/vendor/laravel/framework/src/Illuminate/Hashing/HashManager.php -opt/app/vendor/laravel/framework/src/Illuminate/Hashing/HashServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Hashing/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Hashing/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Http/Concerns/InteractsWithContentTypes.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Concerns/InteractsWithFlashData.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Concerns/InteractsWithInput.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Exceptions/HttpResponseException.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Exceptions/PostTooLargeException.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Exceptions/ThrottleRequestsException.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/File.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/FileHelpers.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/JsonResponse.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Http/Middleware/CheckResponseForModifications.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Middleware/FrameGuard.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Middleware/SetCacheHeaders.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/RedirectResponse.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Request.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Resources/CollectsResources.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Resources/ConditionallyLoadsAttributes.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Resources/DelegatesToResource.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Resources/Json/AnonymousResourceCollection.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Resources/Json/JsonResource.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Resources/Json/PaginatedResourceResponse.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Resources/Json/Resource.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Resources/Json/ResourceCollection.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Resources/Json/ResourceResponse.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Resources/MergeValue.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Resources/MissingValue.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Resources/PotentiallyMissing.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Response.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/ResponseTrait.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Testing/File.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Testing/FileFactory.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/Testing/MimeType.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/UploadedFile.php -opt/app/vendor/laravel/framework/src/Illuminate/Http/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Log/Events/MessageLogged.php -opt/app/vendor/laravel/framework/src/Illuminate/Log/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Log/LogManager.php -opt/app/vendor/laravel/framework/src/Illuminate/Log/LogServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Log/Logger.php -opt/app/vendor/laravel/framework/src/Illuminate/Log/ParsesLogConfiguration.php -opt/app/vendor/laravel/framework/src/Illuminate/Log/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Mail/Events/MessageSending.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/Events/MessageSent.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Mail/MailServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/Markdown.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/Message.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/SendQueuedMailable.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/Transport/ArrayTransport.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/Transport/LogTransport.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/Transport/MailgunTransport.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/Transport/MandrillTransport.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/Transport/SesTransport.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/Transport/SparkPostTransport.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/Transport/Transport.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/TransportManager.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/button.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/footer.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/header.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/layout.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/message.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/panel.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/promotion.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/promotion/button.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/subcopy.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/table.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/themes/default.css -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/button.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/footer.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/header.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/layout.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/message.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/panel.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/promotion.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/promotion/button.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/subcopy.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/table.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Action.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/AnonymousNotifiable.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/ChannelManager.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Channels/BroadcastChannel.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Channels/DatabaseChannel.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Channels/MailChannel.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Console/NotificationTableCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Console/stubs/notifications.stub -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/DatabaseNotification.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/DatabaseNotificationCollection.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Events/BroadcastNotificationCreated.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Events/NotificationFailed.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Events/NotificationSending.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Events/NotificationSent.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/HasDatabaseNotifications.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Messages/BroadcastMessage.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Messages/DatabaseMessage.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Messages/MailMessage.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Messages/SimpleMessage.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Notifiable.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/Notification.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/NotificationSender.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/NotificationServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/RoutesNotifications.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/SendQueuedNotifications.php -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Notifications/resources/views/email.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Pagination/AbstractPaginator.php -opt/app/vendor/laravel/framework/src/Illuminate/Pagination/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Pagination/LengthAwarePaginator.php -opt/app/vendor/laravel/framework/src/Illuminate/Pagination/PaginationServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Pagination/Paginator.php -opt/app/vendor/laravel/framework/src/Illuminate/Pagination/UrlWindow.php -opt/app/vendor/laravel/framework/src/Illuminate/Pagination/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Pagination/resources/views/bootstrap-4.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Pagination/resources/views/default.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Pagination/resources/views/semantic-ui.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Pagination/resources/views/simple-bootstrap-4.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Pagination/resources/views/simple-default.blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Pipeline/Hub.php -opt/app/vendor/laravel/framework/src/Illuminate/Pipeline/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -opt/app/vendor/laravel/framework/src/Illuminate/Pipeline/PipelineServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Pipeline/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Queue/BeanstalkdQueue.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedClosure.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Capsule/Manager.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Connectors/BeanstalkdConnector.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Connectors/ConnectorInterface.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Connectors/DatabaseConnector.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Connectors/NullConnector.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Connectors/RedisConnector.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Connectors/SqsConnector.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Connectors/SyncConnector.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Console/FailedTableCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Console/FlushFailedCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Console/ForgetFailedCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Console/ListFailedCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Console/ListenCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Console/RestartCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Console/RetryCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Console/TableCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Console/stubs/failed_jobs.stub -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Console/stubs/jobs.stub -opt/app/vendor/laravel/framework/src/Illuminate/Queue/DatabaseQueue.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Events/JobExceptionOccurred.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Events/JobFailed.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Events/JobProcessed.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Events/JobProcessing.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Events/Looping.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Events/WorkerStopping.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Failed/DatabaseFailedJobProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Failed/FailedJobProviderInterface.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Failed/NullFailedJobProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/InteractsWithQueue.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/InvalidPayloadException.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Jobs/BeanstalkdJob.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Jobs/DatabaseJob.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Jobs/DatabaseJobRecord.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Jobs/JobName.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Jobs/RedisJob.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Jobs/SqsJob.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Jobs/SyncJob.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Listener.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/ListenerOptions.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/LuaScripts.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/ManuallyFailedException.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/MaxAttemptsExceededException.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/NullQueue.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Queue.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/QueueManager.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/QueueServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/README.md -opt/app/vendor/laravel/framework/src/Illuminate/Queue/RedisQueue.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/SerializableClosure.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/SerializesAndRestoresModelIdentifiers.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/SerializesModels.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/SqsQueue.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/SyncQueue.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/Worker.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/WorkerOptions.php -opt/app/vendor/laravel/framework/src/Illuminate/Queue/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Redis/Connections/Connection.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/Connections/PhpRedisClusterConnection.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/Connections/PhpRedisConnection.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/Connections/PredisClusterConnection.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/Connections/PredisConnection.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/Connectors/PhpRedisConnector.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/Connectors/PredisConnector.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/Events/CommandExecuted.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Redis/Limiters/ConcurrencyLimiter.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/Limiters/ConcurrencyLimiterBuilder.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/Limiters/DurationLimiter.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/Limiters/DurationLimiterBuilder.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/RedisManager.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/RedisServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Redis/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Console/ControllerMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Console/MiddlewareMakeCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Console/stubs/controller.api.stub -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Console/stubs/controller.invokable.stub -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Console/stubs/controller.model.api.stub -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Console/stubs/controller.model.stub -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Console/stubs/controller.nested.api.stub -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Console/stubs/controller.nested.stub -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Console/stubs/controller.plain.stub -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Console/stubs/controller.stub -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Console/stubs/middleware.stub -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Contracts/ControllerDispatcher.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Controller.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/ControllerMiddlewareOptions.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Events/RouteMatched.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Exceptions/InvalidSignatureException.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Exceptions/UrlGenerationException.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/ImplicitRouteBinding.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Matching/HostValidator.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Matching/MethodValidator.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Matching/SchemeValidator.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Matching/UriValidator.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Matching/ValidatorInterface.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequestsWithRedis.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ValidateSignature.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/MiddlewareNameResolver.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/PendingResourceRegistration.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/RedirectController.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Redirector.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/ResourceRegistrar.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/ResponseFactory.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Route.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/RouteAction.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/RouteBinding.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/RouteCollection.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/RouteCompiler.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/RouteDependencyResolverTrait.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/RouteFileRegistrar.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/RouteGroup.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/RouteParameterBinder.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/RouteRegistrar.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/RouteSignatureParameters.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/RouteUrlGenerator.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/Router.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/SortedMiddleware.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/UrlGenerator.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/ViewController.php -opt/app/vendor/laravel/framework/src/Illuminate/Routing/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Session/CacheBasedSessionHandler.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/Console/SessionTableCommand.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/Console/stubs/database.stub -opt/app/vendor/laravel/framework/src/Illuminate/Session/CookieSessionHandler.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/DatabaseSessionHandler.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/EncryptedStore.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/ExistenceAwareInterface.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/NullSessionHandler.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/SessionManager.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/SessionServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/Store.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/TokenMismatchException.php -opt/app/vendor/laravel/framework/src/Illuminate/Session/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Support/AggregateServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Arr.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Carbon.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Collection.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Composer.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/DateFactory.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/App.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Artisan.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Auth.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Blade.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Broadcast.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Bus.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Cache.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Config.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Cookie.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Crypt.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/DB.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Date.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Event.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/File.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Gate.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Hash.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Input.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Lang.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Log.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Mail.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Notification.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Password.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Queue.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Redirect.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Redis.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Request.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Response.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Route.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Schema.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Session.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Storage.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/URL.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/Validator.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Facades/View.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Fluent.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/HigherOrderCollectionProxy.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/HigherOrderTapProxy.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/HtmlString.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/InteractsWithTime.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Support/Manager.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/MessageBag.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/NamespacedItemResolver.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Optional.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Pluralizer.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/ProcessUtils.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Str.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Testing/Fakes/BusFake.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Testing/Fakes/EventFake.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Testing/Fakes/MailFake.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Testing/Fakes/NotificationFake.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Testing/Fakes/PendingMailFake.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Testing/Fakes/QueueFake.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Traits/CapsuleManagerTrait.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/Traits/Macroable.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/ViewErrorBag.php -opt/app/vendor/laravel/framework/src/Illuminate/Support/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Support/helpers.php -opt/app/vendor/laravel/framework/src/Illuminate/Translation/ArrayLoader.php -opt/app/vendor/laravel/framework/src/Illuminate/Translation/FileLoader.php -opt/app/vendor/laravel/framework/src/Illuminate/Translation/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Translation/MessageSelector.php -opt/app/vendor/laravel/framework/src/Illuminate/Translation/TranslationServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Translation/Translator.php -opt/app/vendor/laravel/framework/src/Illuminate/Translation/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/Validation/ClosureValidationRule.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/Concerns/FormatsMessages.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/Concerns/ReplacesAttributes.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/Concerns/ValidatesAttributes.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/DatabasePresenceVerifier.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/Factory.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/Validation/PresenceVerifierInterface.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/Rule.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/Rules/DatabaseRule.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/Rules/Dimensions.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/Rules/Exists.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/Rules/In.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/Rules/NotIn.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/Rules/RequiredIf.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/Rules/Unique.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/UnauthorizedException.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/ValidatesWhenResolvedTrait.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/ValidationData.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/ValidationException.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/ValidationRuleParser.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/ValidationServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/Validator.php -opt/app/vendor/laravel/framework/src/Illuminate/Validation/composer.json -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/CompilerInterface.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesAuthorizations.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesComments.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesComponents.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesConditionals.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesEchos.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesHelpers.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesIncludes.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesInjections.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesJson.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesLayouts.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesLoops.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesRawPhp.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesStacks.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesTranslations.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesEvents.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesLayouts.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesLoops.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesStacks.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesTranslations.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Engines/Engine.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Engines/EngineResolver.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Engines/FileEngine.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php -opt/app/vendor/laravel/framework/src/Illuminate/View/Factory.php -opt/app/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php -opt/app/vendor/laravel/framework/src/Illuminate/View/LICENSE.md -opt/app/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php -opt/app/vendor/laravel/framework/src/Illuminate/View/View.php -opt/app/vendor/laravel/framework/src/Illuminate/View/ViewFinderInterface.php -opt/app/vendor/laravel/framework/src/Illuminate/View/ViewName.php -opt/app/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php -opt/app/vendor/laravel/framework/src/Illuminate/View/composer.json -opt/app/vendor/laravel/passport/LICENSE.txt -opt/app/vendor/laravel/passport/composer.json -opt/app/vendor/laravel/passport/config/passport.php -opt/app/vendor/laravel/passport/database/migrations/2016_06_01_000001_create_oauth_auth_codes_table.php -opt/app/vendor/laravel/passport/database/migrations/2016_06_01_000002_create_oauth_access_tokens_table.php -opt/app/vendor/laravel/passport/database/migrations/2016_06_01_000003_create_oauth_refresh_tokens_table.php -opt/app/vendor/laravel/passport/database/migrations/2016_06_01_000004_create_oauth_clients_table.php -opt/app/vendor/laravel/passport/database/migrations/2016_06_01_000005_create_oauth_personal_access_clients_table.php -opt/app/vendor/laravel/passport/readme.md -opt/app/vendor/laravel/passport/resources/js/components/AuthorizedClients.vue -opt/app/vendor/laravel/passport/resources/js/components/Clients.vue -opt/app/vendor/laravel/passport/resources/js/components/PersonalAccessTokens.vue -opt/app/vendor/laravel/passport/resources/views/authorize.blade.php -opt/app/vendor/laravel/passport/src/ApiTokenCookieFactory.php -opt/app/vendor/laravel/passport/src/AuthCode.php -opt/app/vendor/laravel/passport/src/Bridge/AccessToken.php -opt/app/vendor/laravel/passport/src/Bridge/AccessTokenRepository.php -opt/app/vendor/laravel/passport/src/Bridge/AuthCode.php -opt/app/vendor/laravel/passport/src/Bridge/AuthCodeRepository.php -opt/app/vendor/laravel/passport/src/Bridge/Client.php -opt/app/vendor/laravel/passport/src/Bridge/ClientRepository.php -opt/app/vendor/laravel/passport/src/Bridge/FormatsScopesForStorage.php -opt/app/vendor/laravel/passport/src/Bridge/PersonalAccessGrant.php -opt/app/vendor/laravel/passport/src/Bridge/RefreshToken.php -opt/app/vendor/laravel/passport/src/Bridge/RefreshTokenRepository.php -opt/app/vendor/laravel/passport/src/Bridge/Scope.php -opt/app/vendor/laravel/passport/src/Bridge/ScopeRepository.php -opt/app/vendor/laravel/passport/src/Bridge/User.php -opt/app/vendor/laravel/passport/src/Bridge/UserRepository.php -opt/app/vendor/laravel/passport/src/Client.php -opt/app/vendor/laravel/passport/src/ClientRepository.php -opt/app/vendor/laravel/passport/src/Console/ClientCommand.php -opt/app/vendor/laravel/passport/src/Console/InstallCommand.php -opt/app/vendor/laravel/passport/src/Console/KeysCommand.php -opt/app/vendor/laravel/passport/src/Events/AccessTokenCreated.php -opt/app/vendor/laravel/passport/src/Events/RefreshTokenCreated.php -opt/app/vendor/laravel/passport/src/Exceptions/MissingScopeException.php -opt/app/vendor/laravel/passport/src/Guards/TokenGuard.php -opt/app/vendor/laravel/passport/src/HasApiTokens.php -opt/app/vendor/laravel/passport/src/Http/Controllers/AccessTokenController.php -opt/app/vendor/laravel/passport/src/Http/Controllers/ApproveAuthorizationController.php -opt/app/vendor/laravel/passport/src/Http/Controllers/AuthorizationController.php -opt/app/vendor/laravel/passport/src/Http/Controllers/AuthorizedAccessTokenController.php -opt/app/vendor/laravel/passport/src/Http/Controllers/ClientController.php -opt/app/vendor/laravel/passport/src/Http/Controllers/ConvertsPsrResponses.php -opt/app/vendor/laravel/passport/src/Http/Controllers/DenyAuthorizationController.php -opt/app/vendor/laravel/passport/src/Http/Controllers/HandlesOAuthErrors.php -opt/app/vendor/laravel/passport/src/Http/Controllers/PersonalAccessTokenController.php -opt/app/vendor/laravel/passport/src/Http/Controllers/RetrievesAuthRequestFromSession.php -opt/app/vendor/laravel/passport/src/Http/Controllers/ScopeController.php -opt/app/vendor/laravel/passport/src/Http/Controllers/TransientTokenController.php -opt/app/vendor/laravel/passport/src/Http/Middleware/CheckClientCredentials.php -opt/app/vendor/laravel/passport/src/Http/Middleware/CheckClientCredentialsForAnyScope.php -opt/app/vendor/laravel/passport/src/Http/Middleware/CheckForAnyScope.php -opt/app/vendor/laravel/passport/src/Http/Middleware/CheckScopes.php -opt/app/vendor/laravel/passport/src/Http/Middleware/CreateFreshApiToken.php -opt/app/vendor/laravel/passport/src/Http/Rules/RedirectRule.php -opt/app/vendor/laravel/passport/src/Passport.php -opt/app/vendor/laravel/passport/src/PassportServiceProvider.php -opt/app/vendor/laravel/passport/src/PersonalAccessClient.php -opt/app/vendor/laravel/passport/src/PersonalAccessTokenFactory.php -opt/app/vendor/laravel/passport/src/PersonalAccessTokenResult.php -opt/app/vendor/laravel/passport/src/RouteRegistrar.php -opt/app/vendor/laravel/passport/src/Scope.php -opt/app/vendor/laravel/passport/src/Token.php -opt/app/vendor/laravel/passport/src/TokenRepository.php -opt/app/vendor/laravel/passport/src/TransientToken.php -opt/app/vendor/laravelcollective/html/CONTRIBUTING.md -opt/app/vendor/laravelcollective/html/LICENSE.txt -opt/app/vendor/laravelcollective/html/composer.json -opt/app/vendor/laravelcollective/html/readme.md -opt/app/vendor/laravelcollective/html/src/Componentable.php -opt/app/vendor/laravelcollective/html/src/Eloquent/FormAccessible.php -opt/app/vendor/laravelcollective/html/src/FormBuilder.php -opt/app/vendor/laravelcollective/html/src/FormFacade.php -opt/app/vendor/laravelcollective/html/src/HtmlBuilder.php -opt/app/vendor/laravelcollective/html/src/HtmlFacade.php -opt/app/vendor/laravelcollective/html/src/HtmlServiceProvider.php -opt/app/vendor/laravelcollective/html/src/helpers.php -opt/app/vendor/lcobucci/jwt/LICENSE -opt/app/vendor/lcobucci/jwt/README.md -opt/app/vendor/lcobucci/jwt/composer.json -opt/app/vendor/lcobucci/jwt/composer.lock -opt/app/vendor/lcobucci/jwt/phpunit.xml.dist -opt/app/vendor/lcobucci/jwt/src/Builder.php -opt/app/vendor/lcobucci/jwt/src/Claim.php -opt/app/vendor/lcobucci/jwt/src/Claim/Basic.php -opt/app/vendor/lcobucci/jwt/src/Claim/EqualsTo.php -opt/app/vendor/lcobucci/jwt/src/Claim/Factory.php -opt/app/vendor/lcobucci/jwt/src/Claim/GreaterOrEqualsTo.php -opt/app/vendor/lcobucci/jwt/src/Claim/LesserOrEqualsTo.php -opt/app/vendor/lcobucci/jwt/src/Claim/Validatable.php -opt/app/vendor/lcobucci/jwt/src/Parser.php -opt/app/vendor/lcobucci/jwt/src/Parsing/Decoder.php -opt/app/vendor/lcobucci/jwt/src/Parsing/Encoder.php -opt/app/vendor/lcobucci/jwt/src/Signature.php -opt/app/vendor/lcobucci/jwt/src/Signer.php -opt/app/vendor/lcobucci/jwt/src/Signer/BaseSigner.php -opt/app/vendor/lcobucci/jwt/src/Signer/Ecdsa.php -opt/app/vendor/lcobucci/jwt/src/Signer/Ecdsa/KeyParser.php -opt/app/vendor/lcobucci/jwt/src/Signer/Ecdsa/Sha256.php -opt/app/vendor/lcobucci/jwt/src/Signer/Ecdsa/Sha384.php -opt/app/vendor/lcobucci/jwt/src/Signer/Ecdsa/Sha512.php -opt/app/vendor/lcobucci/jwt/src/Signer/Hmac.php -opt/app/vendor/lcobucci/jwt/src/Signer/Hmac/Sha256.php -opt/app/vendor/lcobucci/jwt/src/Signer/Hmac/Sha384.php -opt/app/vendor/lcobucci/jwt/src/Signer/Hmac/Sha512.php -opt/app/vendor/lcobucci/jwt/src/Signer/Key.php -opt/app/vendor/lcobucci/jwt/src/Signer/Keychain.php -opt/app/vendor/lcobucci/jwt/src/Signer/Rsa.php -opt/app/vendor/lcobucci/jwt/src/Signer/Rsa/Sha256.php -opt/app/vendor/lcobucci/jwt/src/Signer/Rsa/Sha384.php -opt/app/vendor/lcobucci/jwt/src/Signer/Rsa/Sha512.php -opt/app/vendor/lcobucci/jwt/src/Token.php -opt/app/vendor/lcobucci/jwt/src/ValidationData.php -opt/app/vendor/lcobucci/jwt/test/functional/EcdsaTokenTest.php -opt/app/vendor/lcobucci/jwt/test/functional/HmacTokenTest.php -opt/app/vendor/lcobucci/jwt/test/functional/Keys.php -opt/app/vendor/lcobucci/jwt/test/functional/RsaTokenTest.php -opt/app/vendor/lcobucci/jwt/test/functional/UnsignedTokenTest.php -opt/app/vendor/lcobucci/jwt/test/functional/ecdsa/private.key -opt/app/vendor/lcobucci/jwt/test/functional/ecdsa/private2.key -opt/app/vendor/lcobucci/jwt/test/functional/ecdsa/public1.key -opt/app/vendor/lcobucci/jwt/test/functional/ecdsa/public2.key -opt/app/vendor/lcobucci/jwt/test/functional/ecdsa/public3.key -opt/app/vendor/lcobucci/jwt/test/functional/rsa/encrypted-private.key -opt/app/vendor/lcobucci/jwt/test/functional/rsa/encrypted-public.key -opt/app/vendor/lcobucci/jwt/test/functional/rsa/private.key -opt/app/vendor/lcobucci/jwt/test/functional/rsa/public.key -opt/app/vendor/lcobucci/jwt/test/unit/BuilderTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Claim/BasicTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Claim/EqualsToTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Claim/FactoryTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Claim/GreaterOrEqualsToTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Claim/LesserOrEqualsToTest.php -opt/app/vendor/lcobucci/jwt/test/unit/ParserTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Parsing/DecoderTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Parsing/EncoderTest.php -opt/app/vendor/lcobucci/jwt/test/unit/SignatureTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/BaseSignerTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/Ecdsa/KeyParserTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/Ecdsa/Sha256Test.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/Ecdsa/Sha384Test.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/Ecdsa/Sha512Test.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/EcdsaTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/Hmac/Sha256Test.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/Hmac/Sha384Test.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/Hmac/Sha512Test.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/HmacTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/KeyTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/KeychainTest.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/Rsa/Sha256Test.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/Rsa/Sha384Test.php -opt/app/vendor/lcobucci/jwt/test/unit/Signer/Rsa/Sha512Test.php -opt/app/vendor/lcobucci/jwt/test/unit/TokenTest.php -opt/app/vendor/lcobucci/jwt/test/unit/ValidationDataTest.php -opt/app/vendor/league/commonmark/.styleci.yml -opt/app/vendor/league/commonmark/CHANGELOG.md -opt/app/vendor/league/commonmark/CODE_OF_CONDUCT.md -opt/app/vendor/league/commonmark/CONTRIBUTING.md -opt/app/vendor/league/commonmark/LICENSE -opt/app/vendor/league/commonmark/README.md -opt/app/vendor/league/commonmark/UPGRADE.md -opt/app/vendor/league/commonmark/bin/commonmark -opt/app/vendor/league/commonmark/composer.json -opt/app/vendor/league/commonmark/src/Block/Element/AbstractBlock.php -opt/app/vendor/league/commonmark/src/Block/Element/BlockQuote.php -opt/app/vendor/league/commonmark/src/Block/Element/Document.php -opt/app/vendor/league/commonmark/src/Block/Element/FencedCode.php -opt/app/vendor/league/commonmark/src/Block/Element/Heading.php -opt/app/vendor/league/commonmark/src/Block/Element/HtmlBlock.php -opt/app/vendor/league/commonmark/src/Block/Element/IndentedCode.php -opt/app/vendor/league/commonmark/src/Block/Element/InlineContainer.php -opt/app/vendor/league/commonmark/src/Block/Element/InlineContainerInterface.php -opt/app/vendor/league/commonmark/src/Block/Element/ListBlock.php -opt/app/vendor/league/commonmark/src/Block/Element/ListData.php -opt/app/vendor/league/commonmark/src/Block/Element/ListItem.php -opt/app/vendor/league/commonmark/src/Block/Element/Paragraph.php -opt/app/vendor/league/commonmark/src/Block/Element/ThematicBreak.php -opt/app/vendor/league/commonmark/src/Block/Parser/ATXHeadingParser.php -opt/app/vendor/league/commonmark/src/Block/Parser/AbstractBlockParser.php -opt/app/vendor/league/commonmark/src/Block/Parser/BlockParserInterface.php -opt/app/vendor/league/commonmark/src/Block/Parser/BlockQuoteParser.php -opt/app/vendor/league/commonmark/src/Block/Parser/FencedCodeParser.php -opt/app/vendor/league/commonmark/src/Block/Parser/HtmlBlockParser.php -opt/app/vendor/league/commonmark/src/Block/Parser/IndentedCodeParser.php -opt/app/vendor/league/commonmark/src/Block/Parser/LazyParagraphParser.php -opt/app/vendor/league/commonmark/src/Block/Parser/ListParser.php -opt/app/vendor/league/commonmark/src/Block/Parser/SetExtHeadingParser.php -opt/app/vendor/league/commonmark/src/Block/Parser/ThematicBreakParser.php -opt/app/vendor/league/commonmark/src/Block/Renderer/BlockQuoteRenderer.php -opt/app/vendor/league/commonmark/src/Block/Renderer/BlockRendererInterface.php -opt/app/vendor/league/commonmark/src/Block/Renderer/DocumentRenderer.php -opt/app/vendor/league/commonmark/src/Block/Renderer/FencedCodeRenderer.php -opt/app/vendor/league/commonmark/src/Block/Renderer/HeadingRenderer.php -opt/app/vendor/league/commonmark/src/Block/Renderer/HtmlBlockRenderer.php -opt/app/vendor/league/commonmark/src/Block/Renderer/IndentedCodeRenderer.php -opt/app/vendor/league/commonmark/src/Block/Renderer/ListBlockRenderer.php -opt/app/vendor/league/commonmark/src/Block/Renderer/ListItemRenderer.php -opt/app/vendor/league/commonmark/src/Block/Renderer/ParagraphRenderer.php -opt/app/vendor/league/commonmark/src/Block/Renderer/ThematicBreakRenderer.php -opt/app/vendor/league/commonmark/src/CommonMarkConverter.php -opt/app/vendor/league/commonmark/src/Context.php -opt/app/vendor/league/commonmark/src/ContextInterface.php -opt/app/vendor/league/commonmark/src/Converter.php -opt/app/vendor/league/commonmark/src/ConverterInterface.php -opt/app/vendor/league/commonmark/src/Cursor.php -opt/app/vendor/league/commonmark/src/Delimiter/Delimiter.php -opt/app/vendor/league/commonmark/src/Delimiter/DelimiterStack.php -opt/app/vendor/league/commonmark/src/DocParser.php -opt/app/vendor/league/commonmark/src/DocumentProcessorInterface.php -opt/app/vendor/league/commonmark/src/ElementRendererInterface.php -opt/app/vendor/league/commonmark/src/Environment.php -opt/app/vendor/league/commonmark/src/EnvironmentAwareInterface.php -opt/app/vendor/league/commonmark/src/Extension/CommonMarkCoreExtension.php -opt/app/vendor/league/commonmark/src/Extension/Extension.php -opt/app/vendor/league/commonmark/src/Extension/ExtensionInterface.php -opt/app/vendor/league/commonmark/src/Extension/MiscExtension.php -opt/app/vendor/league/commonmark/src/HtmlElement.php -opt/app/vendor/league/commonmark/src/HtmlRenderer.php -opt/app/vendor/league/commonmark/src/Inline/Element/AbstractInline.php -opt/app/vendor/league/commonmark/src/Inline/Element/AbstractInlineContainer.php -opt/app/vendor/league/commonmark/src/Inline/Element/AbstractStringContainer.php -opt/app/vendor/league/commonmark/src/Inline/Element/AbstractWebResource.php -opt/app/vendor/league/commonmark/src/Inline/Element/Code.php -opt/app/vendor/league/commonmark/src/Inline/Element/Emphasis.php -opt/app/vendor/league/commonmark/src/Inline/Element/HtmlInline.php -opt/app/vendor/league/commonmark/src/Inline/Element/Image.php -opt/app/vendor/league/commonmark/src/Inline/Element/Link.php -opt/app/vendor/league/commonmark/src/Inline/Element/Newline.php -opt/app/vendor/league/commonmark/src/Inline/Element/Strong.php -opt/app/vendor/league/commonmark/src/Inline/Element/Text.php -opt/app/vendor/league/commonmark/src/Inline/Parser/AbstractInlineParser.php -opt/app/vendor/league/commonmark/src/Inline/Parser/AutolinkParser.php -opt/app/vendor/league/commonmark/src/Inline/Parser/BacktickParser.php -opt/app/vendor/league/commonmark/src/Inline/Parser/BangParser.php -opt/app/vendor/league/commonmark/src/Inline/Parser/CloseBracketParser.php -opt/app/vendor/league/commonmark/src/Inline/Parser/EmphasisParser.php -opt/app/vendor/league/commonmark/src/Inline/Parser/EntityParser.php -opt/app/vendor/league/commonmark/src/Inline/Parser/EscapableParser.php -opt/app/vendor/league/commonmark/src/Inline/Parser/HtmlInlineParser.php -opt/app/vendor/league/commonmark/src/Inline/Parser/InlineParserInterface.php -opt/app/vendor/league/commonmark/src/Inline/Parser/NewlineParser.php -opt/app/vendor/league/commonmark/src/Inline/Parser/OpenBracketParser.php -opt/app/vendor/league/commonmark/src/Inline/Processor/EmphasisProcessor.php -opt/app/vendor/league/commonmark/src/Inline/Processor/InlineProcessorInterface.php -opt/app/vendor/league/commonmark/src/Inline/Renderer/CodeRenderer.php -opt/app/vendor/league/commonmark/src/Inline/Renderer/EmphasisRenderer.php -opt/app/vendor/league/commonmark/src/Inline/Renderer/HtmlInlineRenderer.php -opt/app/vendor/league/commonmark/src/Inline/Renderer/ImageRenderer.php -opt/app/vendor/league/commonmark/src/Inline/Renderer/InlineRendererInterface.php -opt/app/vendor/league/commonmark/src/Inline/Renderer/LinkRenderer.php -opt/app/vendor/league/commonmark/src/Inline/Renderer/NewlineRenderer.php -opt/app/vendor/league/commonmark/src/Inline/Renderer/StrongRenderer.php -opt/app/vendor/league/commonmark/src/Inline/Renderer/TextRenderer.php -opt/app/vendor/league/commonmark/src/InlineParserContext.php -opt/app/vendor/league/commonmark/src/InlineParserEngine.php -opt/app/vendor/league/commonmark/src/Node/Node.php -opt/app/vendor/league/commonmark/src/Node/NodeWalker.php -opt/app/vendor/league/commonmark/src/Node/NodeWalkerEvent.php -opt/app/vendor/league/commonmark/src/Reference/Reference.php -opt/app/vendor/league/commonmark/src/Reference/ReferenceMap.php -opt/app/vendor/league/commonmark/src/ReferenceParser.php -opt/app/vendor/league/commonmark/src/UnmatchedBlockCloser.php -opt/app/vendor/league/commonmark/src/Util/ArrayCollection.php -opt/app/vendor/league/commonmark/src/Util/Configuration.php -opt/app/vendor/league/commonmark/src/Util/ConfigurationAwareInterface.php -opt/app/vendor/league/commonmark/src/Util/Html5Entities.php -opt/app/vendor/league/commonmark/src/Util/LinkParserHelper.php -opt/app/vendor/league/commonmark/src/Util/RegexHelper.php -opt/app/vendor/league/commonmark/src/Util/UrlEncoder.php -opt/app/vendor/league/commonmark/src/Util/Xml.php -opt/app/vendor/league/csv/CHANGELOG.md -opt/app/vendor/league/csv/LICENSE -opt/app/vendor/league/csv/autoload.php -opt/app/vendor/league/csv/composer.json -opt/app/vendor/league/csv/src/AbstractCsv.php -opt/app/vendor/league/csv/src/ByteSequence.php -opt/app/vendor/league/csv/src/CannotInsertRecord.php -opt/app/vendor/league/csv/src/CharsetConverter.php -opt/app/vendor/league/csv/src/ColumnConsistency.php -opt/app/vendor/league/csv/src/EncloseField.php -opt/app/vendor/league/csv/src/EscapeFormula.php -opt/app/vendor/league/csv/src/Exception.php -opt/app/vendor/league/csv/src/HTMLConverter.php -opt/app/vendor/league/csv/src/MapIterator.php -opt/app/vendor/league/csv/src/RFC4180Field.php -opt/app/vendor/league/csv/src/Reader.php -opt/app/vendor/league/csv/src/ResultSet.php -opt/app/vendor/league/csv/src/Statement.php -opt/app/vendor/league/csv/src/Stream.php -opt/app/vendor/league/csv/src/Writer.php -opt/app/vendor/league/csv/src/XMLConverter.php -opt/app/vendor/league/csv/src/functions.php -opt/app/vendor/league/csv/src/functions_include.php -opt/app/vendor/league/event/LICENSE -opt/app/vendor/league/event/composer.json -opt/app/vendor/league/event/src/AbstractEvent.php -opt/app/vendor/league/event/src/AbstractListener.php -opt/app/vendor/league/event/src/BufferedEmitter.php -opt/app/vendor/league/event/src/CallbackListener.php -opt/app/vendor/league/event/src/Emitter.php -opt/app/vendor/league/event/src/EmitterAwareInterface.php -opt/app/vendor/league/event/src/EmitterAwareTrait.php -opt/app/vendor/league/event/src/EmitterInterface.php -opt/app/vendor/league/event/src/EmitterTrait.php -opt/app/vendor/league/event/src/Event.php -opt/app/vendor/league/event/src/EventInterface.php -opt/app/vendor/league/event/src/Generator.php -opt/app/vendor/league/event/src/GeneratorInterface.php -opt/app/vendor/league/event/src/GeneratorTrait.php -opt/app/vendor/league/event/src/ListenerAcceptor.php -opt/app/vendor/league/event/src/ListenerAcceptorInterface.php -opt/app/vendor/league/event/src/ListenerInterface.php -opt/app/vendor/league/event/src/ListenerProviderInterface.php -opt/app/vendor/league/event/src/OneTimeListener.php -opt/app/vendor/league/flysystem-replicate-adapter/changelog.md -opt/app/vendor/league/flysystem-replicate-adapter/composer.json -opt/app/vendor/league/flysystem-replicate-adapter/phpunit.hhvm.xml -opt/app/vendor/league/flysystem-replicate-adapter/phpunit.php -opt/app/vendor/league/flysystem-replicate-adapter/readme.md -opt/app/vendor/league/flysystem-replicate-adapter/src/ReplicateAdapter.php -opt/app/vendor/league/flysystem-replicate-adapter/tests/ReplicateAdapterTests.php -opt/app/vendor/league/flysystem-sftp/LICENSE -opt/app/vendor/league/flysystem-sftp/composer.json -opt/app/vendor/league/flysystem-sftp/readme.md -opt/app/vendor/league/flysystem-sftp/src/SftpAdapter.php -opt/app/vendor/league/flysystem/LICENSE -opt/app/vendor/league/flysystem/composer.json -opt/app/vendor/league/flysystem/deprecations.md -opt/app/vendor/league/flysystem/src/Adapter/AbstractAdapter.php -opt/app/vendor/league/flysystem/src/Adapter/AbstractFtpAdapter.php -opt/app/vendor/league/flysystem/src/Adapter/CanOverwriteFiles.php -opt/app/vendor/league/flysystem/src/Adapter/Ftp.php -opt/app/vendor/league/flysystem/src/Adapter/Ftpd.php -opt/app/vendor/league/flysystem/src/Adapter/Local.php -opt/app/vendor/league/flysystem/src/Adapter/NullAdapter.php -opt/app/vendor/league/flysystem/src/Adapter/Polyfill/NotSupportingVisibilityTrait.php -opt/app/vendor/league/flysystem/src/Adapter/Polyfill/StreamedCopyTrait.php -opt/app/vendor/league/flysystem/src/Adapter/Polyfill/StreamedReadingTrait.php -opt/app/vendor/league/flysystem/src/Adapter/Polyfill/StreamedTrait.php -opt/app/vendor/league/flysystem/src/Adapter/Polyfill/StreamedWritingTrait.php -opt/app/vendor/league/flysystem/src/Adapter/SynologyFtp.php -opt/app/vendor/league/flysystem/src/AdapterInterface.php -opt/app/vendor/league/flysystem/src/Config.php -opt/app/vendor/league/flysystem/src/ConfigAwareTrait.php -opt/app/vendor/league/flysystem/src/Directory.php -opt/app/vendor/league/flysystem/src/Exception.php -opt/app/vendor/league/flysystem/src/File.php -opt/app/vendor/league/flysystem/src/FileExistsException.php -opt/app/vendor/league/flysystem/src/FileNotFoundException.php -opt/app/vendor/league/flysystem/src/Filesystem.php -opt/app/vendor/league/flysystem/src/FilesystemInterface.php -opt/app/vendor/league/flysystem/src/FilesystemNotFoundException.php -opt/app/vendor/league/flysystem/src/Handler.php -opt/app/vendor/league/flysystem/src/MountManager.php -opt/app/vendor/league/flysystem/src/NotSupportedException.php -opt/app/vendor/league/flysystem/src/Plugin/AbstractPlugin.php -opt/app/vendor/league/flysystem/src/Plugin/EmptyDir.php -opt/app/vendor/league/flysystem/src/Plugin/ForcedCopy.php -opt/app/vendor/league/flysystem/src/Plugin/ForcedRename.php -opt/app/vendor/league/flysystem/src/Plugin/GetWithMetadata.php -opt/app/vendor/league/flysystem/src/Plugin/ListFiles.php -opt/app/vendor/league/flysystem/src/Plugin/ListPaths.php -opt/app/vendor/league/flysystem/src/Plugin/ListWith.php -opt/app/vendor/league/flysystem/src/Plugin/PluggableTrait.php -opt/app/vendor/league/flysystem/src/Plugin/PluginNotFoundException.php -opt/app/vendor/league/flysystem/src/PluginInterface.php -opt/app/vendor/league/flysystem/src/ReadInterface.php -opt/app/vendor/league/flysystem/src/RootViolationException.php -opt/app/vendor/league/flysystem/src/SafeStorage.php -opt/app/vendor/league/flysystem/src/UnreadableFileException.php -opt/app/vendor/league/flysystem/src/Util.php -opt/app/vendor/league/flysystem/src/Util/ContentListingFormatter.php -opt/app/vendor/league/flysystem/src/Util/MimeType.php -opt/app/vendor/league/flysystem/src/Util/StreamHasher.php -opt/app/vendor/league/fractal/LICENSE -opt/app/vendor/league/fractal/composer.json -opt/app/vendor/league/fractal/src/Manager.php -opt/app/vendor/league/fractal/src/Pagination/Cursor.php -opt/app/vendor/league/fractal/src/Pagination/CursorInterface.php -opt/app/vendor/league/fractal/src/Pagination/DoctrinePaginatorAdapter.php -opt/app/vendor/league/fractal/src/Pagination/IlluminatePaginatorAdapter.php -opt/app/vendor/league/fractal/src/Pagination/PagerfantaPaginatorAdapter.php -opt/app/vendor/league/fractal/src/Pagination/PaginatorInterface.php -opt/app/vendor/league/fractal/src/Pagination/PhalconFrameworkPaginatorAdapter.php -opt/app/vendor/league/fractal/src/Pagination/ZendFrameworkPaginatorAdapter.php -opt/app/vendor/league/fractal/src/ParamBag.php -opt/app/vendor/league/fractal/src/Resource/Collection.php -opt/app/vendor/league/fractal/src/Resource/Item.php -opt/app/vendor/league/fractal/src/Resource/NullResource.php -opt/app/vendor/league/fractal/src/Resource/Primitive.php -opt/app/vendor/league/fractal/src/Resource/ResourceAbstract.php -opt/app/vendor/league/fractal/src/Resource/ResourceInterface.php -opt/app/vendor/league/fractal/src/Scope.php -opt/app/vendor/league/fractal/src/ScopeFactory.php -opt/app/vendor/league/fractal/src/ScopeFactoryInterface.php -opt/app/vendor/league/fractal/src/Serializer/ArraySerializer.php -opt/app/vendor/league/fractal/src/Serializer/DataArraySerializer.php -opt/app/vendor/league/fractal/src/Serializer/JsonApiSerializer.php -opt/app/vendor/league/fractal/src/Serializer/Serializer.php -opt/app/vendor/league/fractal/src/Serializer/SerializerAbstract.php -opt/app/vendor/league/fractal/src/TransformerAbstract.php -opt/app/vendor/league/oauth2-server/.styleci.yml -opt/app/vendor/league/oauth2-server/CODE_OF_CONDUCT.md -opt/app/vendor/league/oauth2-server/LICENSE -opt/app/vendor/league/oauth2-server/composer.json -opt/app/vendor/league/oauth2-server/phpstan.neon -opt/app/vendor/league/oauth2-server/src/AuthorizationServer.php -opt/app/vendor/league/oauth2-server/src/AuthorizationValidators/AuthorizationValidatorInterface.php -opt/app/vendor/league/oauth2-server/src/AuthorizationValidators/BearerTokenValidator.php -opt/app/vendor/league/oauth2-server/src/CryptKey.php -opt/app/vendor/league/oauth2-server/src/CryptTrait.php -opt/app/vendor/league/oauth2-server/src/Entities/AccessTokenEntityInterface.php -opt/app/vendor/league/oauth2-server/src/Entities/AuthCodeEntityInterface.php -opt/app/vendor/league/oauth2-server/src/Entities/ClientEntityInterface.php -opt/app/vendor/league/oauth2-server/src/Entities/RefreshTokenEntityInterface.php -opt/app/vendor/league/oauth2-server/src/Entities/ScopeEntityInterface.php -opt/app/vendor/league/oauth2-server/src/Entities/TokenInterface.php -opt/app/vendor/league/oauth2-server/src/Entities/Traits/AccessTokenTrait.php -opt/app/vendor/league/oauth2-server/src/Entities/Traits/AuthCodeTrait.php -opt/app/vendor/league/oauth2-server/src/Entities/Traits/ClientTrait.php -opt/app/vendor/league/oauth2-server/src/Entities/Traits/EntityTrait.php -opt/app/vendor/league/oauth2-server/src/Entities/Traits/RefreshTokenTrait.php -opt/app/vendor/league/oauth2-server/src/Entities/Traits/ScopeTrait.php -opt/app/vendor/league/oauth2-server/src/Entities/Traits/TokenEntityTrait.php -opt/app/vendor/league/oauth2-server/src/Entities/UserEntityInterface.php -opt/app/vendor/league/oauth2-server/src/Exception/OAuthServerException.php -opt/app/vendor/league/oauth2-server/src/Exception/UniqueTokenIdentifierConstraintViolationException.php -opt/app/vendor/league/oauth2-server/src/Grant/AbstractAuthorizeGrant.php -opt/app/vendor/league/oauth2-server/src/Grant/AbstractGrant.php -opt/app/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php -opt/app/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php -opt/app/vendor/league/oauth2-server/src/Grant/GrantTypeInterface.php -opt/app/vendor/league/oauth2-server/src/Grant/ImplicitGrant.php -opt/app/vendor/league/oauth2-server/src/Grant/PasswordGrant.php -opt/app/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php -opt/app/vendor/league/oauth2-server/src/Middleware/AuthorizationServerMiddleware.php -opt/app/vendor/league/oauth2-server/src/Middleware/ResourceServerMiddleware.php -opt/app/vendor/league/oauth2-server/src/Repositories/AccessTokenRepositoryInterface.php -opt/app/vendor/league/oauth2-server/src/Repositories/AuthCodeRepositoryInterface.php -opt/app/vendor/league/oauth2-server/src/Repositories/ClientRepositoryInterface.php -opt/app/vendor/league/oauth2-server/src/Repositories/RefreshTokenRepositoryInterface.php -opt/app/vendor/league/oauth2-server/src/Repositories/RepositoryInterface.php -opt/app/vendor/league/oauth2-server/src/Repositories/ScopeRepositoryInterface.php -opt/app/vendor/league/oauth2-server/src/Repositories/UserRepositoryInterface.php -opt/app/vendor/league/oauth2-server/src/RequestEvent.php -opt/app/vendor/league/oauth2-server/src/RequestTypes/AuthorizationRequest.php -opt/app/vendor/league/oauth2-server/src/ResourceServer.php -opt/app/vendor/league/oauth2-server/src/ResponseTypes/AbstractResponseType.php -opt/app/vendor/league/oauth2-server/src/ResponseTypes/BearerTokenResponse.php -opt/app/vendor/league/oauth2-server/src/ResponseTypes/RedirectResponse.php -opt/app/vendor/league/oauth2-server/src/ResponseTypes/ResponseTypeInterface.php -opt/app/vendor/litipk/flysystem-fallback-adapter/composer.json -opt/app/vendor/litipk/flysystem-fallback-adapter/src/FallbackAdapter.php -opt/app/vendor/monolog/monolog/.php_cs -opt/app/vendor/monolog/monolog/CHANGELOG.md -opt/app/vendor/monolog/monolog/LICENSE -opt/app/vendor/monolog/monolog/README.md -opt/app/vendor/monolog/monolog/composer.json -opt/app/vendor/monolog/monolog/doc/01-usage.md -opt/app/vendor/monolog/monolog/doc/02-handlers-formatters-processors.md -opt/app/vendor/monolog/monolog/doc/03-utilities.md -opt/app/vendor/monolog/monolog/doc/04-extending.md -opt/app/vendor/monolog/monolog/doc/sockets.md -opt/app/vendor/monolog/monolog/phpunit.xml.dist -opt/app/vendor/monolog/monolog/src/Monolog/ErrorHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/BufferHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/ElasticSearchHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/FilterHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/HipChatHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/LogglyHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/MandrillHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/PsrHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/RavenHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/RedisHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/RollbarHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/SlackHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/SlackbotHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Logger.php -opt/app/vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php -opt/app/vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php -opt/app/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php -opt/app/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php -opt/app/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php -opt/app/vendor/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php -opt/app/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php -opt/app/vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php -opt/app/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php -opt/app/vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php -opt/app/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php -opt/app/vendor/monolog/monolog/src/Monolog/Processor/WebProcessor.php -opt/app/vendor/monolog/monolog/src/Monolog/Registry.php -opt/app/vendor/monolog/monolog/src/Monolog/ResettableInterface.php -opt/app/vendor/monolog/monolog/src/Monolog/SignalHandler.php -opt/app/vendor/monolog/monolog/src/Monolog/Utils.php -opt/app/vendor/monolog/monolog/tests/Monolog/ErrorHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Formatter/ChromePHPFormatterTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Formatter/ElasticaFormatterTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Formatter/FlowdockFormatterTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Formatter/FluentdFormatterTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Formatter/GelfMessageFormatterTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Formatter/JsonFormatterTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Formatter/LineFormatterTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Formatter/LogglyFormatterTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Formatter/LogstashFormatterTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Formatter/MongoDBFormatterTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Formatter/NormalizerFormatterTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Formatter/ScalarFormatterTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Formatter/WildfireFormatterTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/AbstractHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/AbstractProcessingHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/AmqpHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/BrowserConsoleHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/BufferHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/ChromePHPHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/CouchDBHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/DeduplicationHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/DoctrineCouchDBHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/DynamoDbHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/ElasticSearchHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/ErrorLogHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/FilterHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/FingersCrossedHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/FirePHPHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/FleepHookHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/FlowdockHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/GelfHandlerLegacyTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/GelfHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/GelfMockMessagePublisher.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/GroupHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/HandlerWrapperTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/HipChatHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/InsightOpsHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/LogEntriesHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/MailHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/MockRavenClient.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/MongoDBHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/NativeMailerHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/NewRelicHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/NullHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/PHPConsoleHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/PsrHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/PushoverHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/RavenHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/RedisHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/RollbarHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/RotatingFileHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/SamplingHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/Slack/SlackRecordTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/SlackHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/SlackWebhookHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/SlackbotHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/SocketHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/StreamHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/SwiftMailerHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/SyslogHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/SyslogUdpHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/TestHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/UdpSocketTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/WhatFailureGroupHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Handler/ZendMonitorHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/LoggerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Processor/GitProcessorTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Processor/IntrospectionProcessorTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Processor/MemoryPeakUsageProcessorTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Processor/MemoryUsageProcessorTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Processor/MercurialProcessorTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Processor/ProcessIdProcessorTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Processor/PsrLogMessageProcessorTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Processor/TagProcessorTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Processor/UidProcessorTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/Processor/WebProcessorTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/PsrLogCompatTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/RegistryTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/SignalHandlerTest.php -opt/app/vendor/monolog/monolog/tests/Monolog/TestCase.php -opt/app/vendor/mschindler83/fints-hbci-php/COMPATIBILITY.md -opt/app/vendor/mschindler83/fints-hbci-php/LICENSE -opt/app/vendor/mschindler83/fints-hbci-php/README.md -opt/app/vendor/mschindler83/fints-hbci-php/Samples/saldo.php -opt/app/vendor/mschindler83/fints-hbci-php/Samples/statement_of_account.php -opt/app/vendor/mschindler83/fints-hbci-php/composer.json -opt/app/vendor/mschindler83/fints-hbci-php/composer.lock -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/AdapterInterface.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Curl.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Debug.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Exception/AdapterException.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Exception/CurlException.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Connection.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/EncryptionAlgorithm.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/HashAlgorithm.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/KeyName.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityDateTime.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityIdentificationDetails.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityProfile.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SignatureAlgorithm.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Bin.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Dat.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Kik.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Kti.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Ktv.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Deg.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Dialog/Dialog.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Dialog/Exception/FailedRequestException.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/FinTs.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Message/AbstractMessage.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Message/Message.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/Account.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/SEPAAccount.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/Saldo.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/Statement.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/StatementOfAccount.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/Transaction.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Parser/Exception/MT940Exception.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Parser/MT940.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetAccounts.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetSEPAAccounts.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetSaldo.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetStatementOfAccount.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/Initialization.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/Response.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/AbstractSegment.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKEND.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKIDN.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKKAZ.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKSAL.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKSPA.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKSYN.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKVVB.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNHBK.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNHBS.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNSHA.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNSHK.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNVSD.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNVSK.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/NameMapping.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/Segment.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/SegmentInterface.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/ConnectionTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/EncryptionAlgorithmTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/HashAlgorithmTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/KeyNameTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityDateTimeTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityIdentificationDetailsTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityProfileTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SignatureAlgorithmTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/BinTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/DatTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KikTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KtiTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KtvTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DegTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/FinTsTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Message/MessageTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/AccountTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/SEPAAccountTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/SaldoTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/StatementOfAccountTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/StatementTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/TransactionTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/ResponseTest/ResponseTest.php -opt/app/vendor/mschindler83/fints-hbci-php/lib/Tests/TestInit.php -opt/app/vendor/mschindler83/fints-hbci-php/phplint.sh -opt/app/vendor/mschindler83/fints-hbci-php/phpunit.xml.dist -opt/app/vendor/nesbot/carbon/.github/ISSUE_TEMPLATE.md -opt/app/vendor/nesbot/carbon/.multi-tester.yml -opt/app/vendor/nesbot/carbon/LICENSE -opt/app/vendor/nesbot/carbon/composer.json -opt/app/vendor/nesbot/carbon/contributing.md -opt/app/vendor/nesbot/carbon/phpmd.xml -opt/app/vendor/nesbot/carbon/readme.md -opt/app/vendor/nesbot/carbon/src/Carbon/Carbon.php -opt/app/vendor/nesbot/carbon/src/Carbon/CarbonImmutable.php -opt/app/vendor/nesbot/carbon/src/Carbon/CarbonInterface.php -opt/app/vendor/nesbot/carbon/src/Carbon/CarbonInterval.php -opt/app/vendor/nesbot/carbon/src/Carbon/CarbonPeriod.php -opt/app/vendor/nesbot/carbon/src/Carbon/CarbonTimeZone.php -opt/app/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php -opt/app/vendor/nesbot/carbon/src/Carbon/Factory.php -opt/app/vendor/nesbot/carbon/src/Carbon/FactoryImmutable.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/aa.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/aa_DJ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/aa_ER.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/aa_ER@saaho.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/aa_ET.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/af.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/af_ZA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/agr.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/agr_PE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ak.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ak_GH.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/am.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/am_ET.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/an.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/an_ES.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/anp.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/anp_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_AE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_BH.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_DZ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_EG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_IQ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_JO.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_KW.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_LB.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_LY.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_MA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_OM.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_QA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_SA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_SD.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_SS.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_SY.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_Shakl.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_TN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ar_YE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/as.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/as_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ast.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ast_ES.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ayc.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ayc_PE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/az.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/az_AZ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/az_IR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/be.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/be_BY.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/be_BY@latin.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bem.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bem_ZM.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ber.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ber_DZ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ber_MA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bg.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bg_BG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bhb.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bhb_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bho.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bho_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bi.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bi_VU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bm.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bn.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bn_BD.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bn_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bo.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bo_CN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/br.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/br_FR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/brx.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/brx_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bs.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/bs_BA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/byn.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/byn_ER.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ca.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ca_ES.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ce.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ce_RU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/chr.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/chr_US.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/cmn.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/cmn_TW.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/crh.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/crh_UA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/cs.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/cs_CZ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/csb.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/csb_PL.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/cv.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/cv_RU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/cy.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/cy_GB.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/da.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/da_DK.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/de.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/de_AT.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/de_BE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/de_CH.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/de_DE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/de_IT.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/de_LU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/doi.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/doi_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/dsb.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/dsb_DE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/dv.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/dv_MV.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/dz.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/dz_BT.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/el.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/el_CY.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/el_GR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_AG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_AU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_CA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_CY.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_DK.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_GB.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_HK.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_IE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_IL.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_NG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_NZ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_PH.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_SG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_US.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_ZA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/en_ZM.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/eo.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_419.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_AR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_BO.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_CL.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_CO.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_CR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_DO.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_EC.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_ES.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_GT.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_HN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_MX.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_NI.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_PA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_PE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_PR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_PY.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_SV.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_US.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_UY.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/es_VE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/et.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/et_EE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/eu.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/eu_ES.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fa.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fa_IR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ff.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ff_SN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fi.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fi_FI.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fil.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fil_PH.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fo.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fo_FO.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fr.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fr_BE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fr_CA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fr_CH.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fr_FR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fr_LU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fur.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fur_IT.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fy.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fy_DE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/fy_NL.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ga.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ga_IE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gd.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gd_GB.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gez.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gez_ER.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gez_ET.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gl.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gl_ES.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gom.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gom_Latn.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gsw_CH.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gu.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gu_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gv.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/gv_GB.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ha.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ha_NG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hak.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hak_TW.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/he.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/he_IL.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hi.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hi_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hif.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hif_FJ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hne.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hne_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hr.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hr_HR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hsb.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hsb_DE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ht.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ht_HT.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hu.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hu_HU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hy.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/hy_AM.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/i18n.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ia.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ia_FR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/id.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/id_ID.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ig.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ig_NG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ik.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ik_CA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/is.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/is_IS.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/it.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/it_CH.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/it_IT.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/iu.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/iu_CA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ja.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ja_JP.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/jv.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ka.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ka_GE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/kab.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/kab_DZ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/kk.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/kk_KZ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/kl.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/kl_GL.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/km.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/km_KH.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/kn.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/kn_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ko.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ko_KR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/kok.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/kok_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ks.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ks_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ks_IN@devanagari.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ku.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ku_TR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/kw.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/kw_GB.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ky.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ky_KG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lb.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lb_LU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lg.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lg_UG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/li.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/li_NL.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lij.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lij_IT.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ln.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ln_CD.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lo.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lo_LA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lt.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lt_LT.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lv.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lv_LV.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lzh.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/lzh_TW.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mag.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mag_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mai.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mai_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/me.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mfe.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mfe_MU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mg.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mg_MG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mhr.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mhr_RU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mi.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mi_NZ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/miq.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/miq_NI.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mjw.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mjw_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mk.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mk_MK.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ml.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ml_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mn.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mn_MN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mni.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mni_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mr.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mr_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ms.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ms_MY.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mt.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/mt_MT.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/my.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/my_MM.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nan.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nan_TW.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nan_TW@latin.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nb.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nb_NO.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nds.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nds_DE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nds_NL.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ne.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ne_NP.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nhn.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nhn_MX.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/niu.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/niu_NU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nl.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nl_AW.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nl_BE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nl_NL.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nn.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nn_NO.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/no.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nr.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nr_ZA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nso.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/nso_ZA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/oc.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/oc_FR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/om.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/om_ET.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/or.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/or_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/os.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/os_RU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/pa.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/pa_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/pa_PK.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/pap.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/pap_AW.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/pap_CW.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/pl.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/pl_PL.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ps.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ps_AF.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/pt.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/pt_BR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/pt_PT.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/quz.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/quz_PE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/raj.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/raj_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/rm.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ro.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ro_RO.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ru.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ru_RU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ru_UA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/rw.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/rw_RW.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sa.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sa_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sah.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sah_RU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sat.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sat_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sc.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sc_IT.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/scr.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sd.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sd_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sd_IN@devanagari.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/se.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/se_NO.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sgs.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sgs_LT.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sh.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/shn.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/shn_MM.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/shs.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/shs_CA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/si.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/si_LK.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sid.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sid_ET.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sk.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sk_SK.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sl.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sl_SI.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sm.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sm_WS.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/so.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/so_DJ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/so_ET.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/so_KE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/so_SO.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sq.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sq_AL.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sr.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl_ME.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn_ME.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sr_ME.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sr_RS.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sr_RS@latin.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ss.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ss_ZA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/st.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/st_ZA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sv.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sv_FI.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sv_SE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sw.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sw_KE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/sw_TZ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/szl.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/szl_PL.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ta.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ta_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ta_LK.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tcy.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tcy_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/te.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/te_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tet.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tg.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tg_TJ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/th.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/th_TH.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/the.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/the_NP.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ti.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ti_ER.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ti_ET.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tig.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tig_ER.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tk.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tk_TM.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tl.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tl_PH.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tlh.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tn.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tn_ZA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/to.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/to_TO.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tpi.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tpi_PG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tr.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tr_TR.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ts.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ts_ZA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tt.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tt_RU.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tt_RU@iqtelif.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tzl.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tzm.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/tzm_Latn.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ug.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ug_CN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/uk.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/uk_UA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/unm.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/unm_US.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ur.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ur_IN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ur_PK.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/uz.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/uz_Latn.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/uz_UZ.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/uz_UZ@cyrillic.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ve.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/ve_ZA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/vi.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/vi_VN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/wa.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/wa_BE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/wae.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/wae_CH.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/wal.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/wal_ET.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/wo.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/wo_SN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/xh.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/xh_ZA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/yi.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/yi_US.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/yo.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/yo_NG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/yue.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/yue_HK.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/yuw.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/yuw_PG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/zh.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/zh_CN.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/zh_HK.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/zh_MO.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/zh_SG.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/zh_TW.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/zh_YUE.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/zu.php -opt/app/vendor/nesbot/carbon/src/Carbon/Lang/zu_ZA.php -opt/app/vendor/nesbot/carbon/src/Carbon/Language.php -opt/app/vendor/nesbot/carbon/src/Carbon/Laravel/ServiceProvider.php -opt/app/vendor/nesbot/carbon/src/Carbon/List/languages.php -opt/app/vendor/nesbot/carbon/src/Carbon/List/regions.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Boundaries.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Comparison.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Converter.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Creator.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Date.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Difference.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Localization.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Macro.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Modifiers.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Mutability.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Options.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Rounding.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Serialization.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Test.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Timestamp.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Units.php -opt/app/vendor/nesbot/carbon/src/Carbon/Traits/Week.php -opt/app/vendor/nesbot/carbon/src/Carbon/Translator.php -opt/app/vendor/opis/closure/CHANGELOG.md -opt/app/vendor/opis/closure/LICENSE -opt/app/vendor/opis/closure/NOTICE -opt/app/vendor/opis/closure/README.md -opt/app/vendor/opis/closure/autoload.php -opt/app/vendor/opis/closure/composer.json -opt/app/vendor/opis/closure/functions.php -opt/app/vendor/opis/closure/src/Analyzer.php -opt/app/vendor/opis/closure/src/ClosureContext.php -opt/app/vendor/opis/closure/src/ClosureScope.php -opt/app/vendor/opis/closure/src/ClosureStream.php -opt/app/vendor/opis/closure/src/ISecurityProvider.php -opt/app/vendor/opis/closure/src/ReflectionClosure.php -opt/app/vendor/opis/closure/src/SecurityException.php -opt/app/vendor/opis/closure/src/SecurityProvider.php -opt/app/vendor/opis/closure/src/SelfReference.php -opt/app/vendor/opis/closure/src/SerializableClosure.php -opt/app/vendor/paragonie/constant_time_encoding/LICENSE.txt -opt/app/vendor/paragonie/constant_time_encoding/README.md -opt/app/vendor/paragonie/constant_time_encoding/composer.json -opt/app/vendor/paragonie/constant_time_encoding/phpunit.xml.dist -opt/app/vendor/paragonie/constant_time_encoding/psalm.xml -opt/app/vendor/paragonie/constant_time_encoding/src/Base32.php -opt/app/vendor/paragonie/constant_time_encoding/src/Base32Hex.php -opt/app/vendor/paragonie/constant_time_encoding/src/Base64.php -opt/app/vendor/paragonie/constant_time_encoding/src/Base64DotSlash.php -opt/app/vendor/paragonie/constant_time_encoding/src/Base64DotSlashOrdered.php -opt/app/vendor/paragonie/constant_time_encoding/src/Base64UrlSafe.php -opt/app/vendor/paragonie/constant_time_encoding/src/Binary.php -opt/app/vendor/paragonie/constant_time_encoding/src/EncoderInterface.php -opt/app/vendor/paragonie/constant_time_encoding/src/Encoding.php -opt/app/vendor/paragonie/constant_time_encoding/src/Hex.php -opt/app/vendor/paragonie/constant_time_encoding/src/RFC4648.php -opt/app/vendor/paragonie/constant_time_encoding/tests/Base32HexTest.php -opt/app/vendor/paragonie/constant_time_encoding/tests/Base32Test.php -opt/app/vendor/paragonie/constant_time_encoding/tests/Base64DotSlashOrderedTest.php -opt/app/vendor/paragonie/constant_time_encoding/tests/Base64DotSlashTest.php -opt/app/vendor/paragonie/constant_time_encoding/tests/Base64Test.php -opt/app/vendor/paragonie/constant_time_encoding/tests/Base64UrlSafeTest.php -opt/app/vendor/paragonie/constant_time_encoding/tests/EncodingTest.php -opt/app/vendor/paragonie/constant_time_encoding/tests/HexTest.php -opt/app/vendor/paragonie/constant_time_encoding/tests/RFC4648Test.php -opt/app/vendor/paragonie/random_compat/LICENSE -opt/app/vendor/paragonie/random_compat/build-phar.sh -opt/app/vendor/paragonie/random_compat/composer.json -opt/app/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey -opt/app/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc -opt/app/vendor/paragonie/random_compat/lib/random.php -opt/app/vendor/paragonie/random_compat/other/build_phar.php -opt/app/vendor/paragonie/random_compat/psalm-autoload.php -opt/app/vendor/paragonie/random_compat/psalm.xml -opt/app/vendor/phpoption/phpoption/LICENSE -opt/app/vendor/phpoption/phpoption/README.md -opt/app/vendor/phpoption/phpoption/composer.json -opt/app/vendor/phpoption/phpoption/phpunit.xml.dist -opt/app/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php -opt/app/vendor/phpoption/phpoption/src/PhpOption/None.php -opt/app/vendor/phpoption/phpoption/src/PhpOption/Option.php -opt/app/vendor/phpoption/phpoption/src/PhpOption/Some.php -opt/app/vendor/phpoption/phpoption/tests/PhpOption/Tests/EnsureTest.php -opt/app/vendor/phpoption/phpoption/tests/PhpOption/Tests/LazyOptionTest.php -opt/app/vendor/phpoption/phpoption/tests/PhpOption/Tests/NoneTest.php -opt/app/vendor/phpoption/phpoption/tests/PhpOption/Tests/OptionTest.php -opt/app/vendor/phpoption/phpoption/tests/PhpOption/Tests/PerformanceTest.php -opt/app/vendor/phpoption/phpoption/tests/PhpOption/Tests/SomeTest.php -opt/app/vendor/phpoption/phpoption/tests/bootstrap.php -opt/app/vendor/phpseclib/phpseclib/AUTHORS -opt/app/vendor/phpseclib/phpseclib/LICENSE -opt/app/vendor/phpseclib/phpseclib/README.md -opt/app/vendor/phpseclib/phpseclib/appveyor.yml -opt/app/vendor/phpseclib/phpseclib/composer.json -opt/app/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Element.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/File/X509.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/Identity.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php -opt/app/vendor/phpseclib/phpseclib/phpseclib/openssl.cnf -opt/app/vendor/pragmarx/google2fa-laravel/CHANGELOG.md -opt/app/vendor/pragmarx/google2fa-laravel/LICENSE -opt/app/vendor/pragmarx/google2fa-laravel/README.md -opt/app/vendor/pragmarx/google2fa-laravel/composer.json -opt/app/vendor/pragmarx/google2fa-laravel/docs/middleware.jpg -opt/app/vendor/pragmarx/google2fa-laravel/phpspec.yml -opt/app/vendor/pragmarx/google2fa-laravel/src/Events/EmptyOneTimePasswordReceived.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Events/LoggedOut.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Events/LoginFailed.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Events/LoginSucceeded.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Events/OneTimePasswordExpired.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Events/OneTimePasswordRequested.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Events/OneTimePasswordRequested53.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Exceptions/InvalidOneTimePassword.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Exceptions/InvalidSecretKey.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Facade.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Google2FA.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Middleware.php -opt/app/vendor/pragmarx/google2fa-laravel/src/ServiceProvider.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Support/Auth.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Support/Authenticator.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Support/Config.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Support/Constants.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Support/ErrorBag.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Support/Input.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Support/Request.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Support/Response.php -opt/app/vendor/pragmarx/google2fa-laravel/src/Support/Session.php -opt/app/vendor/pragmarx/google2fa-laravel/src/config/config.php -opt/app/vendor/pragmarx/google2fa-laravel/tests/Google2FaLaravelTest.php -opt/app/vendor/pragmarx/google2fa-laravel/tests/Support/User.php -opt/app/vendor/pragmarx/google2fa-laravel/tests/TestCase.php -opt/app/vendor/pragmarx/google2fa-laravel/tests/bootstrap.php -opt/app/vendor/pragmarx/google2fa-laravel/tests/views/google2fa/index.blade.php -opt/app/vendor/pragmarx/google2fa-laravel/upgrading.md -opt/app/vendor/pragmarx/google2fa/LICENSE.md -opt/app/vendor/pragmarx/google2fa/README.md -opt/app/vendor/pragmarx/google2fa/RELICENSED.md -opt/app/vendor/pragmarx/google2fa/changelog.md -opt/app/vendor/pragmarx/google2fa/composer.json -opt/app/vendor/pragmarx/google2fa/composer.lock -opt/app/vendor/pragmarx/google2fa/docs/playground.jpg -opt/app/vendor/pragmarx/google2fa/src/Exceptions/IncompatibleWithGoogleAuthenticatorException.php -opt/app/vendor/pragmarx/google2fa/src/Exceptions/InsecureCallException.php -opt/app/vendor/pragmarx/google2fa/src/Exceptions/InvalidCharactersException.php -opt/app/vendor/pragmarx/google2fa/src/Exceptions/SecretKeyTooShortException.php -opt/app/vendor/pragmarx/google2fa/src/Google2FA.php -opt/app/vendor/pragmarx/google2fa/src/Support/Base32.php -opt/app/vendor/pragmarx/google2fa/src/Support/Constants.php -opt/app/vendor/pragmarx/google2fa/src/Support/QRCode.php -opt/app/vendor/pragmarx/google2fa/src/Support/Url.php -opt/app/vendor/pragmarx/google2fa/tests/Constants.php -opt/app/vendor/pragmarx/google2fa/tests/Google2FATest.php -opt/app/vendor/pragmarx/google2fa/tests/bootstrap.php -opt/app/vendor/pragmarx/google2fa/upgrading.md -opt/app/vendor/psr/container/LICENSE -opt/app/vendor/psr/container/README.md -opt/app/vendor/psr/container/composer.json -opt/app/vendor/psr/container/src/ContainerExceptionInterface.php -opt/app/vendor/psr/container/src/ContainerInterface.php -opt/app/vendor/psr/container/src/NotFoundExceptionInterface.php -opt/app/vendor/psr/http-message/CHANGELOG.md -opt/app/vendor/psr/http-message/LICENSE -opt/app/vendor/psr/http-message/README.md -opt/app/vendor/psr/http-message/composer.json -opt/app/vendor/psr/http-message/src/MessageInterface.php -opt/app/vendor/psr/http-message/src/RequestInterface.php -opt/app/vendor/psr/http-message/src/ResponseInterface.php -opt/app/vendor/psr/http-message/src/ServerRequestInterface.php -opt/app/vendor/psr/http-message/src/StreamInterface.php -opt/app/vendor/psr/http-message/src/UploadedFileInterface.php -opt/app/vendor/psr/http-message/src/UriInterface.php -opt/app/vendor/psr/log/LICENSE -opt/app/vendor/psr/log/Psr/Log/AbstractLogger.php -opt/app/vendor/psr/log/Psr/Log/InvalidArgumentException.php -opt/app/vendor/psr/log/Psr/Log/LogLevel.php -opt/app/vendor/psr/log/Psr/Log/LoggerAwareInterface.php -opt/app/vendor/psr/log/Psr/Log/LoggerAwareTrait.php -opt/app/vendor/psr/log/Psr/Log/LoggerInterface.php -opt/app/vendor/psr/log/Psr/Log/LoggerTrait.php -opt/app/vendor/psr/log/Psr/Log/NullLogger.php -opt/app/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php -opt/app/vendor/psr/log/Psr/Log/Test/TestLogger.php -opt/app/vendor/psr/log/README.md -opt/app/vendor/psr/log/composer.json -opt/app/vendor/psr/simple-cache/.editorconfig -opt/app/vendor/psr/simple-cache/LICENSE.md -opt/app/vendor/psr/simple-cache/README.md -opt/app/vendor/psr/simple-cache/composer.json -opt/app/vendor/psr/simple-cache/src/CacheException.php -opt/app/vendor/psr/simple-cache/src/CacheInterface.php -opt/app/vendor/psr/simple-cache/src/InvalidArgumentException.php -opt/app/vendor/ralouphie/getallheaders/LICENSE -opt/app/vendor/ralouphie/getallheaders/README.md -opt/app/vendor/ralouphie/getallheaders/composer.json -opt/app/vendor/ralouphie/getallheaders/src/getallheaders.php -opt/app/vendor/ralouphie/getallheaders/tests/GetAllHeadersTest.php -opt/app/vendor/ramsey/uuid/CHANGELOG.md -opt/app/vendor/ramsey/uuid/CODE_OF_CONDUCT.md -opt/app/vendor/ramsey/uuid/CONTRIBUTING.md -opt/app/vendor/ramsey/uuid/LICENSE -opt/app/vendor/ramsey/uuid/README.md -opt/app/vendor/ramsey/uuid/composer.json -opt/app/vendor/ramsey/uuid/src/BinaryUtils.php -opt/app/vendor/ramsey/uuid/src/Builder/DefaultUuidBuilder.php -opt/app/vendor/ramsey/uuid/src/Builder/DegradedUuidBuilder.php -opt/app/vendor/ramsey/uuid/src/Builder/UuidBuilderInterface.php -opt/app/vendor/ramsey/uuid/src/Codec/CodecInterface.php -opt/app/vendor/ramsey/uuid/src/Codec/GuidStringCodec.php -opt/app/vendor/ramsey/uuid/src/Codec/OrderedTimeCodec.php -opt/app/vendor/ramsey/uuid/src/Codec/StringCodec.php -opt/app/vendor/ramsey/uuid/src/Codec/TimestampFirstCombCodec.php -opt/app/vendor/ramsey/uuid/src/Codec/TimestampLastCombCodec.php -opt/app/vendor/ramsey/uuid/src/Converter/Number/BigNumberConverter.php -opt/app/vendor/ramsey/uuid/src/Converter/Number/DegradedNumberConverter.php -opt/app/vendor/ramsey/uuid/src/Converter/NumberConverterInterface.php -opt/app/vendor/ramsey/uuid/src/Converter/Time/BigNumberTimeConverter.php -opt/app/vendor/ramsey/uuid/src/Converter/Time/DegradedTimeConverter.php -opt/app/vendor/ramsey/uuid/src/Converter/Time/PhpTimeConverter.php -opt/app/vendor/ramsey/uuid/src/Converter/TimeConverterInterface.php -opt/app/vendor/ramsey/uuid/src/DegradedUuid.php -opt/app/vendor/ramsey/uuid/src/Exception/InvalidUuidStringException.php -opt/app/vendor/ramsey/uuid/src/Exception/UnsatisfiedDependencyException.php -opt/app/vendor/ramsey/uuid/src/Exception/UnsupportedOperationException.php -opt/app/vendor/ramsey/uuid/src/FeatureSet.php -opt/app/vendor/ramsey/uuid/src/Generator/CombGenerator.php -opt/app/vendor/ramsey/uuid/src/Generator/DefaultTimeGenerator.php -opt/app/vendor/ramsey/uuid/src/Generator/MtRandGenerator.php -opt/app/vendor/ramsey/uuid/src/Generator/OpenSslGenerator.php -opt/app/vendor/ramsey/uuid/src/Generator/PeclUuidRandomGenerator.php -opt/app/vendor/ramsey/uuid/src/Generator/PeclUuidTimeGenerator.php -opt/app/vendor/ramsey/uuid/src/Generator/RandomBytesGenerator.php -opt/app/vendor/ramsey/uuid/src/Generator/RandomGeneratorFactory.php -opt/app/vendor/ramsey/uuid/src/Generator/RandomGeneratorInterface.php -opt/app/vendor/ramsey/uuid/src/Generator/RandomLibAdapter.php -opt/app/vendor/ramsey/uuid/src/Generator/SodiumRandomGenerator.php -opt/app/vendor/ramsey/uuid/src/Generator/TimeGeneratorFactory.php -opt/app/vendor/ramsey/uuid/src/Generator/TimeGeneratorInterface.php -opt/app/vendor/ramsey/uuid/src/Provider/Node/FallbackNodeProvider.php -opt/app/vendor/ramsey/uuid/src/Provider/Node/RandomNodeProvider.php -opt/app/vendor/ramsey/uuid/src/Provider/Node/SystemNodeProvider.php -opt/app/vendor/ramsey/uuid/src/Provider/NodeProviderInterface.php -opt/app/vendor/ramsey/uuid/src/Provider/Time/FixedTimeProvider.php -opt/app/vendor/ramsey/uuid/src/Provider/Time/SystemTimeProvider.php -opt/app/vendor/ramsey/uuid/src/Provider/TimeProviderInterface.php -opt/app/vendor/ramsey/uuid/src/Uuid.php -opt/app/vendor/ramsey/uuid/src/UuidFactory.php -opt/app/vendor/ramsey/uuid/src/UuidFactoryInterface.php -opt/app/vendor/ramsey/uuid/src/UuidInterface.php -opt/app/vendor/rcrowe/twigbridge/CHANGELOG.md -opt/app/vendor/rcrowe/twigbridge/LICENSE -opt/app/vendor/rcrowe/twigbridge/README.md -opt/app/vendor/rcrowe/twigbridge/UPGRADE.md -opt/app/vendor/rcrowe/twigbridge/composer.json -opt/app/vendor/rcrowe/twigbridge/config/twigbridge.php -opt/app/vendor/rcrowe/twigbridge/src/Bridge.php -opt/app/vendor/rcrowe/twigbridge/src/Command/Clean.php -opt/app/vendor/rcrowe/twigbridge/src/Command/Lint.php -opt/app/vendor/rcrowe/twigbridge/src/Command/TwigBridge.php -opt/app/vendor/rcrowe/twigbridge/src/Engine/Compiler.php -opt/app/vendor/rcrowe/twigbridge/src/Engine/Twig.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Bridge/Former.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Laravel/Auth.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Laravel/Config.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Laravel/Dump.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Laravel/Form.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Laravel/Gate.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Laravel/Html.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Laravel/Input.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Laravel/Legacy/Facades.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Laravel/Session.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Laravel/Str.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Laravel/Translator.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Laravel/Url.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Loader/Facade/Caller.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Loader/Facades.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Loader/Filters.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Loader/Functions.php -opt/app/vendor/rcrowe/twigbridge/src/Extension/Loader/Loader.php -opt/app/vendor/rcrowe/twigbridge/src/Facade/Twig.php -opt/app/vendor/rcrowe/twigbridge/src/ServiceProvider.php -opt/app/vendor/rcrowe/twigbridge/src/Twig/Globals.php -opt/app/vendor/rcrowe/twigbridge/src/Twig/Loader.php -opt/app/vendor/rcrowe/twigbridge/src/Twig/Template.php -opt/app/vendor/swiftmailer/swiftmailer/.gitattributes -opt/app/vendor/swiftmailer/swiftmailer/.github/ISSUE_TEMPLATE.md -opt/app/vendor/swiftmailer/swiftmailer/.github/PULL_REQUEST_TEMPLATE.md -opt/app/vendor/swiftmailer/swiftmailer/.php_cs.dist -opt/app/vendor/swiftmailer/swiftmailer/CHANGES -opt/app/vendor/swiftmailer/swiftmailer/LICENSE -opt/app/vendor/swiftmailer/swiftmailer/README -opt/app/vendor/swiftmailer/swiftmailer/composer.json -opt/app/vendor/swiftmailer/swiftmailer/doc/headers.rst -opt/app/vendor/swiftmailer/swiftmailer/doc/index.rst -opt/app/vendor/swiftmailer/swiftmailer/doc/introduction.rst -opt/app/vendor/swiftmailer/swiftmailer/doc/japanese.rst -opt/app/vendor/swiftmailer/swiftmailer/doc/messages.rst -opt/app/vendor/swiftmailer/swiftmailer/doc/plugins.rst -opt/app/vendor/swiftmailer/swiftmailer/doc/sending.rst -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/AddressEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/AddressEncoder/IdnAddressEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/AddressEncoder/Utf8AddressEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/AddressEncoderException.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Attachment.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/AbstractFilterableInputStream.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/ArrayByteStream.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/FileByteStream.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/TemporaryFileByteStream.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/GenericFixedWidthReader.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/UsAsciiReader.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/Utf8Reader.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReaderFactory.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReaderFactory/SimpleCharacterReaderFactory.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream/ArrayCharacterStream.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream/NgCharacterStream.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ConfigurableSpool.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/DependencyContainer.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/DependencyException.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/EmbeddedFile.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/Base64Encoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/QpEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/Rfc2231Encoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/CommandEvent.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/CommandListener.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/Event.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventDispatcher.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventListener.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventObject.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/ResponseEvent.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/ResponseListener.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/SendEvent.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/SendListener.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/SimpleEventDispatcher.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportChangeEvent.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportChangeListener.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportExceptionEvent.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportExceptionListener.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FailoverTransport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FileSpool.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FileStream.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Filterable.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/IdGenerator.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Image.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/InputByteStream.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/IoException.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/ArrayKeyCache.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/DiskKeyCache.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/KeyCacheInputStream.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/NullKeyCache.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/SimpleKeyCacheInputStream.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/LoadBalancedTransport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer/ArrayRecipientIterator.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer/RecipientIterator.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/MemorySpool.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Message.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Attachment.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/CharsetObserver.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/Base64ContentEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/NativeQpContentEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/NullContentEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/PlainContentEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoderProxy.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/RawContentEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/EmbeddedFile.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/EncodingObserver.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Header.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/Base64HeaderEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/QpHeaderEncoder.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/AbstractHeader.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/DateHeader.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/IdentificationHeader.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/MailboxHeader.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/OpenDKIMHeader.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/ParameterizedHeader.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/PathHeader.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/UnstructuredHeader.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/IdGenerator.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/MimePart.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderFactory.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderSet.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleMessage.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleMimeEntity.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/MimePart.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/NullTransport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/OutputByteStream.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/AntiFloodPlugin.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/BandwidthMonitorPlugin.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Decorator/Replacements.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/DecoratorPlugin.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ImpersonatePlugin.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Logger.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/LoggerPlugin.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Loggers/ArrayLogger.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Loggers/EchoLogger.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/MessageLogger.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Connection.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Exception.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/PopBeforeSmtpPlugin.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/RedirectingPlugin.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporter.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ReporterPlugin.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporters/HitReporter.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporters/HtmlReporter.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Sleeper.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ThrottlerPlugin.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Timer.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Preferences.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ReplacementFilterFactory.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/RfcComplianceException.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SendmailTransport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signer.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/BodySigner.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/DKIMSigner.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/DomainKeySigner.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/HeaderSigner.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/OpenDKIMSigner.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/SMimeSigner.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SmtpTransport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Spool.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SpoolTransport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilter.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/ByteArrayReplacementFilter.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilter.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilterFactory.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SwiftException.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/AbstractSmtpTransport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/CramMd5Authenticator.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/LoginAuthenticator.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/NTLMAuthenticator.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/PlainAuthenticator.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/XOAuth2Authenticator.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/AuthHandler.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Authenticator.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/EightBitMimeHandler.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/SmtpUtf8Handler.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/EsmtpHandler.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/EsmtpTransport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/FailoverTransport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/IoBuffer.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/LoadBalancedTransport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/NullTransport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SendmailTransport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SmtpAgent.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SpoolTransport.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/StreamBuffer.php -opt/app/vendor/swiftmailer/swiftmailer/lib/classes/Swift/TransportException.php -opt/app/vendor/swiftmailer/swiftmailer/lib/dependency_maps/cache_deps.php -opt/app/vendor/swiftmailer/swiftmailer/lib/dependency_maps/message_deps.php -opt/app/vendor/swiftmailer/swiftmailer/lib/dependency_maps/mime_deps.php -opt/app/vendor/swiftmailer/swiftmailer/lib/dependency_maps/transport_deps.php -opt/app/vendor/swiftmailer/swiftmailer/lib/mime_types.php -opt/app/vendor/swiftmailer/swiftmailer/lib/preferences.php -opt/app/vendor/swiftmailer/swiftmailer/lib/swift_required.php -opt/app/vendor/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php -opt/app/vendor/swiftmailer/swiftmailer/phpunit.xml.dist -opt/app/vendor/swiftmailer/swiftmailer/tests/IdenticalBinaryConstraint.php -opt/app/vendor/swiftmailer/swiftmailer/tests/StreamCollector.php -opt/app/vendor/swiftmailer/swiftmailer/tests/SwiftMailerSmokeTestCase.php -opt/app/vendor/swiftmailer/swiftmailer/tests/SwiftMailerTestCase.php -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/iso-2022-jp/one.txt -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/iso-8859-1/one.txt -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/utf-8/one.txt -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/utf-8/three.txt -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/utf-8/two.txt -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/dkim/dkim.test.priv -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/dkim/dkim.test.pub -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/files/data.txt -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/ca.crt -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/ca.key -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/create-cert.sh -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt.crt -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt.key -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt2.crt -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt2.key -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/intermediate.crt -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/intermediate.key -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign.crt -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign.key -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign2.crt -opt/app/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign2.key -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance.conf.php.default -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/AttachmentAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/ByteStream/FileByteStreamAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/CharacterReaderFactory/SimpleCharacterReaderFactoryAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/DependencyContainerAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/EmbeddedFileAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Base64EncoderAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/QpEncoderAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Rfc2231EncoderAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/KeyCache/ArrayKeyCacheAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/KeyCache/DiskKeyCacheAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MessageAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/AttachmentAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/Base64ContentEncoderAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/NativeQpContentEncoderAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/PlainContentEncoderAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/QpContentEncoderAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/EmbeddedFileAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/HeaderEncoder/Base64HeaderEncoderAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/MimePartAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/SimpleMessageAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MimePartAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/AbstractStreamBufferAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/BasicSocketAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/ProcessAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SocketTimeoutTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SslSocketAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/TlsSocketAcceptanceTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bootstrap.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug111Test.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug118Test.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug206Test.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug274Test.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug34Test.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug35Test.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug38Test.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug518Test.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug51Test.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug534Test.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug650Test.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug71Test.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug76Test.php -opt/app/vendor/swiftmailer/swiftmailer/tests/bug/Swift/BugFileByteStreamConsecutiveReadCallsTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/fixtures/MimeEntityFixture.php -opt/app/vendor/swiftmailer/swiftmailer/tests/smoke.conf.php.default -opt/app/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/AttachmentSmokeTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/BasicSmokeTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/HtmlWithAttachmentSmokeTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/InternationalSmokeTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/ByteStream/ArrayByteStreamTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterReader/GenericFixedWidthReaderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterReader/UsAsciiReaderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterReader/Utf8ReaderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterStream/ArrayCharacterStreamTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/DependencyContainerTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Encoder/Base64EncoderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Encoder/QpEncoderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Encoder/Rfc2231EncoderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/CommandEventTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/EventObjectTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/ResponseEventTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/SendEventTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/SimpleEventDispatcherTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/TransportChangeEventTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/TransportExceptionEventTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/KeyCache/ArrayKeyCacheTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/KeyCache/SimpleKeyCacheInputStreamTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mailer/ArrayRecipientIteratorTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/MailerTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/MessageTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/AbstractMimeEntityTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/AttachmentTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/Base64ContentEncoderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/PlainContentEncoderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/QpContentEncoderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/EmbeddedFileTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/Base64HeaderEncoderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/QpHeaderEncoderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/DateHeaderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/IdentificationHeaderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/MailboxHeaderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/ParameterizedHeaderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/PathHeaderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/UnstructuredHeaderTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/IdGeneratorTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/MimePartTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleHeaderFactoryTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleHeaderSetTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleMessageTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleMimeEntityTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/AntiFloodPluginTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/BandwidthMonitorPluginTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/DecoratorPluginTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/LoggerPluginTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Loggers/ArrayLoggerTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Loggers/EchoLoggerTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/PopBeforeSmtpPluginTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/RedirectingPluginTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/ReporterPluginTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Reporters/HitReporterTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Reporters/HtmlReporterTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/ThrottlerPluginTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/DKIMSignerTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/OpenDKIMSignerTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/SMimeSignerTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/StreamFilters/ByteArrayReplacementFilterTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/StreamFilters/StringReplacementFilterFactoryTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/StreamFilters/StringReplacementFilterTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpEventSupportTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/CramMd5AuthenticatorTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/LoginAuthenticatorTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/NTLMAuthenticatorTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/PlainAuthenticatorTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/AuthHandlerTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/EsmtpTransport/ExtensionSupportTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/EsmtpTransportTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/FailoverTransportTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/LoadBalancedTransportTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/SendmailTransportTest.php -opt/app/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/StreamBufferTest.php -opt/app/vendor/symfony/console/Application.php -opt/app/vendor/symfony/console/CHANGELOG.md -opt/app/vendor/symfony/console/Command/Command.php -opt/app/vendor/symfony/console/Command/HelpCommand.php -opt/app/vendor/symfony/console/Command/ListCommand.php -opt/app/vendor/symfony/console/Command/LockableTrait.php -opt/app/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php -opt/app/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php -opt/app/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php -opt/app/vendor/symfony/console/ConsoleEvents.php -opt/app/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php -opt/app/vendor/symfony/console/Descriptor/ApplicationDescription.php -opt/app/vendor/symfony/console/Descriptor/Descriptor.php -opt/app/vendor/symfony/console/Descriptor/DescriptorInterface.php -opt/app/vendor/symfony/console/Descriptor/JsonDescriptor.php -opt/app/vendor/symfony/console/Descriptor/MarkdownDescriptor.php -opt/app/vendor/symfony/console/Descriptor/TextDescriptor.php -opt/app/vendor/symfony/console/Descriptor/XmlDescriptor.php -opt/app/vendor/symfony/console/Event/ConsoleCommandEvent.php -opt/app/vendor/symfony/console/Event/ConsoleErrorEvent.php -opt/app/vendor/symfony/console/Event/ConsoleEvent.php -opt/app/vendor/symfony/console/Event/ConsoleTerminateEvent.php -opt/app/vendor/symfony/console/EventListener/ErrorListener.php -opt/app/vendor/symfony/console/Exception/CommandNotFoundException.php -opt/app/vendor/symfony/console/Exception/ExceptionInterface.php -opt/app/vendor/symfony/console/Exception/InvalidArgumentException.php -opt/app/vendor/symfony/console/Exception/InvalidOptionException.php -opt/app/vendor/symfony/console/Exception/LogicException.php -opt/app/vendor/symfony/console/Exception/NamespaceNotFoundException.php -opt/app/vendor/symfony/console/Exception/RuntimeException.php -opt/app/vendor/symfony/console/Formatter/OutputFormatter.php -opt/app/vendor/symfony/console/Formatter/OutputFormatterInterface.php -opt/app/vendor/symfony/console/Formatter/OutputFormatterStyle.php -opt/app/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php -opt/app/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php -opt/app/vendor/symfony/console/Formatter/WrappableOutputFormatterInterface.php -opt/app/vendor/symfony/console/Helper/DebugFormatterHelper.php -opt/app/vendor/symfony/console/Helper/DescriptorHelper.php -opt/app/vendor/symfony/console/Helper/FormatterHelper.php -opt/app/vendor/symfony/console/Helper/Helper.php -opt/app/vendor/symfony/console/Helper/HelperInterface.php -opt/app/vendor/symfony/console/Helper/HelperSet.php -opt/app/vendor/symfony/console/Helper/InputAwareHelper.php -opt/app/vendor/symfony/console/Helper/ProcessHelper.php -opt/app/vendor/symfony/console/Helper/ProgressBar.php -opt/app/vendor/symfony/console/Helper/ProgressIndicator.php -opt/app/vendor/symfony/console/Helper/QuestionHelper.php -opt/app/vendor/symfony/console/Helper/SymfonyQuestionHelper.php -opt/app/vendor/symfony/console/Helper/Table.php -opt/app/vendor/symfony/console/Helper/TableCell.php -opt/app/vendor/symfony/console/Helper/TableRows.php -opt/app/vendor/symfony/console/Helper/TableSeparator.php -opt/app/vendor/symfony/console/Helper/TableStyle.php -opt/app/vendor/symfony/console/Input/ArgvInput.php -opt/app/vendor/symfony/console/Input/ArrayInput.php -opt/app/vendor/symfony/console/Input/Input.php -opt/app/vendor/symfony/console/Input/InputArgument.php -opt/app/vendor/symfony/console/Input/InputAwareInterface.php -opt/app/vendor/symfony/console/Input/InputDefinition.php -opt/app/vendor/symfony/console/Input/InputInterface.php -opt/app/vendor/symfony/console/Input/InputOption.php -opt/app/vendor/symfony/console/Input/StreamableInputInterface.php -opt/app/vendor/symfony/console/Input/StringInput.php -opt/app/vendor/symfony/console/LICENSE -opt/app/vendor/symfony/console/Logger/ConsoleLogger.php -opt/app/vendor/symfony/console/Output/BufferedOutput.php -opt/app/vendor/symfony/console/Output/ConsoleOutput.php -opt/app/vendor/symfony/console/Output/ConsoleOutputInterface.php -opt/app/vendor/symfony/console/Output/ConsoleSectionOutput.php -opt/app/vendor/symfony/console/Output/NullOutput.php -opt/app/vendor/symfony/console/Output/Output.php -opt/app/vendor/symfony/console/Output/OutputInterface.php -opt/app/vendor/symfony/console/Output/StreamOutput.php -opt/app/vendor/symfony/console/Question/ChoiceQuestion.php -opt/app/vendor/symfony/console/Question/ConfirmationQuestion.php -opt/app/vendor/symfony/console/Question/Question.php -opt/app/vendor/symfony/console/README.md -opt/app/vendor/symfony/console/Resources/bin/hiddeninput.exe -opt/app/vendor/symfony/console/Style/OutputStyle.php -opt/app/vendor/symfony/console/Style/StyleInterface.php -opt/app/vendor/symfony/console/Style/SymfonyStyle.php -opt/app/vendor/symfony/console/Terminal.php -opt/app/vendor/symfony/console/Tester/ApplicationTester.php -opt/app/vendor/symfony/console/Tester/CommandTester.php -opt/app/vendor/symfony/console/Tester/TesterTrait.php -opt/app/vendor/symfony/console/Tests/ApplicationTest.php -opt/app/vendor/symfony/console/Tests/Command/CommandTest.php -opt/app/vendor/symfony/console/Tests/Command/HelpCommandTest.php -opt/app/vendor/symfony/console/Tests/Command/ListCommandTest.php -opt/app/vendor/symfony/console/Tests/Command/LockableTraitTest.php -opt/app/vendor/symfony/console/Tests/CommandLoader/ContainerCommandLoaderTest.php -opt/app/vendor/symfony/console/Tests/CommandLoader/FactoryCommandLoaderTest.php -opt/app/vendor/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php -opt/app/vendor/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php -opt/app/vendor/symfony/console/Tests/Descriptor/JsonDescriptorTest.php -opt/app/vendor/symfony/console/Tests/Descriptor/MarkdownDescriptorTest.php -opt/app/vendor/symfony/console/Tests/Descriptor/ObjectsProvider.php -opt/app/vendor/symfony/console/Tests/Descriptor/TextDescriptorTest.php -opt/app/vendor/symfony/console/Tests/Descriptor/XmlDescriptorTest.php -opt/app/vendor/symfony/console/Tests/EventListener/ErrorListenerTest.php -opt/app/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php -opt/app/vendor/symfony/console/Tests/Fixtures/DescriptorApplication1.php -opt/app/vendor/symfony/console/Tests/Fixtures/DescriptorApplication2.php -opt/app/vendor/symfony/console/Tests/Fixtures/DescriptorApplicationMbString.php -opt/app/vendor/symfony/console/Tests/Fixtures/DescriptorCommand1.php -opt/app/vendor/symfony/console/Tests/Fixtures/DescriptorCommand2.php -opt/app/vendor/symfony/console/Tests/Fixtures/DescriptorCommand3.php -opt/app/vendor/symfony/console/Tests/Fixtures/DescriptorCommand4.php -opt/app/vendor/symfony/console/Tests/Fixtures/DescriptorCommandMbString.php -opt/app/vendor/symfony/console/Tests/Fixtures/DummyOutput.php -opt/app/vendor/symfony/console/Tests/Fixtures/Foo1Command.php -opt/app/vendor/symfony/console/Tests/Fixtures/Foo2Command.php -opt/app/vendor/symfony/console/Tests/Fixtures/Foo3Command.php -opt/app/vendor/symfony/console/Tests/Fixtures/Foo4Command.php -opt/app/vendor/symfony/console/Tests/Fixtures/Foo5Command.php -opt/app/vendor/symfony/console/Tests/Fixtures/Foo6Command.php -opt/app/vendor/symfony/console/Tests/Fixtures/FooCommand.php -opt/app/vendor/symfony/console/Tests/Fixtures/FooLock2Command.php -opt/app/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php -opt/app/vendor/symfony/console/Tests/Fixtures/FooOptCommand.php -opt/app/vendor/symfony/console/Tests/Fixtures/FooSameCaseLowercaseCommand.php -opt/app/vendor/symfony/console/Tests/Fixtures/FooSameCaseUppercaseCommand.php -opt/app/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced1Command.php -opt/app/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php -opt/app/vendor/symfony/console/Tests/Fixtures/FooWithoutAliasCommand.php -opt/app/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_10.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_14.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4_with_iterators.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_5.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/interactive_output_1.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_1.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_10.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_11.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_12.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_13.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_14.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_15.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_16.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_2.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4_with_iterators.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_5.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_7.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_8.txt -opt/app/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_9.txt -opt/app/vendor/symfony/console/Tests/Fixtures/TestCommand.php -opt/app/vendor/symfony/console/Tests/Fixtures/TestTiti.php -opt/app/vendor/symfony/console/Tests/Fixtures/TestToto.php -opt/app/vendor/symfony/console/Tests/Fixtures/application_1.json -opt/app/vendor/symfony/console/Tests/Fixtures/application_1.md -opt/app/vendor/symfony/console/Tests/Fixtures/application_1.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_1.xml -opt/app/vendor/symfony/console/Tests/Fixtures/application_2.json -opt/app/vendor/symfony/console/Tests/Fixtures/application_2.md -opt/app/vendor/symfony/console/Tests/Fixtures/application_2.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_2.xml -opt/app/vendor/symfony/console/Tests/Fixtures/application_filtered_namespace.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_mbstring.md -opt/app/vendor/symfony/console/Tests/Fixtures/application_mbstring.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_renderexception1.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_renderexception3.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_renderexception3decorated.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_renderexception4.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth2.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_renderexception_escapeslines.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_renderexception_linebreaks.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_run1.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_run2.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_run3.txt -opt/app/vendor/symfony/console/Tests/Fixtures/application_run4.txt -opt/app/vendor/symfony/console/Tests/Fixtures/command_1.json -opt/app/vendor/symfony/console/Tests/Fixtures/command_1.md -opt/app/vendor/symfony/console/Tests/Fixtures/command_1.txt -opt/app/vendor/symfony/console/Tests/Fixtures/command_1.xml -opt/app/vendor/symfony/console/Tests/Fixtures/command_2.json -opt/app/vendor/symfony/console/Tests/Fixtures/command_2.md -opt/app/vendor/symfony/console/Tests/Fixtures/command_2.txt -opt/app/vendor/symfony/console/Tests/Fixtures/command_2.xml -opt/app/vendor/symfony/console/Tests/Fixtures/command_mbstring.md -opt/app/vendor/symfony/console/Tests/Fixtures/command_mbstring.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_1.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_1.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_1.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_1.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_2.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_2.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_2.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_3.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_3.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_3.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_3.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_4.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_4.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_4.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_4.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_1.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_1.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_1.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_2.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_2.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_2.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_2.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_3.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_3.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_3.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_3.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_4.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_4.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_4.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_definition_4.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_1.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_1.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_1.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_1.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_2.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_2.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_2.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_2.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_3.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_3.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_3.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_3.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_4.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_4.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_4.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_4.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_5.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_5.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_5.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_5.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_6.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_6.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_6.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_6.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_with_style.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_with_style.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_with_style.xml -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.json -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.txt -opt/app/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.xml -opt/app/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php -opt/app/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleTest.php -opt/app/vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php -opt/app/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php -opt/app/vendor/symfony/console/Tests/Helper/FormatterHelperTest.php -opt/app/vendor/symfony/console/Tests/Helper/HelperSetTest.php -opt/app/vendor/symfony/console/Tests/Helper/HelperTest.php -opt/app/vendor/symfony/console/Tests/Helper/ProcessHelperTest.php -opt/app/vendor/symfony/console/Tests/Helper/ProgressBarTest.php -opt/app/vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php -opt/app/vendor/symfony/console/Tests/Helper/QuestionHelperTest.php -opt/app/vendor/symfony/console/Tests/Helper/SymfonyQuestionHelperTest.php -opt/app/vendor/symfony/console/Tests/Helper/TableStyleTest.php -opt/app/vendor/symfony/console/Tests/Helper/TableTest.php -opt/app/vendor/symfony/console/Tests/Input/ArgvInputTest.php -opt/app/vendor/symfony/console/Tests/Input/ArrayInputTest.php -opt/app/vendor/symfony/console/Tests/Input/InputArgumentTest.php -opt/app/vendor/symfony/console/Tests/Input/InputDefinitionTest.php -opt/app/vendor/symfony/console/Tests/Input/InputOptionTest.php -opt/app/vendor/symfony/console/Tests/Input/InputTest.php -opt/app/vendor/symfony/console/Tests/Input/StringInputTest.php -opt/app/vendor/symfony/console/Tests/Logger/ConsoleLoggerTest.php -opt/app/vendor/symfony/console/Tests/Output/ConsoleOutputTest.php -opt/app/vendor/symfony/console/Tests/Output/ConsoleSectionOutputTest.php -opt/app/vendor/symfony/console/Tests/Output/NullOutputTest.php -opt/app/vendor/symfony/console/Tests/Output/OutputTest.php -opt/app/vendor/symfony/console/Tests/Output/StreamOutputTest.php -opt/app/vendor/symfony/console/Tests/Question/ConfirmationQuestionTest.php -opt/app/vendor/symfony/console/Tests/Style/SymfonyStyleTest.php -opt/app/vendor/symfony/console/Tests/TerminalTest.php -opt/app/vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php -opt/app/vendor/symfony/console/Tests/Tester/CommandTesterTest.php -opt/app/vendor/symfony/console/composer.json -opt/app/vendor/symfony/console/phpunit.xml.dist -opt/app/vendor/symfony/contracts/CHANGELOG.md -opt/app/vendor/symfony/contracts/Cache/CacheInterface.php -opt/app/vendor/symfony/contracts/Cache/CacheTrait.php -opt/app/vendor/symfony/contracts/Cache/CallbackInterface.php -opt/app/vendor/symfony/contracts/Cache/ItemInterface.php -opt/app/vendor/symfony/contracts/Cache/TagAwareCacheInterface.php -opt/app/vendor/symfony/contracts/LICENSE -opt/app/vendor/symfony/contracts/README.md -opt/app/vendor/symfony/contracts/Service/ResetInterface.php -opt/app/vendor/symfony/contracts/Service/ServiceLocatorTrait.php -opt/app/vendor/symfony/contracts/Service/ServiceSubscriberInterface.php -opt/app/vendor/symfony/contracts/Service/ServiceSubscriberTrait.php -opt/app/vendor/symfony/contracts/Tests/Cache/CacheTraitTest.php -opt/app/vendor/symfony/contracts/Tests/Service/ServiceLocatorTest.php -opt/app/vendor/symfony/contracts/Tests/Service/ServiceSubscriberTraitTest.php -opt/app/vendor/symfony/contracts/Tests/Translation/TranslatorTest.php -opt/app/vendor/symfony/contracts/Translation/LocaleAwareInterface.php -opt/app/vendor/symfony/contracts/Translation/TranslatorInterface.php -opt/app/vendor/symfony/contracts/Translation/TranslatorTrait.php -opt/app/vendor/symfony/contracts/composer.json -opt/app/vendor/symfony/contracts/phpunit.xml.dist -opt/app/vendor/symfony/css-selector/CHANGELOG.md -opt/app/vendor/symfony/css-selector/CssSelectorConverter.php -opt/app/vendor/symfony/css-selector/Exception/ExceptionInterface.php -opt/app/vendor/symfony/css-selector/Exception/ExpressionErrorException.php -opt/app/vendor/symfony/css-selector/Exception/InternalErrorException.php -opt/app/vendor/symfony/css-selector/Exception/ParseException.php -opt/app/vendor/symfony/css-selector/Exception/SyntaxErrorException.php -opt/app/vendor/symfony/css-selector/LICENSE -opt/app/vendor/symfony/css-selector/Node/AbstractNode.php -opt/app/vendor/symfony/css-selector/Node/AttributeNode.php -opt/app/vendor/symfony/css-selector/Node/ClassNode.php -opt/app/vendor/symfony/css-selector/Node/CombinedSelectorNode.php -opt/app/vendor/symfony/css-selector/Node/ElementNode.php -opt/app/vendor/symfony/css-selector/Node/FunctionNode.php -opt/app/vendor/symfony/css-selector/Node/HashNode.php -opt/app/vendor/symfony/css-selector/Node/NegationNode.php -opt/app/vendor/symfony/css-selector/Node/NodeInterface.php -opt/app/vendor/symfony/css-selector/Node/PseudoNode.php -opt/app/vendor/symfony/css-selector/Node/SelectorNode.php -opt/app/vendor/symfony/css-selector/Node/Specificity.php -opt/app/vendor/symfony/css-selector/Parser/Handler/CommentHandler.php -opt/app/vendor/symfony/css-selector/Parser/Handler/HandlerInterface.php -opt/app/vendor/symfony/css-selector/Parser/Handler/HashHandler.php -opt/app/vendor/symfony/css-selector/Parser/Handler/IdentifierHandler.php -opt/app/vendor/symfony/css-selector/Parser/Handler/NumberHandler.php -opt/app/vendor/symfony/css-selector/Parser/Handler/StringHandler.php -opt/app/vendor/symfony/css-selector/Parser/Handler/WhitespaceHandler.php -opt/app/vendor/symfony/css-selector/Parser/Parser.php -opt/app/vendor/symfony/css-selector/Parser/ParserInterface.php -opt/app/vendor/symfony/css-selector/Parser/Reader.php -opt/app/vendor/symfony/css-selector/Parser/Shortcut/ClassParser.php -opt/app/vendor/symfony/css-selector/Parser/Shortcut/ElementParser.php -opt/app/vendor/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php -opt/app/vendor/symfony/css-selector/Parser/Shortcut/HashParser.php -opt/app/vendor/symfony/css-selector/Parser/Token.php -opt/app/vendor/symfony/css-selector/Parser/TokenStream.php -opt/app/vendor/symfony/css-selector/Parser/Tokenizer/Tokenizer.php -opt/app/vendor/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php -opt/app/vendor/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php -opt/app/vendor/symfony/css-selector/README.md -opt/app/vendor/symfony/css-selector/Tests/CssSelectorConverterTest.php -opt/app/vendor/symfony/css-selector/Tests/Node/AbstractNodeTest.php -opt/app/vendor/symfony/css-selector/Tests/Node/AttributeNodeTest.php -opt/app/vendor/symfony/css-selector/Tests/Node/ClassNodeTest.php -opt/app/vendor/symfony/css-selector/Tests/Node/CombinedSelectorNodeTest.php -opt/app/vendor/symfony/css-selector/Tests/Node/ElementNodeTest.php -opt/app/vendor/symfony/css-selector/Tests/Node/FunctionNodeTest.php -opt/app/vendor/symfony/css-selector/Tests/Node/HashNodeTest.php -opt/app/vendor/symfony/css-selector/Tests/Node/NegationNodeTest.php -opt/app/vendor/symfony/css-selector/Tests/Node/PseudoNodeTest.php -opt/app/vendor/symfony/css-selector/Tests/Node/SelectorNodeTest.php -opt/app/vendor/symfony/css-selector/Tests/Node/SpecificityTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/Handler/AbstractHandlerTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/Handler/CommentHandlerTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/Handler/HashHandlerTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/Handler/IdentifierHandlerTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/Handler/NumberHandlerTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/Handler/StringHandlerTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/Handler/WhitespaceHandlerTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/ParserTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/ReaderTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/Shortcut/ClassParserTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/Shortcut/ElementParserTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/Shortcut/EmptyStringParserTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/Shortcut/HashParserTest.php -opt/app/vendor/symfony/css-selector/Tests/Parser/TokenStreamTest.php -opt/app/vendor/symfony/css-selector/Tests/XPath/Fixtures/ids.html -opt/app/vendor/symfony/css-selector/Tests/XPath/Fixtures/lang.xml -opt/app/vendor/symfony/css-selector/Tests/XPath/Fixtures/shakespear.html -opt/app/vendor/symfony/css-selector/Tests/XPath/TranslatorTest.php -opt/app/vendor/symfony/css-selector/XPath/Extension/AbstractExtension.php -opt/app/vendor/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php -opt/app/vendor/symfony/css-selector/XPath/Extension/CombinationExtension.php -opt/app/vendor/symfony/css-selector/XPath/Extension/ExtensionInterface.php -opt/app/vendor/symfony/css-selector/XPath/Extension/FunctionExtension.php -opt/app/vendor/symfony/css-selector/XPath/Extension/HtmlExtension.php -opt/app/vendor/symfony/css-selector/XPath/Extension/NodeExtension.php -opt/app/vendor/symfony/css-selector/XPath/Extension/PseudoClassExtension.php -opt/app/vendor/symfony/css-selector/XPath/Translator.php -opt/app/vendor/symfony/css-selector/XPath/TranslatorInterface.php -opt/app/vendor/symfony/css-selector/XPath/XPathExpr.php -opt/app/vendor/symfony/css-selector/composer.json -opt/app/vendor/symfony/css-selector/phpunit.xml.dist -opt/app/vendor/symfony/debug/BufferingLogger.php -opt/app/vendor/symfony/debug/CHANGELOG.md -opt/app/vendor/symfony/debug/Debug.php -opt/app/vendor/symfony/debug/DebugClassLoader.php -opt/app/vendor/symfony/debug/ErrorHandler.php -opt/app/vendor/symfony/debug/Exception/ClassNotFoundException.php -opt/app/vendor/symfony/debug/Exception/FatalErrorException.php -opt/app/vendor/symfony/debug/Exception/FatalThrowableError.php -opt/app/vendor/symfony/debug/Exception/FlattenException.php -opt/app/vendor/symfony/debug/Exception/OutOfMemoryException.php -opt/app/vendor/symfony/debug/Exception/SilencedErrorContext.php -opt/app/vendor/symfony/debug/Exception/UndefinedFunctionException.php -opt/app/vendor/symfony/debug/Exception/UndefinedMethodException.php -opt/app/vendor/symfony/debug/ExceptionHandler.php -opt/app/vendor/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php -opt/app/vendor/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php -opt/app/vendor/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php -opt/app/vendor/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php -opt/app/vendor/symfony/debug/LICENSE -opt/app/vendor/symfony/debug/README.md -opt/app/vendor/symfony/debug/Tests/DebugClassLoaderTest.php -opt/app/vendor/symfony/debug/Tests/ErrorHandlerTest.php -opt/app/vendor/symfony/debug/Tests/Exception/FlattenExceptionTest.php -opt/app/vendor/symfony/debug/Tests/ExceptionHandlerTest.php -opt/app/vendor/symfony/debug/Tests/FatalErrorHandler/ClassNotFoundFatalErrorHandlerTest.php -opt/app/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedFunctionFatalErrorHandlerTest.php -opt/app/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedMethodFatalErrorHandlerTest.php -opt/app/vendor/symfony/debug/Tests/Fixtures/AnnotatedClass.php -opt/app/vendor/symfony/debug/Tests/Fixtures/ClassAlias.php -opt/app/vendor/symfony/debug/Tests/Fixtures/ClassWithAnnotatedParameters.php -opt/app/vendor/symfony/debug/Tests/Fixtures/DefinitionInEvaluatedCode.php -opt/app/vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php -opt/app/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php -opt/app/vendor/symfony/debug/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php -opt/app/vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php -opt/app/vendor/symfony/debug/Tests/Fixtures/FinalClasses.php -opt/app/vendor/symfony/debug/Tests/Fixtures/FinalMethod.php -opt/app/vendor/symfony/debug/Tests/Fixtures/FinalMethod2Trait.php -opt/app/vendor/symfony/debug/Tests/Fixtures/InterfaceWithAnnotatedParameters.php -opt/app/vendor/symfony/debug/Tests/Fixtures/InternalClass.php -opt/app/vendor/symfony/debug/Tests/Fixtures/InternalInterface.php -opt/app/vendor/symfony/debug/Tests/Fixtures/InternalTrait.php -opt/app/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php -opt/app/vendor/symfony/debug/Tests/Fixtures/LoggerThatSetAnErrorHandler.php -opt/app/vendor/symfony/debug/Tests/Fixtures/NonDeprecatedInterface.php -opt/app/vendor/symfony/debug/Tests/Fixtures/PEARClass.php -opt/app/vendor/symfony/debug/Tests/Fixtures/SubClassWithAnnotatedParameters.php -opt/app/vendor/symfony/debug/Tests/Fixtures/Throwing.php -opt/app/vendor/symfony/debug/Tests/Fixtures/ToStringThrower.php -opt/app/vendor/symfony/debug/Tests/Fixtures/TraitWithAnnotatedParameters.php -opt/app/vendor/symfony/debug/Tests/Fixtures/TraitWithInternalMethod.php -opt/app/vendor/symfony/debug/Tests/Fixtures/casemismatch.php -opt/app/vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php -opt/app/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php -opt/app/vendor/symfony/debug/Tests/Fixtures/reallyNotPsr0.php -opt/app/vendor/symfony/debug/Tests/Fixtures2/RequiredTwice.php -opt/app/vendor/symfony/debug/Tests/HeaderMock.php -opt/app/vendor/symfony/debug/Tests/MockExceptionHandler.php -opt/app/vendor/symfony/debug/Tests/phpt/debug_class_loader.phpt -opt/app/vendor/symfony/debug/Tests/phpt/decorate_exception_hander.phpt -opt/app/vendor/symfony/debug/Tests/phpt/exception_rethrown.phpt -opt/app/vendor/symfony/debug/Tests/phpt/fatal_with_nested_handlers.phpt -opt/app/vendor/symfony/debug/composer.json -opt/app/vendor/symfony/debug/phpunit.xml.dist -opt/app/vendor/symfony/event-dispatcher/CHANGELOG.md -opt/app/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php -opt/app/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php -opt/app/vendor/symfony/event-dispatcher/Debug/WrappedListener.php -opt/app/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php -opt/app/vendor/symfony/event-dispatcher/Event.php -opt/app/vendor/symfony/event-dispatcher/EventDispatcher.php -opt/app/vendor/symfony/event-dispatcher/EventDispatcherInterface.php -opt/app/vendor/symfony/event-dispatcher/EventSubscriberInterface.php -opt/app/vendor/symfony/event-dispatcher/GenericEvent.php -opt/app/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php -opt/app/vendor/symfony/event-dispatcher/LICENSE -opt/app/vendor/symfony/event-dispatcher/README.md -opt/app/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php -opt/app/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php -opt/app/vendor/symfony/event-dispatcher/Tests/Debug/WrappedListenerTest.php -opt/app/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php -opt/app/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php -opt/app/vendor/symfony/event-dispatcher/Tests/EventTest.php -opt/app/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php -opt/app/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php -opt/app/vendor/symfony/event-dispatcher/composer.json -opt/app/vendor/symfony/event-dispatcher/phpunit.xml.dist -opt/app/vendor/symfony/finder/CHANGELOG.md -opt/app/vendor/symfony/finder/Comparator/Comparator.php -opt/app/vendor/symfony/finder/Comparator/DateComparator.php -opt/app/vendor/symfony/finder/Comparator/NumberComparator.php -opt/app/vendor/symfony/finder/Exception/AccessDeniedException.php -opt/app/vendor/symfony/finder/Finder.php -opt/app/vendor/symfony/finder/Glob.php -opt/app/vendor/symfony/finder/Iterator/CustomFilterIterator.php -opt/app/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php -opt/app/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php -opt/app/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php -opt/app/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php -opt/app/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php -opt/app/vendor/symfony/finder/Iterator/FilenameFilterIterator.php -opt/app/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php -opt/app/vendor/symfony/finder/Iterator/PathFilterIterator.php -opt/app/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php -opt/app/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php -opt/app/vendor/symfony/finder/Iterator/SortableIterator.php -opt/app/vendor/symfony/finder/LICENSE -opt/app/vendor/symfony/finder/README.md -opt/app/vendor/symfony/finder/SplFileInfo.php -opt/app/vendor/symfony/finder/Tests/Comparator/ComparatorTest.php -opt/app/vendor/symfony/finder/Tests/Comparator/DateComparatorTest.php -opt/app/vendor/symfony/finder/Tests/Comparator/NumberComparatorTest.php -opt/app/vendor/symfony/finder/Tests/FinderTest.php -opt/app/vendor/symfony/finder/Tests/Fixtures/.dot/a -opt/app/vendor/symfony/finder/Tests/Fixtures/.dot/b/c.neon -opt/app/vendor/symfony/finder/Tests/Fixtures/.dot/b/d.neon -opt/app/vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat -opt/app/vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat -opt/app/vendor/symfony/finder/Tests/Fixtures/A/a.dat -opt/app/vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy -opt/app/vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy -opt/app/vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy -opt/app/vendor/symfony/finder/Tests/Fixtures/dolor.txt -opt/app/vendor/symfony/finder/Tests/Fixtures/ipsum.txt -opt/app/vendor/symfony/finder/Tests/Fixtures/lorem.txt -opt/app/vendor/symfony/finder/Tests/Fixtures/one/.dot -opt/app/vendor/symfony/finder/Tests/Fixtures/one/a -opt/app/vendor/symfony/finder/Tests/Fixtures/one/b/c.neon -opt/app/vendor/symfony/finder/Tests/Fixtures/one/b/d.neon -opt/app/vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat -opt/app/vendor/symfony/finder/Tests/Fixtures/with space/foo.txt -opt/app/vendor/symfony/finder/Tests/GlobTest.php -opt/app/vendor/symfony/finder/Tests/Iterator/CustomFilterIteratorTest.php -opt/app/vendor/symfony/finder/Tests/Iterator/DateRangeFilterIteratorTest.php -opt/app/vendor/symfony/finder/Tests/Iterator/DepthRangeFilterIteratorTest.php -opt/app/vendor/symfony/finder/Tests/Iterator/ExcludeDirectoryFilterIteratorTest.php -opt/app/vendor/symfony/finder/Tests/Iterator/FileTypeFilterIteratorTest.php -opt/app/vendor/symfony/finder/Tests/Iterator/FilecontentFilterIteratorTest.php -opt/app/vendor/symfony/finder/Tests/Iterator/FilenameFilterIteratorTest.php -opt/app/vendor/symfony/finder/Tests/Iterator/Iterator.php -opt/app/vendor/symfony/finder/Tests/Iterator/IteratorTestCase.php -opt/app/vendor/symfony/finder/Tests/Iterator/MockFileListIterator.php -opt/app/vendor/symfony/finder/Tests/Iterator/MockSplFileInfo.php -opt/app/vendor/symfony/finder/Tests/Iterator/MultiplePcreFilterIteratorTest.php -opt/app/vendor/symfony/finder/Tests/Iterator/PathFilterIteratorTest.php -opt/app/vendor/symfony/finder/Tests/Iterator/RealIteratorTestCase.php -opt/app/vendor/symfony/finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php -opt/app/vendor/symfony/finder/Tests/Iterator/SizeRangeFilterIteratorTest.php -opt/app/vendor/symfony/finder/Tests/Iterator/SortableIteratorTest.php -opt/app/vendor/symfony/finder/composer.json -opt/app/vendor/symfony/finder/phpunit.xml.dist -opt/app/vendor/symfony/http-foundation/AcceptHeader.php -opt/app/vendor/symfony/http-foundation/AcceptHeaderItem.php -opt/app/vendor/symfony/http-foundation/ApacheRequest.php -opt/app/vendor/symfony/http-foundation/BinaryFileResponse.php -opt/app/vendor/symfony/http-foundation/CHANGELOG.md -opt/app/vendor/symfony/http-foundation/Cookie.php -opt/app/vendor/symfony/http-foundation/Exception/ConflictingHeadersException.php -opt/app/vendor/symfony/http-foundation/Exception/RequestExceptionInterface.php -opt/app/vendor/symfony/http-foundation/Exception/SuspiciousOperationException.php -opt/app/vendor/symfony/http-foundation/ExpressionRequestMatcher.php -opt/app/vendor/symfony/http-foundation/File/Exception/AccessDeniedException.php -opt/app/vendor/symfony/http-foundation/File/Exception/CannotWriteFileException.php -opt/app/vendor/symfony/http-foundation/File/Exception/ExtensionFileException.php -opt/app/vendor/symfony/http-foundation/File/Exception/FileException.php -opt/app/vendor/symfony/http-foundation/File/Exception/FileNotFoundException.php -opt/app/vendor/symfony/http-foundation/File/Exception/FormSizeFileException.php -opt/app/vendor/symfony/http-foundation/File/Exception/IniSizeFileException.php -opt/app/vendor/symfony/http-foundation/File/Exception/NoFileException.php -opt/app/vendor/symfony/http-foundation/File/Exception/NoTmpDirFileException.php -opt/app/vendor/symfony/http-foundation/File/Exception/PartialFileException.php -opt/app/vendor/symfony/http-foundation/File/Exception/UnexpectedTypeException.php -opt/app/vendor/symfony/http-foundation/File/Exception/UploadException.php -opt/app/vendor/symfony/http-foundation/File/File.php -opt/app/vendor/symfony/http-foundation/File/MimeType/ExtensionGuesser.php -opt/app/vendor/symfony/http-foundation/File/MimeType/ExtensionGuesserInterface.php -opt/app/vendor/symfony/http-foundation/File/MimeType/FileBinaryMimeTypeGuesser.php -opt/app/vendor/symfony/http-foundation/File/MimeType/FileinfoMimeTypeGuesser.php -opt/app/vendor/symfony/http-foundation/File/MimeType/MimeTypeExtensionGuesser.php -opt/app/vendor/symfony/http-foundation/File/MimeType/MimeTypeGuesser.php -opt/app/vendor/symfony/http-foundation/File/MimeType/MimeTypeGuesserInterface.php -opt/app/vendor/symfony/http-foundation/File/Stream.php -opt/app/vendor/symfony/http-foundation/File/UploadedFile.php -opt/app/vendor/symfony/http-foundation/FileBag.php -opt/app/vendor/symfony/http-foundation/HeaderBag.php -opt/app/vendor/symfony/http-foundation/HeaderUtils.php -opt/app/vendor/symfony/http-foundation/IpUtils.php -opt/app/vendor/symfony/http-foundation/JsonResponse.php -opt/app/vendor/symfony/http-foundation/LICENSE -opt/app/vendor/symfony/http-foundation/ParameterBag.php -opt/app/vendor/symfony/http-foundation/README.md -opt/app/vendor/symfony/http-foundation/RedirectResponse.php -opt/app/vendor/symfony/http-foundation/Request.php -opt/app/vendor/symfony/http-foundation/RequestMatcher.php -opt/app/vendor/symfony/http-foundation/RequestMatcherInterface.php -opt/app/vendor/symfony/http-foundation/RequestStack.php -opt/app/vendor/symfony/http-foundation/Response.php -opt/app/vendor/symfony/http-foundation/ResponseHeaderBag.php -opt/app/vendor/symfony/http-foundation/ServerBag.php -opt/app/vendor/symfony/http-foundation/Session/Attribute/AttributeBag.php -opt/app/vendor/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php -opt/app/vendor/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php -opt/app/vendor/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php -opt/app/vendor/symfony/http-foundation/Session/Flash/FlashBag.php -opt/app/vendor/symfony/http-foundation/Session/Flash/FlashBagInterface.php -opt/app/vendor/symfony/http-foundation/Session/Session.php -opt/app/vendor/symfony/http-foundation/Session/SessionBagInterface.php -opt/app/vendor/symfony/http-foundation/Session/SessionBagProxy.php -opt/app/vendor/symfony/http-foundation/Session/SessionInterface.php -opt/app/vendor/symfony/http-foundation/Session/SessionUtils.php -opt/app/vendor/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php -opt/app/vendor/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php -opt/app/vendor/symfony/http-foundation/Session/Storage/Handler/MigratingSessionHandler.php -opt/app/vendor/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php -opt/app/vendor/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php -opt/app/vendor/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php -opt/app/vendor/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php -opt/app/vendor/symfony/http-foundation/Session/Storage/Handler/RedisSessionHandler.php -opt/app/vendor/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php -opt/app/vendor/symfony/http-foundation/Session/Storage/MetadataBag.php -opt/app/vendor/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php -opt/app/vendor/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php -opt/app/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php -opt/app/vendor/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php -opt/app/vendor/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php -opt/app/vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php -opt/app/vendor/symfony/http-foundation/Session/Storage/SessionStorageInterface.php -opt/app/vendor/symfony/http-foundation/StreamedResponse.php -opt/app/vendor/symfony/http-foundation/Tests/AcceptHeaderItemTest.php -opt/app/vendor/symfony/http-foundation/Tests/AcceptHeaderTest.php -opt/app/vendor/symfony/http-foundation/Tests/ApacheRequestTest.php -opt/app/vendor/symfony/http-foundation/Tests/BinaryFileResponseTest.php -opt/app/vendor/symfony/http-foundation/Tests/CookieTest.php -opt/app/vendor/symfony/http-foundation/Tests/ExpressionRequestMatcherTest.php -opt/app/vendor/symfony/http-foundation/Tests/File/FakeFile.php -opt/app/vendor/symfony/http-foundation/Tests/File/FileTest.php -opt/app/vendor/symfony/http-foundation/Tests/File/Fixtures/.unknownextension -opt/app/vendor/symfony/http-foundation/Tests/File/Fixtures/directory/.empty -opt/app/vendor/symfony/http-foundation/Tests/File/Fixtures/other-file.example -opt/app/vendor/symfony/http-foundation/Tests/File/Fixtures/test -opt/app/vendor/symfony/http-foundation/Tests/File/Fixtures/test.gif -opt/app/vendor/symfony/http-foundation/Tests/File/MimeType/MimeTypeTest.php -opt/app/vendor/symfony/http-foundation/Tests/File/UploadedFileTest.php -opt/app/vendor/symfony/http-foundation/Tests/FileBagTest.php -opt/app/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/common.inc -opt/app/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_max_age.expected -opt/app/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_max_age.php -opt/app/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_raw_urlencode.expected -opt/app/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_raw_urlencode.php -opt/app/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_samesite_lax.expected -opt/app/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_samesite_lax.php -opt/app/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_samesite_strict.expected -opt/app/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_samesite_strict.php -opt/app/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_urlencode.expected -opt/app/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_urlencode.php -opt/app/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/invalid_cookie_name.expected -opt/app/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/invalid_cookie_name.php -opt/app/vendor/symfony/http-foundation/Tests/HeaderBagTest.php -opt/app/vendor/symfony/http-foundation/Tests/HeaderUtilsTest.php -opt/app/vendor/symfony/http-foundation/Tests/IpUtilsTest.php -opt/app/vendor/symfony/http-foundation/Tests/JsonResponseTest.php -opt/app/vendor/symfony/http-foundation/Tests/ParameterBagTest.php -opt/app/vendor/symfony/http-foundation/Tests/RedirectResponseTest.php -opt/app/vendor/symfony/http-foundation/Tests/RequestMatcherTest.php -opt/app/vendor/symfony/http-foundation/Tests/RequestStackTest.php -opt/app/vendor/symfony/http-foundation/Tests/RequestTest.php -opt/app/vendor/symfony/http-foundation/Tests/ResponseFunctionalTest.php -opt/app/vendor/symfony/http-foundation/Tests/ResponseHeaderBagTest.php -opt/app/vendor/symfony/http-foundation/Tests/ResponseTest.php -opt/app/vendor/symfony/http-foundation/Tests/ResponseTestCase.php -opt/app/vendor/symfony/http-foundation/Tests/ServerBagTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Attribute/AttributeBagTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Attribute/NamespacedAttributeBagTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Flash/AutoExpireFlashBagTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Flash/FlashBagTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/SessionTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/AbstractRedisSessionHandlerTestCase.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/AbstractSessionHandlerTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/common.inc -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/empty_destroys.expected -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/empty_destroys.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/read_only.expected -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/read_only.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/regenerate.expected -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/regenerate.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/storage.expected -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/storage.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/with_cookie.expected -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/with_cookie.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/with_cookie_and_session.expected -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/with_cookie_and_session.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/with_samesite.expected -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/with_samesite.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/with_samesite_and_migration.expected -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/with_samesite_and_migration.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/MemcachedSessionHandlerTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/MigratingSessionHandlerTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/MongoDbSessionHandlerTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/NativeFileSessionHandlerTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/NullSessionHandlerTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/PdoSessionHandlerTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/PredisClusterSessionHandlerTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/PredisSessionHandlerTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/RedisArraySessionHandlerTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/RedisClusterSessionHandlerTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/RedisSessionHandlerTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/StrictSessionHandlerTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/MetadataBagTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/MockArraySessionStorageTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/MockFileSessionStorageTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/NativeSessionStorageTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/PhpBridgeSessionStorageTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Proxy/AbstractProxyTest.php -opt/app/vendor/symfony/http-foundation/Tests/Session/Storage/Proxy/SessionHandlerProxyTest.php -opt/app/vendor/symfony/http-foundation/Tests/StreamedResponseTest.php -opt/app/vendor/symfony/http-foundation/Tests/schema/http-status-codes.rng -opt/app/vendor/symfony/http-foundation/Tests/schema/iana-registry.rng -opt/app/vendor/symfony/http-foundation/composer.json -opt/app/vendor/symfony/http-foundation/phpunit.xml.dist -opt/app/vendor/symfony/http-kernel/Bundle/Bundle.php -opt/app/vendor/symfony/http-kernel/Bundle/BundleInterface.php -opt/app/vendor/symfony/http-kernel/CHANGELOG.md -opt/app/vendor/symfony/http-kernel/CacheClearer/CacheClearerInterface.php -opt/app/vendor/symfony/http-kernel/CacheClearer/ChainCacheClearer.php -opt/app/vendor/symfony/http-kernel/CacheClearer/Psr6CacheClearer.php -opt/app/vendor/symfony/http-kernel/CacheWarmer/CacheWarmer.php -opt/app/vendor/symfony/http-kernel/CacheWarmer/CacheWarmerAggregate.php -opt/app/vendor/symfony/http-kernel/CacheWarmer/CacheWarmerInterface.php -opt/app/vendor/symfony/http-kernel/CacheWarmer/WarmableInterface.php -opt/app/vendor/symfony/http-kernel/Client.php -opt/app/vendor/symfony/http-kernel/Config/FileLocator.php -opt/app/vendor/symfony/http-kernel/Controller/ArgumentResolver.php -opt/app/vendor/symfony/http-kernel/Controller/ArgumentResolver/DefaultValueResolver.php -opt/app/vendor/symfony/http-kernel/Controller/ArgumentResolver/RequestAttributeValueResolver.php -opt/app/vendor/symfony/http-kernel/Controller/ArgumentResolver/RequestValueResolver.php -opt/app/vendor/symfony/http-kernel/Controller/ArgumentResolver/ServiceValueResolver.php -opt/app/vendor/symfony/http-kernel/Controller/ArgumentResolver/SessionValueResolver.php -opt/app/vendor/symfony/http-kernel/Controller/ArgumentResolver/TraceableValueResolver.php -opt/app/vendor/symfony/http-kernel/Controller/ArgumentResolver/VariadicValueResolver.php -opt/app/vendor/symfony/http-kernel/Controller/ArgumentResolverInterface.php -opt/app/vendor/symfony/http-kernel/Controller/ArgumentValueResolverInterface.php -opt/app/vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php -opt/app/vendor/symfony/http-kernel/Controller/ControllerReference.php -opt/app/vendor/symfony/http-kernel/Controller/ControllerResolver.php -opt/app/vendor/symfony/http-kernel/Controller/ControllerResolverInterface.php -opt/app/vendor/symfony/http-kernel/Controller/TraceableArgumentResolver.php -opt/app/vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php -opt/app/vendor/symfony/http-kernel/ControllerMetadata/ArgumentMetadata.php -opt/app/vendor/symfony/http-kernel/ControllerMetadata/ArgumentMetadataFactory.php -opt/app/vendor/symfony/http-kernel/ControllerMetadata/ArgumentMetadataFactoryInterface.php -opt/app/vendor/symfony/http-kernel/DataCollector/AjaxDataCollector.php -opt/app/vendor/symfony/http-kernel/DataCollector/ConfigDataCollector.php -opt/app/vendor/symfony/http-kernel/DataCollector/DataCollector.php -opt/app/vendor/symfony/http-kernel/DataCollector/DataCollectorInterface.php -opt/app/vendor/symfony/http-kernel/DataCollector/DumpDataCollector.php -opt/app/vendor/symfony/http-kernel/DataCollector/EventDataCollector.php -opt/app/vendor/symfony/http-kernel/DataCollector/ExceptionDataCollector.php -opt/app/vendor/symfony/http-kernel/DataCollector/LateDataCollectorInterface.php -opt/app/vendor/symfony/http-kernel/DataCollector/LoggerDataCollector.php -opt/app/vendor/symfony/http-kernel/DataCollector/MemoryDataCollector.php -opt/app/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php -opt/app/vendor/symfony/http-kernel/DataCollector/RouterDataCollector.php -opt/app/vendor/symfony/http-kernel/DataCollector/TimeDataCollector.php -opt/app/vendor/symfony/http-kernel/Debug/FileLinkFormatter.php -opt/app/vendor/symfony/http-kernel/Debug/TraceableEventDispatcher.php -opt/app/vendor/symfony/http-kernel/DependencyInjection/AddAnnotatedClassesToCachePass.php -opt/app/vendor/symfony/http-kernel/DependencyInjection/ConfigurableExtension.php -opt/app/vendor/symfony/http-kernel/DependencyInjection/ControllerArgumentValueResolverPass.php -opt/app/vendor/symfony/http-kernel/DependencyInjection/Extension.php -opt/app/vendor/symfony/http-kernel/DependencyInjection/FragmentRendererPass.php -opt/app/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php -opt/app/vendor/symfony/http-kernel/DependencyInjection/LoggerPass.php -opt/app/vendor/symfony/http-kernel/DependencyInjection/MergeExtensionConfigurationPass.php -opt/app/vendor/symfony/http-kernel/DependencyInjection/RegisterControllerArgumentLocatorsPass.php -opt/app/vendor/symfony/http-kernel/DependencyInjection/RemoveEmptyControllerArgumentLocatorsPass.php -opt/app/vendor/symfony/http-kernel/DependencyInjection/ResettableServicePass.php -opt/app/vendor/symfony/http-kernel/DependencyInjection/ServicesResetter.php -opt/app/vendor/symfony/http-kernel/Event/FilterControllerArgumentsEvent.php -opt/app/vendor/symfony/http-kernel/Event/FilterControllerEvent.php -opt/app/vendor/symfony/http-kernel/Event/FilterResponseEvent.php -opt/app/vendor/symfony/http-kernel/Event/FinishRequestEvent.php -opt/app/vendor/symfony/http-kernel/Event/GetResponseEvent.php -opt/app/vendor/symfony/http-kernel/Event/GetResponseForControllerResultEvent.php -opt/app/vendor/symfony/http-kernel/Event/GetResponseForExceptionEvent.php -opt/app/vendor/symfony/http-kernel/Event/KernelEvent.php -opt/app/vendor/symfony/http-kernel/Event/PostResponseEvent.php -opt/app/vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php -opt/app/vendor/symfony/http-kernel/EventListener/AbstractTestSessionListener.php -opt/app/vendor/symfony/http-kernel/EventListener/AddRequestFormatsListener.php -opt/app/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php -opt/app/vendor/symfony/http-kernel/EventListener/DumpListener.php -opt/app/vendor/symfony/http-kernel/EventListener/ExceptionListener.php -opt/app/vendor/symfony/http-kernel/EventListener/FragmentListener.php -opt/app/vendor/symfony/http-kernel/EventListener/LocaleListener.php -opt/app/vendor/symfony/http-kernel/EventListener/ProfilerListener.php -opt/app/vendor/symfony/http-kernel/EventListener/ResponseListener.php -opt/app/vendor/symfony/http-kernel/EventListener/RouterListener.php -opt/app/vendor/symfony/http-kernel/EventListener/SaveSessionListener.php -opt/app/vendor/symfony/http-kernel/EventListener/SessionListener.php -opt/app/vendor/symfony/http-kernel/EventListener/StreamedResponseListener.php -opt/app/vendor/symfony/http-kernel/EventListener/SurrogateListener.php -opt/app/vendor/symfony/http-kernel/EventListener/TestSessionListener.php -opt/app/vendor/symfony/http-kernel/EventListener/TranslatorListener.php -opt/app/vendor/symfony/http-kernel/EventListener/ValidateRequestListener.php -opt/app/vendor/symfony/http-kernel/Exception/AccessDeniedHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/BadRequestHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/ConflictHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/ControllerDoesNotReturnResponseException.php -opt/app/vendor/symfony/http-kernel/Exception/GoneHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/HttpException.php -opt/app/vendor/symfony/http-kernel/Exception/HttpExceptionInterface.php -opt/app/vendor/symfony/http-kernel/Exception/LengthRequiredHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/MethodNotAllowedHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/NotAcceptableHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/NotFoundHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/PreconditionFailedHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/PreconditionRequiredHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/ServiceUnavailableHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/TooManyRequestsHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/UnauthorizedHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/UnprocessableEntityHttpException.php -opt/app/vendor/symfony/http-kernel/Exception/UnsupportedMediaTypeHttpException.php -opt/app/vendor/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php -opt/app/vendor/symfony/http-kernel/Fragment/EsiFragmentRenderer.php -opt/app/vendor/symfony/http-kernel/Fragment/FragmentHandler.php -opt/app/vendor/symfony/http-kernel/Fragment/FragmentRendererInterface.php -opt/app/vendor/symfony/http-kernel/Fragment/HIncludeFragmentRenderer.php -opt/app/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php -opt/app/vendor/symfony/http-kernel/Fragment/RoutableFragmentRenderer.php -opt/app/vendor/symfony/http-kernel/Fragment/SsiFragmentRenderer.php -opt/app/vendor/symfony/http-kernel/HttpCache/AbstractSurrogate.php -opt/app/vendor/symfony/http-kernel/HttpCache/Esi.php -opt/app/vendor/symfony/http-kernel/HttpCache/HttpCache.php -opt/app/vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategy.php -opt/app/vendor/symfony/http-kernel/HttpCache/ResponseCacheStrategyInterface.php -opt/app/vendor/symfony/http-kernel/HttpCache/Ssi.php -opt/app/vendor/symfony/http-kernel/HttpCache/Store.php -opt/app/vendor/symfony/http-kernel/HttpCache/StoreInterface.php -opt/app/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php -opt/app/vendor/symfony/http-kernel/HttpCache/SurrogateInterface.php -opt/app/vendor/symfony/http-kernel/HttpKernel.php -opt/app/vendor/symfony/http-kernel/HttpKernelInterface.php -opt/app/vendor/symfony/http-kernel/Kernel.php -opt/app/vendor/symfony/http-kernel/KernelEvents.php -opt/app/vendor/symfony/http-kernel/KernelInterface.php -opt/app/vendor/symfony/http-kernel/LICENSE -opt/app/vendor/symfony/http-kernel/Log/DebugLoggerInterface.php -opt/app/vendor/symfony/http-kernel/Log/Logger.php -opt/app/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php -opt/app/vendor/symfony/http-kernel/Profiler/Profile.php -opt/app/vendor/symfony/http-kernel/Profiler/Profiler.php -opt/app/vendor/symfony/http-kernel/Profiler/ProfilerStorageInterface.php -opt/app/vendor/symfony/http-kernel/README.md -opt/app/vendor/symfony/http-kernel/RebootableInterface.php -opt/app/vendor/symfony/http-kernel/Resources/welcome.html.php -opt/app/vendor/symfony/http-kernel/TerminableInterface.php -opt/app/vendor/symfony/http-kernel/Tests/Bundle/BundleTest.php -opt/app/vendor/symfony/http-kernel/Tests/CacheClearer/ChainCacheClearerTest.php -opt/app/vendor/symfony/http-kernel/Tests/CacheClearer/Psr6CacheClearerTest.php -opt/app/vendor/symfony/http-kernel/Tests/CacheWarmer/CacheWarmerAggregateTest.php -opt/app/vendor/symfony/http-kernel/Tests/CacheWarmer/CacheWarmerTest.php -opt/app/vendor/symfony/http-kernel/Tests/ClientTest.php -opt/app/vendor/symfony/http-kernel/Tests/Config/FileLocatorTest.php -opt/app/vendor/symfony/http-kernel/Tests/Controller/ArgumentResolver/ServiceValueResolverTest.php -opt/app/vendor/symfony/http-kernel/Tests/Controller/ArgumentResolver/TraceableValueResolverTest.php -opt/app/vendor/symfony/http-kernel/Tests/Controller/ArgumentResolverTest.php -opt/app/vendor/symfony/http-kernel/Tests/Controller/ContainerControllerResolverTest.php -opt/app/vendor/symfony/http-kernel/Tests/Controller/ControllerResolverTest.php -opt/app/vendor/symfony/http-kernel/Tests/ControllerMetadata/ArgumentMetadataFactoryTest.php -opt/app/vendor/symfony/http-kernel/Tests/ControllerMetadata/ArgumentMetadataTest.php -opt/app/vendor/symfony/http-kernel/Tests/DataCollector/Compiler.log -opt/app/vendor/symfony/http-kernel/Tests/DataCollector/ConfigDataCollectorTest.php -opt/app/vendor/symfony/http-kernel/Tests/DataCollector/DataCollectorTest.php -opt/app/vendor/symfony/http-kernel/Tests/DataCollector/DumpDataCollectorTest.php -opt/app/vendor/symfony/http-kernel/Tests/DataCollector/ExceptionDataCollectorTest.php -opt/app/vendor/symfony/http-kernel/Tests/DataCollector/LoggerDataCollectorTest.php -opt/app/vendor/symfony/http-kernel/Tests/DataCollector/MemoryDataCollectorTest.php -opt/app/vendor/symfony/http-kernel/Tests/DataCollector/RequestDataCollectorTest.php -opt/app/vendor/symfony/http-kernel/Tests/DataCollector/TimeDataCollectorTest.php -opt/app/vendor/symfony/http-kernel/Tests/Debug/FileLinkFormatterTest.php -opt/app/vendor/symfony/http-kernel/Tests/Debug/TraceableEventDispatcherTest.php -opt/app/vendor/symfony/http-kernel/Tests/DependencyInjection/AddAnnotatedClassesToCachePassTest.php -opt/app/vendor/symfony/http-kernel/Tests/DependencyInjection/ControllerArgumentValueResolverPassTest.php -opt/app/vendor/symfony/http-kernel/Tests/DependencyInjection/FragmentRendererPassTest.php -opt/app/vendor/symfony/http-kernel/Tests/DependencyInjection/LazyLoadingFragmentHandlerTest.php -opt/app/vendor/symfony/http-kernel/Tests/DependencyInjection/LoggerPassTest.php -opt/app/vendor/symfony/http-kernel/Tests/DependencyInjection/MergeExtensionConfigurationPassTest.php -opt/app/vendor/symfony/http-kernel/Tests/DependencyInjection/RegisterControllerArgumentLocatorsPassTest.php -opt/app/vendor/symfony/http-kernel/Tests/DependencyInjection/RemoveEmptyControllerArgumentLocatorsPassTest.php -opt/app/vendor/symfony/http-kernel/Tests/DependencyInjection/ResettableServicePassTest.php -opt/app/vendor/symfony/http-kernel/Tests/DependencyInjection/ServicesResetterTest.php -opt/app/vendor/symfony/http-kernel/Tests/Event/FilterControllerArgumentsEventTest.php -opt/app/vendor/symfony/http-kernel/Tests/Event/GetResponseForExceptionEventTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/AddRequestFormatsListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/DebugHandlersListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/DumpListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/ExceptionListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/FragmentListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/LocaleListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/ProfilerListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/ResponseListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/RouterListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/SaveSessionListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/SessionListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/SurrogateListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/TestSessionListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/TranslatorListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/EventListener/ValidateRequestListenerTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/AccessDeniedHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/BadRequestHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/ConflictHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/GoneHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/HttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/LengthRequiredHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/MethodNotAllowedHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/NotAcceptableHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/NotFoundHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/PreconditionFailedHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/PreconditionRequiredHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/ServiceUnavailableHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/TooManyRequestsHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/UnauthorizedHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/UnprocessableEntityHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Exception/UnsupportedMediaTypeHttpExceptionTest.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/BaseBundle/Resources/foo.txt -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/BaseBundle/Resources/hide.txt -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/Bundle1Bundle/Resources/foo.txt -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/Bundle1Bundle/bar.txt -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/Bundle1Bundle/foo.txt -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/Bundle2Bundle/foo.txt -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/ChildBundle/Resources/foo.txt -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/ChildBundle/Resources/hide.txt -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/ClearableService.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/Controller/BasicTypesController.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/Controller/ExtendingRequest.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/Controller/ExtendingSession.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/Controller/NullableController.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/Controller/VariadicController.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/DataCollector/CloneVarDataCollector.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/ExtensionAbsentBundle/ExtensionAbsentBundle.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/ExtensionLoadedBundle/DependencyInjection/ExtensionLoadedExtension.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/ExtensionLoadedBundle/ExtensionLoadedBundle.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/ExtensionNotValidBundle/DependencyInjection/ExtensionNotValidExtension.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/ExtensionNotValidBundle/ExtensionNotValidBundle.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/ExtensionPresentBundle/Command/BarCommand.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/ExtensionPresentBundle/Command/FooCommand.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/ExtensionPresentBundle/DependencyInjection/ExtensionPresentExtension.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/ExtensionPresentBundle/ExtensionPresentBundle.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/KernelForOverrideName.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/KernelForTest.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/KernelWithoutBundles.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/ResettableService.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/Resources/BaseBundle/hide.txt -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/Resources/Bundle1Bundle/foo.txt -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/Resources/ChildBundle/foo.txt -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/Resources/FooBundle/foo.txt -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/TestClient.php -opt/app/vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php -opt/app/vendor/symfony/http-kernel/Tests/Fragment/EsiFragmentRendererTest.php -opt/app/vendor/symfony/http-kernel/Tests/Fragment/FragmentHandlerTest.php -opt/app/vendor/symfony/http-kernel/Tests/Fragment/HIncludeFragmentRendererTest.php -opt/app/vendor/symfony/http-kernel/Tests/Fragment/InlineFragmentRendererTest.php -opt/app/vendor/symfony/http-kernel/Tests/Fragment/RoutableFragmentRendererTest.php -opt/app/vendor/symfony/http-kernel/Tests/Fragment/SsiFragmentRendererTest.php -opt/app/vendor/symfony/http-kernel/Tests/HttpCache/EsiTest.php -opt/app/vendor/symfony/http-kernel/Tests/HttpCache/HttpCacheTest.php -opt/app/vendor/symfony/http-kernel/Tests/HttpCache/HttpCacheTestCase.php -opt/app/vendor/symfony/http-kernel/Tests/HttpCache/ResponseCacheStrategyTest.php -opt/app/vendor/symfony/http-kernel/Tests/HttpCache/SsiTest.php -opt/app/vendor/symfony/http-kernel/Tests/HttpCache/StoreTest.php -opt/app/vendor/symfony/http-kernel/Tests/HttpCache/SubRequestHandlerTest.php -opt/app/vendor/symfony/http-kernel/Tests/HttpCache/TestHttpKernel.php -opt/app/vendor/symfony/http-kernel/Tests/HttpCache/TestMultipleHttpKernel.php -opt/app/vendor/symfony/http-kernel/Tests/HttpKernelTest.php -opt/app/vendor/symfony/http-kernel/Tests/KernelTest.php -opt/app/vendor/symfony/http-kernel/Tests/Log/LoggerTest.php -opt/app/vendor/symfony/http-kernel/Tests/Logger.php -opt/app/vendor/symfony/http-kernel/Tests/Profiler/FileProfilerStorageTest.php -opt/app/vendor/symfony/http-kernel/Tests/Profiler/ProfilerTest.php -opt/app/vendor/symfony/http-kernel/Tests/TestHttpKernel.php -opt/app/vendor/symfony/http-kernel/Tests/UriSignerTest.php -opt/app/vendor/symfony/http-kernel/UriSigner.php -opt/app/vendor/symfony/http-kernel/composer.json -opt/app/vendor/symfony/http-kernel/phpunit.xml.dist -opt/app/vendor/symfony/polyfill-ctype/Ctype.php -opt/app/vendor/symfony/polyfill-ctype/LICENSE -opt/app/vendor/symfony/polyfill-ctype/README.md -opt/app/vendor/symfony/polyfill-ctype/bootstrap.php -opt/app/vendor/symfony/polyfill-ctype/composer.json -opt/app/vendor/symfony/polyfill-mbstring/LICENSE -opt/app/vendor/symfony/polyfill-mbstring/Mbstring.php -opt/app/vendor/symfony/polyfill-mbstring/README.md -opt/app/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php -opt/app/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php -opt/app/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php -opt/app/vendor/symfony/polyfill-mbstring/bootstrap.php -opt/app/vendor/symfony/polyfill-mbstring/composer.json -opt/app/vendor/symfony/polyfill-php56/LICENSE -opt/app/vendor/symfony/polyfill-php56/Php56.php -opt/app/vendor/symfony/polyfill-php56/README.md -opt/app/vendor/symfony/polyfill-php56/bootstrap.php -opt/app/vendor/symfony/polyfill-php56/composer.json -opt/app/vendor/symfony/polyfill-php72/LICENSE -opt/app/vendor/symfony/polyfill-php72/Php72.php -opt/app/vendor/symfony/polyfill-php72/README.md -opt/app/vendor/symfony/polyfill-php72/bootstrap.php -opt/app/vendor/symfony/polyfill-php72/composer.json -opt/app/vendor/symfony/polyfill-util/Binary.php -opt/app/vendor/symfony/polyfill-util/BinaryNoFuncOverload.php -opt/app/vendor/symfony/polyfill-util/BinaryOnFuncOverload.php -opt/app/vendor/symfony/polyfill-util/LICENSE -opt/app/vendor/symfony/polyfill-util/LegacyTestListener.php -opt/app/vendor/symfony/polyfill-util/README.md -opt/app/vendor/symfony/polyfill-util/TestListener.php -opt/app/vendor/symfony/polyfill-util/TestListenerTrait.php -opt/app/vendor/symfony/polyfill-util/composer.json -opt/app/vendor/symfony/process/CHANGELOG.md -opt/app/vendor/symfony/process/Exception/ExceptionInterface.php -opt/app/vendor/symfony/process/Exception/InvalidArgumentException.php -opt/app/vendor/symfony/process/Exception/LogicException.php -opt/app/vendor/symfony/process/Exception/ProcessFailedException.php -opt/app/vendor/symfony/process/Exception/ProcessSignaledException.php -opt/app/vendor/symfony/process/Exception/ProcessTimedOutException.php -opt/app/vendor/symfony/process/Exception/RuntimeException.php -opt/app/vendor/symfony/process/ExecutableFinder.php -opt/app/vendor/symfony/process/InputStream.php -opt/app/vendor/symfony/process/LICENSE -opt/app/vendor/symfony/process/PhpExecutableFinder.php -opt/app/vendor/symfony/process/PhpProcess.php -opt/app/vendor/symfony/process/Pipes/AbstractPipes.php -opt/app/vendor/symfony/process/Pipes/PipesInterface.php -opt/app/vendor/symfony/process/Pipes/UnixPipes.php -opt/app/vendor/symfony/process/Pipes/WindowsPipes.php -opt/app/vendor/symfony/process/Process.php -opt/app/vendor/symfony/process/ProcessUtils.php -opt/app/vendor/symfony/process/README.md -opt/app/vendor/symfony/process/Tests/ExecutableFinderTest.php -opt/app/vendor/symfony/process/Tests/KillableProcessWithOutput.php -opt/app/vendor/symfony/process/Tests/NonStopableProcess.php -opt/app/vendor/symfony/process/Tests/PhpExecutableFinderTest.php -opt/app/vendor/symfony/process/Tests/PhpProcessTest.php -opt/app/vendor/symfony/process/Tests/PipeStdinInStdoutStdErrStreamSelect.php -opt/app/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php -opt/app/vendor/symfony/process/Tests/ProcessTest.php -opt/app/vendor/symfony/process/Tests/SignalListener.php -opt/app/vendor/symfony/process/composer.json -opt/app/vendor/symfony/process/phpunit.xml.dist -opt/app/vendor/symfony/psr-http-message-bridge/CHANGELOG.md -opt/app/vendor/symfony/psr-http-message-bridge/Factory/DiactorosFactory.php -opt/app/vendor/symfony/psr-http-message-bridge/Factory/HttpFoundationFactory.php -opt/app/vendor/symfony/psr-http-message-bridge/Factory/PsrHttpFactory.php -opt/app/vendor/symfony/psr-http-message-bridge/HttpFoundationFactoryInterface.php -opt/app/vendor/symfony/psr-http-message-bridge/HttpMessageFactoryInterface.php -opt/app/vendor/symfony/psr-http-message-bridge/LICENSE -opt/app/vendor/symfony/psr-http-message-bridge/README.md -opt/app/vendor/symfony/psr-http-message-bridge/Tests/Factory/AbstractHttpMessageFactoryTest.php -opt/app/vendor/symfony/psr-http-message-bridge/Tests/Factory/DiactorosFactoryTest.php -opt/app/vendor/symfony/psr-http-message-bridge/Tests/Factory/HttpFoundationFactoryTest.php -opt/app/vendor/symfony/psr-http-message-bridge/Tests/Factory/PsrHttpFactoryTest.php -opt/app/vendor/symfony/psr-http-message-bridge/Tests/Fixtures/Message.php -opt/app/vendor/symfony/psr-http-message-bridge/Tests/Fixtures/Response.php -opt/app/vendor/symfony/psr-http-message-bridge/Tests/Fixtures/ServerRequest.php -opt/app/vendor/symfony/psr-http-message-bridge/Tests/Fixtures/Stream.php -opt/app/vendor/symfony/psr-http-message-bridge/Tests/Fixtures/UploadedFile.php -opt/app/vendor/symfony/psr-http-message-bridge/Tests/Fixtures/Uri.php -opt/app/vendor/symfony/psr-http-message-bridge/composer.json -opt/app/vendor/symfony/psr-http-message-bridge/phpunit.xml.dist -opt/app/vendor/symfony/routing/Annotation/Route.php -opt/app/vendor/symfony/routing/CHANGELOG.md -opt/app/vendor/symfony/routing/CompiledRoute.php -opt/app/vendor/symfony/routing/DependencyInjection/RoutingResolverPass.php -opt/app/vendor/symfony/routing/Exception/ExceptionInterface.php -opt/app/vendor/symfony/routing/Exception/InvalidParameterException.php -opt/app/vendor/symfony/routing/Exception/MethodNotAllowedException.php -opt/app/vendor/symfony/routing/Exception/MissingMandatoryParametersException.php -opt/app/vendor/symfony/routing/Exception/NoConfigurationException.php -opt/app/vendor/symfony/routing/Exception/ResourceNotFoundException.php -opt/app/vendor/symfony/routing/Exception/RouteNotFoundException.php -opt/app/vendor/symfony/routing/Generator/ConfigurableRequirementsInterface.php -opt/app/vendor/symfony/routing/Generator/Dumper/GeneratorDumper.php -opt/app/vendor/symfony/routing/Generator/Dumper/GeneratorDumperInterface.php -opt/app/vendor/symfony/routing/Generator/Dumper/PhpGeneratorDumper.php -opt/app/vendor/symfony/routing/Generator/UrlGenerator.php -opt/app/vendor/symfony/routing/Generator/UrlGeneratorInterface.php -opt/app/vendor/symfony/routing/LICENSE -opt/app/vendor/symfony/routing/Loader/AnnotationClassLoader.php -opt/app/vendor/symfony/routing/Loader/AnnotationDirectoryLoader.php -opt/app/vendor/symfony/routing/Loader/AnnotationFileLoader.php -opt/app/vendor/symfony/routing/Loader/ClosureLoader.php -opt/app/vendor/symfony/routing/Loader/Configurator/CollectionConfigurator.php -opt/app/vendor/symfony/routing/Loader/Configurator/ImportConfigurator.php -opt/app/vendor/symfony/routing/Loader/Configurator/RouteConfigurator.php -opt/app/vendor/symfony/routing/Loader/Configurator/RoutingConfigurator.php -opt/app/vendor/symfony/routing/Loader/Configurator/Traits/AddTrait.php -opt/app/vendor/symfony/routing/Loader/Configurator/Traits/RouteTrait.php -opt/app/vendor/symfony/routing/Loader/DependencyInjection/ServiceRouterLoader.php -opt/app/vendor/symfony/routing/Loader/DirectoryLoader.php -opt/app/vendor/symfony/routing/Loader/GlobFileLoader.php -opt/app/vendor/symfony/routing/Loader/ObjectRouteLoader.php -opt/app/vendor/symfony/routing/Loader/PhpFileLoader.php -opt/app/vendor/symfony/routing/Loader/XmlFileLoader.php -opt/app/vendor/symfony/routing/Loader/YamlFileLoader.php -opt/app/vendor/symfony/routing/Loader/schema/routing/routing-1.0.xsd -opt/app/vendor/symfony/routing/Matcher/Dumper/MatcherDumper.php -opt/app/vendor/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php -opt/app/vendor/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php -opt/app/vendor/symfony/routing/Matcher/Dumper/PhpMatcherTrait.php -opt/app/vendor/symfony/routing/Matcher/Dumper/StaticPrefixCollection.php -opt/app/vendor/symfony/routing/Matcher/RedirectableUrlMatcher.php -opt/app/vendor/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php -opt/app/vendor/symfony/routing/Matcher/RequestMatcherInterface.php -opt/app/vendor/symfony/routing/Matcher/TraceableUrlMatcher.php -opt/app/vendor/symfony/routing/Matcher/UrlMatcher.php -opt/app/vendor/symfony/routing/Matcher/UrlMatcherInterface.php -opt/app/vendor/symfony/routing/README.md -opt/app/vendor/symfony/routing/RequestContext.php -opt/app/vendor/symfony/routing/RequestContextAwareInterface.php -opt/app/vendor/symfony/routing/Route.php -opt/app/vendor/symfony/routing/RouteCollection.php -opt/app/vendor/symfony/routing/RouteCollectionBuilder.php -opt/app/vendor/symfony/routing/RouteCompiler.php -opt/app/vendor/symfony/routing/RouteCompilerInterface.php -opt/app/vendor/symfony/routing/Router.php -opt/app/vendor/symfony/routing/RouterInterface.php -opt/app/vendor/symfony/routing/Tests/Annotation/RouteTest.php -opt/app/vendor/symfony/routing/Tests/CompiledRouteTest.php -opt/app/vendor/symfony/routing/Tests/DependencyInjection/RoutingResolverPassTest.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotatedClasses/AbstractClass.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotatedClasses/BarClass.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotatedClasses/BazClass.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotatedClasses/FooClass.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotatedClasses/FooTrait.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/AbstractClassController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/ActionPathController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/DefaultValueController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/ExplicitLocalizedActionPathController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/InvokableController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/InvokableLocalizedController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/LocalizedActionPathController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/LocalizedMethodActionControllers.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/LocalizedPrefixLocalizedActionController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/LocalizedPrefixMissingLocaleActionController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/LocalizedPrefixMissingRouteLocaleActionController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/LocalizedPrefixWithRouteWithoutLocale.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/MethodActionControllers.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/MissingRouteNameController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/NothingButNameController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/PrefixedActionLocalizedRouteController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/PrefixedActionPathController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/RequirementsWithoutPlaceholderNameController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/RouteWithPrefixController.php -opt/app/vendor/symfony/routing/Tests/Fixtures/CustomCompiledRoute.php -opt/app/vendor/symfony/routing/Tests/Fixtures/CustomRouteCompiler.php -opt/app/vendor/symfony/routing/Tests/Fixtures/CustomXmlFileLoader.php -opt/app/vendor/symfony/routing/Tests/Fixtures/OtherAnnotatedClasses/AnonymousClassInTrait.php -opt/app/vendor/symfony/routing/Tests/Fixtures/OtherAnnotatedClasses/NoStartTagClass.php -opt/app/vendor/symfony/routing/Tests/Fixtures/OtherAnnotatedClasses/VariadicClass.php -opt/app/vendor/symfony/routing/Tests/Fixtures/RedirectableUrlMatcher.php -opt/app/vendor/symfony/routing/Tests/Fixtures/annotated.php -opt/app/vendor/symfony/routing/Tests/Fixtures/bad_format.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/bar.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/controller/import__controller.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/controller/import__controller.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/controller/import_controller.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/controller/import_controller.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/controller/import_override_defaults.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/controller/import_override_defaults.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/controller/override_defaults.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/controller/override_defaults.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/controller/routing.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/controller/routing.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/directory/recurse/routes1.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/directory/recurse/routes2.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/directory/routes3.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/directory_import/import.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher0.php -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher1.php -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher10.php -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher11.php -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher12.php -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher13.php -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher2.php -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher3.php -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher4.php -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher5.php -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher6.php -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher7.php -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher8.php -opt/app/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher9.php -opt/app/vendor/symfony/routing/Tests/Fixtures/empty.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/file_resource.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/foo.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/foo1.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/glob/bar.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/glob/bar.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/glob/baz.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/glob/baz.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/glob/import_multiple.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/glob/import_multiple.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/glob/import_single.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/glob/import_single.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/glob/php_dsl.php -opt/app/vendor/symfony/routing/Tests/Fixtures/glob/php_dsl_bar.php -opt/app/vendor/symfony/routing/Tests/Fixtures/glob/php_dsl_baz.php -opt/app/vendor/symfony/routing/Tests/Fixtures/import_with_name_prefix/routing.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/import_with_name_prefix/routing.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/import_with_no_trailing_slash/routing.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/import_with_no_trailing_slash/routing.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/incomplete.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/list_defaults.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/list_in_list_defaults.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/list_in_map_defaults.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/list_null_values.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/imported-with-locale-but-not-localized.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/imported-with-locale-but-not-localized.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/imported-with-locale.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/imported-with-locale.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/importer-with-controller-default.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/importer-with-locale-imports-non-localized-route.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/importer-with-locale-imports-non-localized-route.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/importer-with-locale.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/importer-with-locale.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/importing-localized-route.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/localized-route.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/missing-locale-in-importer.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/not-localized.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/officially_formatted_locales.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/localized/route-without-path-or-locales.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/map_defaults.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/map_in_list_defaults.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/map_in_map_defaults.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/map_null_values.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/missing_id.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/missing_path.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/namespaceprefix.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/nonesense_resource_plus_path.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/nonesense_type_without_resource.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/nonvalid.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/nonvalid.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/nonvalid2.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/nonvalidkeys.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/nonvalidnode.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/nonvalidroute.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/null_values.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/php_dsl.php -opt/app/vendor/symfony/routing/Tests/Fixtures/php_dsl_i18n.php -opt/app/vendor/symfony/routing/Tests/Fixtures/php_dsl_sub.php -opt/app/vendor/symfony/routing/Tests/Fixtures/php_dsl_sub_i18n.php -opt/app/vendor/symfony/routing/Tests/Fixtures/php_dsl_sub_root.php -opt/app/vendor/symfony/routing/Tests/Fixtures/php_object_dsl.php -opt/app/vendor/symfony/routing/Tests/Fixtures/requirements_without_placeholder_name.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/scalar_defaults.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/special_route_name.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/validpattern.php -opt/app/vendor/symfony/routing/Tests/Fixtures/validpattern.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/validpattern.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/validresource.php -opt/app/vendor/symfony/routing/Tests/Fixtures/validresource.xml -opt/app/vendor/symfony/routing/Tests/Fixtures/validresource.yml -opt/app/vendor/symfony/routing/Tests/Fixtures/with_define_path_variable.php -opt/app/vendor/symfony/routing/Tests/Fixtures/withdoctype.xml -opt/app/vendor/symfony/routing/Tests/Generator/Dumper/PhpGeneratorDumperTest.php -opt/app/vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php -opt/app/vendor/symfony/routing/Tests/Loader/AbstractAnnotationLoaderTest.php -opt/app/vendor/symfony/routing/Tests/Loader/AnnotationClassLoaderTest.php -opt/app/vendor/symfony/routing/Tests/Loader/AnnotationDirectoryLoaderTest.php -opt/app/vendor/symfony/routing/Tests/Loader/AnnotationFileLoaderTest.php -opt/app/vendor/symfony/routing/Tests/Loader/ClosureLoaderTest.php -opt/app/vendor/symfony/routing/Tests/Loader/DirectoryLoaderTest.php -opt/app/vendor/symfony/routing/Tests/Loader/FileLocatorStub.php -opt/app/vendor/symfony/routing/Tests/Loader/GlobFileLoaderTest.php -opt/app/vendor/symfony/routing/Tests/Loader/ObjectRouteLoaderTest.php -opt/app/vendor/symfony/routing/Tests/Loader/PhpFileLoaderTest.php -opt/app/vendor/symfony/routing/Tests/Loader/XmlFileLoaderTest.php -opt/app/vendor/symfony/routing/Tests/Loader/YamlFileLoaderTest.php -opt/app/vendor/symfony/routing/Tests/Matcher/DumpedRedirectableUrlMatcherTest.php -opt/app/vendor/symfony/routing/Tests/Matcher/DumpedUrlMatcherTest.php -opt/app/vendor/symfony/routing/Tests/Matcher/Dumper/PhpMatcherDumperTest.php -opt/app/vendor/symfony/routing/Tests/Matcher/Dumper/StaticPrefixCollectionTest.php -opt/app/vendor/symfony/routing/Tests/Matcher/RedirectableUrlMatcherTest.php -opt/app/vendor/symfony/routing/Tests/Matcher/TraceableUrlMatcherTest.php -opt/app/vendor/symfony/routing/Tests/Matcher/UrlMatcherTest.php -opt/app/vendor/symfony/routing/Tests/RequestContextTest.php -opt/app/vendor/symfony/routing/Tests/RouteCollectionBuilderTest.php -opt/app/vendor/symfony/routing/Tests/RouteCollectionTest.php -opt/app/vendor/symfony/routing/Tests/RouteCompilerTest.php -opt/app/vendor/symfony/routing/Tests/RouteTest.php -opt/app/vendor/symfony/routing/Tests/RouterTest.php -opt/app/vendor/symfony/routing/composer.json -opt/app/vendor/symfony/routing/phpunit.xml.dist -opt/app/vendor/symfony/translation/CHANGELOG.md -opt/app/vendor/symfony/translation/Catalogue/AbstractOperation.php -opt/app/vendor/symfony/translation/Catalogue/MergeOperation.php -opt/app/vendor/symfony/translation/Catalogue/OperationInterface.php -opt/app/vendor/symfony/translation/Catalogue/TargetOperation.php -opt/app/vendor/symfony/translation/Command/XliffLintCommand.php -opt/app/vendor/symfony/translation/DataCollector/TranslationDataCollector.php -opt/app/vendor/symfony/translation/DataCollectorTranslator.php -opt/app/vendor/symfony/translation/DependencyInjection/TranslationDumperPass.php -opt/app/vendor/symfony/translation/DependencyInjection/TranslationExtractorPass.php -opt/app/vendor/symfony/translation/DependencyInjection/TranslatorPass.php -opt/app/vendor/symfony/translation/Dumper/CsvFileDumper.php -opt/app/vendor/symfony/translation/Dumper/DumperInterface.php -opt/app/vendor/symfony/translation/Dumper/FileDumper.php -opt/app/vendor/symfony/translation/Dumper/IcuResFileDumper.php -opt/app/vendor/symfony/translation/Dumper/IniFileDumper.php -opt/app/vendor/symfony/translation/Dumper/JsonFileDumper.php -opt/app/vendor/symfony/translation/Dumper/MoFileDumper.php -opt/app/vendor/symfony/translation/Dumper/PhpFileDumper.php -opt/app/vendor/symfony/translation/Dumper/PoFileDumper.php -opt/app/vendor/symfony/translation/Dumper/QtFileDumper.php -opt/app/vendor/symfony/translation/Dumper/XliffFileDumper.php -opt/app/vendor/symfony/translation/Dumper/YamlFileDumper.php -opt/app/vendor/symfony/translation/Exception/ExceptionInterface.php -opt/app/vendor/symfony/translation/Exception/InvalidArgumentException.php -opt/app/vendor/symfony/translation/Exception/InvalidResourceException.php -opt/app/vendor/symfony/translation/Exception/LogicException.php -opt/app/vendor/symfony/translation/Exception/NotFoundResourceException.php -opt/app/vendor/symfony/translation/Exception/RuntimeException.php -opt/app/vendor/symfony/translation/Extractor/AbstractFileExtractor.php -opt/app/vendor/symfony/translation/Extractor/ChainExtractor.php -opt/app/vendor/symfony/translation/Extractor/ExtractorInterface.php -opt/app/vendor/symfony/translation/Extractor/PhpExtractor.php -opt/app/vendor/symfony/translation/Extractor/PhpStringTokenParser.php -opt/app/vendor/symfony/translation/Formatter/ChoiceMessageFormatterInterface.php -opt/app/vendor/symfony/translation/Formatter/IntlFormatter.php -opt/app/vendor/symfony/translation/Formatter/IntlFormatterInterface.php -opt/app/vendor/symfony/translation/Formatter/MessageFormatter.php -opt/app/vendor/symfony/translation/Formatter/MessageFormatterInterface.php -opt/app/vendor/symfony/translation/IdentityTranslator.php -opt/app/vendor/symfony/translation/Interval.php -opt/app/vendor/symfony/translation/LICENSE -opt/app/vendor/symfony/translation/Loader/ArrayLoader.php -opt/app/vendor/symfony/translation/Loader/CsvFileLoader.php -opt/app/vendor/symfony/translation/Loader/FileLoader.php -opt/app/vendor/symfony/translation/Loader/IcuDatFileLoader.php -opt/app/vendor/symfony/translation/Loader/IcuResFileLoader.php -opt/app/vendor/symfony/translation/Loader/IniFileLoader.php -opt/app/vendor/symfony/translation/Loader/JsonFileLoader.php -opt/app/vendor/symfony/translation/Loader/LoaderInterface.php -opt/app/vendor/symfony/translation/Loader/MoFileLoader.php -opt/app/vendor/symfony/translation/Loader/PhpFileLoader.php -opt/app/vendor/symfony/translation/Loader/PoFileLoader.php -opt/app/vendor/symfony/translation/Loader/QtFileLoader.php -opt/app/vendor/symfony/translation/Loader/XliffFileLoader.php -opt/app/vendor/symfony/translation/Loader/YamlFileLoader.php -opt/app/vendor/symfony/translation/LoggingTranslator.php -opt/app/vendor/symfony/translation/MessageCatalogue.php -opt/app/vendor/symfony/translation/MessageCatalogueInterface.php -opt/app/vendor/symfony/translation/MessageSelector.php -opt/app/vendor/symfony/translation/MetadataAwareInterface.php -opt/app/vendor/symfony/translation/PluralizationRules.php -opt/app/vendor/symfony/translation/README.md -opt/app/vendor/symfony/translation/Reader/TranslationReader.php -opt/app/vendor/symfony/translation/Reader/TranslationReaderInterface.php -opt/app/vendor/symfony/translation/Resources/bin/translation-status.php -opt/app/vendor/symfony/translation/Resources/data/parents.json -opt/app/vendor/symfony/translation/Resources/schemas/xliff-core-1.2-strict.xsd -opt/app/vendor/symfony/translation/Resources/schemas/xliff-core-2.0.xsd -opt/app/vendor/symfony/translation/Resources/schemas/xml.xsd -opt/app/vendor/symfony/translation/Tests/Catalogue/AbstractOperationTest.php -opt/app/vendor/symfony/translation/Tests/Catalogue/MergeOperationTest.php -opt/app/vendor/symfony/translation/Tests/Catalogue/TargetOperationTest.php -opt/app/vendor/symfony/translation/Tests/Command/XliffLintCommandTest.php -opt/app/vendor/symfony/translation/Tests/DataCollector/TranslationDataCollectorTest.php -opt/app/vendor/symfony/translation/Tests/DataCollectorTranslatorTest.php -opt/app/vendor/symfony/translation/Tests/DependencyInjection/TranslationDumperPassTest.php -opt/app/vendor/symfony/translation/Tests/DependencyInjection/TranslationExtractorPassTest.php -opt/app/vendor/symfony/translation/Tests/DependencyInjection/TranslationPassTest.php -opt/app/vendor/symfony/translation/Tests/Dumper/CsvFileDumperTest.php -opt/app/vendor/symfony/translation/Tests/Dumper/FileDumperTest.php -opt/app/vendor/symfony/translation/Tests/Dumper/IcuResFileDumperTest.php -opt/app/vendor/symfony/translation/Tests/Dumper/IniFileDumperTest.php -opt/app/vendor/symfony/translation/Tests/Dumper/JsonFileDumperTest.php -opt/app/vendor/symfony/translation/Tests/Dumper/MoFileDumperTest.php -opt/app/vendor/symfony/translation/Tests/Dumper/PhpFileDumperTest.php -opt/app/vendor/symfony/translation/Tests/Dumper/PoFileDumperTest.php -opt/app/vendor/symfony/translation/Tests/Dumper/QtFileDumperTest.php -opt/app/vendor/symfony/translation/Tests/Dumper/XliffFileDumperTest.php -opt/app/vendor/symfony/translation/Tests/Dumper/YamlFileDumperTest.php -opt/app/vendor/symfony/translation/Tests/Extractor/PhpExtractorTest.php -opt/app/vendor/symfony/translation/Tests/Formatter/IntlFormatterTest.php -opt/app/vendor/symfony/translation/Tests/Formatter/MessageFormatterTest.php -opt/app/vendor/symfony/translation/Tests/IdentityTranslatorTest.php -opt/app/vendor/symfony/translation/Tests/IntervalTest.php -opt/app/vendor/symfony/translation/Tests/Loader/CsvFileLoaderTest.php -opt/app/vendor/symfony/translation/Tests/Loader/IcuDatFileLoaderTest.php -opt/app/vendor/symfony/translation/Tests/Loader/IcuResFileLoaderTest.php -opt/app/vendor/symfony/translation/Tests/Loader/IniFileLoaderTest.php -opt/app/vendor/symfony/translation/Tests/Loader/JsonFileLoaderTest.php -opt/app/vendor/symfony/translation/Tests/Loader/LocalizedTestCase.php -opt/app/vendor/symfony/translation/Tests/Loader/MoFileLoaderTest.php -opt/app/vendor/symfony/translation/Tests/Loader/PhpFileLoaderTest.php -opt/app/vendor/symfony/translation/Tests/Loader/PoFileLoaderTest.php -opt/app/vendor/symfony/translation/Tests/Loader/QtFileLoaderTest.php -opt/app/vendor/symfony/translation/Tests/Loader/XliffFileLoaderTest.php -opt/app/vendor/symfony/translation/Tests/Loader/YamlFileLoaderTest.php -opt/app/vendor/symfony/translation/Tests/LoggingTranslatorTest.php -opt/app/vendor/symfony/translation/Tests/MessageCatalogueTest.php -opt/app/vendor/symfony/translation/Tests/MessageSelectorTest.php -opt/app/vendor/symfony/translation/Tests/PluralizationRulesTest.php -opt/app/vendor/symfony/translation/Tests/TranslatorCacheTest.php -opt/app/vendor/symfony/translation/Tests/TranslatorTest.php -opt/app/vendor/symfony/translation/Tests/Util/ArrayConverterTest.php -opt/app/vendor/symfony/translation/Tests/Writer/TranslationWriterTest.php -opt/app/vendor/symfony/translation/Tests/fixtures/empty-translation.mo -opt/app/vendor/symfony/translation/Tests/fixtures/empty-translation.po -opt/app/vendor/symfony/translation/Tests/fixtures/empty.csv -opt/app/vendor/symfony/translation/Tests/fixtures/empty.ini -opt/app/vendor/symfony/translation/Tests/fixtures/empty.json -opt/app/vendor/symfony/translation/Tests/fixtures/empty.mo -opt/app/vendor/symfony/translation/Tests/fixtures/empty.po -opt/app/vendor/symfony/translation/Tests/fixtures/empty.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/empty.yml -opt/app/vendor/symfony/translation/Tests/fixtures/encoding.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/escaped-id-plurals.po -opt/app/vendor/symfony/translation/Tests/fixtures/escaped-id.po -opt/app/vendor/symfony/translation/Tests/fixtures/extractor/resource.format.engine -opt/app/vendor/symfony/translation/Tests/fixtures/extractor/this.is.a.template.format.engine -opt/app/vendor/symfony/translation/Tests/fixtures/extractor/translation.html.php -opt/app/vendor/symfony/translation/Tests/fixtures/fuzzy-translations.po -opt/app/vendor/symfony/translation/Tests/fixtures/invalid-xml-resources.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/malformed.json -opt/app/vendor/symfony/translation/Tests/fixtures/messages.yml -opt/app/vendor/symfony/translation/Tests/fixtures/messages_linear.yml -opt/app/vendor/symfony/translation/Tests/fixtures/non-valid.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/non-valid.yml -opt/app/vendor/symfony/translation/Tests/fixtures/plurals.mo -opt/app/vendor/symfony/translation/Tests/fixtures/plurals.po -opt/app/vendor/symfony/translation/Tests/fixtures/resname.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/resourcebundle/corrupted/resources.dat -opt/app/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/en.res -opt/app/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/en.txt -opt/app/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.res -opt/app/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.txt -opt/app/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/packagelist.txt -opt/app/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/resources.dat -opt/app/vendor/symfony/translation/Tests/fixtures/resourcebundle/res/en.res -opt/app/vendor/symfony/translation/Tests/fixtures/resources-2.0+intl-icu.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/resources-2.0-clean.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/resources-2.0-multi-segment-unit.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/resources-2.0.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/resources-clean.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/resources-notes-meta.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/resources-target-attributes.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/resources-tool-info.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/resources.csv -opt/app/vendor/symfony/translation/Tests/fixtures/resources.dump.json -opt/app/vendor/symfony/translation/Tests/fixtures/resources.ini -opt/app/vendor/symfony/translation/Tests/fixtures/resources.json -opt/app/vendor/symfony/translation/Tests/fixtures/resources.mo -opt/app/vendor/symfony/translation/Tests/fixtures/resources.php -opt/app/vendor/symfony/translation/Tests/fixtures/resources.po -opt/app/vendor/symfony/translation/Tests/fixtures/resources.ts -opt/app/vendor/symfony/translation/Tests/fixtures/resources.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/resources.yml -opt/app/vendor/symfony/translation/Tests/fixtures/valid.csv -opt/app/vendor/symfony/translation/Tests/fixtures/with-attributes.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/withdoctype.xlf -opt/app/vendor/symfony/translation/Tests/fixtures/withnote.xlf -opt/app/vendor/symfony/translation/Translator.php -opt/app/vendor/symfony/translation/TranslatorBagInterface.php -opt/app/vendor/symfony/translation/TranslatorInterface.php -opt/app/vendor/symfony/translation/Util/ArrayConverter.php -opt/app/vendor/symfony/translation/Util/XliffUtils.php -opt/app/vendor/symfony/translation/Writer/TranslationWriter.php -opt/app/vendor/symfony/translation/Writer/TranslationWriterInterface.php -opt/app/vendor/symfony/translation/composer.json -opt/app/vendor/symfony/translation/phpunit.xml.dist -opt/app/vendor/symfony/var-dumper/CHANGELOG.md -opt/app/vendor/symfony/var-dumper/Caster/AmqpCaster.php -opt/app/vendor/symfony/var-dumper/Caster/ArgsStub.php -opt/app/vendor/symfony/var-dumper/Caster/Caster.php -opt/app/vendor/symfony/var-dumper/Caster/ClassStub.php -opt/app/vendor/symfony/var-dumper/Caster/ConstStub.php -opt/app/vendor/symfony/var-dumper/Caster/CutArrayStub.php -opt/app/vendor/symfony/var-dumper/Caster/CutStub.php -opt/app/vendor/symfony/var-dumper/Caster/DOMCaster.php -opt/app/vendor/symfony/var-dumper/Caster/DateCaster.php -opt/app/vendor/symfony/var-dumper/Caster/DoctrineCaster.php -opt/app/vendor/symfony/var-dumper/Caster/EnumStub.php -opt/app/vendor/symfony/var-dumper/Caster/ExceptionCaster.php -opt/app/vendor/symfony/var-dumper/Caster/FrameStub.php -opt/app/vendor/symfony/var-dumper/Caster/GmpCaster.php -opt/app/vendor/symfony/var-dumper/Caster/IntlCaster.php -opt/app/vendor/symfony/var-dumper/Caster/LinkStub.php -opt/app/vendor/symfony/var-dumper/Caster/MemcachedCaster.php -opt/app/vendor/symfony/var-dumper/Caster/PdoCaster.php -opt/app/vendor/symfony/var-dumper/Caster/PgSqlCaster.php -opt/app/vendor/symfony/var-dumper/Caster/ProxyManagerCaster.php -opt/app/vendor/symfony/var-dumper/Caster/RedisCaster.php -opt/app/vendor/symfony/var-dumper/Caster/ReflectionCaster.php -opt/app/vendor/symfony/var-dumper/Caster/ResourceCaster.php -opt/app/vendor/symfony/var-dumper/Caster/SplCaster.php -opt/app/vendor/symfony/var-dumper/Caster/StubCaster.php -opt/app/vendor/symfony/var-dumper/Caster/SymfonyCaster.php -opt/app/vendor/symfony/var-dumper/Caster/TraceStub.php -opt/app/vendor/symfony/var-dumper/Caster/XmlReaderCaster.php -opt/app/vendor/symfony/var-dumper/Caster/XmlResourceCaster.php -opt/app/vendor/symfony/var-dumper/Cloner/AbstractCloner.php -opt/app/vendor/symfony/var-dumper/Cloner/ClonerInterface.php -opt/app/vendor/symfony/var-dumper/Cloner/Cursor.php -opt/app/vendor/symfony/var-dumper/Cloner/Data.php -opt/app/vendor/symfony/var-dumper/Cloner/DumperInterface.php -opt/app/vendor/symfony/var-dumper/Cloner/Stub.php -opt/app/vendor/symfony/var-dumper/Cloner/VarCloner.php -opt/app/vendor/symfony/var-dumper/Command/Descriptor/CliDescriptor.php -opt/app/vendor/symfony/var-dumper/Command/Descriptor/DumpDescriptorInterface.php -opt/app/vendor/symfony/var-dumper/Command/Descriptor/HtmlDescriptor.php -opt/app/vendor/symfony/var-dumper/Command/ServerDumpCommand.php -opt/app/vendor/symfony/var-dumper/Dumper/AbstractDumper.php -opt/app/vendor/symfony/var-dumper/Dumper/CliDumper.php -opt/app/vendor/symfony/var-dumper/Dumper/ContextProvider/CliContextProvider.php -opt/app/vendor/symfony/var-dumper/Dumper/ContextProvider/ContextProviderInterface.php -opt/app/vendor/symfony/var-dumper/Dumper/ContextProvider/RequestContextProvider.php -opt/app/vendor/symfony/var-dumper/Dumper/ContextProvider/SourceContextProvider.php -opt/app/vendor/symfony/var-dumper/Dumper/DataDumperInterface.php -opt/app/vendor/symfony/var-dumper/Dumper/HtmlDumper.php -opt/app/vendor/symfony/var-dumper/Dumper/ServerDumper.php -opt/app/vendor/symfony/var-dumper/Exception/ThrowingCasterException.php -opt/app/vendor/symfony/var-dumper/LICENSE -opt/app/vendor/symfony/var-dumper/README.md -opt/app/vendor/symfony/var-dumper/Resources/bin/var-dump-server -opt/app/vendor/symfony/var-dumper/Resources/css/htmlDescriptor.css -opt/app/vendor/symfony/var-dumper/Resources/functions/dump.php -opt/app/vendor/symfony/var-dumper/Resources/js/htmlDescriptor.js -opt/app/vendor/symfony/var-dumper/Server/Connection.php -opt/app/vendor/symfony/var-dumper/Server/DumpServer.php -opt/app/vendor/symfony/var-dumper/Test/VarDumperTestTrait.php -opt/app/vendor/symfony/var-dumper/Tests/Caster/CasterTest.php -opt/app/vendor/symfony/var-dumper/Tests/Caster/DateCasterTest.php -opt/app/vendor/symfony/var-dumper/Tests/Caster/ExceptionCasterTest.php -opt/app/vendor/symfony/var-dumper/Tests/Caster/GmpCasterTest.php -opt/app/vendor/symfony/var-dumper/Tests/Caster/IntlCasterTest.php -opt/app/vendor/symfony/var-dumper/Tests/Caster/MemcachedCasterTest.php -opt/app/vendor/symfony/var-dumper/Tests/Caster/PdoCasterTest.php -opt/app/vendor/symfony/var-dumper/Tests/Caster/RedisCasterTest.php -opt/app/vendor/symfony/var-dumper/Tests/Caster/ReflectionCasterTest.php -opt/app/vendor/symfony/var-dumper/Tests/Caster/SplCasterTest.php -opt/app/vendor/symfony/var-dumper/Tests/Caster/StubCasterTest.php -opt/app/vendor/symfony/var-dumper/Tests/Caster/XmlReaderCasterTest.php -opt/app/vendor/symfony/var-dumper/Tests/Cloner/DataTest.php -opt/app/vendor/symfony/var-dumper/Tests/Cloner/VarClonerTest.php -opt/app/vendor/symfony/var-dumper/Tests/Command/Descriptor/CliDescriptorTest.php -opt/app/vendor/symfony/var-dumper/Tests/Command/Descriptor/HtmlDescriptorTest.php -opt/app/vendor/symfony/var-dumper/Tests/Dumper/CliDumperTest.php -opt/app/vendor/symfony/var-dumper/Tests/Dumper/FunctionsTest.php -opt/app/vendor/symfony/var-dumper/Tests/Dumper/HtmlDumperTest.php -opt/app/vendor/symfony/var-dumper/Tests/Dumper/ServerDumperTest.php -opt/app/vendor/symfony/var-dumper/Tests/Fixtures/FooInterface.php -opt/app/vendor/symfony/var-dumper/Tests/Fixtures/GeneratorDemo.php -opt/app/vendor/symfony/var-dumper/Tests/Fixtures/NotLoadableClass.php -opt/app/vendor/symfony/var-dumper/Tests/Fixtures/Twig.php -opt/app/vendor/symfony/var-dumper/Tests/Fixtures/dumb-var.php -opt/app/vendor/symfony/var-dumper/Tests/Fixtures/dump_server.php -opt/app/vendor/symfony/var-dumper/Tests/Fixtures/xml_reader.xml -opt/app/vendor/symfony/var-dumper/Tests/Server/ConnectionTest.php -opt/app/vendor/symfony/var-dumper/Tests/Test/VarDumperTestTraitTest.php -opt/app/vendor/symfony/var-dumper/VarDumper.php -opt/app/vendor/symfony/var-dumper/composer.json -opt/app/vendor/symfony/var-dumper/phpunit.xml.dist -opt/app/vendor/tightenco/collect/collect-logo.png -opt/app/vendor/tightenco/collect/composer.json -opt/app/vendor/tightenco/collect/readme.md -opt/app/vendor/tightenco/collect/src/Collect/Contracts/Support/Arrayable.php -opt/app/vendor/tightenco/collect/src/Collect/Contracts/Support/Htmlable.php -opt/app/vendor/tightenco/collect/src/Collect/Contracts/Support/Jsonable.php -opt/app/vendor/tightenco/collect/src/Collect/Support/Arr.php -opt/app/vendor/tightenco/collect/src/Collect/Support/Collection.php -opt/app/vendor/tightenco/collect/src/Collect/Support/HigherOrderCollectionProxy.php -opt/app/vendor/tightenco/collect/src/Collect/Support/HtmlString.php -opt/app/vendor/tightenco/collect/src/Collect/Support/Traits/Macroable.php -opt/app/vendor/tightenco/collect/src/Collect/Support/alias.php -opt/app/vendor/tightenco/collect/src/Collect/Support/helpers.php -opt/app/vendor/tightenco/collect/stubs/src/Collect/Support/alias.php -opt/app/vendor/tightenco/collect/stubs/src/Collect/Support/helpers.php -opt/app/vendor/tightenco/collect/stubs/tests/bootstrap.php -opt/app/vendor/tightenco/collect/tests/Support/SupportArrTest.php -opt/app/vendor/tightenco/collect/tests/Support/SupportCarbonTest.php -opt/app/vendor/tightenco/collect/tests/Support/SupportCollectionTest.php -opt/app/vendor/tightenco/collect/tests/Support/SupportMacroableTest.php -opt/app/vendor/tightenco/collect/tests/bootstrap.php -opt/app/vendor/tightenco/collect/upgrade.sh -opt/app/vendor/tijsverkoyen/css-to-inline-styles/LICENSE.md -opt/app/vendor/tijsverkoyen/css-to-inline-styles/composer.json -opt/app/vendor/tijsverkoyen/css-to-inline-styles/phpunit.xml.dist -opt/app/vendor/tijsverkoyen/css-to-inline-styles/src/Css/Processor.php -opt/app/vendor/tijsverkoyen/css-to-inline-styles/src/Css/Property/Processor.php -opt/app/vendor/tijsverkoyen/css-to-inline-styles/src/Css/Property/Property.php -opt/app/vendor/tijsverkoyen/css-to-inline-styles/src/Css/Rule/Processor.php -opt/app/vendor/tijsverkoyen/css-to-inline-styles/src/Css/Rule/Rule.php -opt/app/vendor/tijsverkoyen/css-to-inline-styles/src/CssToInlineStyles.php -opt/app/vendor/twig/twig/.editorconfig -opt/app/vendor/twig/twig/.php_cs.dist -opt/app/vendor/twig/twig/CHANGELOG -opt/app/vendor/twig/twig/LICENSE -opt/app/vendor/twig/twig/README.rst -opt/app/vendor/twig/twig/composer.json -opt/app/vendor/twig/twig/doc/advanced.rst -opt/app/vendor/twig/twig/doc/advanced_legacy.rst -opt/app/vendor/twig/twig/doc/api.rst -opt/app/vendor/twig/twig/doc/coding_standards.rst -opt/app/vendor/twig/twig/doc/deprecated.rst -opt/app/vendor/twig/twig/doc/filters/abs.rst -opt/app/vendor/twig/twig/doc/filters/batch.rst -opt/app/vendor/twig/twig/doc/filters/capitalize.rst -opt/app/vendor/twig/twig/doc/filters/convert_encoding.rst -opt/app/vendor/twig/twig/doc/filters/date.rst -opt/app/vendor/twig/twig/doc/filters/date_modify.rst -opt/app/vendor/twig/twig/doc/filters/default.rst -opt/app/vendor/twig/twig/doc/filters/escape.rst -opt/app/vendor/twig/twig/doc/filters/first.rst -opt/app/vendor/twig/twig/doc/filters/format.rst -opt/app/vendor/twig/twig/doc/filters/index.rst -opt/app/vendor/twig/twig/doc/filters/join.rst -opt/app/vendor/twig/twig/doc/filters/json_encode.rst -opt/app/vendor/twig/twig/doc/filters/keys.rst -opt/app/vendor/twig/twig/doc/filters/last.rst -opt/app/vendor/twig/twig/doc/filters/length.rst -opt/app/vendor/twig/twig/doc/filters/lower.rst -opt/app/vendor/twig/twig/doc/filters/merge.rst -opt/app/vendor/twig/twig/doc/filters/nl2br.rst -opt/app/vendor/twig/twig/doc/filters/number_format.rst -opt/app/vendor/twig/twig/doc/filters/raw.rst -opt/app/vendor/twig/twig/doc/filters/replace.rst -opt/app/vendor/twig/twig/doc/filters/reverse.rst -opt/app/vendor/twig/twig/doc/filters/round.rst -opt/app/vendor/twig/twig/doc/filters/slice.rst -opt/app/vendor/twig/twig/doc/filters/sort.rst -opt/app/vendor/twig/twig/doc/filters/split.rst -opt/app/vendor/twig/twig/doc/filters/striptags.rst -opt/app/vendor/twig/twig/doc/filters/title.rst -opt/app/vendor/twig/twig/doc/filters/trim.rst -opt/app/vendor/twig/twig/doc/filters/upper.rst -opt/app/vendor/twig/twig/doc/filters/url_encode.rst -opt/app/vendor/twig/twig/doc/functions/attribute.rst -opt/app/vendor/twig/twig/doc/functions/block.rst -opt/app/vendor/twig/twig/doc/functions/constant.rst -opt/app/vendor/twig/twig/doc/functions/cycle.rst -opt/app/vendor/twig/twig/doc/functions/date.rst -opt/app/vendor/twig/twig/doc/functions/dump.rst -opt/app/vendor/twig/twig/doc/functions/include.rst -opt/app/vendor/twig/twig/doc/functions/index.rst -opt/app/vendor/twig/twig/doc/functions/max.rst -opt/app/vendor/twig/twig/doc/functions/min.rst -opt/app/vendor/twig/twig/doc/functions/parent.rst -opt/app/vendor/twig/twig/doc/functions/random.rst -opt/app/vendor/twig/twig/doc/functions/range.rst -opt/app/vendor/twig/twig/doc/functions/source.rst -opt/app/vendor/twig/twig/doc/functions/template_from_string.rst -opt/app/vendor/twig/twig/doc/index.rst -opt/app/vendor/twig/twig/doc/installation.rst -opt/app/vendor/twig/twig/doc/internals.rst -opt/app/vendor/twig/twig/doc/intro.rst -opt/app/vendor/twig/twig/doc/recipes.rst -opt/app/vendor/twig/twig/doc/tags/autoescape.rst -opt/app/vendor/twig/twig/doc/tags/block.rst -opt/app/vendor/twig/twig/doc/tags/deprecated.rst -opt/app/vendor/twig/twig/doc/tags/do.rst -opt/app/vendor/twig/twig/doc/tags/embed.rst -opt/app/vendor/twig/twig/doc/tags/extends.rst -opt/app/vendor/twig/twig/doc/tags/filter.rst -opt/app/vendor/twig/twig/doc/tags/flush.rst -opt/app/vendor/twig/twig/doc/tags/for.rst -opt/app/vendor/twig/twig/doc/tags/from.rst -opt/app/vendor/twig/twig/doc/tags/if.rst -opt/app/vendor/twig/twig/doc/tags/import.rst -opt/app/vendor/twig/twig/doc/tags/include.rst -opt/app/vendor/twig/twig/doc/tags/index.rst -opt/app/vendor/twig/twig/doc/tags/macro.rst -opt/app/vendor/twig/twig/doc/tags/sandbox.rst -opt/app/vendor/twig/twig/doc/tags/set.rst -opt/app/vendor/twig/twig/doc/tags/spaceless.rst -opt/app/vendor/twig/twig/doc/tags/use.rst -opt/app/vendor/twig/twig/doc/tags/verbatim.rst -opt/app/vendor/twig/twig/doc/tags/with.rst -opt/app/vendor/twig/twig/doc/templates.rst -opt/app/vendor/twig/twig/doc/tests/constant.rst -opt/app/vendor/twig/twig/doc/tests/defined.rst -opt/app/vendor/twig/twig/doc/tests/divisibleby.rst -opt/app/vendor/twig/twig/doc/tests/empty.rst -opt/app/vendor/twig/twig/doc/tests/even.rst -opt/app/vendor/twig/twig/doc/tests/index.rst -opt/app/vendor/twig/twig/doc/tests/iterable.rst -opt/app/vendor/twig/twig/doc/tests/null.rst -opt/app/vendor/twig/twig/doc/tests/odd.rst -opt/app/vendor/twig/twig/doc/tests/sameas.rst -opt/app/vendor/twig/twig/ext/twig/config.m4 -opt/app/vendor/twig/twig/ext/twig/config.w32 -opt/app/vendor/twig/twig/ext/twig/php_twig.h -opt/app/vendor/twig/twig/ext/twig/twig.c -opt/app/vendor/twig/twig/lib/Twig/Autoloader.php -opt/app/vendor/twig/twig/lib/Twig/BaseNodeVisitor.php -opt/app/vendor/twig/twig/lib/Twig/Cache/Filesystem.php -opt/app/vendor/twig/twig/lib/Twig/Cache/Null.php -opt/app/vendor/twig/twig/lib/Twig/CacheInterface.php -opt/app/vendor/twig/twig/lib/Twig/Compiler.php -opt/app/vendor/twig/twig/lib/Twig/CompilerInterface.php -opt/app/vendor/twig/twig/lib/Twig/ContainerRuntimeLoader.php -opt/app/vendor/twig/twig/lib/Twig/Environment.php -opt/app/vendor/twig/twig/lib/Twig/Error.php -opt/app/vendor/twig/twig/lib/Twig/Error/Loader.php -opt/app/vendor/twig/twig/lib/Twig/Error/Runtime.php -opt/app/vendor/twig/twig/lib/Twig/Error/Syntax.php -opt/app/vendor/twig/twig/lib/Twig/ExistsLoaderInterface.php -opt/app/vendor/twig/twig/lib/Twig/ExpressionParser.php -opt/app/vendor/twig/twig/lib/Twig/Extension.php -opt/app/vendor/twig/twig/lib/Twig/Extension/Core.php -opt/app/vendor/twig/twig/lib/Twig/Extension/Debug.php -opt/app/vendor/twig/twig/lib/Twig/Extension/Escaper.php -opt/app/vendor/twig/twig/lib/Twig/Extension/GlobalsInterface.php -opt/app/vendor/twig/twig/lib/Twig/Extension/InitRuntimeInterface.php -opt/app/vendor/twig/twig/lib/Twig/Extension/Optimizer.php -opt/app/vendor/twig/twig/lib/Twig/Extension/Profiler.php -opt/app/vendor/twig/twig/lib/Twig/Extension/Sandbox.php -opt/app/vendor/twig/twig/lib/Twig/Extension/Staging.php -opt/app/vendor/twig/twig/lib/Twig/Extension/StringLoader.php -opt/app/vendor/twig/twig/lib/Twig/ExtensionInterface.php -opt/app/vendor/twig/twig/lib/Twig/FactoryRuntimeLoader.php -opt/app/vendor/twig/twig/lib/Twig/FileExtensionEscapingStrategy.php -opt/app/vendor/twig/twig/lib/Twig/Filter.php -opt/app/vendor/twig/twig/lib/Twig/Filter/Function.php -opt/app/vendor/twig/twig/lib/Twig/Filter/Method.php -opt/app/vendor/twig/twig/lib/Twig/Filter/Node.php -opt/app/vendor/twig/twig/lib/Twig/FilterCallableInterface.php -opt/app/vendor/twig/twig/lib/Twig/FilterInterface.php -opt/app/vendor/twig/twig/lib/Twig/Function.php -opt/app/vendor/twig/twig/lib/Twig/Function/Function.php -opt/app/vendor/twig/twig/lib/Twig/Function/Method.php -opt/app/vendor/twig/twig/lib/Twig/Function/Node.php -opt/app/vendor/twig/twig/lib/Twig/FunctionCallableInterface.php -opt/app/vendor/twig/twig/lib/Twig/FunctionInterface.php -opt/app/vendor/twig/twig/lib/Twig/Lexer.php -opt/app/vendor/twig/twig/lib/Twig/LexerInterface.php -opt/app/vendor/twig/twig/lib/Twig/Loader/Array.php -opt/app/vendor/twig/twig/lib/Twig/Loader/Chain.php -opt/app/vendor/twig/twig/lib/Twig/Loader/Filesystem.php -opt/app/vendor/twig/twig/lib/Twig/Loader/String.php -opt/app/vendor/twig/twig/lib/Twig/LoaderInterface.php -opt/app/vendor/twig/twig/lib/Twig/Markup.php -opt/app/vendor/twig/twig/lib/Twig/Node.php -opt/app/vendor/twig/twig/lib/Twig/Node/AutoEscape.php -opt/app/vendor/twig/twig/lib/Twig/Node/Block.php -opt/app/vendor/twig/twig/lib/Twig/Node/BlockReference.php -opt/app/vendor/twig/twig/lib/Twig/Node/Body.php -opt/app/vendor/twig/twig/lib/Twig/Node/CheckSecurity.php -opt/app/vendor/twig/twig/lib/Twig/Node/Deprecated.php -opt/app/vendor/twig/twig/lib/Twig/Node/Do.php -opt/app/vendor/twig/twig/lib/Twig/Node/Embed.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Array.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/AssignName.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Add.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/And.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/BitwiseAnd.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/BitwiseOr.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/BitwiseXor.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Concat.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Div.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/EndsWith.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Equal.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/FloorDiv.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Greater.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/GreaterEqual.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/In.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Less.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/LessEqual.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Matches.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Mod.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Mul.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/NotEqual.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/NotIn.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Or.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Power.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Range.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/StartsWith.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Sub.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/BlockReference.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Call.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Conditional.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Constant.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/ExtensionReference.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Filter.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Filter/Default.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Function.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/GetAttr.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/MethodCall.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Name.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/NullCoalesce.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Parent.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/TempName.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Test.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Test/Constant.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Test/Defined.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Test/Divisibleby.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Test/Even.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Test/Null.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Test/Odd.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Test/Sameas.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Unary.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Unary/Neg.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Unary/Not.php -opt/app/vendor/twig/twig/lib/Twig/Node/Expression/Unary/Pos.php -opt/app/vendor/twig/twig/lib/Twig/Node/Flush.php -opt/app/vendor/twig/twig/lib/Twig/Node/For.php -opt/app/vendor/twig/twig/lib/Twig/Node/ForLoop.php -opt/app/vendor/twig/twig/lib/Twig/Node/If.php -opt/app/vendor/twig/twig/lib/Twig/Node/Import.php -opt/app/vendor/twig/twig/lib/Twig/Node/Include.php -opt/app/vendor/twig/twig/lib/Twig/Node/Macro.php -opt/app/vendor/twig/twig/lib/Twig/Node/Module.php -opt/app/vendor/twig/twig/lib/Twig/Node/Print.php -opt/app/vendor/twig/twig/lib/Twig/Node/Sandbox.php -opt/app/vendor/twig/twig/lib/Twig/Node/SandboxedPrint.php -opt/app/vendor/twig/twig/lib/Twig/Node/Set.php -opt/app/vendor/twig/twig/lib/Twig/Node/SetTemp.php -opt/app/vendor/twig/twig/lib/Twig/Node/Spaceless.php -opt/app/vendor/twig/twig/lib/Twig/Node/Text.php -opt/app/vendor/twig/twig/lib/Twig/Node/With.php -opt/app/vendor/twig/twig/lib/Twig/NodeCaptureInterface.php -opt/app/vendor/twig/twig/lib/Twig/NodeInterface.php -opt/app/vendor/twig/twig/lib/Twig/NodeOutputInterface.php -opt/app/vendor/twig/twig/lib/Twig/NodeTraverser.php -opt/app/vendor/twig/twig/lib/Twig/NodeVisitor/Escaper.php -opt/app/vendor/twig/twig/lib/Twig/NodeVisitor/Optimizer.php -opt/app/vendor/twig/twig/lib/Twig/NodeVisitor/SafeAnalysis.php -opt/app/vendor/twig/twig/lib/Twig/NodeVisitor/Sandbox.php -opt/app/vendor/twig/twig/lib/Twig/NodeVisitorInterface.php -opt/app/vendor/twig/twig/lib/Twig/Parser.php -opt/app/vendor/twig/twig/lib/Twig/ParserInterface.php -opt/app/vendor/twig/twig/lib/Twig/Profiler/Dumper/Base.php -opt/app/vendor/twig/twig/lib/Twig/Profiler/Dumper/Blackfire.php -opt/app/vendor/twig/twig/lib/Twig/Profiler/Dumper/Html.php -opt/app/vendor/twig/twig/lib/Twig/Profiler/Dumper/Text.php -opt/app/vendor/twig/twig/lib/Twig/Profiler/Node/EnterProfile.php -opt/app/vendor/twig/twig/lib/Twig/Profiler/Node/LeaveProfile.php -opt/app/vendor/twig/twig/lib/Twig/Profiler/NodeVisitor/Profiler.php -opt/app/vendor/twig/twig/lib/Twig/Profiler/Profile.php -opt/app/vendor/twig/twig/lib/Twig/RuntimeLoaderInterface.php -opt/app/vendor/twig/twig/lib/Twig/Sandbox/SecurityError.php -opt/app/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedFilterError.php -opt/app/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedFunctionError.php -opt/app/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedMethodError.php -opt/app/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedPropertyError.php -opt/app/vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedTagError.php -opt/app/vendor/twig/twig/lib/Twig/Sandbox/SecurityPolicy.php -opt/app/vendor/twig/twig/lib/Twig/Sandbox/SecurityPolicyInterface.php -opt/app/vendor/twig/twig/lib/Twig/SimpleFilter.php -opt/app/vendor/twig/twig/lib/Twig/SimpleFunction.php -opt/app/vendor/twig/twig/lib/Twig/SimpleTest.php -opt/app/vendor/twig/twig/lib/Twig/Source.php -opt/app/vendor/twig/twig/lib/Twig/SourceContextLoaderInterface.php -opt/app/vendor/twig/twig/lib/Twig/Template.php -opt/app/vendor/twig/twig/lib/Twig/TemplateInterface.php -opt/app/vendor/twig/twig/lib/Twig/TemplateWrapper.php -opt/app/vendor/twig/twig/lib/Twig/Test.php -opt/app/vendor/twig/twig/lib/Twig/Test/Function.php -opt/app/vendor/twig/twig/lib/Twig/Test/IntegrationTestCase.php -opt/app/vendor/twig/twig/lib/Twig/Test/Method.php -opt/app/vendor/twig/twig/lib/Twig/Test/Node.php -opt/app/vendor/twig/twig/lib/Twig/Test/NodeTestCase.php -opt/app/vendor/twig/twig/lib/Twig/TestCallableInterface.php -opt/app/vendor/twig/twig/lib/Twig/TestInterface.php -opt/app/vendor/twig/twig/lib/Twig/Token.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/AutoEscape.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Block.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Deprecated.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Do.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Embed.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Extends.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Filter.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Flush.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/For.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/From.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/If.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Import.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Include.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Macro.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Sandbox.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Set.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Spaceless.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/Use.php -opt/app/vendor/twig/twig/lib/Twig/TokenParser/With.php -opt/app/vendor/twig/twig/lib/Twig/TokenParserBroker.php -opt/app/vendor/twig/twig/lib/Twig/TokenParserBrokerInterface.php -opt/app/vendor/twig/twig/lib/Twig/TokenParserInterface.php -opt/app/vendor/twig/twig/lib/Twig/TokenStream.php -opt/app/vendor/twig/twig/lib/Twig/Util/DeprecationCollector.php -opt/app/vendor/twig/twig/lib/Twig/Util/TemplateDirIterator.php -opt/app/vendor/twig/twig/phpunit.xml.dist -opt/app/vendor/twig/twig/src/Cache/CacheInterface.php -opt/app/vendor/twig/twig/src/Cache/FilesystemCache.php -opt/app/vendor/twig/twig/src/Cache/NullCache.php -opt/app/vendor/twig/twig/src/Compiler.php -opt/app/vendor/twig/twig/src/Environment.php -opt/app/vendor/twig/twig/src/Error/Error.php -opt/app/vendor/twig/twig/src/Error/LoaderError.php -opt/app/vendor/twig/twig/src/Error/RuntimeError.php -opt/app/vendor/twig/twig/src/Error/SyntaxError.php -opt/app/vendor/twig/twig/src/ExpressionParser.php -opt/app/vendor/twig/twig/src/Extension/AbstractExtension.php -opt/app/vendor/twig/twig/src/Extension/CoreExtension.php -opt/app/vendor/twig/twig/src/Extension/DebugExtension.php -opt/app/vendor/twig/twig/src/Extension/EscaperExtension.php -opt/app/vendor/twig/twig/src/Extension/ExtensionInterface.php -opt/app/vendor/twig/twig/src/Extension/GlobalsInterface.php -opt/app/vendor/twig/twig/src/Extension/InitRuntimeInterface.php -opt/app/vendor/twig/twig/src/Extension/OptimizerExtension.php -opt/app/vendor/twig/twig/src/Extension/ProfilerExtension.php -opt/app/vendor/twig/twig/src/Extension/RuntimeExtensionInterface.php -opt/app/vendor/twig/twig/src/Extension/SandboxExtension.php -opt/app/vendor/twig/twig/src/Extension/StagingExtension.php -opt/app/vendor/twig/twig/src/Extension/StringLoaderExtension.php -opt/app/vendor/twig/twig/src/FileExtensionEscapingStrategy.php -opt/app/vendor/twig/twig/src/Lexer.php -opt/app/vendor/twig/twig/src/Loader/ArrayLoader.php -opt/app/vendor/twig/twig/src/Loader/ChainLoader.php -opt/app/vendor/twig/twig/src/Loader/ExistsLoaderInterface.php -opt/app/vendor/twig/twig/src/Loader/FilesystemLoader.php -opt/app/vendor/twig/twig/src/Loader/LoaderInterface.php -opt/app/vendor/twig/twig/src/Loader/SourceContextLoaderInterface.php -opt/app/vendor/twig/twig/src/Markup.php -opt/app/vendor/twig/twig/src/Node/AutoEscapeNode.php -opt/app/vendor/twig/twig/src/Node/BlockNode.php -opt/app/vendor/twig/twig/src/Node/BlockReferenceNode.php -opt/app/vendor/twig/twig/src/Node/BodyNode.php -opt/app/vendor/twig/twig/src/Node/CheckSecurityNode.php -opt/app/vendor/twig/twig/src/Node/DeprecatedNode.php -opt/app/vendor/twig/twig/src/Node/DoNode.php -opt/app/vendor/twig/twig/src/Node/EmbedNode.php -opt/app/vendor/twig/twig/src/Node/Expression/AbstractExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/ArrayExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/AssignNameExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/AbstractBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/AddBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/AndBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/BitwiseAndBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/BitwiseOrBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/BitwiseXorBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/ConcatBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/DivBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/EndsWithBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/EqualBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/FloorDivBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/GreaterBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/GreaterEqualBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/InBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/LessBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/LessEqualBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/MatchesBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/ModBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/MulBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/NotEqualBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/NotInBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/OrBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/PowerBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/RangeBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/StartsWithBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/Binary/SubBinary.php -opt/app/vendor/twig/twig/src/Node/Expression/BlockReferenceExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/CallExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/ConditionalExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/ConstantExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/Filter/DefaultFilter.php -opt/app/vendor/twig/twig/src/Node/Expression/FilterExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/FunctionExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/GetAttrExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/MethodCallExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/NameExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/NullCoalesceExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/ParentExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/TempNameExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/Test/ConstantTest.php -opt/app/vendor/twig/twig/src/Node/Expression/Test/DefinedTest.php -opt/app/vendor/twig/twig/src/Node/Expression/Test/DivisiblebyTest.php -opt/app/vendor/twig/twig/src/Node/Expression/Test/EvenTest.php -opt/app/vendor/twig/twig/src/Node/Expression/Test/NullTest.php -opt/app/vendor/twig/twig/src/Node/Expression/Test/OddTest.php -opt/app/vendor/twig/twig/src/Node/Expression/Test/SameasTest.php -opt/app/vendor/twig/twig/src/Node/Expression/TestExpression.php -opt/app/vendor/twig/twig/src/Node/Expression/Unary/AbstractUnary.php -opt/app/vendor/twig/twig/src/Node/Expression/Unary/NegUnary.php -opt/app/vendor/twig/twig/src/Node/Expression/Unary/NotUnary.php -opt/app/vendor/twig/twig/src/Node/Expression/Unary/PosUnary.php -opt/app/vendor/twig/twig/src/Node/FlushNode.php -opt/app/vendor/twig/twig/src/Node/ForLoopNode.php -opt/app/vendor/twig/twig/src/Node/ForNode.php -opt/app/vendor/twig/twig/src/Node/IfNode.php -opt/app/vendor/twig/twig/src/Node/ImportNode.php -opt/app/vendor/twig/twig/src/Node/IncludeNode.php -opt/app/vendor/twig/twig/src/Node/MacroNode.php -opt/app/vendor/twig/twig/src/Node/ModuleNode.php -opt/app/vendor/twig/twig/src/Node/Node.php -opt/app/vendor/twig/twig/src/Node/NodeCaptureInterface.php -opt/app/vendor/twig/twig/src/Node/NodeOutputInterface.php -opt/app/vendor/twig/twig/src/Node/PrintNode.php -opt/app/vendor/twig/twig/src/Node/SandboxNode.php -opt/app/vendor/twig/twig/src/Node/SandboxedPrintNode.php -opt/app/vendor/twig/twig/src/Node/SetNode.php -opt/app/vendor/twig/twig/src/Node/SetTempNode.php -opt/app/vendor/twig/twig/src/Node/SpacelessNode.php -opt/app/vendor/twig/twig/src/Node/TextNode.php -opt/app/vendor/twig/twig/src/Node/WithNode.php -opt/app/vendor/twig/twig/src/NodeTraverser.php -opt/app/vendor/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php -opt/app/vendor/twig/twig/src/NodeVisitor/EscaperNodeVisitor.php -opt/app/vendor/twig/twig/src/NodeVisitor/NodeVisitorInterface.php -opt/app/vendor/twig/twig/src/NodeVisitor/OptimizerNodeVisitor.php -opt/app/vendor/twig/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php -opt/app/vendor/twig/twig/src/NodeVisitor/SandboxNodeVisitor.php -opt/app/vendor/twig/twig/src/Parser.php -opt/app/vendor/twig/twig/src/Profiler/Dumper/BaseDumper.php -opt/app/vendor/twig/twig/src/Profiler/Dumper/BlackfireDumper.php -opt/app/vendor/twig/twig/src/Profiler/Dumper/HtmlDumper.php -opt/app/vendor/twig/twig/src/Profiler/Dumper/TextDumper.php -opt/app/vendor/twig/twig/src/Profiler/Node/EnterProfileNode.php -opt/app/vendor/twig/twig/src/Profiler/Node/LeaveProfileNode.php -opt/app/vendor/twig/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php -opt/app/vendor/twig/twig/src/Profiler/Profile.php -opt/app/vendor/twig/twig/src/RuntimeLoader/ContainerRuntimeLoader.php -opt/app/vendor/twig/twig/src/RuntimeLoader/FactoryRuntimeLoader.php -opt/app/vendor/twig/twig/src/RuntimeLoader/RuntimeLoaderInterface.php -opt/app/vendor/twig/twig/src/Sandbox/SecurityError.php -opt/app/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFilterError.php -opt/app/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFunctionError.php -opt/app/vendor/twig/twig/src/Sandbox/SecurityNotAllowedMethodError.php -opt/app/vendor/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php -opt/app/vendor/twig/twig/src/Sandbox/SecurityNotAllowedTagError.php -opt/app/vendor/twig/twig/src/Sandbox/SecurityPolicy.php -opt/app/vendor/twig/twig/src/Sandbox/SecurityPolicyInterface.php -opt/app/vendor/twig/twig/src/Source.php -opt/app/vendor/twig/twig/src/Template.php -opt/app/vendor/twig/twig/src/TemplateWrapper.php -opt/app/vendor/twig/twig/src/Test/IntegrationTestCase.php -opt/app/vendor/twig/twig/src/Test/NodeTestCase.php -opt/app/vendor/twig/twig/src/Token.php -opt/app/vendor/twig/twig/src/TokenParser/AbstractTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/AutoEscapeTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/BlockTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/DeprecatedTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/DoTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/EmbedTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/ExtendsTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/FilterTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/FlushTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/ForTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/FromTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/IfTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/ImportTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/IncludeTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/MacroTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/SandboxTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/SetTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/SpacelessTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/TokenParserInterface.php -opt/app/vendor/twig/twig/src/TokenParser/UseTokenParser.php -opt/app/vendor/twig/twig/src/TokenParser/WithTokenParser.php -opt/app/vendor/twig/twig/src/TokenStream.php -opt/app/vendor/twig/twig/src/TwigFilter.php -opt/app/vendor/twig/twig/src/TwigFunction.php -opt/app/vendor/twig/twig/src/TwigTest.php -opt/app/vendor/twig/twig/src/Util/DeprecationCollector.php -opt/app/vendor/twig/twig/src/Util/TemplateDirIterator.php -opt/app/vendor/twig/twig/test/Twig/Tests/AutoloaderTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Cache/FilesystemTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/CompilerTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/ContainerRuntimeLoaderTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/CustomExtensionTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/EnvironmentTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/ErrorTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/ExpressionParserTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Extension/CoreTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Extension/SandboxTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/FactoryRuntimeLoaderTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/FileCachingTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/FileExtensionEscapingStrategyTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/FilesystemHelper.php -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/autoescape/block.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/autoescape/name.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/errors/base.html -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/errors/index.html -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/child_contents_outside_blocks.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/multiline_array_with_undefined_variable.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/multiline_array_with_undefined_variable_again.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/multiline_function_with_undefined_variable.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/multiline_function_with_unknown_argument.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/multiline_tag_with_undefined_variable.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/strict_comparison_operator.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/syntax_error_in_reused_template.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/unclosed_tag.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/undefined_parent.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/undefined_template_in_child_template.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/undefined_trait.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/_self.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/array.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/array_call.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/binary.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/bitwise.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/comparison.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/divisibleby.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/dotdot.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/ends_with.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/floats.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/grouping.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/literals.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/magic_call.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/matches.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/method_call.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/negative_numbers.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/operators_as_variables.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/postfix.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/power.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/sameas.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/starts_with.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/strings.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/ternary_operator.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/ternary_operator_noelse.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/ternary_operator_nothen.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/two_word_operators_as_variables.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/unary.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/unary_macro_arguments.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/unary_precedence.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/abs.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/batch.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/batch_float.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/batch_with_empty_fill.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/batch_with_exact_elements.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/batch_with_fill.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/batch_with_keys.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/batch_with_zero_elements.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/convert_encoding.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/date.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/date_default_format.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/date_default_format_interval.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/date_immutable.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/date_interval.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/date_modify.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/date_namedargs.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/default.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/dynamic_filter.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/escape.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/escape_html_attr.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/escape_javascript.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/escape_non_supported_charset.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/first.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/force_escape.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/format.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/join.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/json_encode.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/last.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/length.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/length_utf8.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/merge.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/nl2br.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/number_format.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/number_format_default.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/replace.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/replace_invalid_arg.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/reverse.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/round.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/slice.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/sort.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/special_chars.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/split.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/split_utf8.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/static_calls.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/trim.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/urlencode.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/urlencode_deprecated.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/attribute.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/block.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/block_with_template.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/block_without_name.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/constant.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/cycle.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/date.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/date_namedargs.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/dump.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/dump_array.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/dynamic_function.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/assignment.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/autoescaping.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/basic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/expression.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/ignore_missing.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/missing.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/missing_nested.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/sandbox.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/sandbox_disabling.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/sandbox_disabling_ignore_missing.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/template_instance.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/templates_as_array.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/with_context.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/with_variables.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/magic_call.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/magic_call53.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/max.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/min.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/range.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/recursive_block_with_inheritance.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/source.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/special_chars.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/static_calls.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/template_from_string.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/default_values.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/nested_calls.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/reserved_variables.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/simple.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/varargs.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/varargs_argument.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/with_filters.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/regression/block_names_unicity.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/regression/combined_debug_info.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/regression/empty_token.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/regression/issue_1143.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/regression/multi_word_tests.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/regression/simple_xml_element.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/regression/strings_like_numbers.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/basic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/blocks.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/double_escaping.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/functions.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/literal.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/nested.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/objects.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/raw.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/strategy.legacy.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/strategy.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/type.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/with_filters.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/with_filters_arguments.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/with_pre_escape_filters.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/with_preserves_safety_filters.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/block/basic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/block/block_unique_name.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/block/special_chars.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/deprecated/block.legacy.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/deprecated/macro.legacy.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/deprecated/template.legacy.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/embed/basic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/embed/complex_dynamic_parent.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/embed/dynamic_parent.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/embed/error_line.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/embed/multiple.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/embed/nested.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/embed/with_extends.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/basic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/json_encode.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/multiple.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/nested.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/with_for_tag.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/with_if_tag.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/condition.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/context.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/else.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/inner_variables.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/keys.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/keys_and_values.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/loop_context.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/loop_context_local.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/loop_not_defined.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/loop_not_defined_cond.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/nested_else.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/objects.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/objects_countable.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/recursive.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/values.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/from.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/if/basic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/if/expression.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/basic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/expression.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/ignore_missing.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/missing.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/missing_nested.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/only.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/template_instance.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/templates_as_array.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/with_variables.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/basic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/block_expr.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/block_expr2.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/conditional.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/dynamic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/empty.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/extends_as_array.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/extends_as_array_with_empty_name.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/extends_as_array_with_null_name.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/multiple.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/multiple_dynamic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/nested_blocks.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/nested_blocks_parent_only.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/nested_inheritance.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/parent.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/parent_as_template_wrapper.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/parent_change.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/parent_in_a_block.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/parent_isolation.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/parent_nested.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/parent_without_extends.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/parent_without_extends_but_traits.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/template_instance.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/use.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/basic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/endmacro_name.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/external.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/from.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/from_with_reserved_name.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/global.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/import_with_reserved_nam.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/reserved_name.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/self_import.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/special_chars.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/super_globals.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/raw/basic.legacy.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/raw/mixed_usage_with_raw.legacy.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/raw/whitespace_control.legacy.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/sandbox/not_valid1.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/sandbox/not_valid2.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/sandbox/simple.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/set/basic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/set/capture-empty.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/set/capture.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/set/expression.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/spaceless/simple.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/special_chars.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/trim_block.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/aliases.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/basic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/deep.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/deep_empty.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/inheritance.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/inheritance2.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/multiple.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/multiple_aliases.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/parent_block.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/parent_block2.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/parent_block3.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/use_with_parent.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/verbatim/basic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/verbatim/mixed_usage_with_raw.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/verbatim/whitespace_control.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/with/basic.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/with/expression.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/with/nested.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/with/with_no_hash.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/with/with_only.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/array.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/constant.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/defined.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/defined_for_attribute.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/defined_for_blocks.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/defined_for_blocks_with_template.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/defined_for_constants.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/dynamic_test.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/empty.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/even.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/in.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/in_with_objects.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/iterable.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/null_coalesce.test -opt/app/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/odd.test -opt/app/vendor/twig/twig/test/Twig/Tests/IntegrationTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/LegacyFixtures/autoescape/filename.legacy.test -opt/app/vendor/twig/twig/test/Twig/Tests/LegacyFixtures/functions/undefined_block.legacy.test -opt/app/vendor/twig/twig/test/Twig/Tests/LegacyFixtures/test.legacy.test -opt/app/vendor/twig/twig/test/Twig/Tests/LegacyIntegrationTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/LexerTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/ArrayTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/ChainTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/FilesystemTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_empty_parent.html.twig -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_nonexistent_parent.html.twig -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_null_parent.html.twig -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/array_inheritance_valid_parent.html.twig -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/parent.html.twig -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/inheritance/spare_parent.html.twig -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named/index.html -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_bis/index.html -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_final/index.html -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_quater/named_absolute.html -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/named_ter/index.html -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal/index.html -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_bis/index.html -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_final/index.html -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal_ter/index.html -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/phar/phar-sample.phar -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme1/blocks.html.twig -opt/app/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme2/blocks.html.twig -opt/app/vendor/twig/twig/test/Twig/Tests/NativeExtensionTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/AutoEscapeTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/BlockReferenceTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/BlockTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/DeprecatedTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/DoTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/ArrayTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/AssignNameTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/AddTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/AndTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/ConcatTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/DivTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/FloorDivTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/ModTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/MulTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/OrTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/SubTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/CallTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/ConditionalTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/ConstantTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/FilterTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/FunctionTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/GetAttrTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/NameTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/NullCoalesceTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/FilterInclude.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/FunctionInclude.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/TestInclude.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/ParentTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/TestTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/Unary/NegTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/Unary/NotTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/Expression/Unary/PosTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/ForTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/IfTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/ImportTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/IncludeTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/MacroTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/ModuleTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/PrintTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/SandboxTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/SandboxedPrintTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/SetTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/SpacelessTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Node/TextTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/NodeVisitor/OptimizerTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/ParserTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/AbstractTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/BlackfireTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/HtmlTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/TextTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Profiler/ProfileTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/TemplateTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/TemplateWrapperTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/TokenStreamTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/Util/DeprecationCollectorTest.php -opt/app/vendor/twig/twig/test/Twig/Tests/escapingTest.php -opt/app/vendor/vlucas/phpdotenv/LICENSE.txt -opt/app/vendor/vlucas/phpdotenv/composer.json -opt/app/vendor/vlucas/phpdotenv/src/Dotenv.php -opt/app/vendor/vlucas/phpdotenv/src/Environment/AbstractVariables.php -opt/app/vendor/vlucas/phpdotenv/src/Environment/Adapter/AdapterInterface.php -opt/app/vendor/vlucas/phpdotenv/src/Environment/Adapter/ApacheAdapter.php -opt/app/vendor/vlucas/phpdotenv/src/Environment/Adapter/ArrayAdapter.php -opt/app/vendor/vlucas/phpdotenv/src/Environment/Adapter/EnvConstAdapter.php -opt/app/vendor/vlucas/phpdotenv/src/Environment/Adapter/PutenvAdapter.php -opt/app/vendor/vlucas/phpdotenv/src/Environment/Adapter/ServerConstAdapter.php -opt/app/vendor/vlucas/phpdotenv/src/Environment/DotenvFactory.php -opt/app/vendor/vlucas/phpdotenv/src/Environment/DotenvVariables.php -opt/app/vendor/vlucas/phpdotenv/src/Environment/FactoryInterface.php -opt/app/vendor/vlucas/phpdotenv/src/Environment/VariablesInterface.php -opt/app/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php -opt/app/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php -opt/app/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php -opt/app/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php -opt/app/vendor/vlucas/phpdotenv/src/Lines.php -opt/app/vendor/vlucas/phpdotenv/src/Loader.php -opt/app/vendor/vlucas/phpdotenv/src/Parser.php -opt/app/vendor/vlucas/phpdotenv/src/Regex/Error.php -opt/app/vendor/vlucas/phpdotenv/src/Regex/Regex.php -opt/app/vendor/vlucas/phpdotenv/src/Regex/Result.php -opt/app/vendor/vlucas/phpdotenv/src/Regex/Success.php -opt/app/vendor/vlucas/phpdotenv/src/Validator.php -opt/app/vendor/zendframework/zend-diactoros/.coveralls.yml -opt/app/vendor/zendframework/zend-diactoros/CHANGELOG.md -opt/app/vendor/zendframework/zend-diactoros/CONDUCT.md -opt/app/vendor/zendframework/zend-diactoros/CONTRIBUTING.md -opt/app/vendor/zendframework/zend-diactoros/LICENSE.md -opt/app/vendor/zendframework/zend-diactoros/README.md -opt/app/vendor/zendframework/zend-diactoros/composer.json -opt/app/vendor/zendframework/zend-diactoros/composer.lock -opt/app/vendor/zendframework/zend-diactoros/mkdocs.yml -opt/app/vendor/zendframework/zend-diactoros/src/AbstractSerializer.php -opt/app/vendor/zendframework/zend-diactoros/src/CallbackStream.php -opt/app/vendor/zendframework/zend-diactoros/src/Exception/DeprecatedMethodException.php -opt/app/vendor/zendframework/zend-diactoros/src/Exception/ExceptionInterface.php -opt/app/vendor/zendframework/zend-diactoros/src/HeaderSecurity.php -opt/app/vendor/zendframework/zend-diactoros/src/MessageTrait.php -opt/app/vendor/zendframework/zend-diactoros/src/PhpInputStream.php -opt/app/vendor/zendframework/zend-diactoros/src/RelativeStream.php -opt/app/vendor/zendframework/zend-diactoros/src/Request.php -opt/app/vendor/zendframework/zend-diactoros/src/Request/ArraySerializer.php -opt/app/vendor/zendframework/zend-diactoros/src/Request/Serializer.php -opt/app/vendor/zendframework/zend-diactoros/src/RequestTrait.php -opt/app/vendor/zendframework/zend-diactoros/src/Response.php -opt/app/vendor/zendframework/zend-diactoros/src/Response/ArraySerializer.php -opt/app/vendor/zendframework/zend-diactoros/src/Response/EmitterInterface.php -opt/app/vendor/zendframework/zend-diactoros/src/Response/EmptyResponse.php -opt/app/vendor/zendframework/zend-diactoros/src/Response/HtmlResponse.php -opt/app/vendor/zendframework/zend-diactoros/src/Response/InjectContentTypeTrait.php -opt/app/vendor/zendframework/zend-diactoros/src/Response/JsonResponse.php -opt/app/vendor/zendframework/zend-diactoros/src/Response/RedirectResponse.php -opt/app/vendor/zendframework/zend-diactoros/src/Response/SapiEmitter.php -opt/app/vendor/zendframework/zend-diactoros/src/Response/SapiEmitterTrait.php -opt/app/vendor/zendframework/zend-diactoros/src/Response/SapiStreamEmitter.php -opt/app/vendor/zendframework/zend-diactoros/src/Response/Serializer.php -opt/app/vendor/zendframework/zend-diactoros/src/Response/TextResponse.php -opt/app/vendor/zendframework/zend-diactoros/src/Response/XmlResponse.php -opt/app/vendor/zendframework/zend-diactoros/src/Server.php -opt/app/vendor/zendframework/zend-diactoros/src/ServerRequest.php -opt/app/vendor/zendframework/zend-diactoros/src/ServerRequestFactory.php -opt/app/vendor/zendframework/zend-diactoros/src/Stream.php -opt/app/vendor/zendframework/zend-diactoros/src/UploadedFile.php -opt/app/vendor/zendframework/zend-diactoros/src/Uri.php -opt/app/vendor/zendframework/zend-diactoros/src/functions/create_uploaded_file.php -opt/app/vendor/zendframework/zend-diactoros/src/functions/marshal_headers_from_sapi.php -opt/app/vendor/zendframework/zend-diactoros/src/functions/marshal_method_from_sapi.php -opt/app/vendor/zendframework/zend-diactoros/src/functions/marshal_protocol_version_from_sapi.php -opt/app/vendor/zendframework/zend-diactoros/src/functions/marshal_uri_from_sapi.php -opt/app/vendor/zendframework/zend-diactoros/src/functions/normalize_server.php -opt/app/vendor/zendframework/zend-diactoros/src/functions/normalize_uploaded_files.php -opt/app/vendor/zendframework/zend-diactoros/src/functions/parse_cookie_header.php -opt/app/yarn-error.log -opt/app/yarn.lock -proc/cpuinfo -sandstorm-http-bridge -sandstorm-http-bridge-config -sandstorm-manifest -usr/bin/my_print_defaults -usr/bin/mysql -usr/bin/mysql_install_db -usr/bin/nano -usr/bin/php -usr/bin/php7.2 -usr/bin/vi -usr/bin/vim.tiny -usr/lib/locale/locale-archive -usr/lib/php/20170718/bcmath.so -usr/lib/php/20170718/calendar.so -usr/lib/php/20170718/ctype.so -usr/lib/php/20170718/curl.so -usr/lib/php/20170718/dom.so -usr/lib/php/20170718/exif.so -usr/lib/php/20170718/fileinfo.so -usr/lib/php/20170718/ftp.so -usr/lib/php/20170718/gd.so -usr/lib/php/20170718/gettext.so -usr/lib/php/20170718/iconv.so -usr/lib/php/20170718/intl.so -usr/lib/php/20170718/json.so -usr/lib/php/20170718/ldap.so -usr/lib/php/20170718/mbstring.so -usr/lib/php/20170718/mysqli.so -usr/lib/php/20170718/mysqlnd.so -usr/lib/php/20170718/opcache.so -usr/lib/php/20170718/pdo.so -usr/lib/php/20170718/pdo_mysql.so -usr/lib/php/20170718/phar.so -usr/lib/php/20170718/posix.so -usr/lib/php/20170718/readline.so -usr/lib/php/20170718/shmop.so -usr/lib/php/20170718/simplexml.so -usr/lib/php/20170718/sockets.so -usr/lib/php/20170718/sysvmsg.so -usr/lib/php/20170718/sysvsem.so -usr/lib/php/20170718/sysvshm.so -usr/lib/php/20170718/tokenizer.so -usr/lib/php/20170718/wddx.so -usr/lib/php/20170718/xml.so -usr/lib/php/20170718/xmlreader.so -usr/lib/php/20170718/xmlwriter.so -usr/lib/php/20170718/xsl.so -usr/lib/php/20170718/zip.so -usr/lib/ssl/openssl.cnf -usr/lib/x86_64-linux-gnu/libGeoIP.so.1 -usr/lib/x86_64-linux-gnu/libGeoIP.so.1.6.2 -usr/lib/x86_64-linux-gnu/libX11.so.6 -usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 -usr/lib/x86_64-linux-gnu/libXau.so.6 -usr/lib/x86_64-linux-gnu/libXau.so.6.0.0 -usr/lib/x86_64-linux-gnu/libXdmcp.so.6 -usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0 -usr/lib/x86_64-linux-gnu/libXpm.so.4 -usr/lib/x86_64-linux-gnu/libXpm.so.4.11.0 -usr/lib/x86_64-linux-gnu/libapparmor.so.1 -usr/lib/x86_64-linux-gnu/libapparmor.so.1.2.0 -usr/lib/x86_64-linux-gnu/libargon2.so.1 -usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0 -usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 -usr/lib/x86_64-linux-gnu/libcurl.so.4 -usr/lib/x86_64-linux-gnu/libcurl.so.4.3.0 -usr/lib/x86_64-linux-gnu/libedit.so.2 -usr/lib/x86_64-linux-gnu/libedit.so.2.0.51 -usr/lib/x86_64-linux-gnu/libexslt.so.0 -usr/lib/x86_64-linux-gnu/libexslt.so.0.8.17 -usr/lib/x86_64-linux-gnu/libffi.so.6 -usr/lib/x86_64-linux-gnu/libffi.so.6.0.2 -usr/lib/x86_64-linux-gnu/libfontconfig.so.1 -usr/lib/x86_64-linux-gnu/libfontconfig.so.1.8.0 -usr/lib/x86_64-linux-gnu/libfreetype.so.6 -usr/lib/x86_64-linux-gnu/libfreetype.so.6.11.1 -usr/lib/x86_64-linux-gnu/libgd.so.3 -usr/lib/x86_64-linux-gnu/libgd.so.3.0.5 -usr/lib/x86_64-linux-gnu/libgmp.so.10 -usr/lib/x86_64-linux-gnu/libgmp.so.10.2.0 -usr/lib/x86_64-linux-gnu/libgnutls-deb0.so.28 -usr/lib/x86_64-linux-gnu/libgnutls-deb0.so.28.41.0 -usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2 -usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2 -usr/lib/x86_64-linux-gnu/libhogweed.so.2 -usr/lib/x86_64-linux-gnu/libhogweed.so.2.5 -usr/lib/x86_64-linux-gnu/libicudata.so.52 -usr/lib/x86_64-linux-gnu/libicudata.so.52.1 -usr/lib/x86_64-linux-gnu/libicui18n.so.52 -usr/lib/x86_64-linux-gnu/libicui18n.so.52.1 -usr/lib/x86_64-linux-gnu/libicuio.so.52 -usr/lib/x86_64-linux-gnu/libicuio.so.52.1 -usr/lib/x86_64-linux-gnu/libicuuc.so.52 -usr/lib/x86_64-linux-gnu/libicuuc.so.52.1 -usr/lib/x86_64-linux-gnu/libidn.so.11 -usr/lib/x86_64-linux-gnu/libidn.so.11.6.12 -usr/lib/x86_64-linux-gnu/libjbig.so.0 -usr/lib/x86_64-linux-gnu/libjpeg.so.62 -usr/lib/x86_64-linux-gnu/libjpeg.so.62.1.0 -usr/lib/x86_64-linux-gnu/libk5crypto.so.3 -usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1 -usr/lib/x86_64-linux-gnu/libkrb5.so.3 -usr/lib/x86_64-linux-gnu/libkrb5.so.3.3 -usr/lib/x86_64-linux-gnu/libkrb5support.so.0 -usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1 -usr/lib/x86_64-linux-gnu/liblber-2.4.so.2 -usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.3 -usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2 -usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.3 -usr/lib/x86_64-linux-gnu/libnettle.so.4 -usr/lib/x86_64-linux-gnu/libnettle.so.4.7 -usr/lib/x86_64-linux-gnu/libp11-kit.so.0 -usr/lib/x86_64-linux-gnu/libp11-kit.so.0.0.0 -usr/lib/x86_64-linux-gnu/librtmp.so.1 -usr/lib/x86_64-linux-gnu/libsasl2.so.2 -usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25 -usr/lib/x86_64-linux-gnu/libsodium.so.23 -usr/lib/x86_64-linux-gnu/libsodium.so.23.2.0 -usr/lib/x86_64-linux-gnu/libssh2.so.1 -usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1 -usr/lib/x86_64-linux-gnu/libssl.so.1.0.0 -usr/lib/x86_64-linux-gnu/libssl.so.1.1 -usr/lib/x86_64-linux-gnu/libstdc++.so.6 -usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.20 -usr/lib/x86_64-linux-gnu/libtasn1.so.6 -usr/lib/x86_64-linux-gnu/libtasn1.so.6.3.2 -usr/lib/x86_64-linux-gnu/libtiff.so.5 -usr/lib/x86_64-linux-gnu/libtiff.so.5.2.0 -usr/lib/x86_64-linux-gnu/libwebp.so.5 -usr/lib/x86_64-linux-gnu/libwebp.so.5.0.1 -usr/lib/x86_64-linux-gnu/libxcb.so.1 -usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0 -usr/lib/x86_64-linux-gnu/libxml2.so.2 -usr/lib/x86_64-linux-gnu/libxml2.so.2.9.1 -usr/lib/x86_64-linux-gnu/libxslt.so.1 -usr/lib/x86_64-linux-gnu/libxslt.so.1.1.28 -usr/lib/x86_64-linux-gnu/libzip.so.4 -usr/lib/x86_64-linux-gnu/libzip.so.4.0 -usr/sbin/mysqld -usr/sbin/nginx -usr/sbin/php-fpm7.2 -usr/share/locale/locale.alias -usr/share/mysql/charsets/Index.xml -usr/share/mysql/english/errmsg.sys -usr/share/mysql/fill_help_tables.sql -usr/share/mysql/mysql_system_tables.sql -usr/share/mysql/mysql_system_tables_data.sql -usr/share/nano/asm.nanorc -usr/share/nano/awk.nanorc -usr/share/nano/c.nanorc -usr/share/nano/css.nanorc -usr/share/nano/debian.nanorc -usr/share/nano/gentoo.nanorc -usr/share/nano/groff.nanorc -usr/share/nano/html.nanorc -usr/share/nano/java.nanorc -usr/share/nano/man.nanorc -usr/share/nano/mutt.nanorc -usr/share/nano/nanorc.nanorc -usr/share/nano/patch.nanorc -usr/share/nano/perl.nanorc -usr/share/nano/php.nanorc -usr/share/nano/pov.nanorc -usr/share/nano/python.nanorc -usr/share/nano/ruby.nanorc -usr/share/nano/sh.nanorc -usr/share/nano/tcl.nanorc -usr/share/nano/tex.nanorc -usr/share/nano/xml.nanorc -usr/share/terminfo/u/unknown -usr/share/vim/vimrc.tiny -usr/share/zoneinfo -usr/share/zoneinfo/Africa -usr/share/zoneinfo/Africa/Abidjan -usr/share/zoneinfo/Africa/Addis_Ababa -usr/share/zoneinfo/Africa/Asmara -usr/share/zoneinfo/Africa/Asmera -usr/share/zoneinfo/Africa/Bamako -usr/share/zoneinfo/Africa/Bangui -usr/share/zoneinfo/Africa/Banjul -usr/share/zoneinfo/Africa/Blantyre -usr/share/zoneinfo/Africa/Brazzaville -usr/share/zoneinfo/Africa/Bujumbura -usr/share/zoneinfo/Africa/Cairo -usr/share/zoneinfo/Africa/Conakry -usr/share/zoneinfo/Africa/Dakar -usr/share/zoneinfo/Africa/Dar_es_Salaam -usr/share/zoneinfo/Africa/Djibouti -usr/share/zoneinfo/Africa/Douala -usr/share/zoneinfo/Africa/Freetown -usr/share/zoneinfo/Africa/Gaborone -usr/share/zoneinfo/Africa/Harare -usr/share/zoneinfo/Africa/Johannesburg -usr/share/zoneinfo/Africa/Kampala -usr/share/zoneinfo/Africa/Khartoum -usr/share/zoneinfo/Africa/Kigali -usr/share/zoneinfo/Africa/Kinshasa -usr/share/zoneinfo/Africa/Lagos -usr/share/zoneinfo/Africa/Libreville -usr/share/zoneinfo/Africa/Lome -usr/share/zoneinfo/Africa/Luanda -usr/share/zoneinfo/Africa/Lubumbashi -usr/share/zoneinfo/Africa/Lusaka -usr/share/zoneinfo/Africa/Malabo -usr/share/zoneinfo/Africa/Maputo -usr/share/zoneinfo/Africa/Maseru -usr/share/zoneinfo/Africa/Mbabane -usr/share/zoneinfo/Africa/Mogadishu -usr/share/zoneinfo/Africa/Nairobi -usr/share/zoneinfo/Africa/Niamey -usr/share/zoneinfo/Africa/Nouakchott -usr/share/zoneinfo/Africa/Ouagadougou -usr/share/zoneinfo/Africa/Porto-Novo -usr/share/zoneinfo/Africa/Sao_Tome -usr/share/zoneinfo/Africa/Timbuktu -usr/share/zoneinfo/Africa/Tripoli -usr/share/zoneinfo/America -usr/share/zoneinfo/America/Adak -usr/share/zoneinfo/America/Anchorage -usr/share/zoneinfo/America/Anguilla -usr/share/zoneinfo/America/Antigua -usr/share/zoneinfo/America/Argentina -usr/share/zoneinfo/America/Argentina/Buenos_Aires -usr/share/zoneinfo/America/Argentina/Catamarca -usr/share/zoneinfo/America/Argentina/ComodRivadavia -usr/share/zoneinfo/America/Argentina/Cordoba -usr/share/zoneinfo/America/Argentina/Jujuy -usr/share/zoneinfo/America/Argentina/Mendoza -usr/share/zoneinfo/America/Aruba -usr/share/zoneinfo/America/Atikokan -usr/share/zoneinfo/America/Atka -usr/share/zoneinfo/America/Cayman -usr/share/zoneinfo/America/Chicago -usr/share/zoneinfo/America/Coral_Harbour -usr/share/zoneinfo/America/Cordoba -usr/share/zoneinfo/America/Curacao -usr/share/zoneinfo/America/Denver -usr/share/zoneinfo/America/Detroit -usr/share/zoneinfo/America/Dominica -usr/share/zoneinfo/America/Edmonton -usr/share/zoneinfo/America/Ensenada -usr/share/zoneinfo/America/Fort_Wayne -usr/share/zoneinfo/America/Grenada -usr/share/zoneinfo/America/Guadeloupe -usr/share/zoneinfo/America/Halifax -usr/share/zoneinfo/America/Havana -usr/share/zoneinfo/America/Indiana -usr/share/zoneinfo/America/Indiana/Indianapolis -usr/share/zoneinfo/America/Indiana/Knox -usr/share/zoneinfo/America/Indianapolis -usr/share/zoneinfo/America/Jamaica -usr/share/zoneinfo/America/Kentucky -usr/share/zoneinfo/America/Kentucky/Louisville -usr/share/zoneinfo/America/Knox_IN -usr/share/zoneinfo/America/Kralendijk -usr/share/zoneinfo/America/Los_Angeles -usr/share/zoneinfo/America/Lower_Princes -usr/share/zoneinfo/America/Manaus -usr/share/zoneinfo/America/Marigot -usr/share/zoneinfo/America/Mazatlan -usr/share/zoneinfo/America/Mexico_City -usr/share/zoneinfo/America/Montreal -usr/share/zoneinfo/America/Montserrat -usr/share/zoneinfo/America/New_York -usr/share/zoneinfo/America/Noronha -usr/share/zoneinfo/America/North_Dakota -usr/share/zoneinfo/America/Panama -usr/share/zoneinfo/America/Phoenix -usr/share/zoneinfo/America/Port_of_Spain -usr/share/zoneinfo/America/Porto_Acre -usr/share/zoneinfo/America/Puerto_Rico -usr/share/zoneinfo/America/Regina -usr/share/zoneinfo/America/Rio_Branco -usr/share/zoneinfo/America/Santa_Isabel -usr/share/zoneinfo/America/Santiago -usr/share/zoneinfo/America/Sao_Paulo -usr/share/zoneinfo/America/Shiprock -usr/share/zoneinfo/America/St_Barthelemy -usr/share/zoneinfo/America/St_Johns -usr/share/zoneinfo/America/St_Kitts -usr/share/zoneinfo/America/St_Lucia -usr/share/zoneinfo/America/St_Thomas -usr/share/zoneinfo/America/St_Vincent -usr/share/zoneinfo/America/Tijuana -usr/share/zoneinfo/America/Toronto -usr/share/zoneinfo/America/Tortola -usr/share/zoneinfo/America/Vancouver -usr/share/zoneinfo/America/Virgin -usr/share/zoneinfo/America/Whitehorse -usr/share/zoneinfo/America/Winnipeg -usr/share/zoneinfo/Antarctica -usr/share/zoneinfo/Antarctica/McMurdo -usr/share/zoneinfo/Antarctica/South_Pole -usr/share/zoneinfo/Arctic -usr/share/zoneinfo/Asia -usr/share/zoneinfo/Asia/Aden -usr/share/zoneinfo/Asia/Ashgabat -usr/share/zoneinfo/Asia/Bangkok -usr/share/zoneinfo/Asia/Calcutta -usr/share/zoneinfo/Asia/Chongqing -usr/share/zoneinfo/Asia/Chungking -usr/share/zoneinfo/Asia/Dacca -usr/share/zoneinfo/Asia/Dhaka -usr/share/zoneinfo/Asia/Dubai -usr/share/zoneinfo/Asia/Harbin -usr/share/zoneinfo/Asia/Ho_Chi_Minh -usr/share/zoneinfo/Asia/Hong_Kong -usr/share/zoneinfo/Asia/Istanbul -usr/share/zoneinfo/Asia/Jerusalem -usr/share/zoneinfo/Asia/Kashgar -usr/share/zoneinfo/Asia/Kathmandu -usr/share/zoneinfo/Asia/Katmandu -usr/share/zoneinfo/Asia/Kolkata -usr/share/zoneinfo/Asia/Macao -usr/share/zoneinfo/Asia/Macau -usr/share/zoneinfo/Asia/Makassar -usr/share/zoneinfo/Asia/Nicosia -usr/share/zoneinfo/Asia/Phnom_Penh -usr/share/zoneinfo/Asia/Qatar -usr/share/zoneinfo/Asia/Riyadh -usr/share/zoneinfo/Asia/Saigon -usr/share/zoneinfo/Asia/Seoul -usr/share/zoneinfo/Asia/Shanghai -usr/share/zoneinfo/Asia/Singapore -usr/share/zoneinfo/Asia/Taipei -usr/share/zoneinfo/Asia/Tehran -usr/share/zoneinfo/Asia/Tel_Aviv -usr/share/zoneinfo/Asia/Thimbu -usr/share/zoneinfo/Asia/Thimphu -usr/share/zoneinfo/Asia/Tokyo -usr/share/zoneinfo/Asia/Ulaanbaatar -usr/share/zoneinfo/Asia/Ulan_Bator -usr/share/zoneinfo/Asia/Urumqi -usr/share/zoneinfo/Asia/Yangon -usr/share/zoneinfo/Atlantic -usr/share/zoneinfo/Atlantic/Faroe -usr/share/zoneinfo/Atlantic/Jan_Mayen -usr/share/zoneinfo/Atlantic/Reykjavik -usr/share/zoneinfo/Australia -usr/share/zoneinfo/Australia/ACT -usr/share/zoneinfo/Australia/Adelaide -usr/share/zoneinfo/Australia/Brisbane -usr/share/zoneinfo/Australia/Broken_Hill -usr/share/zoneinfo/Australia/Canberra -usr/share/zoneinfo/Australia/Darwin -usr/share/zoneinfo/Australia/Hobart -usr/share/zoneinfo/Australia/LHI -usr/share/zoneinfo/Australia/Lord_Howe -usr/share/zoneinfo/Australia/Melbourne -usr/share/zoneinfo/Australia/NSW -usr/share/zoneinfo/Australia/North -usr/share/zoneinfo/Australia/Perth -usr/share/zoneinfo/Australia/Queensland -usr/share/zoneinfo/Australia/Sydney -usr/share/zoneinfo/Australia/West -usr/share/zoneinfo/Brazil -usr/share/zoneinfo/Canada -usr/share/zoneinfo/Canada/Atlantic -usr/share/zoneinfo/Canada/Saskatchewan -usr/share/zoneinfo/Chile -usr/share/zoneinfo/Chile/EasterIsland -usr/share/zoneinfo/Etc -usr/share/zoneinfo/Etc/GMT -usr/share/zoneinfo/Etc/GMT+0 -usr/share/zoneinfo/Etc/GMT-0 -usr/share/zoneinfo/Etc/GMT0 -usr/share/zoneinfo/Etc/Greenwich -usr/share/zoneinfo/Etc/UCT -usr/share/zoneinfo/Etc/UTC -usr/share/zoneinfo/Etc/Universal -usr/share/zoneinfo/Etc/Zulu -usr/share/zoneinfo/Europe -usr/share/zoneinfo/Europe/Belfast -usr/share/zoneinfo/Europe/Belgrade -usr/share/zoneinfo/Europe/Bratislava -usr/share/zoneinfo/Europe/Busingen -usr/share/zoneinfo/Europe/Chisinau -usr/share/zoneinfo/Europe/Dublin -usr/share/zoneinfo/Europe/Guernsey -usr/share/zoneinfo/Europe/Helsinki -usr/share/zoneinfo/Europe/Isle_of_Man -usr/share/zoneinfo/Europe/Istanbul -usr/share/zoneinfo/Europe/Jersey -usr/share/zoneinfo/Europe/Lisbon -usr/share/zoneinfo/Europe/Ljubljana -usr/share/zoneinfo/Europe/London -usr/share/zoneinfo/Europe/Mariehamn -usr/share/zoneinfo/Europe/Moscow -usr/share/zoneinfo/Europe/Nicosia -usr/share/zoneinfo/Europe/Oslo -usr/share/zoneinfo/Europe/Podgorica -usr/share/zoneinfo/Europe/Prague -usr/share/zoneinfo/Europe/Rome -usr/share/zoneinfo/Europe/San_Marino -usr/share/zoneinfo/Europe/Sarajevo -usr/share/zoneinfo/Europe/Skopje -usr/share/zoneinfo/Europe/Tiraspol -usr/share/zoneinfo/Europe/Vaduz -usr/share/zoneinfo/Europe/Vatican -usr/share/zoneinfo/Europe/Warsaw -usr/share/zoneinfo/Europe/Zagreb -usr/share/zoneinfo/Europe/Zurich -usr/share/zoneinfo/GB -usr/share/zoneinfo/GB-Eire -usr/share/zoneinfo/GMT -usr/share/zoneinfo/GMT+0 -usr/share/zoneinfo/GMT-0 -usr/share/zoneinfo/GMT0 -usr/share/zoneinfo/Greenwich -usr/share/zoneinfo/Indian -usr/share/zoneinfo/Indian/Antananarivo -usr/share/zoneinfo/Indian/Comoro -usr/share/zoneinfo/Indian/Mayotte -usr/share/zoneinfo/Mexico -usr/share/zoneinfo/Mexico/BajaNorte -usr/share/zoneinfo/Mexico/BajaSur -usr/share/zoneinfo/Mexico/General -usr/share/zoneinfo/Pacific -usr/share/zoneinfo/Pacific/Auckland -usr/share/zoneinfo/Pacific/Chatham -usr/share/zoneinfo/Pacific/Chuuk -usr/share/zoneinfo/Pacific/Easter -usr/share/zoneinfo/Pacific/Gambier -usr/share/zoneinfo/Pacific/Guam -usr/share/zoneinfo/Pacific/Honolulu -usr/share/zoneinfo/Pacific/Johnston -usr/share/zoneinfo/Pacific/Kwajalein -usr/share/zoneinfo/Pacific/Midway -usr/share/zoneinfo/Pacific/Pago_Pago -usr/share/zoneinfo/Pacific/Pitcairn -usr/share/zoneinfo/Pacific/Pohnpei -usr/share/zoneinfo/Pacific/Samoa -usr/share/zoneinfo/Pacific/Truk -usr/share/zoneinfo/Pacific/Yap -usr/share/zoneinfo/SystemV -usr/share/zoneinfo/SystemV/AST4 -usr/share/zoneinfo/SystemV/AST4ADT -usr/share/zoneinfo/SystemV/CST6 -usr/share/zoneinfo/SystemV/CST6CDT -usr/share/zoneinfo/SystemV/EST5 -usr/share/zoneinfo/SystemV/EST5EDT -usr/share/zoneinfo/SystemV/HST10 -usr/share/zoneinfo/SystemV/MST7 -usr/share/zoneinfo/SystemV/MST7MDT -usr/share/zoneinfo/SystemV/PST8 -usr/share/zoneinfo/SystemV/PST8PDT -usr/share/zoneinfo/SystemV/YST9 -usr/share/zoneinfo/SystemV/YST9YDT -usr/share/zoneinfo/US -usr/share/zoneinfo/US/Alaska -usr/share/zoneinfo/US/Aleutian -usr/share/zoneinfo/US/Arizona -usr/share/zoneinfo/US/Central -usr/share/zoneinfo/US/East-Indiana -usr/share/zoneinfo/US/Eastern -usr/share/zoneinfo/US/Hawaii -usr/share/zoneinfo/US/Indiana-Starke -usr/share/zoneinfo/US/Michigan -usr/share/zoneinfo/US/Mountain -usr/share/zoneinfo/US/Pacific -usr/share/zoneinfo/US/Pacific-New -usr/share/zoneinfo/US/Samoa -usr/share/zoneinfo/UTC -usr/share/zoneinfo/Universal -usr/share/zoneinfo/Zulu -usr/share/zoneinfo/localtime -usr/share/zoneinfo/zone.tab diff --git a/.sandstorm/sandstorm-pkgdef.capnp b/.sandstorm/sandstorm-pkgdef.capnp deleted file mode 100644 index aca29cff8c..0000000000 --- a/.sandstorm/sandstorm-pkgdef.capnp +++ /dev/null @@ -1,187 +0,0 @@ -@0xb0032512fca90cd9; - -using Spk = import "/sandstorm/package.capnp"; -# This imports: -# $SANDSTORM_HOME/latest/usr/include/sandstorm/package.capnp -# Check out that file to see the full, documented package definition format. - -const pkgdef :Spk.PackageDefinition = ( - # The package definition. Note that the spk tool looks specifically for the - # "pkgdef" constant. - - id = "uws252ya9mep4t77tevn85333xzsgrpgth8q4y1rhknn1hammw70", - # Your app ID is actually its public key. The private key was placed in - # your keyring. All updates must be signed with the same key. - - manifest = ( - appTitle = (defaultText = "Firefly III"), - appVersion = 39, - appMarketingVersion = (defaultText = "4.8.1.4"), - - actions = [ - # Define your "new document" handlers here. - ( nounPhrase = (defaultText = "administration"), - command = .myCommand - # The command to run when starting for the first time. (".myCommand" - # is just a constant defined at the bottom of the file.) - ) - ], - - continueCommand = .myCommand, - # This is the command called to start your app back up after it has been - # shut down for inactivity. Here we're using the same command as for - # starting a new instance, but you could use different commands for each - # case. - - metadata = ( - icons = ( - appGrid = (png = (dpi1x = embed "app-graphics/firefly-iii-128.png")), - grain = (png = (dpi1x = embed "app-graphics/firefly-iii-24.png", - dpi2x = embed "app-graphics/firefly-iii-48.png")), - market = (png = (dpi1x = embed "app-graphics/firefly-iii-150.png")) - ), - - website = "https://firefly-iii.org/", - codeUrl = "https://github.com/firefly-iii/firefly-iii", - license = (openSource = gpl3), - # The license this package is distributed under. See - # https://docs.sandstorm.io/en/latest/developing/publishing-apps/#license - - categories = [productivity], - # A list of categories/genres to which this app belongs, sorted with best fit first. - # See the list of categories at - # https://docs.sandstorm.io/en/latest/developing/publishing-apps/#categories - - author = ( - contactEmail = "thegrumpydictator@gmail.com", - pgpSignature = embed "pgp-signature", - ), - - pgpKeyring = embed "pgp-keyring", - description = (defaultText = embed "description.md"), - shortDescription = (defaultText = "Financial management"), - screenshots = [ - # Screenshots to use for marketing purposes. Examples below. - # Sizes are given in device-independent pixels, so if you took these - # screenshots on a Retina-style high DPI screen, divide each dimension by two. - - (width = 1290, height = 800, png = embed "screenshots/screenshot-1.png"), - (width = 1290, height = 800, png = embed "screenshots/screenshot-2.png"), - (width = 1290, height = 800, png = embed "screenshots/screenshot-3.png"), - - ], - changeLog = (defaultText = embed "changelog.md"), - ), - ), - - sourceMap = ( - # Here we defined where to look for files to copy into your package. The - # `spk dev` command actually figures out what files your app needs - # automatically by running it on a FUSE filesystem. So, the mappings - # here are only to tell it where to find files that the app wants. - searchPath = [ - ( sourcePath = "." ), # Search this directory first. - ( sourcePath = "/", # Then search the system root directory. - hidePaths = [ "home", "proc", "sys", - "etc/passwd", "etc/hosts", "etc/host.conf", - "etc/nsswitch.conf", "etc/resolv.conf" ] - # You probably don't want the app pulling files from these places, - # so we hide them. Note that /dev, /var, and /tmp are implicitly - # hidden because Sandstorm itself provides them. - ) - ] - ), - - fileList = "sandstorm-files.list", - # `spk dev` will write a list of all the files your app uses to this file. - # You should review it later, before shipping your app. - - alwaysInclude = ["opt/app/app","opt/app/bootstrap","opt/app/config","opt/app/database","opt/app/public","opt/app/resources","opt/app/routes","opt/app/vendor"], - # Fill this list with more names of files or directories that should be - # included in your package, even if not listed in sandstorm-files.list. - # Use this to force-include stuff that you know you need but which may - # not have been detected as a dependency during `spk dev`. If you list - # a directory here, its entire contents will be included recursively. - - bridgeConfig = ( - # # Used for integrating permissions and roles into the Sandstorm shell - # # and for sandstorm-http-bridge to pass to your app. - # # Uncomment this block and adjust the permissions and roles to make - # # sense for your app. - # # For more information, see high-level documentation at - # # https://docs.sandstorm.io/en/latest/developing/auth/ - # # and advanced details in the "BridgeConfig" section of - # # https://github.com/sandstorm-io/sandstorm/blob/master/src/sandstorm/package.capnp - # viewInfo = ( - # # For details on the viewInfo field, consult "ViewInfo" in - # # https://github.com/sandstorm-io/sandstorm/blob/master/src/sandstorm/grain.capnp - # - # permissions = [ - # # Permissions which a user may or may not possess. A user's current - # # permissions are passed to the app as a comma-separated list of `name` - # # fields in the X-Sandstorm-Permissions header with each request. - # # - # # IMPORTANT: only ever append to this list! Reordering or removing fields - # # will change behavior and permissions for existing grains! To deprecate a - # # permission, or for more information, see "PermissionDef" in - # # https://github.com/sandstorm-io/sandstorm/blob/master/src/sandstorm/grain.capnp - # ( - # name = "editor", - # # Name of the permission, used as an identifier for the permission in cases where string - # # names are preferred. Used in sandstorm-http-bridge's X-Sandstorm-Permissions HTTP header. - # - # title = (defaultText = "editor"), - # # Display name of the permission, e.g. to display in a checklist of permissions - # # that may be assigned when sharing. - # - # description = (defaultText = "grants ability to modify data"), - # # Prose describing what this role means, suitable for a tool tip or similar help text. - # ), - # ], - # roles = [ - # # Roles are logical collections of permissions. For instance, your app may have - # # a "viewer" role and an "editor" role - # ( - # title = (defaultText = "editor"), - # # Name of the role. Shown in the Sandstorm UI to indicate which users have which roles. - # - # permissions = [true], - # # An array indicating which permissions this role carries. - # # It should be the same length as the permissions array in - # # viewInfo, and the order of the lists must match. - # - # verbPhrase = (defaultText = "can make changes to the document"), - # # Brief explanatory text to show in the sharing UI indicating - # # what a user assigned this role will be able to do with the grain. - # - # description = (defaultText = "editors may view all site data and change settings."), - # # Prose describing what this role means, suitable for a tool tip or similar help text. - # ), - # ( - # title = (defaultText = "viewer"), - # permissions = [false], - # verbPhrase = (defaultText = "can view the document"), - # description = (defaultText = "viewers may view what other users have written."), - # ), - # ], - # ), - apiPath = "/api/v1/", - # # Apps can export an API to the world. The API is to be used primarily by Javascript - # # code and native apps, so it can't serve out regular HTML to browsers. If a request - # # comes in to your app's API, sandstorm-http-bridge will prefix the request's path with - # # this string, if specified. - ), -); - -const myCommand :Spk.Manifest.Command = ( - # Here we define the command used to start up your server. - argv = ["/sandstorm-http-bridge", "8000", "--", "/bin/bash", "/opt/app/.sandstorm/launcher.sh"], - environ = [ - # Note that this defines the *entire* environment seen by your app. - (key = "PATH", value = "/usr/local/bin:/usr/bin:/bin"), - (key = "SANDSTORM", value = "1"), - # Export SANDSTORM=1 into the environment, so that apps running within Sandstorm - # can detect if $SANDSTORM="1" at runtime, switching UI and/or backend to use - # the app's Sandstorm-specific integration code. - ] -); diff --git a/.sandstorm/screenshots/screenshot-1.png b/.sandstorm/screenshots/screenshot-1.png deleted file mode 100644 index 5f786ad2ff..0000000000 Binary files a/.sandstorm/screenshots/screenshot-1.png and /dev/null differ diff --git a/.sandstorm/screenshots/screenshot-2.png b/.sandstorm/screenshots/screenshot-2.png deleted file mode 100644 index fe0bfb0218..0000000000 Binary files a/.sandstorm/screenshots/screenshot-2.png and /dev/null differ diff --git a/.sandstorm/screenshots/screenshot-3.png b/.sandstorm/screenshots/screenshot-3.png deleted file mode 100644 index f68d5de0c1..0000000000 Binary files a/.sandstorm/screenshots/screenshot-3.png and /dev/null differ diff --git a/.sandstorm/service-config/mime.types b/.sandstorm/service-config/mime.types deleted file mode 100644 index 89be9a4cd6..0000000000 --- a/.sandstorm/service-config/mime.types +++ /dev/null @@ -1,89 +0,0 @@ - -types { - text/html html htm shtml; - text/css css; - text/xml xml; - image/gif gif; - image/jpeg jpeg jpg; - application/javascript js; - application/atom+xml atom; - application/rss+xml rss; - - text/mathml mml; - text/plain txt; - text/vnd.sun.j2me.app-descriptor jad; - text/vnd.wap.wml wml; - text/x-component htc; - - image/png png; - image/tiff tif tiff; - image/vnd.wap.wbmp wbmp; - image/x-icon ico; - image/x-jng jng; - image/x-ms-bmp bmp; - image/svg+xml svg svgz; - image/webp webp; - - application/font-woff woff; - application/java-archive jar war ear; - application/json json; - application/mac-binhex40 hqx; - application/msword doc; - application/pdf pdf; - application/postscript ps eps ai; - application/rtf rtf; - application/vnd.apple.mpegurl m3u8; - application/vnd.ms-excel xls; - application/vnd.ms-fontobject eot; - application/vnd.ms-powerpoint ppt; - application/vnd.wap.wmlc wmlc; - application/vnd.google-earth.kml+xml kml; - application/vnd.google-earth.kmz kmz; - application/x-7z-compressed 7z; - application/x-cocoa cco; - application/x-java-archive-diff jardiff; - application/x-java-jnlp-file jnlp; - application/x-makeself run; - application/x-perl pl pm; - application/x-pilot prc pdb; - application/x-rar-compressed rar; - application/x-redhat-package-manager rpm; - application/x-sea sea; - application/x-shockwave-flash swf; - application/x-stuffit sit; - application/x-tcl tcl tk; - application/x-x509-ca-cert der pem crt; - application/x-xpinstall xpi; - application/xhtml+xml xhtml; - application/xspf+xml xspf; - application/zip zip; - - application/octet-stream bin exe dll; - application/octet-stream deb; - application/octet-stream dmg; - application/octet-stream iso img; - application/octet-stream msi msp msm; - - application/vnd.openxmlformats-officedocument.wordprocessingml.document docx; - application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx; - application/vnd.openxmlformats-officedocument.presentationml.presentation pptx; - - audio/midi mid midi kar; - audio/mpeg mp3; - audio/ogg ogg; - audio/x-m4a m4a; - audio/x-realaudio ra; - - video/3gpp 3gpp 3gp; - video/mp2t ts; - video/mp4 mp4; - video/mpeg mpeg mpg; - video/quicktime mov; - video/webm webm; - video/x-flv flv; - video/x-m4v m4v; - video/x-mng mng; - video/x-ms-asf asx asf; - video/x-ms-wmv wmv; - video/x-msvideo avi; -} diff --git a/.sandstorm/service-config/nginx.conf b/.sandstorm/service-config/nginx.conf deleted file mode 100644 index fded8af1a9..0000000000 --- a/.sandstorm/service-config/nginx.conf +++ /dev/null @@ -1,88 +0,0 @@ -worker_processes 4; -pid /var/run/nginx.pid; - -events { - worker_connections 768; - # multi_accept on; -} - -http { - # Basic Settings - sendfile on; - tcp_nopush on; - tcp_nodelay on; - keepalive_timeout 65; - types_hash_max_size 2048; - # server_names_hash_bucket_size 64; - server_tokens off; - server_name_in_redirect off; - - include mime.types; - default_type application/octet-stream; - - # Logging - access_log off; - error_log stderr; - - # Prevent nginx from adding compression; this interacts badly with Sandstorm - # WebSession due to https://github.com/sandstorm-io/sandstorm/issues/289 - gzip off; - - # Trust the sandstorm-http-bridge's X-Forwarded-Proto. - map $http_x_forwarded_proto $fe_https { - default ""; - https on; - } - - server { - listen 8000 default_server; - listen [::]:8000 default_server ipv6only=on; - - # Allow arbitrarily large bodies - Sandstorm can handle them, and requests - # are authenticated already, so there's no reason for apps to add additional - # limits by default. - client_max_body_size 0; - - server_name localhost; - root /opt/app/public; - location / { - index index.php; - try_files $uri $uri/ /index.php?$query_string; - autoindex on; - sendfile off; - } - location ~ \.php$ { - try_files $uri =404; - fastcgi_pass unix:/var/run/php7.2-fpm.sock; - fastcgi_index index.php; - fastcgi_split_path_info ^(.+\.php)(/.+)$; - fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; - fastcgi_read_timeout 900; - - - fastcgi_param QUERY_STRING $query_string; - fastcgi_param REQUEST_METHOD $request_method; - fastcgi_param CONTENT_TYPE $content_type; - fastcgi_param CONTENT_LENGTH $content_length; - - fastcgi_param SCRIPT_NAME $fastcgi_script_name; - fastcgi_param REQUEST_URI $request_uri; - fastcgi_param DOCUMENT_URI $document_uri; - fastcgi_param DOCUMENT_ROOT $document_root; - fastcgi_param SERVER_PROTOCOL $server_protocol; - fastcgi_param HTTPS $fe_https if_not_empty; - - fastcgi_param GATEWAY_INTERFACE CGI/1.1; - fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; - - fastcgi_param REMOTE_ADDR $remote_addr; - fastcgi_param REMOTE_PORT $remote_port; - fastcgi_param SERVER_ADDR $server_addr; - fastcgi_param SERVER_PORT $server_port; - fastcgi_param SERVER_NAME $server_name; - - # PHP only, required if PHP was built with --enable-force-cgi-redirect - #fastcgi_param REDIRECT_STATUS 200; - } - } -} diff --git a/.sandstorm/setup.sh b/.sandstorm/setup.sh deleted file mode 100755 index c93901d510..0000000000 --- a/.sandstorm/setup.sh +++ /dev/null @@ -1,94 +0,0 @@ -#!/bin/bash - -# When you change this file, you must take manual action. Read this doc: -# - https://docs.sandstorm.io/en/latest/vagrant-spk/customizing/#setupsh -echo "Now in setup.sh" - -set -euo pipefail - -export DEBIAN_FRONTEND=noninteractive - -# install packages so we can install apt-add-repository. -apt-get update -apt-get install -y python-software-properties software-properties-common - -# install all languages -#en_US -sed -i 's/# es_ES.UTF-8 UTF-8/es_ES.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# de_DE.UTF-8 UTF-8/de_DE.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# fr_FR.UTF-8 UTF-8/fr_FR.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# it_IT.UTF-8 UTF-8/it_IT.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# nl_NL.UTF-8 UTF-8/nl_NL.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# pl_PL.UTF-8 UTF-8/pl_PL.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# pt_BR.UTF-8 UTF-8/pt_BR.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# ru_RU.UTF-8 UTF-8/ru_RU.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# zh_TW.UTF-8 UTF-8/zh_TW.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# zh_CN.UTF-8 UTF-8/zh_CN.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# nb_NO.UTF-8 UTF-8/nb_NO.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# ro_RO.UTF-8 UTF-8/ro_RO.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# cs_CZ.UTF-8 UTF-8/cs_CZ.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# id_ID.UTF-8 UTF-8/id_ID.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# hu_HU.UTF-8 UTF-8/hu_HU.UTF-8 UTF-8/g' /etc/locale.gen -sed -i 's/# el_GR.UTF-8 UTF-8/el_GR.UTF-8 UTF-8/g' /etc/locale.gen - -dpkg-reconfigure --frontend=noninteractive locales - -# actually add repository -apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E9C74FEEA2098A6E -add-apt-repository "deb http://packages.dotdeb.org jessie all" - -# add another repos -apt-get install -y apt-transport-https lsb-release ca-certificates -wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg -echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list - -# install packages. -apt-get update -apt-get install -y nginx php7.2-fpm php7.2-mysql php7.2-gd php7.2-cli php7.2-curl php7.2-ldap git php7.2-dev php7.2-zip php7.2-intl php7.2-dom php7.2-mbstring php7.2-bcmath mysql-server -service nginx stop -service php7.2-fpm stop -service mysql stop -systemctl disable nginx -systemctl disable php7.2-fpm -systemctl disable mysql - -# make php.ini display errors: -sed -i 's/display_errors = Off/display_errors = On/g' /etc/php/7.2/fpm/php.ini - -# patch /etc/php/7.2/fpm/pool.d/www.conf to not change uid/gid to www-data -sed --in-place='' \ - --expression='s/^listen.owner = www-data/;listen.owner = www-data/' \ - --expression='s/^listen.group = www-data/;listen.group = www-data/' \ - /etc/php/7.2/fpm/pool.d/www.conf -# patch /etc/php/7.2/fpm/php-fpm.conf to not have a pidfile -sed --in-place='' \ - --expression='s/^pid =/;pid =/' \ - /etc/php/7.2/fpm/php-fpm.conf - -# move sock file to better dir: -sed --in-place='' \ - --expression='s/^listen = \/run\/php\/php7.2-fpm.sock/listen = \/var\/run\/php7.2-fpm.sock/' \ - /etc/php/7.2/fpm/pool.d/www.conf - -# patch /etc/php/7.2/fpm/pool.d/www.conf to no clear environment variables -# so we can pass in SANDSTORM=1 to apps -sed --in-place='' \ - --expression='s/^;clear_env = no/clear_env=no/' \ - /etc/php/7.2/fpm/pool.d/www.conf -# patch mysql conf to not change uid, and to use /var/tmp over /tmp -# for secure-file-priv see https://github.com/sandstorm-io/vagrant-spk/issues/195 -sed --in-place='' \ - --expression='s/^user\t\t= mysql/#user\t\t= mysql/' \ - --expression='s,^tmpdir\t\t= /tmp,tmpdir\t\t= /var/tmp,' \ - --expression='/\[mysqld]/ a\ secure-file-priv = ""\' \ - /etc/mysql/my.cnf -# patch mysql conf to use smaller transaction logs to save disk space -cat < /etc/mysql/conf.d/sandstorm.cnf -[mysqld] -# Set the transaction log file to the minimum allowed size to save disk space. -# innodb_log_file_size = 1048576 -# Set the main data file to grow by 1MB at a time, rather than 8MB at a time. -innodb_autoextend_increment = 1 -EOF - - diff --git a/.sandstorm/stack b/.sandstorm/stack deleted file mode 100644 index 79a9408192..0000000000 --- a/.sandstorm/stack +++ /dev/null @@ -1 +0,0 @@ -lemp