diff --git a/.editorconfig b/.editorconfig old mode 100644 new mode 100755 diff --git a/.env b/.env old mode 100644 new mode 100755 index c40ebfb..f5ae48a --- a/.env +++ b/.env @@ -9,7 +9,7 @@ LOG_DEPRECATIONS_CHANNEL=null LOG_LEVEL=debug DB_CONNECTION=mysql -DB_HOST=195.35.32.59 +DB_HOST=localhost DB_PORT=3306 DB_DATABASE=sirpremium DB_USERNAME=pym diff --git a/.env.example b/.env.example old mode 100644 new mode 100755 diff --git a/.gitattributes b/.gitattributes old mode 100644 new mode 100755 diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php old mode 100644 new mode 100755 diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php old mode 100644 new mode 100755 diff --git a/app/Http/Controllers/Auth/AuthenticatedSessionController.php b/app/Http/Controllers/Auth/AuthenticatedSessionController.php old mode 100644 new mode 100755 diff --git a/app/Http/Controllers/Auth/ConfirmablePasswordController.php b/app/Http/Controllers/Auth/ConfirmablePasswordController.php old mode 100644 new mode 100755 diff --git a/app/Http/Controllers/Auth/EmailVerificationNotificationController.php b/app/Http/Controllers/Auth/EmailVerificationNotificationController.php old mode 100644 new mode 100755 diff --git a/app/Http/Controllers/Auth/EmailVerificationPromptController.php b/app/Http/Controllers/Auth/EmailVerificationPromptController.php old mode 100644 new mode 100755 diff --git a/app/Http/Controllers/Auth/NewPasswordController.php b/app/Http/Controllers/Auth/NewPasswordController.php old mode 100644 new mode 100755 diff --git a/app/Http/Controllers/Auth/PasswordResetLinkController.php b/app/Http/Controllers/Auth/PasswordResetLinkController.php old mode 100644 new mode 100755 diff --git a/app/Http/Controllers/Auth/RegisteredUserController.php b/app/Http/Controllers/Auth/RegisteredUserController.php old mode 100644 new mode 100755 diff --git a/app/Http/Controllers/Auth/VerifyEmailController.php b/app/Http/Controllers/Auth/VerifyEmailController.php old mode 100644 new mode 100755 diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php old mode 100644 new mode 100755 diff --git a/app/Http/Controllers/MenuController.php b/app/Http/Controllers/MenuController.php old mode 100644 new mode 100755 diff --git a/app/Http/Controllers/TwilioSMSController.php b/app/Http/Controllers/TwilioSMSController.php old mode 100644 new mode 100755 diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/Bell.php b/app/Http/Livewire/Bell.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/Import.php b/app/Http/Livewire/Import.php old mode 100644 new mode 100755 index a66ea08..46884e6 --- a/app/Http/Livewire/Import.php +++ b/app/Http/Livewire/Import.php @@ -20,11 +20,11 @@ class Import extends Component return view('livewire.import'); } - public function import() - { - $data = Excel::import(new UsersImport, $this->photo); - $this->photo = null; - $this->importado = 'true'; - // aquí se puede procesar los datos obtenidos - } + public function import() + { //dd($this->photo); + $data = Excel::import(new UsersImport, $this->photo); + $this->photo = null; + $this->importado = 'true'; + // aquí se puede procesar los datos obtenidos + } } diff --git a/app/Http/Livewire/LogsRecargas.php b/app/Http/Livewire/LogsRecargas.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/Portada.php b/app/Http/Livewire/Portada.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/PortadaServicio.php b/app/Http/Livewire/PortadaServicio.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowAdmin.php b/app/Http/Livewire/ShowAdmin.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowCategoria.php b/app/Http/Livewire/ShowCategoria.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowClientes.php b/app/Http/Livewire/ShowClientes.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowConfiguracion.php b/app/Http/Livewire/ShowConfiguracion.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowIndex.php b/app/Http/Livewire/ShowIndex.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowIndexCategoria.php b/app/Http/Livewire/ShowIndexCategoria.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowIndexPromo.php b/app/Http/Livewire/ShowIndexPromo.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowIndexServicio.php b/app/Http/Livewire/ShowIndexServicio.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowInicio.php b/app/Http/Livewire/ShowInicio.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowLogGeneral.php b/app/Http/Livewire/ShowLogGeneral.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowLogs.php b/app/Http/Livewire/ShowLogs.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowOrder.php b/app/Http/Livewire/ShowOrder.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowPendientes.php b/app/Http/Livewire/ShowPendientes.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowPerfil.php b/app/Http/Livewire/ShowPerfil.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowPlanes.php b/app/Http/Livewire/ShowPlanes.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowPromociones.php b/app/Http/Livewire/ShowPromociones.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowRecarga.php b/app/Http/Livewire/ShowRecarga.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowRecargas.php b/app/Http/Livewire/ShowRecargas.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowReportes.php b/app/Http/Livewire/ShowReportes.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowRoles.php b/app/Http/Livewire/ShowRoles.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowServicio.php b/app/Http/Livewire/ShowServicio.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowServicios.php b/app/Http/Livewire/ShowServicios.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowSlider.php b/app/Http/Livewire/ShowSlider.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowTop.php b/app/Http/Livewire/ShowTop.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowUsuarios.php b/app/Http/Livewire/ShowUsuarios.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowUtilidades.php b/app/Http/Livewire/ShowUtilidades.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/ShowWompi.php b/app/Http/Livewire/ShowWompi.php old mode 100644 new mode 100755 diff --git a/app/Http/Livewire/Showcomprar.php b/app/Http/Livewire/Showcomprar.php old mode 100644 new mode 100755 diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php old mode 100644 new mode 100755 diff --git a/app/Http/Middleware/EncryptCookies.php b/app/Http/Middleware/EncryptCookies.php old mode 100644 new mode 100755 diff --git a/app/Http/Middleware/PreventRequestsDuringMaintenance.php b/app/Http/Middleware/PreventRequestsDuringMaintenance.php old mode 100644 new mode 100755 diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php old mode 100644 new mode 100755 diff --git a/app/Http/Middleware/SoloUsuarioAdministrador.php b/app/Http/Middleware/SoloUsuarioAdministrador.php old mode 100644 new mode 100755 diff --git a/app/Http/Middleware/TrimStrings.php b/app/Http/Middleware/TrimStrings.php old mode 100644 new mode 100755 diff --git a/app/Http/Middleware/TrustHosts.php b/app/Http/Middleware/TrustHosts.php old mode 100644 new mode 100755 diff --git a/app/Http/Middleware/TrustProxies.php b/app/Http/Middleware/TrustProxies.php old mode 100644 new mode 100755 diff --git a/app/Http/Middleware/ValidateSignature.php b/app/Http/Middleware/ValidateSignature.php old mode 100644 new mode 100755 diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php old mode 100644 new mode 100755 diff --git a/app/Http/Requests/Auth/LoginRequest.php b/app/Http/Requests/Auth/LoginRequest.php old mode 100644 new mode 100755 diff --git a/app/Imports/UsersImport.php b/app/Imports/UsersImport.php old mode 100644 new mode 100755 diff --git a/app/Models/Categoria.php b/app/Models/Categoria.php old mode 100644 new mode 100755 diff --git a/app/Models/Configuracione.php b/app/Models/Configuracione.php old mode 100644 new mode 100755 diff --git a/app/Models/Cuentas.php b/app/Models/Cuentas.php old mode 100644 new mode 100755 diff --git a/app/Models/Historial_cuenta.php b/app/Models/Historial_cuenta.php old mode 100644 new mode 100755 diff --git a/app/Models/Historiale.php b/app/Models/Historiale.php old mode 100644 new mode 100755 diff --git a/app/Models/Log_general.php b/app/Models/Log_general.php old mode 100644 new mode 100755 diff --git a/app/Models/Notificacion.php b/app/Models/Notificacion.php old mode 100644 new mode 100755 diff --git a/app/Models/Pendientes.php b/app/Models/Pendientes.php old mode 100644 new mode 100755 diff --git a/app/Models/Permiso.php b/app/Models/Permiso.php old mode 100644 new mode 100755 diff --git a/app/Models/Preferencial.php b/app/Models/Preferencial.php old mode 100644 new mode 100755 diff --git a/app/Models/Promocion_tarifa.php b/app/Models/Promocion_tarifa.php old mode 100644 new mode 100755 diff --git a/app/Models/Promociones.php b/app/Models/Promociones.php old mode 100644 new mode 100755 diff --git a/app/Models/Rede.php b/app/Models/Rede.php old mode 100644 new mode 100755 diff --git a/app/Models/Role.php b/app/Models/Role.php old mode 100644 new mode 100755 diff --git a/app/Models/Saldo.php b/app/Models/Saldo.php old mode 100644 new mode 100755 diff --git a/app/Models/Servicio.php b/app/Models/Servicio.php old mode 100644 new mode 100755 diff --git a/app/Models/TarifaPromo.php b/app/Models/TarifaPromo.php old mode 100644 new mode 100755 diff --git a/app/Models/Tarifas.php b/app/Models/Tarifas.php old mode 100644 new mode 100755 diff --git a/app/Models/User.php b/app/Models/User.php old mode 100644 new mode 100755 diff --git a/app/Models/Usuario_promo.php b/app/Models/Usuario_promo.php old mode 100644 new mode 100755 diff --git a/app/Models/Usuario_tarifa.php b/app/Models/Usuario_tarifa.php old mode 100644 new mode 100755 diff --git a/app/Models/log.php b/app/Models/log.php old mode 100644 new mode 100755 diff --git a/app/Models/recarga.php b/app/Models/recarga.php old mode 100644 new mode 100755 diff --git a/app/Models/slider.php b/app/Models/slider.php old mode 100644 new mode 100755 diff --git a/app/Notifications/NotificacionPendiente.php b/app/Notifications/NotificacionPendiente.php old mode 100644 new mode 100755 diff --git a/app/Notifications/Vencimiento.php b/app/Notifications/Vencimiento.php old mode 100644 new mode 100755 diff --git a/app/Notifications/compra.php b/app/Notifications/compra.php old mode 100644 new mode 100755 diff --git a/app/Notifications/licencias.php b/app/Notifications/licencias.php old mode 100644 new mode 100755 diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php old mode 100644 new mode 100755 diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php old mode 100644 new mode 100755 diff --git a/app/Providers/BroadcastServiceProvider.php b/app/Providers/BroadcastServiceProvider.php old mode 100644 new mode 100755 diff --git a/app/Providers/EventServiceProvider.php b/app/Providers/EventServiceProvider.php old mode 100644 new mode 100755 diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php old mode 100644 new mode 100755 diff --git a/app/View/Components/AppLayout.php b/app/View/Components/AppLayout.php old mode 100644 new mode 100755 diff --git a/app/View/Components/GuestLayout.php b/app/View/Components/GuestLayout.php old mode 100644 new mode 100755 diff --git a/app/View/Components/Slider.php b/app/View/Components/Slider.php old mode 100644 new mode 100755 diff --git a/app/View/Components/listadoPlanes.php b/app/View/Components/listadoPlanes.php old mode 100644 new mode 100755 diff --git a/artisan b/artisan old mode 100644 new mode 100755 diff --git a/bash.sh b/bash.sh old mode 100644 new mode 100755 diff --git a/bootstrap/app.php b/bootstrap/app.php old mode 100644 new mode 100755 diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore old mode 100644 new mode 100755 diff --git a/composer.json b/composer.json old mode 100644 new mode 100755 diff --git a/composer.lock b/composer.lock old mode 100644 new mode 100755 index 2772e88..4c26375 --- a/composer.lock +++ b/composer.lock @@ -115,30 +115,30 @@ }, { "name": "ashallendesign/short-url", - "version": "v7.3.0", + "version": "v7.7.0", "source": { "type": "git", "url": "https://github.com/ash-jc-allen/short-url.git", - "reference": "7fc5d967d0116f954292d8c012b0e6757d8259ea" + "reference": "9abf30be15138d7ecc4c18d963032e3dc34d321f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ash-jc-allen/short-url/zipball/7fc5d967d0116f954292d8c012b0e6757d8259ea", - "reference": "7fc5d967d0116f954292d8c012b0e6757d8259ea", + "url": "https://api.github.com/repos/ash-jc-allen/short-url/zipball/9abf30be15138d7ecc4c18d963032e3dc34d321f", + "reference": "9abf30be15138d7ecc4c18d963032e3dc34d321f", "shasum": "" }, "require": { - "hashids/hashids": "^4.0", - "illuminate/container": "^8.0|^9.0", - "illuminate/database": "^8.0|^9.0", + "hashids/hashids": "^4.0|^5.0", + "illuminate/container": "^8.0|^9.0|^10.0", + "illuminate/database": "^8.0|^9.0|^10.0", "jenssegers/agent": "^2.6", "nesbot/carbon": "~2.0", "php": "^8.0" }, "require-dev": { "mockery/mockery": "^1.0", - "nunomaduro/larastan": "^0.7.12 || ^1.0.0", - "orchestra/testbench": "^6.0|^7.0", + "nunomaduro/larastan": "^0.7.12 || ^1.0.0 || ^2.0", + "orchestra/testbench": "^6.0|^7.0|^8.0", "phpunit/phpunit": "^8.2 || ^9.0" }, "type": "library", @@ -178,7 +178,7 @@ ], "support": { "issues": "https://github.com/ash-jc-allen/short-url/issues", - "source": "https://github.com/ash-jc-allen/short-url/tree/v7.3.0" + "source": "https://github.com/ash-jc-allen/short-url/tree/v7.7.0" }, "funding": [ { @@ -186,30 +186,29 @@ "type": "github" } ], - "time": "2022-10-17T14:51:21+00:00" + "time": "2023-10-26T14:27:39+00:00" }, { "name": "brick/math", - "version": "0.10.2", + "version": "0.11.0", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f" + "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/459f2781e1a08d52ee56b0b1444086e038561e3f", - "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f", + "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478", + "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478", "shasum": "" }, "require": { - "ext-json": "*", - "php": "^7.4 || ^8.0" + "php": "^8.0" }, "require-dev": { "php-coveralls/php-coveralls": "^2.2", "phpunit/phpunit": "^9.0", - "vimeo/psalm": "4.25.0" + "vimeo/psalm": "5.0.0" }, "type": "library", "autoload": { @@ -234,7 +233,7 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.10.2" + "source": "https://github.com/brick/math/tree/0.11.0" }, "funding": [ { @@ -242,93 +241,20 @@ "type": "github" } ], - "time": "2022-08-10T22:54:19+00:00" - }, - { - "name": "composer/package-versions-deprecated", - "version": "1.11.99.5", - "source": { - "type": "git", - "url": "https://github.com/composer/package-versions-deprecated.git", - "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d", - "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.1.0 || ^2.0", - "php": "^7 || ^8" - }, - "replace": { - "ocramius/package-versions": "1.11.99" - }, - "require-dev": { - "composer/composer": "^1.9.3 || ^2.0@dev", - "ext-zip": "^1.13", - "phpunit/phpunit": "^6.5 || ^7" - }, - "type": "composer-plugin", - "extra": { - "class": "PackageVersions\\Installer", - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "PackageVersions\\": "src/PackageVersions" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be" - } - ], - "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", - "support": { - "issues": "https://github.com/composer/package-versions-deprecated/issues", - "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2022-01-17T14:14:24+00:00" + "time": "2023-01-15T23:15:59+00:00" }, { "name": "composer/semver", - "version": "3.3.2", + "version": "3.4.0", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9" + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9", - "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9", + "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32", + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32", "shasum": "" }, "require": { @@ -378,9 +304,9 @@ "versioning" ], "support": { - "irc": "irc://irc.freenode.org/composer", + "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.3.2" + "source": "https://github.com/composer/semver/tree/3.4.0" }, "funding": [ { @@ -396,7 +322,7 @@ "type": "tidelift" } ], - "time": "2022-04-01T19:23:25+00:00" + "time": "2023-08-31T09:50:34+00:00" }, { "name": "dflydev/dot-access-data", @@ -475,32 +401,35 @@ }, { "name": "doctrine/annotations", - "version": "1.13.3", + "version": "1.14.3", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "648b0343343565c4a056bfc8392201385e8d89f0" + "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0", - "reference": "648b0343343565c4a056bfc8392201385e8d89f0", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", + "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", "shasum": "" }, "require": { - "doctrine/lexer": "1.*", + "doctrine/lexer": "^1 || ^2", "ext-tokenizer": "*", "php": "^7.1 || ^8.0", "psr/cache": "^1 || ^2 || ^3" }, "require-dev": { "doctrine/cache": "^1.11 || ^2.0", - "doctrine/coding-standard": "^6.0 || ^8.1", - "phpstan/phpstan": "^1.4.10 || ^1.8.0", - "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5", - "symfony/cache": "^4.4 || ^5.2", + "doctrine/coding-standard": "^9 || ^10", + "phpstan/phpstan": "~1.4.10 || ^1.8.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "symfony/cache": "^4.4 || ^5.4 || ^6", "vimeo/psalm": "^4.10" }, + "suggest": { + "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations" + }, "type": "library", "autoload": { "psr-4": { @@ -542,9 +471,9 @@ ], "support": { "issues": "https://github.com/doctrine/annotations/issues", - "source": "https://github.com/doctrine/annotations/tree/1.13.3" + "source": "https://github.com/doctrine/annotations/tree/1.14.3" }, - "time": "2022-07-02T10:48:51+00:00" + "time": "2023-02-01T09:20:38+00:00" }, { "name": "doctrine/common", @@ -637,6 +566,53 @@ ], "time": "2022-10-09T11:47:59+00:00" }, + { + "name": "doctrine/deprecations", + "version": "1.1.2", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931", + "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9", + "phpstan/phpstan": "1.4.10 || 1.10.15", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "psalm/plugin-phpunit": "0.18.4", + "psr/log": "^1 || ^2 || ^3", + "vimeo/psalm": "4.30.0 || 5.12.0" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "support": { + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/1.1.2" + }, + "time": "2023-09-27T20:04:15+00:00" + }, { "name": "doctrine/event-manager", "version": "2.0.0", @@ -730,28 +706,28 @@ }, { "name": "doctrine/inflector", - "version": "2.0.6", + "version": "2.0.8", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024" + "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", - "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff", + "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff", "shasum": "" }, "require": { "php": "^7.2 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^10", + "doctrine/coding-standard": "^11.0", "phpstan/phpstan": "^1.8", "phpstan/phpstan-phpunit": "^1.1", "phpstan/phpstan-strict-rules": "^1.3", "phpunit/phpunit": "^8.5 || ^9.5", - "vimeo/psalm": "^4.25" + "vimeo/psalm": "^4.25 || ^5.4" }, "type": "library", "autoload": { @@ -801,7 +777,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.0.6" + "source": "https://github.com/doctrine/inflector/tree/2.0.8" }, "funding": [ { @@ -817,35 +793,37 @@ "type": "tidelift" } ], - "time": "2022-10-20T09:10:12+00:00" + "time": "2023-06-16T13:40:37+00:00" }, { "name": "doctrine/lexer", - "version": "1.2.3", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229" + "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229", - "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", + "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", "shasum": "" }, "require": { + "doctrine/deprecations": "^1.0", "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^9.0", + "doctrine/coding-standard": "^9 || ^10", "phpstan/phpstan": "^1.3", "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.11" + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^4.11 || ^5.0" }, "type": "library", "autoload": { "psr-4": { - "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + "Doctrine\\Common\\Lexer\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -877,7 +855,7 @@ ], "support": { "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/1.2.3" + "source": "https://github.com/doctrine/lexer/tree/2.1.0" }, "funding": [ { @@ -893,20 +871,20 @@ "type": "tidelift" } ], - "time": "2022-02-28T11:07:21+00:00" + "time": "2022-12-14T08:49:07+00:00" }, { "name": "doctrine/persistence", - "version": "3.0.4", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/doctrine/persistence.git", - "reference": "05612da375f8a3931161f435f91d6704926e6ec5" + "reference": "63fee8c33bef740db6730eb2a750cd3da6495603" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/persistence/zipball/05612da375f8a3931161f435f91d6704926e6ec5", - "reference": "05612da375f8a3931161f435f91d6704926e6ec5", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603", + "reference": "63fee8c33bef740db6730eb2a750cd3da6495603", "shasum": "" }, "require": { @@ -915,20 +893,18 @@ "psr/cache": "^1.0 || ^2.0 || ^3.0" }, "conflict": { - "doctrine/annotations": "<1.7 || >=2.0", "doctrine/common": "<2.10" }, "require-dev": { "composer/package-versions-deprecated": "^1.11", - "doctrine/annotations": "^1.7", - "doctrine/coding-standard": "^10", + "doctrine/coding-standard": "^11", "doctrine/common": "^3.0", - "phpstan/phpstan": "1.8.8", + "phpstan/phpstan": "1.9.4", "phpstan/phpstan-phpunit": "^1", "phpstan/phpstan-strict-rules": "^1.1", "phpunit/phpunit": "^8.5 || ^9.5", "symfony/cache": "^4.4 || ^5.4 || ^6.0", - "vimeo/psalm": "4.29.0" + "vimeo/psalm": "4.30.0 || 5.3.0" }, "type": "library", "autoload": { @@ -977,7 +953,7 @@ ], "support": { "issues": "https://github.com/doctrine/persistence/issues", - "source": "https://github.com/doctrine/persistence/tree/3.0.4" + "source": "https://github.com/doctrine/persistence/tree/3.2.0" }, "funding": [ { @@ -993,20 +969,20 @@ "type": "tidelift" } ], - "time": "2022-10-13T07:34:14+00:00" + "time": "2023-05-17T18:32:04+00:00" }, { "name": "dragonmantank/cron-expression", - "version": "v3.3.2", + "version": "v3.3.3", "source": { "type": "git", "url": "https://github.com/dragonmantank/cron-expression.git", - "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8" + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8", - "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", "shasum": "" }, "require": { @@ -1046,7 +1022,7 @@ ], "support": { "issues": "https://github.com/dragonmantank/cron-expression/issues", - "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2" + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3" }, "funding": [ { @@ -1054,31 +1030,30 @@ "type": "github" } ], - "time": "2022-09-10T18:51:20+00:00" + "time": "2023-08-10T19:36:49+00:00" }, { "name": "egulias/email-validator", - "version": "3.2.1", + "version": "4.0.2", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715" + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/f88dcf4b14af14a98ad96b14b2b317969eab6715", - "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e", "shasum": "" }, "require": { - "doctrine/lexer": "^1.2", - "php": ">=7.2", - "symfony/polyfill-intl-idn": "^1.15" + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" }, "require-dev": { - "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^8.5.8|^9.3.3", - "vimeo/psalm": "^4" + "phpunit/phpunit": "^10.2", + "vimeo/psalm": "^5.12" }, "suggest": { "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" @@ -1086,7 +1061,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0.x-dev" + "dev-master": "4.0.x-dev" } }, "autoload": { @@ -1114,7 +1089,7 @@ ], "support": { "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/3.2.1" + "source": "https://github.com/egulias/EmailValidator/tree/4.0.2" }, "funding": [ { @@ -1122,7 +1097,7 @@ "type": "github" } ], - "time": "2022-06-18T20:57:19+00:00" + "time": "2023-10-06T06:47:41+00:00" }, { "name": "ezyang/htmlpurifier", @@ -1187,21 +1162,21 @@ }, { "name": "fruitcake/php-cors", - "version": "v1.2.0", + "version": "v1.3.0", "source": { "type": "git", "url": "https://github.com/fruitcake/php-cors.git", - "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e" + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e", - "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e", + "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b", "shasum": "" }, "require": { "php": "^7.4|^8.0", - "symfony/http-foundation": "^4.4|^5.4|^6" + "symfony/http-foundation": "^4.4|^5.4|^6|^7" }, "require-dev": { "phpstan/phpstan": "^1.4", @@ -1211,7 +1186,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.1-dev" + "dev-master": "1.2-dev" } }, "autoload": { @@ -1242,7 +1217,7 @@ ], "support": { "issues": "https://github.com/fruitcake/php-cors/issues", - "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0" + "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0" }, "funding": [ { @@ -1254,28 +1229,28 @@ "type": "github" } ], - "time": "2022-02-20T15:07:15+00:00" + "time": "2023-10-12T05:21:21+00:00" }, { "name": "graham-campbell/result-type", - "version": "v1.1.0", + "version": "v1.1.1", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Result-Type.git", - "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8" + "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8", - "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", + "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9" + "phpoption/phpoption": "^1.9.1" }, "require-dev": { - "phpunit/phpunit": "^8.5.28 || ^9.5.21" + "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" }, "type": "library", "autoload": { @@ -1304,7 +1279,7 @@ ], "support": { "issues": "https://github.com/GrahamCampbell/Result-Type/issues", - "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0" + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1" }, "funding": [ { @@ -1316,26 +1291,26 @@ "type": "tidelift" } ], - "time": "2022-07-30T15:56:11+00:00" + "time": "2023-02-25T20:23:15+00:00" }, { "name": "guzzlehttp/guzzle", - "version": "7.5.0", + "version": "7.8.0", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba" + "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba", - "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1110f66a6530a40fe7aea0378fe608ee2b2248f9", + "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.5", - "guzzlehttp/psr7": "^1.9 || ^2.4", + "guzzlehttp/promises": "^1.5.3 || ^2.0.1", + "guzzlehttp/psr7": "^1.9.1 || ^2.5.1", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -1346,7 +1321,8 @@ "require-dev": { "bamarni/composer-bin-plugin": "^1.8.1", "ext-curl": "*", - "php-http/client-integration-tests": "^3.0", + "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", + "php-http/message-factory": "^1.1", "phpunit/phpunit": "^8.5.29 || ^9.5.23", "psr/log": "^1.1 || ^2.0 || ^3.0" }, @@ -1360,9 +1336,6 @@ "bamarni-bin": { "bin-links": true, "forward-command": false - }, - "branch-alias": { - "dev-master": "7.5-dev" } }, "autoload": { @@ -1428,7 +1401,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.5.0" + "source": "https://github.com/guzzle/guzzle/tree/7.8.0" }, "funding": [ { @@ -1444,38 +1417,37 @@ "type": "tidelift" } ], - "time": "2022-08-28T15:39:27+00:00" + "time": "2023-08-27T10:20:53+00:00" }, { "name": "guzzlehttp/promises", - "version": "1.5.2", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "b94b2807d85443f9719887892882d0329d1e2598" + "reference": "111166291a0f8130081195ac4556a5587d7f1b5d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598", - "reference": "b94b2807d85443f9719887892882d0329d1e2598", + "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d", + "reference": "111166291a0f8130081195ac4556a5587d7f1b5d", "shasum": "" }, "require": { - "php": ">=5.5" + "php": "^7.2.5 || ^8.0" }, "require-dev": { - "symfony/phpunit-bridge": "^4.4 || ^5.1" + "bamarni/composer-bin-plugin": "^1.8.1", + "phpunit/phpunit": "^8.5.29 || ^9.5.23" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "1.5-dev" + "bamarni-bin": { + "bin-links": true, + "forward-command": false } }, "autoload": { - "files": [ - "src/functions_include.php" - ], "psr-4": { "GuzzleHttp\\Promise\\": "src/" } @@ -1512,7 +1484,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/1.5.2" + "source": "https://github.com/guzzle/promises/tree/2.0.1" }, "funding": [ { @@ -1528,26 +1500,26 @@ "type": "tidelift" } ], - "time": "2022-08-28T14:55:35+00:00" + "time": "2023-08-03T15:11:55+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.4.3", + "version": "2.6.1", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "67c26b443f348a51926030c83481b85718457d3d" + "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d", - "reference": "67c26b443f348a51926030c83481b85718457d3d", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727", + "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0", "psr/http-factory": "^1.0", - "psr/http-message": "^1.0", + "psr/http-message": "^1.1 || ^2.0", "ralouphie/getallheaders": "^3.0" }, "provide": { @@ -1567,9 +1539,6 @@ "bamarni-bin": { "bin-links": true, "forward-command": false - }, - "branch-alias": { - "dev-master": "2.4-dev" } }, "autoload": { @@ -1631,7 +1600,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.4.3" + "source": "https://github.com/guzzle/psr7/tree/2.6.1" }, "funding": [ { @@ -1647,29 +1616,108 @@ "type": "tidelift" } ], - "time": "2022-10-26T14:07:24+00:00" + "time": "2023-08-27T10:13:57+00:00" }, { - "name": "hashids/hashids", - "version": "4.1.0", + "name": "guzzlehttp/uri-template", + "version": "v1.0.2", "source": { "type": "git", - "url": "https://github.com/vinkla/hashids.git", - "reference": "8cab111f78e0bd9c76953b082919fc9e251761be" + "url": "https://github.com/guzzle/uri-template.git", + "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be", - "reference": "8cab111f78e0bd9c76953b082919fc9e251761be", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/61bf437fc2197f587f6857d3ff903a24f1731b5d", + "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.17" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.1", + "phpunit/phpunit": "^8.5.19 || ^9.5.8", + "uri-template/tests": "1.0.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "GuzzleHttp\\UriTemplate\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + } + ], + "description": "A polyfill class for uri_template of PHP", + "keywords": [ + "guzzlehttp", + "uri-template" + ], + "support": { + "issues": "https://github.com/guzzle/uri-template/issues", + "source": "https://github.com/guzzle/uri-template/tree/v1.0.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", + "type": "tidelift" + } + ], + "time": "2023-08-27T10:19:19+00:00" + }, + { + "name": "hashids/hashids", + "version": "5.0.2", + "source": { + "type": "git", + "url": "https://github.com/vinkla/hashids.git", + "reference": "197171016b77ddf14e259e186559152eb3f8cf33" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vinkla/hashids/zipball/197171016b77ddf14e259e186559152eb3f8cf33", + "reference": "197171016b77ddf14e259e186559152eb3f8cf33", "shasum": "" }, "require": { "ext-mbstring": "*", - "php": "^7.2 || ^8.0" + "php": "^8.1" }, "require-dev": { - "phpunit/phpunit": "^8.0 || ^9.4", - "squizlabs/php_codesniffer": "^3.5" + "phpunit/phpunit": "^10.0" }, "suggest": { "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).", @@ -1678,7 +1726,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.1-dev" + "dev-master": "5.0-dev" } }, "autoload": { @@ -1715,9 +1763,9 @@ ], "support": { "issues": "https://github.com/vinkla/hashids/issues", - "source": "https://github.com/vinkla/hashids/tree/4.1.0" + "source": "https://github.com/vinkla/hashids/tree/5.0.2" }, - "time": "2020-11-26T19:24:33+00:00" + "time": "2023-02-23T15:00:54+00:00" }, { "name": "intervention/image", @@ -1805,26 +1853,26 @@ }, { "name": "jantinnerezo/livewire-alert", - "version": "2.2.6", + "version": "2.2.7", "source": { "type": "git", "url": "https://github.com/jantinnerezo/livewire-alert.git", - "reference": "352d13719741fce537893bd9372504385bc99d5c" + "reference": "a017d3f41024ca3a589a6b0db5d0af3efe532fa9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jantinnerezo/livewire-alert/zipball/352d13719741fce537893bd9372504385bc99d5c", - "reference": "352d13719741fce537893bd9372504385bc99d5c", + "url": "https://api.github.com/repos/jantinnerezo/livewire-alert/zipball/a017d3f41024ca3a589a6b0db5d0af3efe532fa9", + "reference": "a017d3f41024ca3a589a6b0db5d0af3efe532fa9", "shasum": "" }, "require": { - "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0", + "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0", "livewire/livewire": "^2.0", - "php": "^7.4|^8.0" + "php": "^7.4|^8.0|^8.1|^8.2" }, "require-dev": { - "orchestra/testbench": "^6.15", - "phpunit/phpunit": "^9.5" + "orchestra/testbench": "^6.15|^7.0|^8.0", + "phpunit/phpunit": "^9.5|^10.0" }, "type": "library", "extra": { @@ -1861,7 +1909,7 @@ ], "support": { "issues": "https://github.com/jantinnerezo/livewire-alert/issues", - "source": "https://github.com/jantinnerezo/livewire-alert/tree/2.2.6" + "source": "https://github.com/jantinnerezo/livewire-alert/tree/2.2.7" }, "funding": [ { @@ -1869,20 +1917,20 @@ "type": "custom" } ], - "time": "2022-03-15T17:39:01+00:00" + "time": "2023-02-15T18:05:31+00:00" }, { "name": "jaybizzle/crawler-detect", - "version": "v1.2.112", + "version": "v1.2.116", "source": { "type": "git", "url": "https://github.com/JayBizzle/Crawler-Detect.git", - "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f" + "reference": "97e9fe30219e60092e107651abb379a38b342921" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f", - "reference": "2c555ce35a07a5c1c808cee7d5bb52c41a4c7b2f", + "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/97e9fe30219e60092e107651abb379a38b342921", + "reference": "97e9fe30219e60092e107651abb379a38b342921", "shasum": "" }, "require": { @@ -1919,9 +1967,9 @@ ], "support": { "issues": "https://github.com/JayBizzle/Crawler-Detect/issues", - "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.112" + "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.116" }, - "time": "2022-10-05T21:52:44+00:00" + "time": "2023-07-21T15:49:49+00:00" }, { "name": "jenssegers/agent", @@ -2008,29 +2056,26 @@ }, { "name": "laminas/laminas-diactoros", - "version": "2.20.0", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-diactoros.git", - "reference": "10696c809866bebd9d71dca14de6c0d6c1cac2f8" + "reference": "4db52734837c60259c9b2d7caf08eef8f7f9b9ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/10696c809866bebd9d71dca14de6c0d6c1cac2f8", - "reference": "10696c809866bebd9d71dca14de6c0d6c1cac2f8", + "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/4db52734837c60259c9b2d7caf08eef8f7f9b9ac", + "reference": "4db52734837c60259c9b2d7caf08eef8f7f9b9ac", "shasum": "" }, "require": { - "php": "~8.0.0 || ~8.1.0 || ~8.2.0", - "psr/http-factory": "^1.0", - "psr/http-message": "^1.0" - }, - "conflict": { - "zendframework/zend-diactoros": "*" + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", + "psr/http-factory": "^1.0.2", + "psr/http-message": "^1.1 || ^2.0" }, "provide": { - "psr/http-factory-implementation": "1.0", - "psr/http-message-implementation": "1.0" + "psr/http-factory-implementation": "^1.1 || ^2.0", + "psr/http-message-implementation": "^1.1 || ^2.0" }, "require-dev": { "ext-curl": "*", @@ -2038,11 +2083,11 @@ "ext-gd": "*", "ext-libxml": "*", "http-interop/http-factory-tests": "^0.9.0", - "laminas/laminas-coding-standard": "^2.4.0", - "php-http/psr7-integration-tests": "^1.1.1", - "phpunit/phpunit": "^9.5.25", - "psalm/plugin-phpunit": "^0.17.0", - "vimeo/psalm": "^4.28" + "laminas/laminas-coding-standard": "~2.5.0", + "php-http/psr7-integration-tests": "^1.3", + "phpunit/phpunit": "^9.5.28", + "psalm/plugin-phpunit": "^0.18.4", + "vimeo/psalm": "^5.15.0" }, "type": "library", "extra": { @@ -2057,18 +2102,9 @@ "src/functions/marshal_headers_from_sapi.php", "src/functions/marshal_method_from_sapi.php", "src/functions/marshal_protocol_version_from_sapi.php", - "src/functions/marshal_uri_from_sapi.php", "src/functions/normalize_server.php", "src/functions/normalize_uploaded_files.php", - "src/functions/parse_cookie_header.php", - "src/functions/create_uploaded_file.legacy.php", - "src/functions/marshal_headers_from_sapi.legacy.php", - "src/functions/marshal_method_from_sapi.legacy.php", - "src/functions/marshal_protocol_version_from_sapi.legacy.php", - "src/functions/marshal_uri_from_sapi.legacy.php", - "src/functions/normalize_server.legacy.php", - "src/functions/normalize_uploaded_files.legacy.php", - "src/functions/parse_cookie_header.legacy.php" + "src/functions/parse_cookie_header.php" ], "psr-4": { "Laminas\\Diactoros\\": "src/" @@ -2101,31 +2137,38 @@ "type": "community_bridge" } ], - "time": "2022-10-25T13:35:54+00:00" + "time": "2023-10-26T11:01:07+00:00" }, { "name": "laravel/framework", - "version": "v9.37.0", + "version": "v9.52.16", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "0c9675abf6d966e834b2ebeca3319f524e07a330" + "reference": "082345d76fc6a55b649572efe10b11b03e279d24" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/0c9675abf6d966e834b2ebeca3319f524e07a330", - "reference": "0c9675abf6d966e834b2ebeca3319f524e07a330", + "url": "https://api.github.com/repos/laravel/framework/zipball/082345d76fc6a55b649572efe10b11b03e279d24", + "reference": "082345d76fc6a55b649572efe10b11b03e279d24", "shasum": "" }, "require": { - "doctrine/inflector": "^2.0", + "brick/math": "^0.9.3|^0.10.2|^0.11", + "doctrine/inflector": "^2.0.5", "dragonmantank/cron-expression": "^3.3.2", - "egulias/email-validator": "^3.2.1", + "egulias/email-validator": "^3.2.1|^4.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", "ext-mbstring": "*", "ext-openssl": "*", + "ext-session": "*", + "ext-tokenizer": "*", "fruitcake/php-cors": "^1.2", + "guzzlehttp/uri-template": "^1.0", "laravel/serializable-closure": "^1.2.2", - "league/commonmark": "^2.2", + "league/commonmark": "^2.2.1", "league/flysystem": "^3.8.0", "monolog/monolog": "^2.0", "nesbot/carbon": "^2.62.1", @@ -2134,7 +2177,7 @@ "psr/container": "^1.1.1|^2.0.1", "psr/log": "^1.0|^2.0|^3.0", "psr/simple-cache": "^1.0|^2.0|^3.0", - "ramsey/uuid": "^4.2.2", + "ramsey/uuid": "^4.7", "symfony/console": "^6.0.9", "symfony/error-handler": "^6.0", "symfony/finder": "^6.0", @@ -2195,7 +2238,8 @@ "ably/ably-php": "^1.0", "aws/aws-sdk-php": "^3.235.5", "doctrine/dbal": "^2.13.3|^3.1.4", - "fakerphp/faker": "^1.9.2", + "ext-gmp": "*", + "fakerphp/faker": "^1.21", "guzzlehttp/guzzle": "^7.5", "league/flysystem-aws-s3-v3": "^3.0", "league/flysystem-ftp": "^3.0", @@ -2203,23 +2247,27 @@ "league/flysystem-read-only": "^3.3", "league/flysystem-sftp-v3": "^3.0", "mockery/mockery": "^1.5.1", - "orchestra/testbench-core": "^7.11", + "orchestra/testbench-core": "^7.24", "pda/pheanstalk": "^4.0", + "phpstan/phpdoc-parser": "^1.15", "phpstan/phpstan": "^1.4.7", "phpunit/phpunit": "^9.5.8", "predis/predis": "^1.1.9|^2.0.2", - "symfony/cache": "^6.0" + "symfony/cache": "^6.0", + "symfony/http-client": "^6.0" }, "suggest": { "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).", "brianium/paratest": "Required to run tests in parallel (^6.0).", "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).", - "ext-bcmath": "Required to use the multiple_of validation rule.", + "ext-apcu": "Required to use the APC cache driver.", + "ext-fileinfo": "Required to use the Filesystem class.", "ext-ftp": "Required to use the Flysystem FTP driver.", "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", "ext-memcached": "Required to use the memcache cache driver.", - "ext-pcntl": "Required to use all features of the queue worker.", + "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", + "ext-pdo": "Required to use all database features.", "ext-posix": "Required to use all features of the queue worker.", "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", @@ -2287,34 +2335,35 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-10-25T15:43:46+00:00" + "time": "2023-10-03T13:02:30+00:00" }, { "name": "laravel/sanctum", - "version": "v3.0.1", + "version": "v3.3.2", "source": { "type": "git", "url": "https://github.com/laravel/sanctum.git", - "reference": "b71e80a3a8e8029e2ec8c1aa814b999609ce16dc" + "reference": "e1a272893bec13cf135627f7e156030b3afe1e60" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sanctum/zipball/b71e80a3a8e8029e2ec8c1aa814b999609ce16dc", - "reference": "b71e80a3a8e8029e2ec8c1aa814b999609ce16dc", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/e1a272893bec13cf135627f7e156030b3afe1e60", + "reference": "e1a272893bec13cf135627f7e156030b3afe1e60", "shasum": "" }, "require": { "ext-json": "*", - "illuminate/console": "^9.21", - "illuminate/contracts": "^9.21", - "illuminate/database": "^9.21", - "illuminate/support": "^9.21", + "illuminate/console": "^9.21|^10.0", + "illuminate/contracts": "^9.21|^10.0", + "illuminate/database": "^9.21|^10.0", + "illuminate/support": "^9.21|^10.0", "php": "^8.0.2" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^7.0", - "phpunit/phpunit": "^9.3" + "orchestra/testbench": "^7.28.2|^8.8.3", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.6" }, "type": "library", "extra": { @@ -2352,20 +2401,20 @@ "issues": "https://github.com/laravel/sanctum/issues", "source": "https://github.com/laravel/sanctum" }, - "time": "2022-07-29T21:33:30+00:00" + "time": "2023-11-03T13:42:14+00:00" }, { "name": "laravel/serializable-closure", - "version": "v1.2.2", + "version": "v1.3.2", "source": { "type": "git", "url": "https://github.com/laravel/serializable-closure.git", - "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae" + "reference": "076fe2cf128bd54b4341cdc6d49b95b34e101e4c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/47afb7fae28ed29057fdca37e16a84f90cc62fae", - "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/076fe2cf128bd54b4341cdc6d49b95b34e101e4c", + "reference": "076fe2cf128bd54b4341cdc6d49b95b34e101e4c", "shasum": "" }, "require": { @@ -2412,36 +2461,37 @@ "issues": "https://github.com/laravel/serializable-closure/issues", "source": "https://github.com/laravel/serializable-closure" }, - "time": "2022-09-08T13:45:54+00:00" + "time": "2023-10-17T13:38:16+00:00" }, { "name": "laravel/tinker", - "version": "v2.7.2", + "version": "v2.8.2", "source": { "type": "git", "url": "https://github.com/laravel/tinker.git", - "reference": "dff39b661e827dae6e092412f976658df82dbac5" + "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5", - "reference": "dff39b661e827dae6e092412f976658df82dbac5", + "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3", + "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3", "shasum": "" }, "require": { - "illuminate/console": "^6.0|^7.0|^8.0|^9.0", - "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0", + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", "php": "^7.2.5|^8.0", "psy/psysh": "^0.10.4|^0.11.1", "symfony/var-dumper": "^4.3.4|^5.0|^6.0" }, "require-dev": { "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^8.5.8|^9.3.3" }, "suggest": { - "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)." + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)." }, "type": "library", "extra": { @@ -2478,34 +2528,36 @@ ], "support": { "issues": "https://github.com/laravel/tinker/issues", - "source": "https://github.com/laravel/tinker/tree/v2.7.2" + "source": "https://github.com/laravel/tinker/tree/v2.8.2" }, - "time": "2022-03-23T12:38:24+00:00" + "time": "2023-08-15T14:27:00+00:00" }, { "name": "laravel/vonage-notification-channel", - "version": "v3.0.0", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/laravel/vonage-notification-channel.git", - "reference": "c1245b19bfa3c6f7a45ef103c6bbc3437b76040a" + "reference": "9423dbdfff4a47ed7be5eb4bff9c050a6de4e2f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/vonage-notification-channel/zipball/c1245b19bfa3c6f7a45ef103c6bbc3437b76040a", - "reference": "c1245b19bfa3c6f7a45ef103c6bbc3437b76040a", + "url": "https://api.github.com/repos/laravel/vonage-notification-channel/zipball/9423dbdfff4a47ed7be5eb4bff9c050a6de4e2f4", + "reference": "9423dbdfff4a47ed7be5eb4bff9c050a6de4e2f4", "shasum": "" }, "require": { - "illuminate/notifications": "^8.0|^9.0", - "illuminate/support": "^8.0|^9.0", + "illuminate/notifications": "^8.0|^9.0|^10.0", + "illuminate/support": "^8.0|^9.0|^10.0", "php": "^8.0", - "vonage/client-core": "^3.0" + "vonage/client-core": "^4.0.4" }, "require-dev": { "guzzlehttp/guzzle": "^7.2", "mockery/mockery": "^1.0", - "orchestra/testbench": "^6.0|^7.0" + "orchestra/testbench": "^6.0|^7.0|^8.0", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.0" }, "type": "library", "extra": { @@ -2545,37 +2597,40 @@ ], "support": { "issues": "https://github.com/laravel/vonage-notification-channel/issues", - "source": "https://github.com/laravel/vonage-notification-channel/tree/v3.0.0" + "source": "https://github.com/laravel/vonage-notification-channel/tree/v3.2.1" }, - "time": "2022-02-08T14:43:08+00:00" + "time": "2023-05-01T15:47:10+00:00" }, { "name": "lcobucci/clock", - "version": "2.2.0", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/lcobucci/clock.git", - "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3" + "reference": "30a854ceb22bd87d83a7a4563b3f6312453945fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/clock/zipball/fb533e093fd61321bfcbac08b131ce805fe183d3", - "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3", + "url": "https://api.github.com/repos/lcobucci/clock/zipball/30a854ceb22bd87d83a7a4563b3f6312453945fc", + "reference": "30a854ceb22bd87d83a7a4563b3f6312453945fc", "shasum": "" }, "require": { - "php": "^8.0", - "stella-maris/clock": "^0.1.4" + "php": "~8.2.0", + "psr/clock": "^1.0" + }, + "provide": { + "psr/clock-implementation": "1.0" }, "require-dev": { "infection/infection": "^0.26", - "lcobucci/coding-standard": "^8.0", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-deprecation-rules": "^0.12", - "phpstan/phpstan-phpunit": "^0.12", - "phpstan/phpstan-strict-rules": "^0.12", - "phpunit/phpunit": "^9.5" + "lcobucci/coding-standard": "^10.0.0", + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan": "^1.10.7", + "phpstan/phpstan-deprecation-rules": "^1.1.3", + "phpstan/phpstan-phpunit": "^1.3.10", + "phpstan/phpstan-strict-rules": "^1.5.0", + "phpunit/phpunit": "^10.0.17" }, "type": "library", "autoload": { @@ -2596,7 +2651,7 @@ "description": "Yet another clock abstraction", "support": { "issues": "https://github.com/lcobucci/clock/issues", - "source": "https://github.com/lcobucci/clock/tree/2.2.0" + "source": "https://github.com/lcobucci/clock/tree/3.1.0" }, "funding": [ { @@ -2608,47 +2663,45 @@ "type": "patreon" } ], - "time": "2022-04-19T19:34:17+00:00" + "time": "2023-03-20T19:12:25+00:00" }, { "name": "lcobucci/jwt", - "version": "4.0.4", + "version": "4.3.0", "source": { "type": "git", "url": "https://github.com/lcobucci/jwt.git", - "reference": "55564265fddf810504110bd68ca311932324b0e9" + "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/55564265fddf810504110bd68ca311932324b0e9", - "reference": "55564265fddf810504110bd68ca311932324b0e9", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/4d7de2fe0d51a96418c0d04004986e410e87f6b4", + "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4", "shasum": "" }, "require": { + "ext-hash": "*", + "ext-json": "*", "ext-mbstring": "*", "ext-openssl": "*", - "lcobucci/clock": "^2.0", + "ext-sodium": "*", + "lcobucci/clock": "^2.0 || ^3.0", "php": "^7.4 || ^8.0" }, "require-dev": { - "infection/infection": "^0.20", + "infection/infection": "^0.21", "lcobucci/coding-standard": "^6.0", - "mikey179/vfsstream": "^1.6", - "phpbench/phpbench": "^0.17", + "mikey179/vfsstream": "^1.6.7", + "phpbench/phpbench": "^1.2", "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-deprecation-rules": "^0.12", - "phpstan/phpstan-phpunit": "^0.12", - "phpstan/phpstan-strict-rules": "^0.12", + "phpstan/phpstan": "^1.4", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "phpstan/phpstan-strict-rules": "^1.0", "phpunit/php-invoker": "^3.1", - "phpunit/phpunit": "^9.4" + "phpunit/phpunit": "^9.5" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.0-dev" - } - }, "autoload": { "psr-4": { "Lcobucci\\JWT\\": "src" @@ -2672,7 +2725,7 @@ ], "support": { "issues": "https://github.com/lcobucci/jwt/issues", - "source": "https://github.com/lcobucci/jwt/tree/4.0.4" + "source": "https://github.com/lcobucci/jwt/tree/4.3.0" }, "funding": [ { @@ -2684,20 +2737,20 @@ "type": "patreon" } ], - "time": "2021-09-28T19:18:28+00:00" + "time": "2023-01-02T13:28:00+00:00" }, { "name": "league/commonmark", - "version": "2.3.5", + "version": "2.4.1", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "84d74485fdb7074f4f9dd6f02ab957b1de513257" + "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/84d74485fdb7074f4f9dd6f02ab957b1de513257", - "reference": "84d74485fdb7074f4f9dd6f02ab957b1de513257", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5", + "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5", "shasum": "" }, "require": { @@ -2717,7 +2770,7 @@ "erusev/parsedown": "^1.0", "ext-json": "*", "github/gfm": "0.29.0", - "michelf/php-markdown": "^1.4", + "michelf/php-markdown": "^1.4 || ^2.0", "nyholm/psr7": "^1.5", "phpstan/phpstan": "^1.8.2", "phpunit/phpunit": "^9.5.21", @@ -2725,7 +2778,7 @@ "symfony/finder": "^5.3 | ^6.0", "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", "unleashedtech/php-coding-standard": "^3.1.1", - "vimeo/psalm": "^4.24.0" + "vimeo/psalm": "^4.24.0 || ^5.0.0" }, "suggest": { "symfony/yaml": "v2.3+ required if using the Front Matter extension" @@ -2733,7 +2786,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.4-dev" + "dev-main": "2.5-dev" } }, "autoload": { @@ -2790,20 +2843,20 @@ "type": "tidelift" } ], - "time": "2022-07-29T10:59:45+00:00" + "time": "2023-08-30T16:55:00+00:00" }, { "name": "league/config", - "version": "v1.1.1", + "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/thephpleague/config.git", - "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e" + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", - "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", "shasum": "" }, "require": { @@ -2812,7 +2865,7 @@ "php": "^7.4 || ^8.0" }, "require-dev": { - "phpstan/phpstan": "^0.12.90", + "phpstan/phpstan": "^1.8.2", "phpunit/phpunit": "^9.5.5", "scrutinizer/ocular": "^1.8.1", "unleashedtech/php-coding-standard": "^3.1", @@ -2872,27 +2925,30 @@ "type": "github" } ], - "time": "2021-08-14T12:15:32+00:00" + "time": "2022-12-11T20:36:23+00:00" }, { "name": "league/flysystem", - "version": "3.10.2", + "version": "3.19.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "b9bd194b016114d6ff6765c09d40c7d427e4e3f6" + "reference": "1b2aa10f2326e0351399b8ce68e287d8e9209a83" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/b9bd194b016114d6ff6765c09d40c7d427e4e3f6", - "reference": "b9bd194b016114d6ff6765c09d40c7d427e4e3f6", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/1b2aa10f2326e0351399b8ce68e287d8e9209a83", + "reference": "1b2aa10f2326e0351399b8ce68e287d8e9209a83", "shasum": "" }, "require": { + "league/flysystem-local": "^3.0.0", "league/mime-type-detection": "^1.0.0", "php": "^8.0.2" }, "conflict": { + "async-aws/core": "<1.19.0", + "async-aws/s3": "<1.14.0", "aws/aws-sdk-php": "3.209.31 || 3.210.0", "guzzlehttp/guzzle": "<7.0", "guzzlehttp/ringphp": "<1.1.1", @@ -2900,9 +2956,9 @@ "symfony/http-client": "<5.2" }, "require-dev": { - "async-aws/s3": "^1.5", - "async-aws/simple-s3": "^1.1", - "aws/aws-sdk-php": "^3.198.1", + "async-aws/s3": "^1.5 || ^2.0", + "async-aws/simple-s3": "^1.1 || ^2.0", + "aws/aws-sdk-php": "^3.220.0", "composer/semver": "^3.0", "ext-fileinfo": "*", "ext-ftp": "*", @@ -2911,8 +2967,8 @@ "google/cloud-storage": "^1.23", "microsoft/azure-storage-blob": "^1.1", "phpseclib/phpseclib": "^3.0.14", - "phpstan/phpstan": "^0.12.26", - "phpunit/phpunit": "^9.5.11", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5.11|^10.0", "sabre/dav": "^4.3.1" }, "type": "library", @@ -2947,7 +3003,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.10.2" + "source": "https://github.com/thephpleague/flysystem/tree/3.19.0" }, "funding": [ { @@ -2957,36 +3013,92 @@ { "url": "https://github.com/frankdejonge", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/league/flysystem", - "type": "tidelift" } ], - "time": "2022-10-25T07:01:47+00:00" + "time": "2023-11-07T09:04:28+00:00" }, { - "name": "league/mime-type-detection", - "version": "1.11.0", + "name": "league/flysystem-local", + "version": "3.19.0", "source": { "type": "git", - "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "8d868217f9eeb4e9a7320db5ccad825e9a7a4076" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", - "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/8d868217f9eeb4e9a7320db5ccad825e9a7a4076", + "reference": "8d868217f9eeb4e9a7320db5ccad825e9a7a4076", "shasum": "" }, "require": { "ext-fileinfo": "*", - "php": "^7.2 || ^8.0" + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Local filesystem adapter for Flysystem.", + "keywords": [ + "Flysystem", + "file", + "files", + "filesystem", + "local" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem-local/issues", + "source": "https://github.com/thephpleague/flysystem-local/tree/3.19.0" + }, + "funding": [ + { + "url": "https://ecologi.com/frankdejonge", + "type": "custom" + }, + { + "url": "https://github.com/frankdejonge", + "type": "github" + } + ], + "time": "2023-11-06T20:35:28+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.14.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "b6a5854368533df0295c5761a0253656a2e52d9e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b6a5854368533df0295c5761a0253656a2e52d9e", + "reference": "b6a5854368533df0295c5761a0253656a2e52d9e", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.2", "phpstan/phpstan": "^0.12.68", - "phpunit/phpunit": "^8.5.8 || ^9.3" + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" }, "type": "library", "autoload": { @@ -3007,7 +3119,7 @@ "description": "Mime-type detection for Flysystem", "support": { "issues": "https://github.com/thephpleague/mime-type-detection/issues", - "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.14.0" }, "funding": [ { @@ -3019,36 +3131,36 @@ "type": "tidelift" } ], - "time": "2022-04-17T13:12:02+00:00" + "time": "2023-10-17T14:13:20+00:00" }, { "name": "livewire/livewire", - "version": "v2.10.7", + "version": "v2.12.6", "source": { "type": "git", "url": "https://github.com/livewire/livewire.git", - "reference": "fa0441bf82f1674beecb3a8ad8a4ae428736ed18" + "reference": "7d3a57b3193299cf1a0639a3935c696f4da2cf92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/livewire/livewire/zipball/fa0441bf82f1674beecb3a8ad8a4ae428736ed18", - "reference": "fa0441bf82f1674beecb3a8ad8a4ae428736ed18", + "url": "https://api.github.com/repos/livewire/livewire/zipball/7d3a57b3193299cf1a0639a3935c696f4da2cf92", + "reference": "7d3a57b3193299cf1a0639a3935c696f4da2cf92", "shasum": "" }, "require": { - "illuminate/database": "^7.0|^8.0|^9.0", - "illuminate/support": "^7.0|^8.0|^9.0", - "illuminate/validation": "^7.0|^8.0|^9.0", + "illuminate/database": "^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^7.0|^8.0|^9.0|^10.0", + "illuminate/validation": "^7.0|^8.0|^9.0|^10.0", "league/mime-type-detection": "^1.9", "php": "^7.2.5|^8.0", "symfony/http-kernel": "^5.0|^6.0" }, "require-dev": { "calebporzio/sushi": "^2.1", - "laravel/framework": "^7.0|^8.0|^9.0", + "laravel/framework": "^7.0|^8.0|^9.0|^10.0", "mockery/mockery": "^1.3.1", - "orchestra/testbench": "^5.0|^6.0|^7.0", - "orchestra/testbench-dusk": "^5.2|^6.0|^7.0", + "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0", + "orchestra/testbench-dusk": "^5.2|^6.0|^7.0|^8.0", "phpunit/phpunit": "^8.4|^9.0", "psy/psysh": "@stable" }, @@ -3084,7 +3196,7 @@ "description": "A front-end framework for Laravel.", "support": { "issues": "https://github.com/livewire/livewire/issues", - "source": "https://github.com/livewire/livewire/tree/v2.10.7" + "source": "https://github.com/livewire/livewire/tree/v2.12.6" }, "funding": [ { @@ -3092,32 +3204,32 @@ "type": "github" } ], - "time": "2022-08-08T13:52:53+00:00" + "time": "2023-08-11T04:02:34+00:00" }, { "name": "maatwebsite/excel", - "version": "3.1.48", + "version": "3.1.50", "source": { "type": "git", "url": "https://github.com/SpartnerNL/Laravel-Excel.git", - "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9" + "reference": "d79e66391aa306983bb7e234503f5605c3e33348" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/6d0fe2a1d195960c7af7bf0de760582da02a34b9", - "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9", + "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/d79e66391aa306983bb7e234503f5605c3e33348", + "reference": "d79e66391aa306983bb7e234503f5605c3e33348", "shasum": "" }, "require": { "composer/semver": "^3.3", "ext-json": "*", - "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0", - "php": "^7.0|^8.0", + "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0", + "php": "^7.0||^8.0", "phpoffice/phpspreadsheet": "^1.18", - "psr/simple-cache": "^1.0|^2.0|^3.0" + "psr/simple-cache": "^1.0||^2.0||^3.0" }, "require-dev": { - "orchestra/testbench": "^6.0|^7.0|^8.0", + "orchestra/testbench": "^6.0||^7.0||^8.0", "predis/predis": "^1.1" }, "type": "library", @@ -3160,7 +3272,7 @@ ], "support": { "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues", - "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.48" + "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.50" }, "funding": [ { @@ -3172,37 +3284,40 @@ "type": "github" } ], - "time": "2023-02-22T21:01:38+00:00" + "time": "2023-11-06T11:29:48+00:00" }, { "name": "maennchen/zipstream-php", - "version": "v2.4.0", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/maennchen/ZipStream-PHP.git", - "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3" + "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3", - "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3", + "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/b8174494eda667f7d13876b4a7bfef0f62a7c0d1", + "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1", "shasum": "" }, "require": { "ext-mbstring": "*", - "myclabs/php-enum": "^1.5", - "php": "^8.0", - "psr/http-message": "^1.0" + "ext-zlib": "*", + "php-64bit": "^8.1" }, "require-dev": { "ext-zip": "*", - "friendsofphp/php-cs-fixer": "^3.9", - "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0", + "friendsofphp/php-cs-fixer": "^3.16", + "guzzlehttp/guzzle": "^7.5", "mikey179/vfsstream": "^1.6", - "php-coveralls/php-coveralls": "^2.4", - "phpunit/phpunit": "^8.5.8 || ^9.4.2", + "php-coveralls/php-coveralls": "^2.5", + "phpunit/phpunit": "^10.0", "vimeo/psalm": "^5.0" }, + "suggest": { + "guzzlehttp/psr7": "^2.4", + "psr/http-message": "^2.0" + }, "type": "library", "autoload": { "psr-4": { @@ -3238,7 +3353,7 @@ ], "support": { "issues": "https://github.com/maennchen/ZipStream-PHP/issues", - "source": "https://github.com/maennchen/ZipStream-PHP/tree/v2.4.0" + "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.0" }, "funding": [ { @@ -3250,7 +3365,7 @@ "type": "open_collective" } ], - "time": "2022-12-08T12:29:14+00:00" + "time": "2023-06-21T14:59:35+00:00" }, { "name": "markbaker/complex", @@ -3361,16 +3476,16 @@ }, { "name": "mercadopago/dx-php", - "version": "2.5.1", + "version": "2.6.1", "source": { "type": "git", "url": "https://github.com/mercadopago/sdk-php.git", - "reference": "9fd5d8842988cdad026a5722696d0784625201ea" + "reference": "cfaf5893def0bcd95ecb863f1822bc225c398a04" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mercadopago/sdk-php/zipball/9fd5d8842988cdad026a5722696d0784625201ea", - "reference": "9fd5d8842988cdad026a5722696d0784625201ea", + "url": "https://api.github.com/repos/mercadopago/sdk-php/zipball/cfaf5893def0bcd95ecb863f1822bc225c398a04", + "reference": "cfaf5893def0bcd95ecb863f1822bc225c398a04", "shasum": "" }, "require": { @@ -3379,7 +3494,7 @@ "php": ">=7.1.0" }, "require-dev": { - "doctrine/orm": "~2.3", + "doctrine/orm": "^2.3", "phpmd/phpmd": "@stable", "phpunit/phpunit": "^7", "sebastian/phpcpd": "*", @@ -3406,29 +3521,29 @@ "description": "Mercado Pago PHP SDK", "homepage": "https://github.com/mercadopago/sdk-php", "support": { - "source": "https://github.com/mercadopago/sdk-php/tree/2.5.1" + "source": "https://github.com/mercadopago/sdk-php/tree/2.6.1" }, - "time": "2022-09-27T19:06:00+00:00" + "time": "2023-09-22T13:06:46+00:00" }, { "name": "mobiledetect/mobiledetectlib", - "version": "2.8.41", + "version": "2.8.43", "source": { "type": "git", "url": "https://github.com/serbanghita/Mobile-Detect.git", - "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1" + "reference": "fa96dd52859f03ee2dea002ddd75f8e4e7e9c9da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1", - "reference": "fc9cccd4d3706d5a7537b562b59cc18f9e4c0cb1", + "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/fa96dd52859f03ee2dea002ddd75f8e4e7e9c9da", + "reference": "fa96dd52859f03ee2dea002ddd75f8e4e7e9c9da", "shasum": "" }, "require": { "php": ">=5.0.0" }, "require-dev": { - "phpunit/phpunit": "~4.8.35||~5.7" + "phpunit/phpunit": "~4.8.36" }, "type": "library", "autoload": { @@ -3462,22 +3577,28 @@ ], "support": { "issues": "https://github.com/serbanghita/Mobile-Detect/issues", - "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.41" + "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.43" }, - "time": "2022-11-08T18:31:26+00:00" + "funding": [ + { + "url": "https://github.com/serbanghita", + "type": "github" + } + ], + "time": "2023-11-01T13:40:08+00:00" }, { "name": "monolog/monolog", - "version": "2.8.0", + "version": "2.9.2", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "720488632c590286b88b80e62aa3d3d551ad4a50" + "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50", - "reference": "720488632c590286b88b80e62aa3d3d551ad4a50", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f", + "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f", "shasum": "" }, "require": { @@ -3492,7 +3613,7 @@ "doctrine/couchdb": "~1.0@dev", "elasticsearch/elasticsearch": "^7 || ^8", "ext-json": "*", - "graylog2/gelf-php": "^1.4.2", + "graylog2/gelf-php": "^1.4.2 || ^2@dev", "guzzlehttp/guzzle": "^7.4", "guzzlehttp/psr7": "^2.2", "mongodb/mongodb": "^1.8", @@ -3554,7 +3675,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/2.8.0" + "source": "https://github.com/Seldaek/monolog/tree/2.9.2" }, "funding": [ { @@ -3566,94 +3687,35 @@ "type": "tidelift" } ], - "time": "2022-07-24T11:55:47+00:00" - }, - { - "name": "myclabs/php-enum", - "version": "1.8.4", - "source": { - "type": "git", - "url": "https://github.com/myclabs/php-enum.git", - "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483", - "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483", - "shasum": "" - }, - "require": { - "ext-json": "*", - "php": "^7.3 || ^8.0" - }, - "require-dev": { - "phpunit/phpunit": "^9.5", - "squizlabs/php_codesniffer": "1.*", - "vimeo/psalm": "^4.6.2" - }, - "type": "library", - "autoload": { - "psr-4": { - "MyCLabs\\Enum\\": "src/" - }, - "classmap": [ - "stubs/Stringable.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP Enum contributors", - "homepage": "https://github.com/myclabs/php-enum/graphs/contributors" - } - ], - "description": "PHP Enum implementation", - "homepage": "http://github.com/myclabs/php-enum", - "keywords": [ - "enum" - ], - "support": { - "issues": "https://github.com/myclabs/php-enum/issues", - "source": "https://github.com/myclabs/php-enum/tree/1.8.4" - }, - "funding": [ - { - "url": "https://github.com/mnapoli", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum", - "type": "tidelift" - } - ], - "time": "2022-08-04T09:53:51+00:00" + "time": "2023-10-27T15:25:26+00:00" }, { "name": "nesbot/carbon", - "version": "2.62.1", + "version": "2.71.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a" + "reference": "98276233188583f2ff845a0f992a235472d9466a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a", - "reference": "01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/98276233188583f2ff845a0f992a235472d9466a", + "reference": "98276233188583f2ff845a0f992a235472d9466a", "shasum": "" }, "require": { "ext-json": "*", "php": "^7.1.8 || ^8.0", + "psr/clock": "^1.0", "symfony/polyfill-mbstring": "^1.0", "symfony/polyfill-php80": "^1.16", "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" }, + "provide": { + "psr/clock-implementation": "1.0" + }, "require-dev": { - "doctrine/dbal": "^2.0 || ^3.0", + "doctrine/dbal": "^2.0 || ^3.1.4", "doctrine/orm": "^2.7", "friendsofphp/php-cs-fixer": "^3.0", "kylekatarnls/multi-tester": "^2.0", @@ -3731,29 +3793,29 @@ "type": "tidelift" } ], - "time": "2022-09-02T07:48:13+00:00" + "time": "2023-09-25T11:31:05+00:00" }, { "name": "nette/schema", - "version": "v1.2.2", + "version": "v1.2.5", "source": { "type": "git", "url": "https://github.com/nette/schema.git", - "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df" + "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df", - "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df", + "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a", + "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a", "shasum": "" }, "require": { "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", - "php": ">=7.1 <8.2" + "php": "7.1 - 8.3" }, "require-dev": { "nette/tester": "^2.3 || ^2.4", - "phpstan/phpstan-nette": "^0.12", + "phpstan/phpstan-nette": "^1.0", "tracy/tracy": "^2.7" }, "type": "library", @@ -3791,34 +3853,36 @@ ], "support": { "issues": "https://github.com/nette/schema/issues", - "source": "https://github.com/nette/schema/tree/v1.2.2" + "source": "https://github.com/nette/schema/tree/v1.2.5" }, - "time": "2021-10-15T11:40:02+00:00" + "time": "2023-10-05T20:37:59+00:00" }, { "name": "nette/utils", - "version": "v3.2.8", + "version": "v4.0.3", "source": { "type": "git", "url": "https://github.com/nette/utils.git", - "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368" + "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/02a54c4c872b99e4ec05c4aec54b5a06eb0f6368", - "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368", + "url": "https://api.github.com/repos/nette/utils/zipball/a9d127dd6a203ce6d255b2e2db49759f7506e015", + "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015", "shasum": "" }, "require": { - "php": ">=7.2 <8.3" + "php": ">=8.0 <8.4" }, "conflict": { - "nette/di": "<3.0.6" + "nette/finder": "<3", + "nette/schema": "<1.2.2" }, "require-dev": { - "nette/tester": "~2.0", + "jetbrains/phpstorm-attributes": "dev-master", + "nette/tester": "^2.5", "phpstan/phpstan": "^1.0", - "tracy/tracy": "^2.3" + "tracy/tracy": "^2.9" }, "suggest": { "ext-gd": "to use Image", @@ -3826,13 +3890,12 @@ "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", "ext-json": "to use Nette\\Utils\\Json", "ext-mbstring": "to use Strings::lower() etc...", - "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", - "ext-xml": "to use Strings::length() etc. when mbstring is not available" + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-master": "4.0-dev" } }, "autoload": { @@ -3876,22 +3939,22 @@ ], "support": { "issues": "https://github.com/nette/utils/issues", - "source": "https://github.com/nette/utils/tree/v3.2.8" + "source": "https://github.com/nette/utils/tree/v4.0.3" }, - "time": "2022-09-12T23:36:20+00:00" + "time": "2023-10-29T21:02:13+00:00" }, { "name": "nikic/php-parser", - "version": "v4.15.1", + "version": "v4.17.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900" + "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ef6c55a3f47f89d7a374e6f835197a0b5fcf900", - "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", + "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", "shasum": "" }, "require": { @@ -3932,22 +3995,22 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.1" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1" }, - "time": "2022-09-04T07:30:47+00:00" + "time": "2023-08-13T19:53:39+00:00" }, { "name": "nunomaduro/termwind", - "version": "v1.14.2", + "version": "v1.15.1", "source": { "type": "git", "url": "https://github.com/nunomaduro/termwind.git", - "reference": "9a8218511eb1a0965629ff820dda25985440aefc" + "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/9a8218511eb1a0965629ff820dda25985440aefc", - "reference": "9a8218511eb1a0965629ff820dda25985440aefc", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc", + "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc", "shasum": "" }, "require": { @@ -4004,7 +4067,7 @@ ], "support": { "issues": "https://github.com/nunomaduro/termwind/issues", - "source": "https://github.com/nunomaduro/termwind/tree/v1.14.2" + "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1" }, "funding": [ { @@ -4020,20 +4083,20 @@ "type": "github" } ], - "time": "2022-10-28T22:51:32+00:00" + "time": "2023-02-08T01:06:31+00:00" }, { "name": "phpoffice/phpspreadsheet", - "version": "1.28.0", + "version": "1.29.0", "source": { "type": "git", "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", - "reference": "6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a" + "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a", - "reference": "6e81cf39bbd93ebc3a4e8150444c41e8aa9b769a", + "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0", + "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0", "shasum": "" }, "require": { @@ -4051,7 +4114,7 @@ "ext-zip": "*", "ext-zlib": "*", "ezyang/htmlpurifier": "^4.15", - "maennchen/zipstream-php": "^2.1", + "maennchen/zipstream-php": "^2.1 || ^3.0", "markbaker/complex": "^3.0", "markbaker/matrix": "^3.0", "php": "^7.4 || ^8.0", @@ -4063,12 +4126,12 @@ "dealerdirect/phpcodesniffer-composer-installer": "dev-main", "dompdf/dompdf": "^1.0 || ^2.0", "friendsofphp/php-cs-fixer": "^3.2", - "mitoteam/jpgraph": "^10.2.4", + "mitoteam/jpgraph": "^10.3", "mpdf/mpdf": "^8.1.1", "phpcompatibility/php-compatibility": "^9.3", "phpstan/phpstan": "^1.1", "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^8.5 || ^9.0", + "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0", "squizlabs/php_codesniffer": "^3.7", "tecnickcom/tcpdf": "^6.5" }, @@ -4123,30 +4186,30 @@ ], "support": { "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", - "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.28.0" + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0" }, - "time": "2023-02-25T12:24:49+00:00" + "time": "2023-06-14T22:48:31+00:00" }, { "name": "phpoption/phpoption", - "version": "1.9.0", + "version": "1.9.1", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab" + "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dc5ff11e274a90cc1c743f66c9ad700ce50db9ab", - "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e", + "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8", - "phpunit/phpunit": "^8.5.28 || ^9.5.21" + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" }, "type": "library", "extra": { @@ -4188,7 +4251,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.9.0" + "source": "https://github.com/schmittjoh/php-option/tree/1.9.1" }, "funding": [ { @@ -4200,7 +4263,7 @@ "type": "tidelift" } ], - "time": "2022-07-30T15:51:26+00:00" + "time": "2023-02-25T19:38:58+00:00" }, { "name": "psr/cache", @@ -4251,6 +4314,54 @@ }, "time": "2021-02-03T23:26:27+00:00" }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "support": { + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" + }, + "time": "2022-11-25T14:36:26+00:00" + }, { "name": "psr/container", "version": "2.0.2", @@ -4356,21 +4467,21 @@ }, { "name": "psr/http-client", - "version": "1.0.1", + "version": "1.0.3", "source": { "type": "git", "url": "https://github.com/php-fig/http-client.git", - "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621" + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", - "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", "shasum": "" }, "require": { "php": "^7.0 || ^8.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { @@ -4390,7 +4501,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for HTTP clients", @@ -4402,27 +4513,27 @@ "psr-18" ], "support": { - "source": "https://github.com/php-fig/http-client/tree/master" + "source": "https://github.com/php-fig/http-client" }, - "time": "2020-06-29T06:28:15+00:00" + "time": "2023-09-23T14:17:50+00:00" }, { "name": "psr/http-factory", - "version": "1.0.1", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/http-factory.git", - "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be" + "reference": "e616d01114759c4c489f93b099585439f795fe35" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be", - "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", + "reference": "e616d01114759c4c489f93b099585439f795fe35", "shasum": "" }, "require": { "php": ">=7.0.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { @@ -4442,7 +4553,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interfaces for PSR-7 HTTP message factories", @@ -4457,31 +4568,31 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-factory/tree/master" + "source": "https://github.com/php-fig/http-factory/tree/1.0.2" }, - "time": "2019-04-30T12:38:16+00:00" + "time": "2023-04-10T20:10:41+00:00" }, { "name": "psr/http-message", - "version": "1.0.1", + "version": "2.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-message.git", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": "^7.2 || ^8.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { @@ -4496,7 +4607,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for HTTP messages", @@ -4510,9 +4621,9 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-message/tree/master" + "source": "https://github.com/php-fig/http-message/tree/2.0" }, - "time": "2016-08-06T14:39:51+00:00" + "time": "2023-04-04T09:54:51+00:00" }, { "name": "psr/log", @@ -4617,16 +4728,16 @@ }, { "name": "psy/psysh", - "version": "v0.11.8", + "version": "v0.11.22", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "f455acf3645262ae389b10e9beba0c358aa6994e" + "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/f455acf3645262ae389b10e9beba0c358aa6994e", - "reference": "f455acf3645262ae389b10e9beba0c358aa6994e", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b", + "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b", "shasum": "" }, "require": { @@ -4655,7 +4766,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "0.11.x-dev" + "dev-0.11": "0.11.x-dev" + }, + "bamarni-bin": { + "bin-links": false, + "forward-command": false } }, "autoload": { @@ -4687,9 +4802,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.11.8" + "source": "https://github.com/bobthecow/psysh/tree/v0.11.22" }, - "time": "2022-07-28T14:25:11+00:00" + "time": "2023-10-14T21:56:36+00:00" }, { "name": "ralouphie/getallheaders", @@ -4737,42 +4852,52 @@ }, { "name": "ramsey/collection", - "version": "1.2.2", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/ramsey/collection.git", - "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a" + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a", - "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a", + "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", "shasum": "" }, "require": { - "php": "^7.3 || ^8", - "symfony/polyfill-php81": "^1.23" + "php": "^8.1" }, "require-dev": { - "captainhook/captainhook": "^5.3", - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "ergebnis/composer-normalize": "^2.6", - "fakerphp/faker": "^1.5", - "hamcrest/hamcrest-php": "^2", - "jangregor/phpstan-prophecy": "^0.8", - "mockery/mockery": "^1.3", + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.28.3", + "fakerphp/faker": "^1.21", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^1.0", + "mockery/mockery": "^1.5", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpcsstandards/phpcsutils": "^1.0.0-rc1", "phpspec/prophecy-phpunit": "^2.0", - "phpstan/extension-installer": "^1", - "phpstan/phpstan": "^0.12.32", - "phpstan/phpstan-mockery": "^0.12.5", - "phpstan/phpstan-phpunit": "^0.12.11", - "phpunit/phpunit": "^8.5 || ^9", - "psy/psysh": "^0.10.4", - "slevomat/coding-standard": "^6.3", - "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^4.4" + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5", + "psalm/plugin-mockery": "^1.1", + "psalm/plugin-phpunit": "^0.18.4", + "ramsey/coding-standard": "^2.0.3", + "ramsey/conventional-commits": "^1.3", + "vimeo/psalm": "^5.4" }, "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, "autoload": { "psr-4": { "Ramsey\\Collection\\": "src/" @@ -4800,7 +4925,7 @@ ], "support": { "issues": "https://github.com/ramsey/collection/issues", - "source": "https://github.com/ramsey/collection/tree/1.2.2" + "source": "https://github.com/ramsey/collection/tree/2.0.0" }, "funding": [ { @@ -4812,28 +4937,27 @@ "type": "tidelift" } ], - "time": "2021-10-10T03:01:02+00:00" + "time": "2022-12-31T21:50:55+00:00" }, { "name": "ramsey/uuid", - "version": "4.5.1", + "version": "4.7.4", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "a161a26d917604dc6d3aa25100fddf2556e9f35d" + "reference": "60a4c63ab724854332900504274f6150ff26d286" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/a161a26d917604dc6d3aa25100fddf2556e9f35d", - "reference": "a161a26d917604dc6d3aa25100fddf2556e9f35d", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286", + "reference": "60a4c63ab724854332900504274f6150ff26d286", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10", - "ext-ctype": "*", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", "ext-json": "*", "php": "^8.0", - "ramsey/collection": "^1.0" + "ramsey/collection": "^1.2 || ^2.0" }, "replace": { "rhumsaa/uuid": "self.version" @@ -4862,7 +4986,6 @@ }, "suggest": { "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", - "ext-ctype": "Enables faster processing of character classification using ctype functions.", "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", @@ -4894,7 +5017,7 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.5.1" + "source": "https://github.com/ramsey/uuid/tree/4.7.4" }, "funding": [ { @@ -4906,20 +5029,20 @@ "type": "tidelift" } ], - "time": "2022-09-16T03:22:46+00:00" + "time": "2023-04-15T23:01:58+00:00" }, { "name": "rmccue/requests", - "version": "v2.0.5", + "version": "v2.0.8", "source": { "type": "git", "url": "https://github.com/WordPress/Requests.git", - "reference": "b717f1d2f4ef7992ec0c127747ed8b7e170c2f49" + "reference": "fae75bcb83d9d00d0e31ee86a472a036f9f91519" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/WordPress/Requests/zipball/b717f1d2f4ef7992ec0c127747ed8b7e170c2f49", - "reference": "b717f1d2f4ef7992ec0c127747ed8b7e170c2f49", + "url": "https://api.github.com/repos/WordPress/Requests/zipball/fae75bcb83d9d00d0e31ee86a472a036f9f91519", + "reference": "fae75bcb83d9d00d0e31ee86a472a036f9f91519", "shasum": "" }, "require": { @@ -4937,6 +5060,12 @@ "wp-coding-standards/wpcs": "^2.0", "yoast/phpunit-polyfills": "^1.0.0" }, + "suggest": { + "art4/requests-psr18-adapter": "For using Requests as a PSR-18 HTTP Client", + "ext-curl": "For improved performance", + "ext-openssl": "For secure transport support", + "ext-zlib": "For improved performance when decompressing encoded streams" + }, "type": "library", "autoload": { "files": [ @@ -4987,74 +5116,27 @@ "issues": "https://github.com/WordPress/Requests/issues", "source": "https://github.com/WordPress/Requests" }, - "time": "2022-10-11T08:15:28+00:00" - }, - { - "name": "stella-maris/clock", - "version": "0.1.6", - "source": { - "type": "git", - "url": "https://github.com/stella-maris-solutions/clock.git", - "reference": "a94228dac03c9a8411198ce8c8dacbbe99c930c3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/a94228dac03c9a8411198ce8c8dacbbe99c930c3", - "reference": "a94228dac03c9a8411198ce8c8dacbbe99c930c3", - "shasum": "" - }, - "require": { - "php": "^7.0|^8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "StellaMaris\\Clock\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Andreas Heigl", - "role": "Maintainer" - } - ], - "description": "A pre-release of the proposed PSR-20 Clock-Interface", - "homepage": "https://gitlab.com/stella-maris/clock", - "keywords": [ - "clock", - "datetime", - "point in time", - "psr20" - ], - "support": { - "issues": "https://github.com/stella-maris-solutions/clock/issues", - "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.6" - }, - "time": "2022-09-27T15:03:11+00:00" + "time": "2023-09-11T08:27:57+00:00" }, { "name": "symfony/console", - "version": "v6.1.7", + "version": "v6.3.4", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "a1282bd0c096e0bdb8800b104177e2ce404d8815" + "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/a1282bd0c096e0bdb8800b104177e2ce404d8815", - "reference": "a1282bd0c096e0bdb8800b104177e2ce404d8815", + "url": "https://api.github.com/repos/symfony/console/zipball/eca495f2ee845130855ddf1cf18460c38966c8b6", + "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6", "shasum": "" }, "require": { "php": ">=8.1", - "symfony/deprecation-contracts": "^2.1|^3", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", - "symfony/service-contracts": "^1.1|^2|^3", + "symfony/service-contracts": "^2.5|^3", "symfony/string": "^5.4|^6.0" }, "conflict": { @@ -5076,12 +5158,6 @@ "symfony/process": "^5.4|^6.0", "symfony/var-dumper": "^5.4|^6.0" }, - "suggest": { - "psr/log": "For using the console logger", - "symfony/event-dispatcher": "", - "symfony/lock": "", - "symfony/process": "" - }, "type": "library", "autoload": { "psr-4": { @@ -5109,12 +5185,12 @@ "homepage": "https://symfony.com", "keywords": [ "cli", - "command line", + "command-line", "console", "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.1.7" + "source": "https://github.com/symfony/console/tree/v6.3.4" }, "funding": [ { @@ -5130,20 +5206,20 @@ "type": "tidelift" } ], - "time": "2022-10-26T21:42:49+00:00" + "time": "2023-08-16T10:10:12+00:00" }, { "name": "symfony/css-selector", - "version": "v6.1.3", + "version": "v6.3.2", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "0dd5e36b80e1de97f8f74ed7023ac2b837a36443" + "reference": "883d961421ab1709877c10ac99451632a3d6fa57" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/0dd5e36b80e1de97f8f74ed7023ac2b837a36443", - "reference": "0dd5e36b80e1de97f8f74ed7023ac2b837a36443", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/883d961421ab1709877c10ac99451632a3d6fa57", + "reference": "883d961421ab1709877c10ac99451632a3d6fa57", "shasum": "" }, "require": { @@ -5179,7 +5255,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v6.1.3" + "source": "https://github.com/symfony/css-selector/tree/v6.3.2" }, "funding": [ { @@ -5195,20 +5271,20 @@ "type": "tidelift" } ], - "time": "2022-06-27T17:24:16+00:00" + "time": "2023-07-12T16:00:22+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v3.1.1", + "version": "v3.3.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918" + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918", - "reference": "07f1b9cc2ffee6aaafcf4b710fbc38ff736bd918", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", "shasum": "" }, "require": { @@ -5217,7 +5293,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.1-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -5246,7 +5322,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.1.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0" }, "funding": [ { @@ -5262,20 +5338,20 @@ "type": "tidelift" } ], - "time": "2022-02-25T11:15:52+00:00" + "time": "2023-05-23T14:45:45+00:00" }, { "name": "symfony/error-handler", - "version": "v6.1.7", + "version": "v6.3.5", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "699a26ce5ec656c198bf6e26398b0f0818c7e504" + "reference": "1f69476b64fb47105c06beef757766c376b548c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/699a26ce5ec656c198bf6e26398b0f0818c7e504", - "reference": "699a26ce5ec656c198bf6e26398b0f0818c7e504", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4", + "reference": "1f69476b64fb47105c06beef757766c376b548c4", "shasum": "" }, "require": { @@ -5283,8 +5359,11 @@ "psr/log": "^1|^2|^3", "symfony/var-dumper": "^5.4|^6.0" }, + "conflict": { + "symfony/deprecation-contracts": "<2.5" + }, "require-dev": { - "symfony/deprecation-contracts": "^2.1|^3", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/http-kernel": "^5.4|^6.0", "symfony/serializer": "^5.4|^6.0" }, @@ -5317,7 +5396,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v6.1.7" + "source": "https://github.com/symfony/error-handler/tree/v6.3.5" }, "funding": [ { @@ -5333,28 +5412,29 @@ "type": "tidelift" } ], - "time": "2022-10-28T16:23:08+00:00" + "time": "2023-09-12T06:57:20+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v6.1.0", + "version": "v6.3.2", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "a0449a7ad7daa0f7c0acd508259f80544ab5a347" + "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a0449a7ad7daa0f7c0acd508259f80544ab5a347", - "reference": "a0449a7ad7daa0f7c0acd508259f80544ab5a347", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e", + "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e", "shasum": "" }, "require": { "php": ">=8.1", - "symfony/event-dispatcher-contracts": "^2|^3" + "symfony/event-dispatcher-contracts": "^2.5|^3" }, "conflict": { - "symfony/dependency-injection": "<5.4" + "symfony/dependency-injection": "<5.4", + "symfony/service-contracts": "<2.5" }, "provide": { "psr/event-dispatcher-implementation": "1.0", @@ -5367,13 +5447,9 @@ "symfony/error-handler": "^5.4|^6.0", "symfony/expression-language": "^5.4|^6.0", "symfony/http-foundation": "^5.4|^6.0", - "symfony/service-contracts": "^1.1|^2|^3", + "symfony/service-contracts": "^2.5|^3", "symfony/stopwatch": "^5.4|^6.0" }, - "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" - }, "type": "library", "autoload": { "psr-4": { @@ -5400,7 +5476,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v6.1.0" + "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2" }, "funding": [ { @@ -5416,33 +5492,30 @@ "type": "tidelift" } ], - "time": "2022-05-05T16:51:07+00:00" + "time": "2023-07-06T06:56:43+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.1.1", + "version": "v3.3.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "02ff5eea2f453731cfbc6bc215e456b781480448" + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/02ff5eea2f453731cfbc6bc215e456b781480448", - "reference": "02ff5eea2f453731cfbc6bc215e456b781480448", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", "shasum": "" }, "require": { "php": ">=8.1", "psr/event-dispatcher": "^1" }, - "suggest": { - "symfony/event-dispatcher-implementation": "" - }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.1-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -5479,7 +5552,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.1.1" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0" }, "funding": [ { @@ -5495,20 +5568,20 @@ "type": "tidelift" } ], - "time": "2022-02-25T11:15:52+00:00" + "time": "2023-05-23T14:45:45+00:00" }, { "name": "symfony/finder", - "version": "v6.1.3", + "version": "v6.3.5", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "39696bff2c2970b3779a5cac7bf9f0b88fc2b709" + "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/39696bff2c2970b3779a5cac7bf9f0b88fc2b709", - "reference": "39696bff2c2970b3779a5cac7bf9f0b88fc2b709", + "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4", + "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4", "shasum": "" }, "require": { @@ -5543,7 +5616,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.1.3" + "source": "https://github.com/symfony/finder/tree/v6.3.5" }, "funding": [ { @@ -5559,39 +5632,41 @@ "type": "tidelift" } ], - "time": "2022-07-29T07:42:06+00:00" + "time": "2023-09-26T12:56:25+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.1.7", + "version": "v6.3.7", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "792a1856d2b95273f0e1c3435785f1d01a60ecc6" + "reference": "59d1837d5d992d16c2628cd0d6b76acf8d69b33e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/792a1856d2b95273f0e1c3435785f1d01a60ecc6", - "reference": "792a1856d2b95273f0e1c3435785f1d01a60ecc6", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/59d1837d5d992d16c2628cd0d6b76acf8d69b33e", + "reference": "59d1837d5d992d16c2628cd0d6b76acf8d69b33e", "shasum": "" }, "require": { "php": ">=8.1", - "symfony/deprecation-contracts": "^2.1|^3", - "symfony/polyfill-mbstring": "~1.1" + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "symfony/cache": "<6.3" }, "require-dev": { - "predis/predis": "~1.0", - "symfony/cache": "^5.4|^6.0", + "doctrine/dbal": "^2.13.1|^3|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.3", "symfony/dependency-injection": "^5.4|^6.0", "symfony/expression-language": "^5.4|^6.0", "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4", "symfony/mime": "^5.4|^6.0", "symfony/rate-limiter": "^5.2|^6.0" }, - "suggest": { - "symfony/mime": "To use the file extension guesser" - }, "type": "library", "autoload": { "psr-4": { @@ -5618,7 +5693,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.1.7" + "source": "https://github.com/symfony/http-foundation/tree/v6.3.7" }, "funding": [ { @@ -5634,28 +5709,29 @@ "type": "tidelift" } ], - "time": "2022-10-12T09:44:59+00:00" + "time": "2023-10-28T23:55:27+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.1.7", + "version": "v6.3.7", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "8fc1ffe753948c47a103a809cdd6a4a8458b3254" + "reference": "6d4098095f93279d9536a0e9124439560cc764d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/8fc1ffe753948c47a103a809cdd6a4a8458b3254", - "reference": "8fc1ffe753948c47a103a809cdd6a4a8458b3254", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6d4098095f93279d9536a0e9124439560cc764d0", + "reference": "6d4098095f93279d9536a0e9124439560cc764d0", "shasum": "" }, "require": { "php": ">=8.1", "psr/log": "^1|^2|^3", - "symfony/error-handler": "^6.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.3", "symfony/event-dispatcher": "^5.4|^6.0", - "symfony/http-foundation": "^5.4|^6.0", + "symfony/http-foundation": "^6.3.4", "symfony/polyfill-ctype": "^1.8" }, "conflict": { @@ -5663,15 +5739,18 @@ "symfony/cache": "<5.4", "symfony/config": "<6.1", "symfony/console": "<5.4", - "symfony/dependency-injection": "<6.1", + "symfony/dependency-injection": "<6.3.4", "symfony/doctrine-bridge": "<5.4", "symfony/form": "<5.4", "symfony/http-client": "<5.4", + "symfony/http-client-contracts": "<2.5", "symfony/mailer": "<5.4", "symfony/messenger": "<5.4", "symfony/translation": "<5.4", + "symfony/translation-contracts": "<2.5", "symfony/twig-bridge": "<5.4", "symfony/validator": "<5.4", + "symfony/var-dumper": "<6.3", "twig/twig": "<2.13" }, "provide": { @@ -5680,28 +5759,27 @@ "require-dev": { "psr/cache": "^1.0|^2.0|^3.0", "symfony/browser-kit": "^5.4|^6.0", + "symfony/clock": "^6.2", "symfony/config": "^6.1", "symfony/console": "^5.4|^6.0", "symfony/css-selector": "^5.4|^6.0", - "symfony/dependency-injection": "^6.1", + "symfony/dependency-injection": "^6.3.4", "symfony/dom-crawler": "^5.4|^6.0", "symfony/expression-language": "^5.4|^6.0", "symfony/finder": "^5.4|^6.0", - "symfony/http-client-contracts": "^1.1|^2|^3", + "symfony/http-client-contracts": "^2.5|^3", "symfony/process": "^5.4|^6.0", + "symfony/property-access": "^5.4.5|^6.0.5", "symfony/routing": "^5.4|^6.0", + "symfony/serializer": "^6.3", "symfony/stopwatch": "^5.4|^6.0", "symfony/translation": "^5.4|^6.0", - "symfony/translation-contracts": "^1.1|^2|^3", + "symfony/translation-contracts": "^2.5|^3", "symfony/uid": "^5.4|^6.0", + "symfony/validator": "^6.3", + "symfony/var-exporter": "^6.2", "twig/twig": "^2.13|^3.0.4" }, - "suggest": { - "symfony/browser-kit": "", - "symfony/config": "", - "symfony/console": "", - "symfony/dependency-injection": "" - }, "type": "library", "autoload": { "psr-4": { @@ -5728,7 +5806,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.1.7" + "source": "https://github.com/symfony/http-kernel/tree/v6.3.7" }, "funding": [ { @@ -5744,37 +5822,43 @@ "type": "tidelift" } ], - "time": "2022-10-28T18:06:36+00:00" + "time": "2023-10-29T14:31:45+00:00" }, { "name": "symfony/mailer", - "version": "v6.1.7", + "version": "v6.3.5", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "7e19813c0b43387c55665780c4caea505cc48391" + "reference": "d89611a7830d51b5e118bca38e390dea92f9ea06" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/7e19813c0b43387c55665780c4caea505cc48391", - "reference": "7e19813c0b43387c55665780c4caea505cc48391", + "url": "https://api.github.com/repos/symfony/mailer/zipball/d89611a7830d51b5e118bca38e390dea92f9ea06", + "reference": "d89611a7830d51b5e118bca38e390dea92f9ea06", "shasum": "" }, "require": { - "egulias/email-validator": "^2.1.10|^3", + "egulias/email-validator": "^2.1.10|^3|^4", "php": ">=8.1", "psr/event-dispatcher": "^1", "psr/log": "^1|^2|^3", "symfony/event-dispatcher": "^5.4|^6.0", - "symfony/mime": "^5.4|^6.0", - "symfony/service-contracts": "^1.1|^2|^3" + "symfony/mime": "^6.2", + "symfony/service-contracts": "^2.5|^3" }, "conflict": { - "symfony/http-kernel": "<5.4" + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/messenger": "<6.2", + "symfony/mime": "<6.2", + "symfony/twig-bridge": "<6.2.1" }, "require-dev": { - "symfony/http-client-contracts": "^1.1|^2|^3", - "symfony/messenger": "^5.4|^6.0" + "symfony/console": "^5.4|^6.0", + "symfony/http-client": "^5.4|^6.0", + "symfony/messenger": "^6.2", + "symfony/twig-bridge": "^6.2" }, "type": "library", "autoload": { @@ -5802,7 +5886,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v6.1.7" + "source": "https://github.com/symfony/mailer/tree/v6.3.5" }, "funding": [ { @@ -5818,24 +5902,25 @@ "type": "tidelift" } ], - "time": "2022-10-28T16:23:08+00:00" + "time": "2023-09-06T09:47:15+00:00" }, { "name": "symfony/mime", - "version": "v6.1.7", + "version": "v6.3.5", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "f440f066d57691088d998d6e437ce98771144618" + "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/f440f066d57691088d998d6e437ce98771144618", - "reference": "f440f066d57691088d998d6e437ce98771144618", + "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e", + "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e", "shasum": "" }, "require": { "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-intl-idn": "^1.10", "symfony/polyfill-mbstring": "^1.0" }, @@ -5843,15 +5928,17 @@ "egulias/email-validator": "~3.0.0", "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", - "symfony/mailer": "<5.4" + "symfony/mailer": "<5.4", + "symfony/serializer": "<6.2.13|>=6.3,<6.3.2" }, "require-dev": { - "egulias/email-validator": "^2.1.10|^3.1", + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", "symfony/dependency-injection": "^5.4|^6.0", "symfony/property-access": "^5.4|^6.0", "symfony/property-info": "^5.4|^6.0", - "symfony/serializer": "^5.2|^6.0" + "symfony/serializer": "~6.2.13|^6.3.2" }, "type": "library", "autoload": { @@ -5883,7 +5970,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v6.1.7" + "source": "https://github.com/symfony/mime/tree/v6.3.5" }, "funding": [ { @@ -5899,20 +5986,20 @@ "type": "tidelift" } ], - "time": "2022-10-19T08:10:53+00:00" + "time": "2023-09-29T06:59:36+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.26.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4" + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4", - "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", "shasum": "" }, "require": { @@ -5927,7 +6014,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5965,7 +6052,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0" }, "funding": [ { @@ -5981,20 +6068,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.26.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "433d05519ce6990bf3530fba6957499d327395c2" + "reference": "875e90aeea2777b6f135677f618529449334a612" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2", - "reference": "433d05519ce6990bf3530fba6957499d327395c2", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", + "reference": "875e90aeea2777b6f135677f618529449334a612", "shasum": "" }, "require": { @@ -6006,7 +6093,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6046,7 +6133,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0" }, "funding": [ { @@ -6062,20 +6149,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.26.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8" + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8", - "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d", + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d", "shasum": "" }, "require": { @@ -6089,7 +6176,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6133,7 +6220,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0" }, "funding": [ { @@ -6149,20 +6236,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2023-01-26T09:30:37+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.26.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "219aa369ceff116e673852dce47c3a41794c14bd" + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd", - "reference": "219aa369ceff116e673852dce47c3a41794c14bd", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", "shasum": "" }, "require": { @@ -6174,7 +6261,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6217,7 +6304,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0" }, "funding": [ { @@ -6233,20 +6320,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.26.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e" + "reference": "42292d99c55abe617799667f454222c54c60e229" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e", - "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", + "reference": "42292d99c55abe617799667f454222c54c60e229", "shasum": "" }, "require": { @@ -6261,7 +6348,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6300,7 +6387,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0" }, "funding": [ { @@ -6316,20 +6403,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2023-07-28T09:04:16+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.26.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2" + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2", - "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179", + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179", "shasum": "" }, "require": { @@ -6338,7 +6425,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6376,7 +6463,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0" }, "funding": [ { @@ -6392,20 +6479,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.26.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace" + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace", - "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", "shasum": "" }, "require": { @@ -6414,7 +6501,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6459,7 +6546,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0" }, "funding": [ { @@ -6475,29 +6562,30 @@ "type": "tidelift" } ], - "time": "2022-05-10T07:21:04+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { - "name": "symfony/polyfill-php81", - "version": "v1.26.0", + "name": "symfony/polyfill-php83", + "version": "v1.28.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1" + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1", - "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.1", + "symfony/polyfill-php80": "^1.14" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6509,7 +6597,7 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Php81\\": "" + "Symfony\\Polyfill\\Php83\\": "" }, "classmap": [ "Resources/stubs" @@ -6529,7 +6617,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -6538,7 +6626,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0" }, "funding": [ { @@ -6554,20 +6642,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2023-08-16T06:22:46+00:00" }, { "name": "symfony/polyfill-uuid", - "version": "v1.26.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-uuid.git", - "reference": "a41886c1c81dc075a09c71fe6db5b9d68c79de23" + "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/a41886c1c81dc075a09c71fe6db5b9d68c79de23", - "reference": "a41886c1c81dc075a09c71fe6db5b9d68c79de23", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/9c44518a5aff8da565c8a55dbe85d2769e6f630e", + "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e", "shasum": "" }, "require": { @@ -6582,7 +6670,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6620,7 +6708,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/polyfill-uuid/tree/v1.26.0" + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.28.0" }, "funding": [ { @@ -6636,20 +6724,20 @@ "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/process", - "version": "v6.1.3", + "version": "v6.3.4", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "a6506e99cfad7059b1ab5cab395854a0a0c21292" + "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/a6506e99cfad7059b1ab5cab395854a0a0c21292", - "reference": "a6506e99cfad7059b1ab5cab395854a0a0c21292", + "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54", + "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54", "shasum": "" }, "require": { @@ -6681,7 +6769,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.1.3" + "source": "https://github.com/symfony/process/tree/v6.3.4" }, "funding": [ { @@ -6697,46 +6785,41 @@ "type": "tidelift" } ], - "time": "2022-06-27T17:24:16+00:00" + "time": "2023-08-07T10:39:22+00:00" }, { "name": "symfony/routing", - "version": "v6.1.7", + "version": "v6.3.5", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "95effeb9d6e2cec861cee06bf5bbf82d09aea7f5" + "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/95effeb9d6e2cec861cee06bf5bbf82d09aea7f5", - "reference": "95effeb9d6e2cec861cee06bf5bbf82d09aea7f5", + "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31", + "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3" }, "conflict": { "doctrine/annotations": "<1.12", - "symfony/config": "<5.4", + "symfony/config": "<6.2", "symfony/dependency-injection": "<5.4", "symfony/yaml": "<5.4" }, "require-dev": { - "doctrine/annotations": "^1.12", + "doctrine/annotations": "^1.12|^2", "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0", + "symfony/config": "^6.2", "symfony/dependency-injection": "^5.4|^6.0", "symfony/expression-language": "^5.4|^6.0", "symfony/http-foundation": "^5.4|^6.0", "symfony/yaml": "^5.4|^6.0" }, - "suggest": { - "symfony/config": "For using the all-in-one router or any loader", - "symfony/expression-language": "For using expression matching", - "symfony/http-foundation": "For using a Symfony Request object", - "symfony/yaml": "For using the YAML loader" - }, "type": "library", "autoload": { "psr-4": { @@ -6769,7 +6852,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.1.7" + "source": "https://github.com/symfony/routing/tree/v6.3.5" }, "funding": [ { @@ -6785,20 +6868,20 @@ "type": "tidelift" } ], - "time": "2022-10-18T13:12:43+00:00" + "time": "2023-09-20T16:05:51+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.1.1", + "version": "v3.3.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "925e713fe8fcacf6bc05e936edd8dd5441a21239" + "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/925e713fe8fcacf6bc05e936edd8dd5441a21239", - "reference": "925e713fe8fcacf6bc05e936edd8dd5441a21239", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4", + "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4", "shasum": "" }, "require": { @@ -6808,13 +6891,10 @@ "conflict": { "ext-psr": "<1.1|>=2" }, - "suggest": { - "symfony/service-implementation": "" - }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.1-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -6854,7 +6934,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.1.1" + "source": "https://github.com/symfony/service-contracts/tree/v3.3.0" }, "funding": [ { @@ -6870,20 +6950,20 @@ "type": "tidelift" } ], - "time": "2022-05-30T19:18:58+00:00" + "time": "2023-05-23T14:45:45+00:00" }, { "name": "symfony/string", - "version": "v6.1.7", + "version": "v6.3.5", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "823f143370880efcbdfa2dbca946b3358c4707e5" + "reference": "13d76d0fb049051ed12a04bef4f9de8715bea339" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/823f143370880efcbdfa2dbca946b3358c4707e5", - "reference": "823f143370880efcbdfa2dbca946b3358c4707e5", + "url": "https://api.github.com/repos/symfony/string/zipball/13d76d0fb049051ed12a04bef4f9de8715bea339", + "reference": "13d76d0fb049051ed12a04bef4f9de8715bea339", "shasum": "" }, "require": { @@ -6894,12 +6974,13 @@ "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "symfony/translation-contracts": "<2.0" + "symfony/translation-contracts": "<2.5" }, "require-dev": { "symfony/error-handler": "^5.4|^6.0", "symfony/http-client": "^5.4|^6.0", - "symfony/translation-contracts": "^2.0|^3.0", + "symfony/intl": "^6.2", + "symfony/translation-contracts": "^2.5|^3.0", "symfony/var-exporter": "^5.4|^6.0" }, "type": "library", @@ -6939,7 +7020,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.1.7" + "source": "https://github.com/symfony/string/tree/v6.3.5" }, "funding": [ { @@ -6955,32 +7036,35 @@ "type": "tidelift" } ], - "time": "2022-10-10T09:34:31+00:00" + "time": "2023-09-18T10:38:32+00:00" }, { "name": "symfony/translation", - "version": "v6.1.6", + "version": "v6.3.7", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "e6cd330e5a072518f88d65148f3f165541807494" + "reference": "30212e7c87dcb79c83f6362b00bde0e0b1213499" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/e6cd330e5a072518f88d65148f3f165541807494", - "reference": "e6cd330e5a072518f88d65148f3f165541807494", + "url": "https://api.github.com/repos/symfony/translation/zipball/30212e7c87dcb79c83f6362b00bde0e0b1213499", + "reference": "30212e7c87dcb79c83f6362b00bde0e0b1213499", "shasum": "" }, "require": { "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", - "symfony/translation-contracts": "^2.3|^3.0" + "symfony/translation-contracts": "^2.5|^3.0" }, "conflict": { "symfony/config": "<5.4", "symfony/console": "<5.4", "symfony/dependency-injection": "<5.4", + "symfony/http-client-contracts": "<2.5", "symfony/http-kernel": "<5.4", + "symfony/service-contracts": "<2.5", "symfony/twig-bundle": "<5.4", "symfony/yaml": "<5.4" }, @@ -6988,24 +7072,20 @@ "symfony/translation-implementation": "2.3|3.0" }, "require-dev": { + "nikic/php-parser": "^4.13", "psr/log": "^1|^2|^3", "symfony/config": "^5.4|^6.0", "symfony/console": "^5.4|^6.0", "symfony/dependency-injection": "^5.4|^6.0", "symfony/finder": "^5.4|^6.0", - "symfony/http-client-contracts": "^1.1|^2.0|^3.0", + "symfony/http-client-contracts": "^2.5|^3.0", "symfony/http-kernel": "^5.4|^6.0", "symfony/intl": "^5.4|^6.0", "symfony/polyfill-intl-icu": "^1.21", "symfony/routing": "^5.4|^6.0", - "symfony/service-contracts": "^1.1.2|^2|^3", + "symfony/service-contracts": "^2.5|^3", "symfony/yaml": "^5.4|^6.0" }, - "suggest": { - "psr/log-implementation": "To use logging capability in translator", - "symfony/config": "", - "symfony/yaml": "" - }, "type": "library", "autoload": { "files": [ @@ -7035,7 +7115,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v6.1.6" + "source": "https://github.com/symfony/translation/tree/v6.3.7" }, "funding": [ { @@ -7051,32 +7131,29 @@ "type": "tidelift" } ], - "time": "2022-10-07T08:04:03+00:00" + "time": "2023-10-28T23:11:45+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.1.1", + "version": "v3.3.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "606be0f48e05116baef052f7f3abdb345c8e02cc" + "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/606be0f48e05116baef052f7f3abdb345c8e02cc", - "reference": "606be0f48e05116baef052f7f3abdb345c8e02cc", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86", + "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86", "shasum": "" }, "require": { "php": ">=8.1" }, - "suggest": { - "symfony/translation-implementation": "" - }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.1-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -7116,7 +7193,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.1.1" + "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0" }, "funding": [ { @@ -7132,20 +7209,20 @@ "type": "tidelift" } ], - "time": "2022-06-27T17:24:16+00:00" + "time": "2023-05-30T17:17:10+00:00" }, { "name": "symfony/uid", - "version": "v6.1.5", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/symfony/uid.git", - "reference": "e03519f7b1ce1d3c0b74f751892bb41d549a2d98" + "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/uid/zipball/e03519f7b1ce1d3c0b74f751892bb41d549a2d98", - "reference": "e03519f7b1ce1d3c0b74f751892bb41d549a2d98", + "url": "https://api.github.com/repos/symfony/uid/zipball/01b0f20b1351d997711c56f1638f7a8c3061e384", + "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384", "shasum": "" }, "require": { @@ -7190,7 +7267,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/uid/tree/v6.1.5" + "source": "https://github.com/symfony/uid/tree/v6.3.0" }, "funding": [ { @@ -7206,42 +7283,38 @@ "type": "tidelift" } ], - "time": "2022-09-09T09:34:27+00:00" + "time": "2023-04-08T07:25:02+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.1.6", + "version": "v6.3.6", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "0f0adde127f24548e23cbde83bcaeadc491c551f" + "reference": "999ede244507c32b8e43aebaa10e9fce20de7c97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0f0adde127f24548e23cbde83bcaeadc491c551f", - "reference": "0f0adde127f24548e23cbde83bcaeadc491c551f", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/999ede244507c32b8e43aebaa10e9fce20de7c97", + "reference": "999ede244507c32b8e43aebaa10e9fce20de7c97", "shasum": "" }, "require": { "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "phpunit/phpunit": "<5.4.3", "symfony/console": "<5.4" }, "require-dev": { "ext-iconv": "*", "symfony/console": "^5.4|^6.0", + "symfony/http-kernel": "^5.4|^6.0", "symfony/process": "^5.4|^6.0", "symfony/uid": "^5.4|^6.0", "twig/twig": "^2.13|^3.0.4" }, - "suggest": { - "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", - "ext-intl": "To show region name in time zone dump", - "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" - }, "bin": [ "Resources/bin/var-dump-server" ], @@ -7278,7 +7351,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.1.6" + "source": "https://github.com/symfony/var-dumper/tree/v6.3.6" }, "funding": [ { @@ -7294,20 +7367,20 @@ "type": "tidelift" } ], - "time": "2022-10-07T08:04:03+00:00" + "time": "2023-10-12T18:45:56+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", - "version": "2.2.5", + "version": "2.2.6", "source": { "type": "git", "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", - "reference": "4348a3a06651827a27d989ad1d13efec6bb49b19" + "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/4348a3a06651827a27d989ad1d13efec6bb49b19", - "reference": "4348a3a06651827a27d989ad1d13efec6bb49b19", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c", + "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c", "shasum": "" }, "require": { @@ -7345,9 +7418,9 @@ "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", "support": { "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", - "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.5" + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6" }, - "time": "2022-09-12T13:28:28+00:00" + "time": "2023-01-03T09:29:04+00:00" }, { "name": "twilio/sdk", @@ -7559,25 +7632,23 @@ }, { "name": "vonage/client-core", - "version": "3.1.5", + "version": "4.3.2", "source": { "type": "git", "url": "git@github.com:Vonage/vonage-php-sdk-core.git", - "reference": "783d812e16d41282f7434b05e51224be7bb2eea6" + "reference": "a7db15d14754ce21b0006452e16dd907577c1e4b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Vonage/vonage-php-sdk-core/zipball/783d812e16d41282f7434b05e51224be7bb2eea6", - "reference": "783d812e16d41282f7434b05e51224be7bb2eea6", + "url": "https://api.github.com/repos/Vonage/vonage-php-sdk-core/zipball/a7db15d14754ce21b0006452e16dd907577c1e4b", + "reference": "a7db15d14754ce21b0006452e16dd907577c1e4b", "shasum": "" }, "require": { - "composer/package-versions-deprecated": "^1.11", - "ext-json": "*", "ext-mbstring": "*", - "laminas/laminas-diactoros": "^2.4", + "laminas/laminas-diactoros": "^3.0", "lcobucci/jwt": "^3.4|^4.0", - "php": "~7.4 || ~8.0 || ~8.1", + "php": "~8.0 || ~8.1 || ~8.2", "psr/container": "^1.0 | ^2.0", "psr/http-client-implementation": "^1.0", "psr/log": "^1.1|^2.0|^3.0", @@ -7586,11 +7657,11 @@ "require-dev": { "guzzlehttp/guzzle": ">=6", "helmich/phpunit-json-assert": "^3.3", - "php": "~7.4 || ~8.0 || ~8.1", "php-http/mock-client": "^1.4", "phpspec/prophecy-phpunit": "^2.0", - "phpstan/phpstan": "^0.12", + "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^8.5|^9.4", + "rector/rector": "^0.14.8", "roave/security-advisories": "dev-latest", "softcreatr/jsonpath": "^0.7 || ^0.8", "squizlabs/php_codesniffer": "^3.5" @@ -7613,27 +7684,27 @@ } ], "description": "PHP Client for using Vonage's API.", - "homepage": "https://developer.nexmo.com", + "homepage": "https://developer.vonage.com", "support": { "docs": "https://developer.vonage.com", "email": "devrel@vonage.com", "issues": "https://github.com/Vonage/vonage-php-sdk-core/issues", "source": "https://github.com/Vonage/vonage-php-sdk-core" }, - "time": "2022-10-19T14:27:22+00:00" + "time": "2023-10-02T09:26:26+00:00" }, { "name": "vonage/nexmo-bridge", - "version": "0.1.1", + "version": "0.1.2", "source": { "type": "git", "url": "https://github.com/Nexmo/vonage-php-nexmo-bridge.git", - "reference": "36490dcc5915f12abeaa233c6098e0dce14bbb0a" + "reference": "e9f63cd468b7e0edd73d0c90d0406d6b961f9eb7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Nexmo/vonage-php-nexmo-bridge/zipball/36490dcc5915f12abeaa233c6098e0dce14bbb0a", - "reference": "36490dcc5915f12abeaa233c6098e0dce14bbb0a", + "url": "https://api.github.com/repos/Nexmo/vonage-php-nexmo-bridge/zipball/e9f63cd468b7e0edd73d0c90d0406d6b961f9eb7", + "reference": "e9f63cd468b7e0edd73d0c90d0406d6b961f9eb7", "shasum": "" }, "require": { @@ -7666,9 +7737,9 @@ "description": "Provides a bridge for using the Vonage PHP SDK with the older Nexmo namespace", "support": { "issues": "https://github.com/Nexmo/vonage-php-nexmo-bridge/issues", - "source": "https://github.com/Nexmo/vonage-php-nexmo-bridge/tree/0.1.1" + "source": "https://github.com/Nexmo/vonage-php-nexmo-bridge/tree/0.1.2" }, - "time": "2022-01-18T13:39:33+00:00" + "time": "2023-02-14T15:54:06+00:00" }, { "name": "webmozart/assert", @@ -7790,30 +7861,30 @@ "packages-dev": [ { "name": "doctrine/instantiator", - "version": "1.4.1", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc" + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc", - "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "php": "^8.1" }, "require-dev": { - "doctrine/coding-standard": "^9", + "doctrine/coding-standard": "^11", "ext-pdo": "*", "ext-phar": "*", - "phpbench/phpbench": "^0.16 || ^1", - "phpstan/phpstan": "^1.4", - "phpstan/phpstan-phpunit": "^1", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.22" + "phpbench/phpbench": "^1.2", + "phpstan/phpstan": "^1.9.4", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5.27", + "vimeo/psalm": "^5.4" }, "type": "library", "autoload": { @@ -7840,7 +7911,7 @@ ], "support": { "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/1.4.1" + "source": "https://github.com/doctrine/instantiator/tree/2.0.0" }, "funding": [ { @@ -7856,24 +7927,24 @@ "type": "tidelift" } ], - "time": "2022-03-03T08:28:38+00:00" + "time": "2022-12-30T00:23:10+00:00" }, { "name": "fakerphp/faker", - "version": "v1.20.0", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/FakerPHP/Faker.git", - "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b" + "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/37f751c67a5372d4e26353bd9384bc03744ec77b", - "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01", + "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0", + "php": "^7.4 || ^8.0", "psr/container": "^1.0 || ^2.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" }, @@ -7884,7 +7955,8 @@ "bamarni/composer-bin-plugin": "^1.4.1", "doctrine/persistence": "^1.3 || ^2.0", "ext-intl": "*", - "symfony/phpunit-bridge": "^4.4 || ^5.2" + "phpunit/phpunit": "^9.5.26", + "symfony/phpunit-bridge": "^5.4.16" }, "suggest": { "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", @@ -7896,7 +7968,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "v1.20-dev" + "dev-main": "v1.21-dev" } }, "autoload": { @@ -7921,22 +7993,22 @@ ], "support": { "issues": "https://github.com/FakerPHP/Faker/issues", - "source": "https://github.com/FakerPHP/Faker/tree/v1.20.0" + "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0" }, - "time": "2022-07-20T13:12:54+00:00" + "time": "2023-06-12T08:44:38+00:00" }, { "name": "filp/whoops", - "version": "2.14.5", + "version": "2.15.4", "source": { "type": "git", "url": "https://github.com/filp/whoops.git", - "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc" + "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc", - "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc", + "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546", + "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546", "shasum": "" }, "require": { @@ -7986,7 +8058,7 @@ ], "support": { "issues": "https://github.com/filp/whoops/issues", - "source": "https://github.com/filp/whoops/tree/2.14.5" + "source": "https://github.com/filp/whoops/tree/2.15.4" }, "funding": [ { @@ -7994,7 +8066,7 @@ "type": "github" } ], - "time": "2022-01-07T12:00:00+00:00" + "time": "2023-11-03T12:00:00+00:00" }, { "name": "hamcrest/hamcrest-php", @@ -8049,23 +8121,23 @@ }, { "name": "laravel/breeze", - "version": "v1.14.2", + "version": "v1.19.2", "source": { "type": "git", "url": "https://github.com/laravel/breeze.git", - "reference": "e1816890159f7c772066cce0317d2b54904b701f" + "reference": "725e0c4fb1f630afdd90b5fba2a7f6d8d547ac29" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/breeze/zipball/e1816890159f7c772066cce0317d2b54904b701f", - "reference": "e1816890159f7c772066cce0317d2b54904b701f", + "url": "https://api.github.com/repos/laravel/breeze/zipball/725e0c4fb1f630afdd90b5fba2a7f6d8d547ac29", + "reference": "725e0c4fb1f630afdd90b5fba2a7f6d8d547ac29", "shasum": "" }, "require": { - "illuminate/console": "^9.21", - "illuminate/filesystem": "^9.21", - "illuminate/support": "^9.21", - "illuminate/validation": "^9.21", + "illuminate/console": "^9.21|^10.0", + "illuminate/filesystem": "^9.21|^10.0", + "illuminate/support": "^9.21|^10.0", + "illuminate/validation": "^9.21|^10.0", "php": "^8.0.2" }, "conflict": { @@ -8106,20 +8178,20 @@ "issues": "https://github.com/laravel/breeze/issues", "source": "https://github.com/laravel/breeze" }, - "time": "2022-10-26T08:00:51+00:00" + "time": "2023-02-18T20:55:43+00:00" }, { "name": "laravel/pint", - "version": "v1.2.0", + "version": "v1.13.6", "source": { "type": "git", "url": "https://github.com/laravel/pint.git", - "reference": "1d276e4c803397a26cc337df908f55c2a4e90d86" + "reference": "3e3d2ab01c7d8b484c18e6100ecf53639c744fa7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/pint/zipball/1d276e4c803397a26cc337df908f55c2a4e90d86", - "reference": "1d276e4c803397a26cc337df908f55c2a4e90d86", + "url": "https://api.github.com/repos/laravel/pint/zipball/3e3d2ab01c7d8b484c18e6100ecf53639c744fa7", + "reference": "3e3d2ab01c7d8b484c18e6100ecf53639c744fa7", "shasum": "" }, "require": { @@ -8127,16 +8199,16 @@ "ext-mbstring": "*", "ext-tokenizer": "*", "ext-xml": "*", - "php": "^8.0" + "php": "^8.1.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.11.0", - "illuminate/view": "^9.27", - "laravel-zero/framework": "^9.1.3", - "mockery/mockery": "^1.5.0", - "nunomaduro/larastan": "^2.2", - "nunomaduro/termwind": "^1.14.0", - "pestphp/pest": "^1.22.1" + "friendsofphp/php-cs-fixer": "^3.38.0", + "illuminate/view": "^10.30.1", + "laravel-zero/framework": "^10.3.0", + "mockery/mockery": "^1.6.6", + "nunomaduro/larastan": "^2.6.4", + "nunomaduro/termwind": "^1.15.1", + "pestphp/pest": "^2.24.2" }, "bin": [ "builds/pint" @@ -8172,27 +8244,32 @@ "issues": "https://github.com/laravel/pint/issues", "source": "https://github.com/laravel/pint" }, - "time": "2022-09-13T15:07:15+00:00" + "time": "2023-11-07T17:59:57+00:00" }, { "name": "laravel/sail", - "version": "v1.16.2", + "version": "v1.26.0", "source": { "type": "git", "url": "https://github.com/laravel/sail.git", - "reference": "7d1ed5f856ec8b9708712e3fc0708fcabe114659" + "reference": "c60fe037004e272efd0d81f416ed2bfc623d70b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sail/zipball/7d1ed5f856ec8b9708712e3fc0708fcabe114659", - "reference": "7d1ed5f856ec8b9708712e3fc0708fcabe114659", + "url": "https://api.github.com/repos/laravel/sail/zipball/c60fe037004e272efd0d81f416ed2bfc623d70b4", + "reference": "c60fe037004e272efd0d81f416ed2bfc623d70b4", "shasum": "" }, "require": { - "illuminate/console": "^8.0|^9.0", - "illuminate/contracts": "^8.0|^9.0", - "illuminate/support": "^8.0|^9.0", - "php": "^7.3|^8.0" + "illuminate/console": "^9.0|^10.0|^11.0", + "illuminate/contracts": "^9.0|^10.0|^11.0", + "illuminate/support": "^9.0|^10.0|^11.0", + "php": "^8.0", + "symfony/yaml": "^6.0|^7.0" + }, + "require-dev": { + "orchestra/testbench": "^7.0|^8.0|^9.0", + "phpstan/phpstan": "^1.10" }, "bin": [ "bin/sail" @@ -8232,42 +8309,44 @@ "issues": "https://github.com/laravel/sail/issues", "source": "https://github.com/laravel/sail" }, - "time": "2022-09-28T13:13:22+00:00" + "time": "2023-10-18T13:57:15+00:00" }, { "name": "mockery/mockery", - "version": "1.5.1", + "version": "1.6.6", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e" + "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e", - "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e", + "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e", + "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e", "shasum": "" }, "require": { "hamcrest/hamcrest-php": "^2.0.1", "lib-pcre": ">=7.0", - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "conflict": { "phpunit/phpunit": "<8.0" }, "require-dev": { - "phpunit/phpunit": "^8.5 || ^9.3" + "phpunit/phpunit": "^8.5 || ^9.6.10", + "psalm/plugin-phpunit": "^0.18.4", + "symplify/easy-coding-standard": "^11.5.0", + "vimeo/psalm": "^4.30" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4.x-dev" - } - }, "autoload": { - "psr-0": { - "Mockery": "library/" + "files": [ + "library/helpers.php", + "library/Mockery.php" + ], + "psr-4": { + "Mockery\\": "library/Mockery" } }, "notification-url": "https://packagist.org/downloads/", @@ -8278,12 +8357,20 @@ { "name": "Pádraic Brady", "email": "padraic.brady@gmail.com", - "homepage": "http://blog.astrumfutura.com" + "homepage": "https://github.com/padraic", + "role": "Author" }, { "name": "Dave Marshall", "email": "dave.marshall@atstsolutions.co.uk", - "homepage": "http://davedevelopment.co.uk" + "homepage": "https://davedevelopment.co.uk", + "role": "Developer" + }, + { + "name": "Nathanael Esayeas", + "email": "nathanael.esayeas@protonmail.com", + "homepage": "https://github.com/ghostwriter", + "role": "Lead Developer" } ], "description": "Mockery is a simple yet flexible PHP mock object framework", @@ -8301,23 +8388,26 @@ "testing" ], "support": { + "docs": "https://docs.mockery.io/", "issues": "https://github.com/mockery/mockery/issues", - "source": "https://github.com/mockery/mockery/tree/1.5.1" + "rss": "https://github.com/mockery/mockery/releases.atom", + "security": "https://github.com/mockery/mockery/security/advisories", + "source": "https://github.com/mockery/mockery" }, - "time": "2022-09-07T15:32:08+00:00" + "time": "2023-08-09T00:03:52+00:00" }, { "name": "myclabs/deep-copy", - "version": "1.11.0", + "version": "1.11.1", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614" + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614", - "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", "shasum": "" }, "require": { @@ -8355,7 +8445,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0" + "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" }, "funding": [ { @@ -8363,20 +8453,20 @@ "type": "tidelift" } ], - "time": "2022-03-03T13:19:32+00:00" + "time": "2023-03-08T13:26:56+00:00" }, { "name": "nunomaduro/collision", - "version": "v6.3.1", + "version": "v6.4.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "0f6349c3ed5dd28467087b08fb59384bb458a22b" + "reference": "f05978827b9343cba381ca05b8c7deee346b6015" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/0f6349c3ed5dd28467087b08fb59384bb458a22b", - "reference": "0f6349c3ed5dd28467087b08fb59384bb458a22b", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015", + "reference": "f05978827b9343cba381ca05b8c7deee346b6015", "shasum": "" }, "require": { @@ -8451,7 +8541,7 @@ "type": "patreon" } ], - "time": "2022-09-29T12:29:49+00:00" + "time": "2023-01-03T12:54:54+00:00" }, { "name": "phar-io/manifest", @@ -8566,23 +8656,23 @@ }, { "name": "phpunit/php-code-coverage", - "version": "9.2.18", + "version": "9.2.29", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "12fddc491826940cf9b7e88ad9664cf51f0f6d0a" + "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/12fddc491826940cf9b7e88ad9664cf51f0f6d0a", - "reference": "12fddc491826940cf9b7e88ad9664cf51f0f6d0a", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/6a3a87ac2bbe33b25042753df8195ba4aa534c76", + "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "ext-xmlwriter": "*", - "nikic/php-parser": "^4.14", + "nikic/php-parser": "^4.15", "php": ">=7.3", "phpunit/php-file-iterator": "^3.0.3", "phpunit/php-text-template": "^2.0.2", @@ -8597,8 +8687,8 @@ "phpunit/phpunit": "^9.3" }, "suggest": { - "ext-pcov": "*", - "ext-xdebug": "*" + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, "type": "library", "extra": { @@ -8631,7 +8721,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.18" + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.29" }, "funding": [ { @@ -8639,7 +8730,7 @@ "type": "github" } ], - "time": "2022-10-27T13:35:33+00:00" + "time": "2023-09-19T04:57:46+00:00" }, { "name": "phpunit/php-file-iterator", @@ -8884,20 +8975,20 @@ }, { "name": "phpunit/phpunit", - "version": "9.5.26", + "version": "9.6.13", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "851867efcbb6a1b992ec515c71cdcf20d895e9d2" + "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/851867efcbb6a1b992ec515c71cdcf20d895e9d2", - "reference": "851867efcbb6a1b992ec515c71cdcf20d895e9d2", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f3d767f7f9e191eab4189abe41ab37797e30b1be", + "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.3.1", + "doctrine/instantiator": "^1.3.1 || ^2", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", @@ -8908,7 +8999,7 @@ "phar-io/manifest": "^2.0.3", "phar-io/version": "^3.0.2", "php": ">=7.3", - "phpunit/php-code-coverage": "^9.2.13", + "phpunit/php-code-coverage": "^9.2.28", "phpunit/php-file-iterator": "^3.0.5", "phpunit/php-invoker": "^3.1.1", "phpunit/php-text-template": "^2.0.3", @@ -8926,8 +9017,8 @@ "sebastian/version": "^3.0.2" }, "suggest": { - "ext-soap": "*", - "ext-xdebug": "*" + "ext-soap": "To be able to generate mocks based on WSDL files", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, "bin": [ "phpunit" @@ -8935,7 +9026,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.5-dev" + "dev-master": "9.6-dev" } }, "autoload": { @@ -8966,7 +9057,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.26" + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.13" }, "funding": [ { @@ -8982,7 +9074,7 @@ "type": "tidelift" } ], - "time": "2022-10-28T06:00:21+00:00" + "time": "2023-09-19T05:39:22+00:00" }, { "name": "sebastian/cli-parser", @@ -9284,16 +9376,16 @@ }, { "name": "sebastian/diff", - "version": "4.0.4", + "version": "4.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d" + "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d", - "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", + "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", "shasum": "" }, "require": { @@ -9338,7 +9430,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4" + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" }, "funding": [ { @@ -9346,20 +9438,20 @@ "type": "github" } ], - "time": "2020-10-26T13:10:38+00:00" + "time": "2023-05-07T05:35:17+00:00" }, { "name": "sebastian/environment", - "version": "5.1.4", + "version": "5.1.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7" + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7", - "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", "shasum": "" }, "require": { @@ -9401,7 +9493,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4" + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" }, "funding": [ { @@ -9409,7 +9501,7 @@ "type": "github" } ], - "time": "2022-04-03T09:37:03+00:00" + "time": "2023-02-03T06:03:51+00:00" }, { "name": "sebastian/exporter", @@ -9490,16 +9582,16 @@ }, { "name": "sebastian/global-state", - "version": "5.0.5", + "version": "5.0.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" + "reference": "bde739e7565280bda77be70044ac1047bc007e34" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", - "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34", + "reference": "bde739e7565280bda77be70044ac1047bc007e34", "shasum": "" }, "require": { @@ -9542,7 +9634,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6" }, "funding": [ { @@ -9550,7 +9642,7 @@ "type": "github" } ], - "time": "2022-02-14T08:28:10+00:00" + "time": "2023-08-02T09:26:13+00:00" }, { "name": "sebastian/lines-of-code", @@ -9723,16 +9815,16 @@ }, { "name": "sebastian/recursion-context", - "version": "4.0.4", + "version": "4.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172" + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", "shasum": "" }, "require": { @@ -9771,10 +9863,10 @@ } ], "description": "Provides functionality to recursively process PHP variables", - "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "homepage": "https://github.com/sebastianbergmann/recursion-context", "support": { "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4" + "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" }, "funding": [ { @@ -9782,7 +9874,7 @@ "type": "github" } ], - "time": "2020-10-26T13:17:30+00:00" + "time": "2023-02-03T06:07:39+00:00" }, { "name": "sebastian/resource-operations", @@ -9841,16 +9933,16 @@ }, { "name": "sebastian/type", - "version": "3.2.0", + "version": "3.2.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e" + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e", - "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", "shasum": "" }, "require": { @@ -9885,7 +9977,7 @@ "homepage": "https://github.com/sebastianbergmann/type", "support": { "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/3.2.0" + "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" }, "funding": [ { @@ -9893,7 +9985,7 @@ "type": "github" } ], - "time": "2022-09-12T14:47:03+00:00" + "time": "2023-02-03T06:13:03+00:00" }, { "name": "sebastian/version", @@ -9950,16 +10042,16 @@ }, { "name": "spatie/backtrace", - "version": "1.2.1", + "version": "1.5.3", "source": { "type": "git", "url": "https://github.com/spatie/backtrace.git", - "reference": "4ee7d41aa5268107906ea8a4d9ceccde136dbd5b" + "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/backtrace/zipball/4ee7d41aa5268107906ea8a4d9ceccde136dbd5b", - "reference": "4ee7d41aa5268107906ea8a4d9ceccde136dbd5b", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab", + "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab", "shasum": "" }, "require": { @@ -9968,6 +10060,7 @@ "require-dev": { "ext-json": "*", "phpunit/phpunit": "^9.3", + "spatie/phpunit-snapshot-assertions": "^4.2", "symfony/var-dumper": "^5.1" }, "type": "library", @@ -9995,8 +10088,7 @@ "spatie" ], "support": { - "issues": "https://github.com/spatie/backtrace/issues", - "source": "https://github.com/spatie/backtrace/tree/1.2.1" + "source": "https://github.com/spatie/backtrace/tree/1.5.3" }, "funding": [ { @@ -10008,43 +10100,44 @@ "type": "other" } ], - "time": "2021-11-09T10:57:15+00:00" + "time": "2023-06-28T12:59:17+00:00" }, { "name": "spatie/flare-client-php", - "version": "1.3.0", + "version": "1.4.3", "source": { "type": "git", "url": "https://github.com/spatie/flare-client-php.git", - "reference": "b1b974348750925b717fa8c8b97a0db0d1aa40ca" + "reference": "5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/b1b974348750925b717fa8c8b97a0db0d1aa40ca", - "reference": "b1b974348750925b717fa8c8b97a0db0d1aa40ca", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec", + "reference": "5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec", "shasum": "" }, "require": { - "illuminate/pipeline": "^8.0|^9.0", + "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0", + "nesbot/carbon": "^2.62.1", "php": "^8.0", - "spatie/backtrace": "^1.2", - "symfony/http-foundation": "^5.0|^6.0", - "symfony/mime": "^5.2|^6.0", - "symfony/process": "^5.2|^6.0", - "symfony/var-dumper": "^5.2|^6.0" + "spatie/backtrace": "^1.5.2", + "symfony/http-foundation": "^5.2|^6.0|^7.0", + "symfony/mime": "^5.2|^6.0|^7.0", + "symfony/process": "^5.2|^6.0|^7.0", + "symfony/var-dumper": "^5.2|^6.0|^7.0" }, "require-dev": { - "dms/phpunit-arraysubset-asserts": "^0.3.0", - "pestphp/pest": "^1.20", + "dms/phpunit-arraysubset-asserts": "^0.5.0", + "pestphp/pest": "^1.20|^2.0", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-phpunit": "^1.0", - "spatie/phpunit-snapshot-assertions": "^4.0" + "spatie/phpunit-snapshot-assertions": "^4.0|^5.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.1.x-dev" + "dev-main": "1.3.x-dev" } }, "autoload": { @@ -10069,7 +10162,7 @@ ], "support": { "issues": "https://github.com/spatie/flare-client-php/issues", - "source": "https://github.com/spatie/flare-client-php/tree/1.3.0" + "source": "https://github.com/spatie/flare-client-php/tree/1.4.3" }, "funding": [ { @@ -10077,43 +10170,51 @@ "type": "github" } ], - "time": "2022-08-08T10:10:20+00:00" + "time": "2023-10-17T15:54:07+00:00" }, { "name": "spatie/ignition", - "version": "1.4.1", + "version": "1.11.3", "source": { "type": "git", "url": "https://github.com/spatie/ignition.git", - "reference": "dd3d456779108d7078baf4e43f8c2b937d9794a1" + "reference": "3d886de644ff7a5b42e4d27c1e1f67c8b5f00044" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/ignition/zipball/dd3d456779108d7078baf4e43f8c2b937d9794a1", - "reference": "dd3d456779108d7078baf4e43f8c2b937d9794a1", + "url": "https://api.github.com/repos/spatie/ignition/zipball/3d886de644ff7a5b42e4d27c1e1f67c8b5f00044", + "reference": "3d886de644ff7a5b42e4d27c1e1f67c8b5f00044", "shasum": "" }, "require": { "ext-json": "*", "ext-mbstring": "*", - "monolog/monolog": "^2.0", "php": "^8.0", - "spatie/flare-client-php": "^1.1", - "symfony/console": "^5.4|^6.0", - "symfony/var-dumper": "^5.4|^6.0" + "spatie/backtrace": "^1.5.3", + "spatie/flare-client-php": "^1.4.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" }, "require-dev": { + "illuminate/cache": "^9.52|^10.0|^11.0", "mockery/mockery": "^1.4", - "pestphp/pest": "^1.20", + "pestphp/pest": "^1.20|^2.0", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-phpunit": "^1.0", - "symfony/process": "^5.4|^6.0" + "psr/simple-cache-implementation": "*", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.2.x-dev" + "dev-main": "1.5.x-dev" } }, "autoload": { @@ -10152,20 +10253,20 @@ "type": "github" } ], - "time": "2022-08-26T11:51:15+00:00" + "time": "2023-10-18T14:09:40+00:00" }, { "name": "spatie/laravel-ignition", - "version": "1.6.1", + "version": "1.6.4", "source": { "type": "git", "url": "https://github.com/spatie/laravel-ignition.git", - "reference": "2b79cf6ed40946b64ac6713d7d2da8a9d87f612b" + "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/2b79cf6ed40946b64ac6713d7d2da8a9d87f612b", - "reference": "2b79cf6ed40946b64ac6713d7d2da8a9d87f612b", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", + "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", "shasum": "" }, "require": { @@ -10242,7 +10343,79 @@ "type": "github" } ], - "time": "2022-10-26T17:39:54+00:00" + "time": "2023-01-03T19:28:04+00:00" + }, + { + "name": "symfony/yaml", + "version": "v6.3.7", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "9758b6c69d179936435d0ffb577c3708d57e38a8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/9758b6c69d179936435d0ffb577c3708d57e38a8", + "reference": "9758b6c69d179936435d0ffb577c3708d57e38a8", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<5.4" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0" + }, + "bin": [ + "Resources/bin/yaml-lint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Loads and dumps YAML files", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v6.3.7" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-10-28T23:31:00+00:00" }, { "name": "theseer/tokenizer", @@ -10304,5 +10477,5 @@ "php": "^8.0.2" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.2.0" } diff --git a/config/app.php b/config/app.php old mode 100644 new mode 100755 diff --git a/config/auth.php b/config/auth.php old mode 100644 new mode 100755 diff --git a/config/broadcasting.php b/config/broadcasting.php old mode 100644 new mode 100755 diff --git a/config/cache.php b/config/cache.php old mode 100644 new mode 100755 diff --git a/config/cors.php b/config/cors.php old mode 100644 new mode 100755 diff --git a/config/database.php b/config/database.php old mode 100644 new mode 100755 diff --git a/config/excel.php b/config/excel.php old mode 100644 new mode 100755 diff --git a/config/filesystems.php b/config/filesystems.php old mode 100644 new mode 100755 diff --git a/config/hashing.php b/config/hashing.php old mode 100644 new mode 100755 diff --git a/config/livewire.php b/config/livewire.php old mode 100644 new mode 100755 diff --git a/config/logging.php b/config/logging.php old mode 100644 new mode 100755 diff --git a/config/mail.php b/config/mail.php old mode 100644 new mode 100755 diff --git a/config/queue.php b/config/queue.php old mode 100644 new mode 100755 diff --git a/config/sanctum.php b/config/sanctum.php old mode 100644 new mode 100755 diff --git a/config/services.php b/config/services.php old mode 100644 new mode 100755 diff --git a/config/session.php b/config/session.php old mode 100644 new mode 100755 diff --git a/config/short-url.php b/config/short-url.php old mode 100644 new mode 100755 diff --git a/config/view.php b/config/view.php old mode 100644 new mode 100755 diff --git a/database/.gitignore b/database/.gitignore old mode 100644 new mode 100755 diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php old mode 100644 new mode 100755 diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2014_10_12_100000_create_password_resets_table.php b/database/migrations/2014_10_12_100000_create_password_resets_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2019_08_19_000000_create_failed_jobs_table.php b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2019_12_22_015115_create_short_urls_table.php b/database/migrations/2019_12_22_015115_create_short_urls_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2019_12_22_015214_create_short_url_visits_table.php b/database/migrations/2019_12_22_015214_create_short_url_visits_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2020_02_11_224848_update_short_url_table_for_version_two_zero_zero.php b/database/migrations/2020_02_11_224848_update_short_url_table_for_version_two_zero_zero.php old mode 100644 new mode 100755 diff --git a/database/migrations/2020_02_12_008432_update_short_url_visits_table_for_version_two_zero_zero.php b/database/migrations/2020_02_12_008432_update_short_url_visits_table_for_version_two_zero_zero.php old mode 100644 new mode 100755 diff --git a/database/migrations/2020_04_10_224546_update_short_url_table_for_version_three_zero_zero.php b/database/migrations/2020_04_10_224546_update_short_url_table_for_version_three_zero_zero.php old mode 100644 new mode 100755 diff --git a/database/migrations/2020_04_20_009283_update_short_url_table_add_option_to_forward_query_params.php b/database/migrations/2020_04_20_009283_update_short_url_table_add_option_to_forward_query_params.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_22_202614_create_roles_table.php b/database/migrations/2022_10_22_202614_create_roles_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_22_202759_create_redes_table.php b/database/migrations/2022_10_22_202759_create_redes_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_22_202830_create_categorias_table.php b/database/migrations/2022_10_22_202830_create_categorias_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_22_204343_create_promociones_table.php b/database/migrations/2022_10_22_204343_create_promociones_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_22_204541_add_rol_to_users.php b/database/migrations/2022_10_22_204541_add_rol_to_users.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_22_212527_create_saldos_table.php b/database/migrations/2022_10_22_212527_create_saldos_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_22_212549_create_servicios_table.php b/database/migrations/2022_10_22_212549_create_servicios_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_22_212604_create_permisos_table.php b/database/migrations/2022_10_22_212604_create_permisos_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_22_212629_create_configuraciones_table.php b/database/migrations/2022_10_22_212629_create_configuraciones_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_22_214226_add_configuracion_id_to_redes.php b/database/migrations/2022_10_22_214226_add_configuracion_id_to_redes.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_23_034141_create_tarifas_table.php b/database/migrations/2022_10_23_034141_create_tarifas_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_23_035159_create_preferencials_table.php b/database/migrations/2022_10_23_035159_create_preferencials_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_23_035452_create_cuentas_table.php b/database/migrations/2022_10_23_035452_create_cuentas_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_23_035743_create_historiales_table.php b/database/migrations/2022_10_23_035743_create_historiales_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_24_165614_create_notifications_table.php b/database/migrations/2022_10_24_165614_create_notifications_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_25_211426_add_observaciones_to_tarifas.php b/database/migrations/2022_10_25_211426_add_observaciones_to_tarifas.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_25_211546_add_observaciones_to_historiales.php b/database/migrations/2022_10_25_211546_add_observaciones_to_historiales.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_25_214944_add_inicio_to_cuentas.php b/database/migrations/2022_10_25_214944_add_inicio_to_cuentas.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_26_142552_add_servicio_to_cuentas.php b/database/migrations/2022_10_26_142552_add_servicio_to_cuentas.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_26_143334_add_pantallas_to_servicios.php b/database/migrations/2022_10_26_143334_add_pantallas_to_servicios.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_27_023500_add_celular_to_users.php b/database/migrations/2022_10_27_023500_add_celular_to_users.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_28_004206_create_recargas_table.php b/database/migrations/2022_10_28_004206_create_recargas_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_28_035453_create_historial_cuentas_table.php b/database/migrations/2022_10_28_035453_create_historial_cuentas_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_28_061856_create_promocion_tarifas_table.php b/database/migrations/2022_10_28_061856_create_promocion_tarifas_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_28_142855_add_campos_promocion_to_promociones.php b/database/migrations/2022_10_28_142855_add_campos_promocion_to_promociones.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_28_201219_add_observaciones_to_cuentas.php b/database/migrations/2022_10_28_201219_add_observaciones_to_cuentas.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_29_192554_add_rol_to_tarifa.php b/database/migrations/2022_10_29_192554_add_rol_to_tarifa.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_31_032204_add_cantidad_to_historiales.php b/database/migrations/2022_10_31_032204_add_cantidad_to_historiales.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_10_31_050756_add_dias_to_promociones.php b/database/migrations/2022_10_31_050756_add_dias_to_promociones.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_04_123505_create_sliders_table.php b/database/migrations/2022_11_04_123505_create_sliders_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_05_140811_add_img_inicio_to_servicios.php b/database/migrations/2022_11_05_140811_add_img_inicio_to_servicios.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_05_150750_add_img_top_to_configuraciones.php b/database/migrations/2022_11_05_150750_add_img_top_to_configuraciones.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_05_151757_add_premio_to_configuraciones.php b/database/migrations/2022_11_05_151757_add_premio_to_configuraciones.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_07_090942_add_msj_compra_to_configuraciones.php b/database/migrations/2022_11_07_090942_add_msj_compra_to_configuraciones.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_07_125641_create_usuario_tarifas_table.php b/database/migrations/2022_11_07_125641_create_usuario_tarifas_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_09_112736_create_usuario_promos_table.php b/database/migrations/2022_11_09_112736_create_usuario_promos_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_11_232556_add_msj_whatsapp_to_configuraciones.php b/database/migrations/2022_11_11_232556_add_msj_whatsapp_to_configuraciones.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_15_162937_add_perfil_to_historial_cuentas.php b/database/migrations/2022_11_15_162937_add_perfil_to_historial_cuentas.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_15_182424_add_claves_to_historial_configuraciones.php b/database/migrations/2022_11_15_182424_add_claves_to_historial_configuraciones.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_18_001441_add_iptv_to_configuraciones.php b/database/migrations/2022_11_18_001441_add_iptv_to_configuraciones.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_19_085934_add_descripcion_to_servicios.php b/database/migrations/2022_11_19_085934_add_descripcion_to_servicios.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_19_093151_add_mensaje_to_promociones.php b/database/migrations/2022_11_19_093151_add_mensaje_to_promociones.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_11_29_102133_add_top_to_configuraciones.php b/database/migrations/2022_11_29_102133_add_top_to_configuraciones.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_12_11_200249_add_hora_to_configuraciones.php b/database/migrations/2022_12_11_200249_add_hora_to_configuraciones.php old mode 100644 new mode 100755 diff --git a/database/migrations/2022_12_12_080041_add_visto_to_users.php b/database/migrations/2022_12_12_080041_add_visto_to_users.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_01_13_102622_create_logs_table.php b/database/migrations/2023_01_13_102622_create_logs_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_02_26_211133_add_reference_to_recargas.php b/database/migrations/2023_02_26_211133_add_reference_to_recargas.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_03_05_155006_add_completa_to_servicios.php b/database/migrations/2023_03_05_155006_add_completa_to_servicios.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_04_02_171634_create_tarifa_promos_table.php b/database/migrations/2023_04_02_171634_create_tarifa_promos_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_04_10_175054_add_valor_recarga_to_recargas.php b/database/migrations/2023_04_10_175054_add_valor_recarga_to_recargas.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_04_20_231506_create_jobs_table.php b/database/migrations/2023_04_20_231506_create_jobs_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_05_07_074648_add_perfils_a_sevicios.php b/database/migrations/2023_05_07_074648_add_perfils_a_sevicios.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_07_05_233631_add_nombre_cliente_to_historiale.php b/database/migrations/2023_07_05_233631_add_nombre_cliente_to_historiale.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_07_24_161803_add_renovacion_to_servicio_table.php b/database/migrations/2023_07_24_161803_add_renovacion_to_servicio_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_07_26_110451_add_precio_to_servicios_table.php b/database/migrations/2023_07_26_110451_add_precio_to_servicios_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_10_07_155444_create_log_generals_table.php b/database/migrations/2023_10_07_155444_create_log_generals_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_10_09_121545_add_utilidad_to_promociones.php b/database/migrations/2023_10_09_121545_add_utilidad_to_promociones.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_10_09_142140_add_utilidad_to_usuario_tarifas.php b/database/migrations/2023_10_09_142140_add_utilidad_to_usuario_tarifas.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_10_09_142227_add_utilidad_to_usuario_promos.php b/database/migrations/2023_10_09_142227_add_utilidad_to_usuario_promos.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_10_09_143904_add_utilidad_to_historiales.php b/database/migrations/2023_10_09_143904_add_utilidad_to_historiales.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_10_09_145454_add_utilidad_to_tarifas.php b/database/migrations/2023_10_09_145454_add_utilidad_to_tarifas.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_10_09_162902_add_utilidad_to_tarifa_promos.php b/database/migrations/2023_10_09_162902_add_utilidad_to_tarifa_promos.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_10_17_145853_create_pendientes_table.php b/database/migrations/2023_10_17_145853_create_pendientes_table.php old mode 100644 new mode 100755 diff --git a/database/migrations/2023_10_23_101443_create_notificaciones_table.php b/database/migrations/2023_10_23_101443_create_notificaciones_table.php old mode 100644 new mode 100755 diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php old mode 100644 new mode 100755 diff --git a/lang/en/auth.php b/lang/en/auth.php old mode 100644 new mode 100755 diff --git a/lang/en/pagination.php b/lang/en/pagination.php old mode 100644 new mode 100755 diff --git a/lang/en/passwords.php b/lang/en/passwords.php old mode 100644 new mode 100755 diff --git a/lang/en/validation.php b/lang/en/validation.php old mode 100644 new mode 100755 diff --git a/lang/es/pagination.php b/lang/es/pagination.php old mode 100644 new mode 100755 diff --git a/nohup.out b/nohup.out old mode 100644 new mode 100755 index ab0cd6a..716a3f4 --- a/nohup.out +++ b/nohup.out @@ -131,3 +131,6 @@ 2023-04-23 00:42:22 App\Notifications\licencias .............. 557.51ms DONE 2023-04-23 00:42:29 App\Notifications\compra ................... 3.10ms DONE 2023-04-23 00:42:29 App\Notifications\compra ................. 551.77ms DONE + + INFO Processing jobs from the [default] queue. + diff --git a/package-lock.json b/package-lock.json old mode 100644 new mode 100755 diff --git a/package.json b/package.json old mode 100644 new mode 100755 diff --git a/phpunit.xml b/phpunit.xml old mode 100644 new mode 100755 diff --git a/postcss.config.js b/postcss.config.js old mode 100644 new mode 100755 diff --git a/public/.htaccess b/public/.htaccess old mode 100644 new mode 100755 diff --git a/public/build/assets/app.2896b7a8.js b/public/build/assets/app.2896b7a8.js old mode 100644 new mode 100755 diff --git a/public/build/assets/app.abbd3f5c.css b/public/build/assets/app.abbd3f5c.css old mode 100644 new mode 100755 diff --git a/public/build/manifest.json b/public/build/manifest.json old mode 100644 new mode 100755 diff --git a/public/css/estilos.css b/public/css/estilos.css old mode 100644 new mode 100755 diff --git a/public/favicon.ico b/public/favicon.ico old mode 100644 new mode 100755 diff --git a/public/img/1.png b/public/img/1.png old mode 100644 new mode 100755 diff --git a/public/img/10.png b/public/img/10.png old mode 100644 new mode 100755 diff --git a/public/img/2.png b/public/img/2.png old mode 100644 new mode 100755 diff --git a/public/img/3.png b/public/img/3.png old mode 100644 new mode 100755 diff --git a/public/img/4.png b/public/img/4.png old mode 100644 new mode 100755 diff --git a/public/img/5.png b/public/img/5.png old mode 100644 new mode 100755 diff --git a/public/img/6.png b/public/img/6.png old mode 100644 new mode 100755 diff --git a/public/img/7.png b/public/img/7.png old mode 100644 new mode 100755 diff --git a/public/img/8.png b/public/img/8.png old mode 100644 new mode 100755 diff --git a/public/img/9.png b/public/img/9.png old mode 100644 new mode 100755 diff --git a/public/img/fondo.png b/public/img/fondo.png old mode 100644 new mode 100755 diff --git a/public/img/loading.gif b/public/img/loading.gif old mode 100644 new mode 100755 diff --git a/public/img/logo.jpg b/public/img/logo.jpg old mode 100644 new mode 100755 diff --git a/public/img/mercadopago.jpg b/public/img/mercadopago.jpg old mode 100644 new mode 100755 diff --git a/public/img/nequi.jpg b/public/img/nequi.jpg old mode 100644 new mode 100755 diff --git a/public/img/wompi_1.png b/public/img/wompi_1.png old mode 100644 new mode 100755 diff --git a/public/img/xls.png b/public/img/xls.png old mode 100644 new mode 100755 diff --git a/public/index.php b/public/index.php old mode 100644 new mode 100755 diff --git a/public/photos/01rYLP8qNfcplUvK9PY7RgvSRLL0TmgLfY72ESF0.png b/public/photos/01rYLP8qNfcplUvK9PY7RgvSRLL0TmgLfY72ESF0.png deleted file mode 100644 index 951ce9a..0000000 Binary files a/public/photos/01rYLP8qNfcplUvK9PY7RgvSRLL0TmgLfY72ESF0.png and /dev/null differ diff --git a/public/photos/04jitB7jKr.webp b/public/photos/04jitB7jKr.webp deleted file mode 100644 index 22bff1a..0000000 Binary files a/public/photos/04jitB7jKr.webp and /dev/null differ diff --git a/public/photos/06F75q9blZspzQTLEG2FZo5KfPNFzebpBDx3AQU8.png b/public/photos/06F75q9blZspzQTLEG2FZo5KfPNFzebpBDx3AQU8.png deleted file mode 100644 index 9098689..0000000 Binary files a/public/photos/06F75q9blZspzQTLEG2FZo5KfPNFzebpBDx3AQU8.png and /dev/null differ diff --git a/public/photos/0Yb0Qm0Q4M.webp b/public/photos/0Yb0Qm0Q4M.webp deleted file mode 100644 index dfd8dd4..0000000 Binary files a/public/photos/0Yb0Qm0Q4M.webp and /dev/null differ diff --git a/public/photos/0cEUMbzThf.webp b/public/photos/0cEUMbzThf.webp deleted file mode 100644 index fe834ba..0000000 Binary files a/public/photos/0cEUMbzThf.webp and /dev/null differ diff --git a/public/photos/0nvvBVF2mzajN69HdcTfuWV8RwXgPEpDl1MvJKQV.png b/public/photos/0nvvBVF2mzajN69HdcTfuWV8RwXgPEpDl1MvJKQV.png deleted file mode 100644 index fdd17cf..0000000 Binary files a/public/photos/0nvvBVF2mzajN69HdcTfuWV8RwXgPEpDl1MvJKQV.png and /dev/null differ diff --git a/public/photos/1WA5f8Vmj2.webp b/public/photos/1WA5f8Vmj2.webp deleted file mode 100644 index 845ecd6..0000000 Binary files a/public/photos/1WA5f8Vmj2.webp and /dev/null differ diff --git a/public/photos/1cP1uOglIOohIZZyZMrQ4VHog9kCGvlrfpBQ8AFo.png b/public/photos/1cP1uOglIOohIZZyZMrQ4VHog9kCGvlrfpBQ8AFo.png deleted file mode 100644 index 1591173..0000000 Binary files a/public/photos/1cP1uOglIOohIZZyZMrQ4VHog9kCGvlrfpBQ8AFo.png and /dev/null differ diff --git a/public/photos/1fMUNWUovfGm99dcbBNjLLam1Do4XuT92JMQzjuk.png b/public/photos/1fMUNWUovfGm99dcbBNjLLam1Do4XuT92JMQzjuk.png deleted file mode 100644 index d015a1d..0000000 Binary files a/public/photos/1fMUNWUovfGm99dcbBNjLLam1Do4XuT92JMQzjuk.png and /dev/null differ diff --git a/public/photos/1u83WpvjGu.webp b/public/photos/1u83WpvjGu.webp deleted file mode 100644 index ff267f7..0000000 Binary files a/public/photos/1u83WpvjGu.webp and /dev/null differ diff --git a/public/photos/275ETea7ENqtW8ddkRq4P5y40V6YidSPQzy29Drk.png b/public/photos/275ETea7ENqtW8ddkRq4P5y40V6YidSPQzy29Drk.png deleted file mode 100644 index 951ce9a..0000000 Binary files a/public/photos/275ETea7ENqtW8ddkRq4P5y40V6YidSPQzy29Drk.png and /dev/null differ diff --git a/public/photos/2FFpKEOTojR68mHTaGWJQUZYpoL8CCJD7K6KtS9U.png b/public/photos/2FFpKEOTojR68mHTaGWJQUZYpoL8CCJD7K6KtS9U.png deleted file mode 100644 index aa7af3d..0000000 Binary files a/public/photos/2FFpKEOTojR68mHTaGWJQUZYpoL8CCJD7K6KtS9U.png and /dev/null differ diff --git a/public/photos/2POG4XYado.webp b/public/photos/2POG4XYado.webp deleted file mode 100644 index 9dccc80..0000000 Binary files a/public/photos/2POG4XYado.webp and /dev/null differ diff --git a/public/photos/2XBfmyMjJnquvHZSK2bCbRtt3gf22Lmop0pWEHan.png b/public/photos/2XBfmyMjJnquvHZSK2bCbRtt3gf22Lmop0pWEHan.png deleted file mode 100644 index 76a1f15..0000000 Binary files a/public/photos/2XBfmyMjJnquvHZSK2bCbRtt3gf22Lmop0pWEHan.png and /dev/null differ diff --git a/public/photos/2kzXfCoULDMGhX0rgIZsQYGKKzQLfl2LPgTlk4hk.png b/public/photos/2kzXfCoULDMGhX0rgIZsQYGKKzQLfl2LPgTlk4hk.png deleted file mode 100644 index 5b3304c..0000000 Binary files a/public/photos/2kzXfCoULDMGhX0rgIZsQYGKKzQLfl2LPgTlk4hk.png and /dev/null differ diff --git a/public/photos/2q9pvuIveb.webp b/public/photos/2q9pvuIveb.webp deleted file mode 100644 index 46e709a..0000000 Binary files a/public/photos/2q9pvuIveb.webp and /dev/null differ diff --git a/public/photos/2xi0VbTcoS.webp b/public/photos/2xi0VbTcoS.webp deleted file mode 100644 index 19ab3ac..0000000 Binary files a/public/photos/2xi0VbTcoS.webp and /dev/null differ diff --git a/public/photos/309XVmhMKr7EGumlPJQC2Qdh0pcez8f3asNHfESh.png b/public/photos/309XVmhMKr7EGumlPJQC2Qdh0pcez8f3asNHfESh.png deleted file mode 100644 index 9efee34..0000000 Binary files a/public/photos/309XVmhMKr7EGumlPJQC2Qdh0pcez8f3asNHfESh.png and /dev/null differ diff --git a/public/photos/397iMqEFEJPYUrSw96bxy5dntZM4voED4qoueOnQ.jpg b/public/photos/397iMqEFEJPYUrSw96bxy5dntZM4voED4qoueOnQ.jpg deleted file mode 100644 index ff5a480..0000000 Binary files a/public/photos/397iMqEFEJPYUrSw96bxy5dntZM4voED4qoueOnQ.jpg and /dev/null differ diff --git a/public/photos/3CbHF3Hj9FJscFfr7LJ4eYlV6xgBohNyi5BwdUYn.png b/public/photos/3CbHF3Hj9FJscFfr7LJ4eYlV6xgBohNyi5BwdUYn.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/3CbHF3Hj9FJscFfr7LJ4eYlV6xgBohNyi5BwdUYn.png and /dev/null differ diff --git a/public/photos/3XCRodct9x.webp b/public/photos/3XCRodct9x.webp deleted file mode 100644 index 95dbbfd..0000000 Binary files a/public/photos/3XCRodct9x.webp and /dev/null differ diff --git a/public/photos/3ZzBAqRLsDS5Z0dtAXxGHMmbsOyyvgndHLSfny9v.png b/public/photos/3ZzBAqRLsDS5Z0dtAXxGHMmbsOyyvgndHLSfny9v.png deleted file mode 100644 index 75cdba2..0000000 Binary files a/public/photos/3ZzBAqRLsDS5Z0dtAXxGHMmbsOyyvgndHLSfny9v.png and /dev/null differ diff --git a/public/photos/3joOCEIy0QUiz6P1HQT4h3ACzWHJJUnGV66Sudl7.jpg b/public/photos/3joOCEIy0QUiz6P1HQT4h3ACzWHJJUnGV66Sudl7.jpg deleted file mode 100644 index c0fece4..0000000 Binary files a/public/photos/3joOCEIy0QUiz6P1HQT4h3ACzWHJJUnGV66Sudl7.jpg and /dev/null differ diff --git a/public/photos/3kHI79IlK51Pox1hx712i8xbIGxunjAJ1vU6yoDq.png b/public/photos/3kHI79IlK51Pox1hx712i8xbIGxunjAJ1vU6yoDq.png deleted file mode 100644 index 68b88b8..0000000 Binary files a/public/photos/3kHI79IlK51Pox1hx712i8xbIGxunjAJ1vU6yoDq.png and /dev/null differ diff --git a/public/photos/40qxkTqlFUk7TX4pXmjp91Np8OdmCPzBXTlvMe5l.png b/public/photos/40qxkTqlFUk7TX4pXmjp91Np8OdmCPzBXTlvMe5l.png deleted file mode 100644 index 3eabc48..0000000 Binary files a/public/photos/40qxkTqlFUk7TX4pXmjp91Np8OdmCPzBXTlvMe5l.png and /dev/null differ diff --git a/public/photos/4MPt0ipvDT2bHbYCPUKxsz1mF0WYw4rGBBLKBaO5.png b/public/photos/4MPt0ipvDT2bHbYCPUKxsz1mF0WYw4rGBBLKBaO5.png deleted file mode 100644 index 7153294..0000000 Binary files a/public/photos/4MPt0ipvDT2bHbYCPUKxsz1mF0WYw4rGBBLKBaO5.png and /dev/null differ diff --git a/public/photos/4epajGoRP8LgcsVEDg21wFeINuL9zh3eZFm43KrX.png b/public/photos/4epajGoRP8LgcsVEDg21wFeINuL9zh3eZFm43KrX.png deleted file mode 100644 index 7788e46..0000000 Binary files a/public/photos/4epajGoRP8LgcsVEDg21wFeINuL9zh3eZFm43KrX.png and /dev/null differ diff --git a/public/photos/4zQCheUHtbn8IqWZje66EF73UG343yj9XMhnQJIy.png b/public/photos/4zQCheUHtbn8IqWZje66EF73UG343yj9XMhnQJIy.png deleted file mode 100644 index 7656b52..0000000 Binary files a/public/photos/4zQCheUHtbn8IqWZje66EF73UG343yj9XMhnQJIy.png and /dev/null differ diff --git a/public/photos/5CqwK0yEpD6TXbR8ntv7x7BMXPGgLK8GC5jdeDuB.jpg b/public/photos/5CqwK0yEpD6TXbR8ntv7x7BMXPGgLK8GC5jdeDuB.jpg deleted file mode 100644 index 73166fb..0000000 Binary files a/public/photos/5CqwK0yEpD6TXbR8ntv7x7BMXPGgLK8GC5jdeDuB.jpg and /dev/null differ diff --git a/public/photos/5UVnTIWGTgC1CphvYJU1pPWdYxv9rH7xnmNIj92P.jpg b/public/photos/5UVnTIWGTgC1CphvYJU1pPWdYxv9rH7xnmNIj92P.jpg deleted file mode 100644 index 21e2a9c..0000000 Binary files a/public/photos/5UVnTIWGTgC1CphvYJU1pPWdYxv9rH7xnmNIj92P.jpg and /dev/null differ diff --git a/public/photos/5iSJtxOwgajQOHRRRkymYB3chWOtPwSJ6WBX7c5Z.png b/public/photos/5iSJtxOwgajQOHRRRkymYB3chWOtPwSJ6WBX7c5Z.png deleted file mode 100644 index 0a7952e..0000000 Binary files a/public/photos/5iSJtxOwgajQOHRRRkymYB3chWOtPwSJ6WBX7c5Z.png and /dev/null differ diff --git a/public/photos/5m3ubHKGOs.webp b/public/photos/5m3ubHKGOs.webp deleted file mode 100644 index 7026e78..0000000 Binary files a/public/photos/5m3ubHKGOs.webp and /dev/null differ diff --git a/public/photos/5oi4rCTnSAzc1F8rRhDFbMgT9ADGA1riz61atWdO.png b/public/photos/5oi4rCTnSAzc1F8rRhDFbMgT9ADGA1riz61atWdO.png deleted file mode 100644 index 6f7b437..0000000 Binary files a/public/photos/5oi4rCTnSAzc1F8rRhDFbMgT9ADGA1riz61atWdO.png and /dev/null differ diff --git a/public/photos/65hjmxKDO9.webp b/public/photos/65hjmxKDO9.webp deleted file mode 100644 index 13dc189..0000000 Binary files a/public/photos/65hjmxKDO9.webp and /dev/null differ diff --git a/public/photos/6MAsUmCmwi.webp b/public/photos/6MAsUmCmwi.webp deleted file mode 100644 index e60b3de..0000000 Binary files a/public/photos/6MAsUmCmwi.webp and /dev/null differ diff --git a/public/photos/6WNbJJ5hg20U.webp b/public/photos/6WNbJJ5hg20U.webp deleted file mode 100644 index 22d76ea..0000000 Binary files a/public/photos/6WNbJJ5hg20U.webp and /dev/null differ diff --git a/public/photos/6ih7ZJ0ws49FnYEGzf56uuHMfn6TimzTBYHcCJmP.png b/public/photos/6ih7ZJ0ws49FnYEGzf56uuHMfn6TimzTBYHcCJmP.png deleted file mode 100644 index 4ea6aa7..0000000 Binary files a/public/photos/6ih7ZJ0ws49FnYEGzf56uuHMfn6TimzTBYHcCJmP.png and /dev/null differ diff --git a/public/photos/6sruviyWsS.webp b/public/photos/6sruviyWsS.webp deleted file mode 100644 index 653af1b..0000000 Binary files a/public/photos/6sruviyWsS.webp and /dev/null differ diff --git a/public/photos/74LXtsyar7arJtfSFmoK5oBxxeLxLGxxDEUr9yqI.jpg b/public/photos/74LXtsyar7arJtfSFmoK5oBxxeLxLGxxDEUr9yqI.jpg deleted file mode 100644 index 931b95d..0000000 Binary files a/public/photos/74LXtsyar7arJtfSFmoK5oBxxeLxLGxxDEUr9yqI.jpg and /dev/null differ diff --git a/public/photos/782slpaI3h3YvkT3LgDc9xU1LrCfXgXBhnFTzjcQ.png b/public/photos/782slpaI3h3YvkT3LgDc9xU1LrCfXgXBhnFTzjcQ.png deleted file mode 100644 index 9a0f53a..0000000 Binary files a/public/photos/782slpaI3h3YvkT3LgDc9xU1LrCfXgXBhnFTzjcQ.png and /dev/null differ diff --git a/public/photos/7Adcpfi9FNhV8D1y2NnlvtluQLFY0LyYCVrcQcZK.png b/public/photos/7Adcpfi9FNhV8D1y2NnlvtluQLFY0LyYCVrcQcZK.png deleted file mode 100644 index 64de5b5..0000000 Binary files a/public/photos/7Adcpfi9FNhV8D1y2NnlvtluQLFY0LyYCVrcQcZK.png and /dev/null differ diff --git a/public/photos/7GH08Z1o2CgceAn6AJFsRf8IlhZDpOpxO31qw1Tq.png b/public/photos/7GH08Z1o2CgceAn6AJFsRf8IlhZDpOpxO31qw1Tq.png deleted file mode 100644 index 80f78a8..0000000 Binary files a/public/photos/7GH08Z1o2CgceAn6AJFsRf8IlhZDpOpxO31qw1Tq.png and /dev/null differ diff --git a/public/photos/7HEZoG3vaC.webp b/public/photos/7HEZoG3vaC.webp deleted file mode 100644 index 70dba82..0000000 Binary files a/public/photos/7HEZoG3vaC.webp and /dev/null differ diff --git a/public/photos/7R0mNiAzPZK8C1p09QrQZVezR2sGcBQSZQWYzGRc.png b/public/photos/7R0mNiAzPZK8C1p09QrQZVezR2sGcBQSZQWYzGRc.png deleted file mode 100644 index 36c1b9a..0000000 Binary files a/public/photos/7R0mNiAzPZK8C1p09QrQZVezR2sGcBQSZQWYzGRc.png and /dev/null differ diff --git a/public/photos/7h1DcVebJ8.webp b/public/photos/7h1DcVebJ8.webp deleted file mode 100644 index 62dab05..0000000 Binary files a/public/photos/7h1DcVebJ8.webp and /dev/null differ diff --git a/public/photos/7rj1dJnRG8.webp b/public/photos/7rj1dJnRG8.webp deleted file mode 100644 index f191e02..0000000 Binary files a/public/photos/7rj1dJnRG8.webp and /dev/null differ diff --git a/public/photos/8FNieOYTzq.webp b/public/photos/8FNieOYTzq.webp deleted file mode 100644 index b83c558..0000000 Binary files a/public/photos/8FNieOYTzq.webp and /dev/null differ diff --git a/public/photos/8WnaVExsCw.webp b/public/photos/8WnaVExsCw.webp deleted file mode 100644 index 10dfe2d..0000000 Binary files a/public/photos/8WnaVExsCw.webp and /dev/null differ diff --git a/public/photos/8bFOKesVpIk0uI9K1yH9Sa7O1Pt1YqkGIZp19ehc.png b/public/photos/8bFOKesVpIk0uI9K1yH9Sa7O1Pt1YqkGIZp19ehc.png deleted file mode 100644 index 1a29a83..0000000 Binary files a/public/photos/8bFOKesVpIk0uI9K1yH9Sa7O1Pt1YqkGIZp19ehc.png and /dev/null differ diff --git a/public/photos/8gsV4iNNCP.webp b/public/photos/8gsV4iNNCP.webp deleted file mode 100644 index 223cf65..0000000 Binary files a/public/photos/8gsV4iNNCP.webp and /dev/null differ diff --git a/public/photos/8mm5zBDH4ahqHYleoxVQiOYiIvV13Pmi56plsRTZ.png b/public/photos/8mm5zBDH4ahqHYleoxVQiOYiIvV13Pmi56plsRTZ.png deleted file mode 100644 index e29d840..0000000 Binary files a/public/photos/8mm5zBDH4ahqHYleoxVQiOYiIvV13Pmi56plsRTZ.png and /dev/null differ diff --git a/public/photos/9FJY4EfJbB2HVbtBdnNHkOTiK8EDJxI9eiUScu4z.png b/public/photos/9FJY4EfJbB2HVbtBdnNHkOTiK8EDJxI9eiUScu4z.png deleted file mode 100644 index eaf4462..0000000 Binary files a/public/photos/9FJY4EfJbB2HVbtBdnNHkOTiK8EDJxI9eiUScu4z.png and /dev/null differ diff --git a/public/photos/9MrazeFmJDkr6T6ptfNWBBx4Uzenx0TjgOyREGcL.png b/public/photos/9MrazeFmJDkr6T6ptfNWBBx4Uzenx0TjgOyREGcL.png deleted file mode 100644 index 7a25044..0000000 Binary files a/public/photos/9MrazeFmJDkr6T6ptfNWBBx4Uzenx0TjgOyREGcL.png and /dev/null differ diff --git a/public/photos/9TEsI2xhYclysz259VsyrUDej5KCvthKujHrH5IR.png b/public/photos/9TEsI2xhYclysz259VsyrUDej5KCvthKujHrH5IR.png deleted file mode 100644 index 425d7ac..0000000 Binary files a/public/photos/9TEsI2xhYclysz259VsyrUDej5KCvthKujHrH5IR.png and /dev/null differ diff --git a/public/photos/A667UdBq1p.webp b/public/photos/A667UdBq1p.webp deleted file mode 100644 index 0c96644..0000000 Binary files a/public/photos/A667UdBq1p.webp and /dev/null differ diff --git a/public/photos/A6ymWBWRTS.webp b/public/photos/A6ymWBWRTS.webp deleted file mode 100644 index bc4c9a7..0000000 Binary files a/public/photos/A6ymWBWRTS.webp and /dev/null differ diff --git a/public/photos/A7ydAxsRSuWNyifslO5Rb0oaLjfcNpi27Z8O5YfO.jpg b/public/photos/A7ydAxsRSuWNyifslO5Rb0oaLjfcNpi27Z8O5YfO.jpg deleted file mode 100644 index 214e4a4..0000000 Binary files a/public/photos/A7ydAxsRSuWNyifslO5Rb0oaLjfcNpi27Z8O5YfO.jpg and /dev/null differ diff --git a/public/photos/AMMDIxBDJv7Hu78j0GETBlck9ebKrxahb8EjE3zg.png b/public/photos/AMMDIxBDJv7Hu78j0GETBlck9ebKrxahb8EjE3zg.png deleted file mode 100644 index f2870c0..0000000 Binary files a/public/photos/AMMDIxBDJv7Hu78j0GETBlck9ebKrxahb8EjE3zg.png and /dev/null differ diff --git a/public/photos/AYUrkVTWt9f9osHypjUX7ROWcmj2wsJleYFoFTXu.png b/public/photos/AYUrkVTWt9f9osHypjUX7ROWcmj2wsJleYFoFTXu.png deleted file mode 100644 index 7be32d3..0000000 Binary files a/public/photos/AYUrkVTWt9f9osHypjUX7ROWcmj2wsJleYFoFTXu.png and /dev/null differ diff --git a/public/photos/Ar3Gf1dRRMPO2Rrs6ny1a6OEhpjKi3JjuVJFkJ52.png b/public/photos/Ar3Gf1dRRMPO2Rrs6ny1a6OEhpjKi3JjuVJFkJ52.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/Ar3Gf1dRRMPO2Rrs6ny1a6OEhpjKi3JjuVJFkJ52.png and /dev/null differ diff --git a/public/photos/Au6vNLE70N.webp b/public/photos/Au6vNLE70N.webp deleted file mode 100644 index 274276c..0000000 Binary files a/public/photos/Au6vNLE70N.webp and /dev/null differ diff --git a/public/photos/B3QDhlBcMZvg9qfsort2dmFWPwJpXVenFA7IE1fh.png b/public/photos/B3QDhlBcMZvg9qfsort2dmFWPwJpXVenFA7IE1fh.png deleted file mode 100644 index a26ec4c..0000000 Binary files a/public/photos/B3QDhlBcMZvg9qfsort2dmFWPwJpXVenFA7IE1fh.png and /dev/null differ diff --git a/public/photos/B9VjoVlVHDaRWPoVHhoR6WiaLrdhRjJu4e9ZE6mP.png b/public/photos/B9VjoVlVHDaRWPoVHhoR6WiaLrdhRjJu4e9ZE6mP.png deleted file mode 100644 index a22ede9..0000000 Binary files a/public/photos/B9VjoVlVHDaRWPoVHhoR6WiaLrdhRjJu4e9ZE6mP.png and /dev/null differ diff --git a/public/photos/BDqszob5zLKLe5tXXaCofn0eX5Cbobw9bicaGcQ9.png b/public/photos/BDqszob5zLKLe5tXXaCofn0eX5Cbobw9bicaGcQ9.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/BDqszob5zLKLe5tXXaCofn0eX5Cbobw9bicaGcQ9.png and /dev/null differ diff --git a/public/photos/BEtePOFFbVe6T0pgl8hZH9X0mYKmq7rdCBSMgAD7.png b/public/photos/BEtePOFFbVe6T0pgl8hZH9X0mYKmq7rdCBSMgAD7.png deleted file mode 100644 index c61f150..0000000 Binary files a/public/photos/BEtePOFFbVe6T0pgl8hZH9X0mYKmq7rdCBSMgAD7.png and /dev/null differ diff --git a/public/photos/BMDN92gDAUwuD4BB5NXiuxYuWiq4pPnxZW52d93O.jpg b/public/photos/BMDN92gDAUwuD4BB5NXiuxYuWiq4pPnxZW52d93O.jpg deleted file mode 100644 index 842ddc5..0000000 Binary files a/public/photos/BMDN92gDAUwuD4BB5NXiuxYuWiq4pPnxZW52d93O.jpg and /dev/null differ diff --git a/public/photos/BQ05M4afS9ZPI7dglzIVBPKNZXizVU01HQDrcp2E.jpg b/public/photos/BQ05M4afS9ZPI7dglzIVBPKNZXizVU01HQDrcp2E.jpg deleted file mode 100644 index a226083..0000000 Binary files a/public/photos/BQ05M4afS9ZPI7dglzIVBPKNZXizVU01HQDrcp2E.jpg and /dev/null differ diff --git a/public/photos/BZfYwvQv1p.webp b/public/photos/BZfYwvQv1p.webp deleted file mode 100644 index 1623611..0000000 Binary files a/public/photos/BZfYwvQv1p.webp and /dev/null differ diff --git a/public/photos/BeKVfG6MfbJ6Pp39RstwdqApswNAiaj9MCDC6ScJ.webp b/public/photos/BeKVfG6MfbJ6Pp39RstwdqApswNAiaj9MCDC6ScJ.webp deleted file mode 100644 index 82582c8..0000000 Binary files a/public/photos/BeKVfG6MfbJ6Pp39RstwdqApswNAiaj9MCDC6ScJ.webp and /dev/null differ diff --git a/public/photos/BeWTs30clYFUmEvHCd8igQIv4YPK2lA5KGUZr3wr.jpg b/public/photos/BeWTs30clYFUmEvHCd8igQIv4YPK2lA5KGUZr3wr.jpg deleted file mode 100644 index 82da1b9..0000000 Binary files a/public/photos/BeWTs30clYFUmEvHCd8igQIv4YPK2lA5KGUZr3wr.jpg and /dev/null differ diff --git a/public/photos/C4L6xWAYdCCo3XGfbvvM87q0wd1uaTLjYIYa0LJF.png b/public/photos/C4L6xWAYdCCo3XGfbvvM87q0wd1uaTLjYIYa0LJF.png deleted file mode 100644 index 6ac0638..0000000 Binary files a/public/photos/C4L6xWAYdCCo3XGfbvvM87q0wd1uaTLjYIYa0LJF.png and /dev/null differ diff --git a/public/photos/C6w8VOdYDCBSqKtH8Azp9Pl23QVQdzi042nV6a3K.png b/public/photos/C6w8VOdYDCBSqKtH8Azp9Pl23QVQdzi042nV6a3K.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/C6w8VOdYDCBSqKtH8Azp9Pl23QVQdzi042nV6a3K.png and /dev/null differ diff --git a/public/photos/CK2X29MnyW6kxL3ROfaF0UGTzdn68qv23WADnKaw.png b/public/photos/CK2X29MnyW6kxL3ROfaF0UGTzdn68qv23WADnKaw.png deleted file mode 100644 index 22bc248..0000000 Binary files a/public/photos/CK2X29MnyW6kxL3ROfaF0UGTzdn68qv23WADnKaw.png and /dev/null differ diff --git a/public/photos/CSSl1A4flP.webp b/public/photos/CSSl1A4flP.webp deleted file mode 100644 index 46e709a..0000000 Binary files a/public/photos/CSSl1A4flP.webp and /dev/null differ diff --git a/public/photos/ClP1AFujkEeGvCLfHk3kcAMmiDhiM2e2QvWe9ozM.png b/public/photos/ClP1AFujkEeGvCLfHk3kcAMmiDhiM2e2QvWe9ozM.png deleted file mode 100644 index 98e5965..0000000 Binary files a/public/photos/ClP1AFujkEeGvCLfHk3kcAMmiDhiM2e2QvWe9ozM.png and /dev/null differ diff --git a/public/photos/D1Q1Vfv1Z8yKtr5mK1ghStrlGnttuUWS5xhe6nN0.png b/public/photos/D1Q1Vfv1Z8yKtr5mK1ghStrlGnttuUWS5xhe6nN0.png deleted file mode 100644 index 38c4ccd..0000000 Binary files a/public/photos/D1Q1Vfv1Z8yKtr5mK1ghStrlGnttuUWS5xhe6nN0.png and /dev/null differ diff --git a/public/photos/D1vwlygng3k6i7Kad3gZYBubGYeLPxhzd1J0sORv.jpg b/public/photos/D1vwlygng3k6i7Kad3gZYBubGYeLPxhzd1J0sORv.jpg deleted file mode 100644 index 61b6830..0000000 Binary files a/public/photos/D1vwlygng3k6i7Kad3gZYBubGYeLPxhzd1J0sORv.jpg and /dev/null differ diff --git a/public/photos/D8Cs9ycfJ5.webp b/public/photos/D8Cs9ycfJ5.webp deleted file mode 100644 index 3cd052a..0000000 Binary files a/public/photos/D8Cs9ycfJ5.webp and /dev/null differ diff --git a/public/photos/D9JBneV75ru7oq7llFopDWtswByLasK6TOFcMJJQ.png b/public/photos/D9JBneV75ru7oq7llFopDWtswByLasK6TOFcMJJQ.png deleted file mode 100644 index b7de9e8..0000000 Binary files a/public/photos/D9JBneV75ru7oq7llFopDWtswByLasK6TOFcMJJQ.png and /dev/null differ diff --git a/public/photos/DBGOALULR3.webp b/public/photos/DBGOALULR3.webp deleted file mode 100644 index 68724b0..0000000 Binary files a/public/photos/DBGOALULR3.webp and /dev/null differ diff --git a/public/photos/DVoDsMvDOkLHIIZyAyVdZx7q0ePiFmBrgshYCVP4.png b/public/photos/DVoDsMvDOkLHIIZyAyVdZx7q0ePiFmBrgshYCVP4.png deleted file mode 100644 index 5b29399..0000000 Binary files a/public/photos/DVoDsMvDOkLHIIZyAyVdZx7q0ePiFmBrgshYCVP4.png and /dev/null differ diff --git a/public/photos/DWvobhigXCBx0dXnyJysvXUiFAnriE5Y1q5bzP0K.png b/public/photos/DWvobhigXCBx0dXnyJysvXUiFAnriE5Y1q5bzP0K.png deleted file mode 100644 index 045c0fb..0000000 Binary files a/public/photos/DWvobhigXCBx0dXnyJysvXUiFAnriE5Y1q5bzP0K.png and /dev/null differ diff --git a/public/photos/DmtO1V0p7b6qDx6ClI3Cah8MiZ2LPzx8bOUuSdr2.png b/public/photos/DmtO1V0p7b6qDx6ClI3Cah8MiZ2LPzx8bOUuSdr2.png deleted file mode 100644 index 5e62a5a..0000000 Binary files a/public/photos/DmtO1V0p7b6qDx6ClI3Cah8MiZ2LPzx8bOUuSdr2.png and /dev/null differ diff --git a/public/photos/DwSLBewZqfm75S4lQIvb6FVdgGaeh16Lvv5UtIKx.png b/public/photos/DwSLBewZqfm75S4lQIvb6FVdgGaeh16Lvv5UtIKx.png deleted file mode 100644 index 0a87a70..0000000 Binary files a/public/photos/DwSLBewZqfm75S4lQIvb6FVdgGaeh16Lvv5UtIKx.png and /dev/null differ diff --git a/public/photos/E6bcqkQ73wgTtzYE7OVZcnx1z50aaXqL2nVMBKNz.png b/public/photos/E6bcqkQ73wgTtzYE7OVZcnx1z50aaXqL2nVMBKNz.png deleted file mode 100644 index 473be0d..0000000 Binary files a/public/photos/E6bcqkQ73wgTtzYE7OVZcnx1z50aaXqL2nVMBKNz.png and /dev/null differ diff --git a/public/photos/EFDZcwOe00F48dFZELReiB291mlV162SJLObg9r2.png b/public/photos/EFDZcwOe00F48dFZELReiB291mlV162SJLObg9r2.png deleted file mode 100644 index aa7af3d..0000000 Binary files a/public/photos/EFDZcwOe00F48dFZELReiB291mlV162SJLObg9r2.png and /dev/null differ diff --git a/public/photos/EPDZN52eZwd4Fo3gV3pCTlvWJJYPLz6iE7lk1rPC.png b/public/photos/EPDZN52eZwd4Fo3gV3pCTlvWJJYPLz6iE7lk1rPC.png deleted file mode 100644 index f85194b..0000000 Binary files a/public/photos/EPDZN52eZwd4Fo3gV3pCTlvWJJYPLz6iE7lk1rPC.png and /dev/null differ diff --git a/public/photos/EPL8Wkxb5D.webp b/public/photos/EPL8Wkxb5D.webp deleted file mode 100644 index cccf546..0000000 Binary files a/public/photos/EPL8Wkxb5D.webp and /dev/null differ diff --git a/public/photos/EPy0FejlnAPAIGRSBVIUDxgPIxotbVNalgPFGoYw.png b/public/photos/EPy0FejlnAPAIGRSBVIUDxgPIxotbVNalgPFGoYw.png deleted file mode 100644 index d87a0ee..0000000 Binary files a/public/photos/EPy0FejlnAPAIGRSBVIUDxgPIxotbVNalgPFGoYw.png and /dev/null differ diff --git a/public/photos/EnCEDndjfxFCTxwDdlltPFoiTCB23PFbrKhb6hmL.png b/public/photos/EnCEDndjfxFCTxwDdlltPFoiTCB23PFbrKhb6hmL.png deleted file mode 100644 index 68b88b8..0000000 Binary files a/public/photos/EnCEDndjfxFCTxwDdlltPFoiTCB23PFbrKhb6hmL.png and /dev/null differ diff --git a/public/photos/Es5TrfNNoP5F4PUCnssl1Vq3lZRrvNzZkUyZIDZy.png b/public/photos/Es5TrfNNoP5F4PUCnssl1Vq3lZRrvNzZkUyZIDZy.png deleted file mode 100644 index e451a50..0000000 Binary files a/public/photos/Es5TrfNNoP5F4PUCnssl1Vq3lZRrvNzZkUyZIDZy.png and /dev/null differ diff --git a/public/photos/EsnkJ69rPb.webp b/public/photos/EsnkJ69rPb.webp deleted file mode 100644 index f480976..0000000 Binary files a/public/photos/EsnkJ69rPb.webp and /dev/null differ diff --git a/public/photos/FGaqrg3BuK.webp b/public/photos/FGaqrg3BuK.webp deleted file mode 100644 index 1dfbd1b..0000000 Binary files a/public/photos/FGaqrg3BuK.webp and /dev/null differ diff --git a/public/photos/FHCTwlP7vaPqlj3KQh52rZ7FAm7i4kGeSjHQan2V.png b/public/photos/FHCTwlP7vaPqlj3KQh52rZ7FAm7i4kGeSjHQan2V.png deleted file mode 100644 index 6bbc39c..0000000 Binary files a/public/photos/FHCTwlP7vaPqlj3KQh52rZ7FAm7i4kGeSjHQan2V.png and /dev/null differ diff --git a/public/photos/FOqqDFUDYq7FYE3Vw90Aj80iLnIxLrzQutoQsmQD.png b/public/photos/FOqqDFUDYq7FYE3Vw90Aj80iLnIxLrzQutoQsmQD.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/FOqqDFUDYq7FYE3Vw90Aj80iLnIxLrzQutoQsmQD.png and /dev/null differ diff --git a/public/photos/FSsGyM7MAgKKxw6hAyEciW5d00wCeksXUzsmE7Df.jpg b/public/photos/FSsGyM7MAgKKxw6hAyEciW5d00wCeksXUzsmE7Df.jpg deleted file mode 100644 index e4e9536..0000000 Binary files a/public/photos/FSsGyM7MAgKKxw6hAyEciW5d00wCeksXUzsmE7Df.jpg and /dev/null differ diff --git a/public/photos/FW0jiztObR.webp b/public/photos/FW0jiztObR.webp deleted file mode 100644 index 069e27e..0000000 Binary files a/public/photos/FW0jiztObR.webp and /dev/null differ diff --git a/public/photos/FXpok6FW5BlFZGGvkRUxzMFNWHYhkhQnxrWhPcYz.png b/public/photos/FXpok6FW5BlFZGGvkRUxzMFNWHYhkhQnxrWhPcYz.png deleted file mode 100644 index bd0bb5e..0000000 Binary files a/public/photos/FXpok6FW5BlFZGGvkRUxzMFNWHYhkhQnxrWhPcYz.png and /dev/null differ diff --git a/public/photos/FYHIqOJ5liZ3wrJX6e14OLTw3JvoWcCDUP7czieo.png b/public/photos/FYHIqOJ5liZ3wrJX6e14OLTw3JvoWcCDUP7czieo.png deleted file mode 100644 index adf5b35..0000000 Binary files a/public/photos/FYHIqOJ5liZ3wrJX6e14OLTw3JvoWcCDUP7czieo.png and /dev/null differ diff --git a/public/photos/FraD7j98hQ.webp b/public/photos/FraD7j98hQ.webp deleted file mode 100644 index 469745d..0000000 Binary files a/public/photos/FraD7j98hQ.webp and /dev/null differ diff --git a/public/photos/Frcf6v0e5oJSik1zTgxoWfBRteKkjJlu3DNRBda9.png b/public/photos/Frcf6v0e5oJSik1zTgxoWfBRteKkjJlu3DNRBda9.png deleted file mode 100644 index 25beb92..0000000 Binary files a/public/photos/Frcf6v0e5oJSik1zTgxoWfBRteKkjJlu3DNRBda9.png and /dev/null differ diff --git a/public/photos/FrdgJoEBxG.webp b/public/photos/FrdgJoEBxG.webp deleted file mode 100644 index ee76e97..0000000 Binary files a/public/photos/FrdgJoEBxG.webp and /dev/null differ diff --git a/public/photos/FxhmiGzSYg.webp b/public/photos/FxhmiGzSYg.webp deleted file mode 100644 index d6a72bd..0000000 Binary files a/public/photos/FxhmiGzSYg.webp and /dev/null differ diff --git a/public/photos/G6uSMB1n61zGdC3Vrioruxbu59lWqT0NfHPSqhFu.png b/public/photos/G6uSMB1n61zGdC3Vrioruxbu59lWqT0NfHPSqhFu.png deleted file mode 100644 index 6c28b45..0000000 Binary files a/public/photos/G6uSMB1n61zGdC3Vrioruxbu59lWqT0NfHPSqhFu.png and /dev/null differ diff --git a/public/photos/Gb50IveyOLKFroAp9yhT4GTB50MXfKaeD5CYgFln.png b/public/photos/Gb50IveyOLKFroAp9yhT4GTB50MXfKaeD5CYgFln.png deleted file mode 100644 index 0c2773c..0000000 Binary files a/public/photos/Gb50IveyOLKFroAp9yhT4GTB50MXfKaeD5CYgFln.png and /dev/null differ diff --git a/public/photos/GcZ3I9POekw95rm5kb0U3PL69naZ7vm1pUxlO3CF.png b/public/photos/GcZ3I9POekw95rm5kb0U3PL69naZ7vm1pUxlO3CF.png deleted file mode 100644 index 159992d..0000000 Binary files a/public/photos/GcZ3I9POekw95rm5kb0U3PL69naZ7vm1pUxlO3CF.png and /dev/null differ diff --git a/public/photos/GgKWDSHLmd.webp b/public/photos/GgKWDSHLmd.webp deleted file mode 100644 index 3be4eed..0000000 Binary files a/public/photos/GgKWDSHLmd.webp and /dev/null differ diff --git a/public/photos/H34MpIVNNI7qtIRxVjX9VKUe1qyN2OyQGCMUV5Vi.png b/public/photos/H34MpIVNNI7qtIRxVjX9VKUe1qyN2OyQGCMUV5Vi.png deleted file mode 100644 index 1ef3a01..0000000 Binary files a/public/photos/H34MpIVNNI7qtIRxVjX9VKUe1qyN2OyQGCMUV5Vi.png and /dev/null differ diff --git a/public/photos/H3qgzgj0NB.webp b/public/photos/H3qgzgj0NB.webp deleted file mode 100644 index 45af6f5..0000000 Binary files a/public/photos/H3qgzgj0NB.webp and /dev/null differ diff --git a/public/photos/HC3QZFhu4vxlu9PKtotVsantcYRHa4MsXj3nLHdy.png b/public/photos/HC3QZFhu4vxlu9PKtotVsantcYRHa4MsXj3nLHdy.png deleted file mode 100644 index f391503..0000000 Binary files a/public/photos/HC3QZFhu4vxlu9PKtotVsantcYRHa4MsXj3nLHdy.png and /dev/null differ diff --git a/public/photos/HNjc1M3lk4OALzuXFqJaoQDbqtZW0fLVQRtbu6G8.png b/public/photos/HNjc1M3lk4OALzuXFqJaoQDbqtZW0fLVQRtbu6G8.png deleted file mode 100644 index df481f9..0000000 Binary files a/public/photos/HNjc1M3lk4OALzuXFqJaoQDbqtZW0fLVQRtbu6G8.png and /dev/null differ diff --git a/public/photos/HeuiWeSM6X.webp b/public/photos/HeuiWeSM6X.webp deleted file mode 100644 index 9feed9e..0000000 Binary files a/public/photos/HeuiWeSM6X.webp and /dev/null differ diff --git a/public/photos/HfGwlQn1xv.webp b/public/photos/HfGwlQn1xv.webp deleted file mode 100644 index 2e38995..0000000 Binary files a/public/photos/HfGwlQn1xv.webp and /dev/null differ diff --git a/public/photos/Hg5OuW80Z9IpnYfPZIOvcx6V4h3iBJSZNeITGt3s.jpg b/public/photos/Hg5OuW80Z9IpnYfPZIOvcx6V4h3iBJSZNeITGt3s.jpg deleted file mode 100644 index 15e8b94..0000000 Binary files a/public/photos/Hg5OuW80Z9IpnYfPZIOvcx6V4h3iBJSZNeITGt3s.jpg and /dev/null differ diff --git a/public/photos/HlUNhcTOjhniLh45LyBTQAvfxEtZVeUeiDaUUmtf.png b/public/photos/HlUNhcTOjhniLh45LyBTQAvfxEtZVeUeiDaUUmtf.png deleted file mode 100644 index 9d870d5..0000000 Binary files a/public/photos/HlUNhcTOjhniLh45LyBTQAvfxEtZVeUeiDaUUmtf.png and /dev/null differ diff --git a/public/photos/HwavjogVVJC9Ta8PPZ8oP0TmyJW1s8oR90MWwaie.png b/public/photos/HwavjogVVJC9Ta8PPZ8oP0TmyJW1s8oR90MWwaie.png deleted file mode 100644 index 0ccd301..0000000 Binary files a/public/photos/HwavjogVVJC9Ta8PPZ8oP0TmyJW1s8oR90MWwaie.png and /dev/null differ diff --git a/public/photos/I8dPs7D5W5s7QHzVp3mDRlbQX7OnUiSMoqQwN2di.png b/public/photos/I8dPs7D5W5s7QHzVp3mDRlbQX7OnUiSMoqQwN2di.png deleted file mode 100644 index 1dd35eb..0000000 Binary files a/public/photos/I8dPs7D5W5s7QHzVp3mDRlbQX7OnUiSMoqQwN2di.png and /dev/null differ diff --git a/public/photos/I8y14wajBG.webp b/public/photos/I8y14wajBG.webp deleted file mode 100644 index dad693a..0000000 Binary files a/public/photos/I8y14wajBG.webp and /dev/null differ diff --git a/public/photos/ISKfqiZ8O5Z9vmWpxxFjJbRrMNY3QlicwZgrN4pO.png b/public/photos/ISKfqiZ8O5Z9vmWpxxFjJbRrMNY3QlicwZgrN4pO.png deleted file mode 100644 index 9defa10..0000000 Binary files a/public/photos/ISKfqiZ8O5Z9vmWpxxFjJbRrMNY3QlicwZgrN4pO.png and /dev/null differ diff --git a/public/photos/IsD6HM1svwAnW8UKzCqiz4d52TYOmtN0azG2eAb5.png b/public/photos/IsD6HM1svwAnW8UKzCqiz4d52TYOmtN0azG2eAb5.png deleted file mode 100644 index e06cca3..0000000 Binary files a/public/photos/IsD6HM1svwAnW8UKzCqiz4d52TYOmtN0azG2eAb5.png and /dev/null differ diff --git a/public/photos/IsFUYpv2PrrJM2MEDESGPLnQ5vmCze7sbbGRUuQd.jpg b/public/photos/IsFUYpv2PrrJM2MEDESGPLnQ5vmCze7sbbGRUuQd.jpg deleted file mode 100644 index bc20e44..0000000 Binary files a/public/photos/IsFUYpv2PrrJM2MEDESGPLnQ5vmCze7sbbGRUuQd.jpg and /dev/null differ diff --git a/public/photos/Ix8V5YFjI2gMttFLScobY2tzw7P8SYw0CcxmRr9Q.png b/public/photos/Ix8V5YFjI2gMttFLScobY2tzw7P8SYw0CcxmRr9Q.png deleted file mode 100644 index 1308990..0000000 Binary files a/public/photos/Ix8V5YFjI2gMttFLScobY2tzw7P8SYw0CcxmRr9Q.png and /dev/null differ diff --git a/public/photos/IyLGvJxb0M7d2ktzWi8qYWYlyg55wZv16nVNWbdD.png b/public/photos/IyLGvJxb0M7d2ktzWi8qYWYlyg55wZv16nVNWbdD.png deleted file mode 100644 index acd81ef..0000000 Binary files a/public/photos/IyLGvJxb0M7d2ktzWi8qYWYlyg55wZv16nVNWbdD.png and /dev/null differ diff --git a/public/photos/J3qSGn1SwQYyLzdpqiHAHmHCZDqJoIhOva94xfH3.jpg b/public/photos/J3qSGn1SwQYyLzdpqiHAHmHCZDqJoIhOva94xfH3.jpg deleted file mode 100644 index 280f2e6..0000000 Binary files a/public/photos/J3qSGn1SwQYyLzdpqiHAHmHCZDqJoIhOva94xfH3.jpg and /dev/null differ diff --git a/public/photos/JIouymiYHENxHOX3kGcxeGtXZP2t2nhJYXOmEwz6.png b/public/photos/JIouymiYHENxHOX3kGcxeGtXZP2t2nhJYXOmEwz6.png deleted file mode 100644 index 518b6b4..0000000 Binary files a/public/photos/JIouymiYHENxHOX3kGcxeGtXZP2t2nhJYXOmEwz6.png and /dev/null differ diff --git a/public/photos/JLFmzuMTTa.webp b/public/photos/JLFmzuMTTa.webp deleted file mode 100644 index 774a0db..0000000 Binary files a/public/photos/JLFmzuMTTa.webp and /dev/null differ diff --git a/public/photos/JQofUBpfQ6kEynq0ZxYQf8ULCPkIzDetuSPJcw4S.jpg b/public/photos/JQofUBpfQ6kEynq0ZxYQf8ULCPkIzDetuSPJcw4S.jpg deleted file mode 100644 index d4cfeb4..0000000 Binary files a/public/photos/JQofUBpfQ6kEynq0ZxYQf8ULCPkIzDetuSPJcw4S.jpg and /dev/null differ diff --git a/public/photos/JTxPrEvDSbsfq2Asxfnjvj6ovuHqo9BElv9oDeBB.png b/public/photos/JTxPrEvDSbsfq2Asxfnjvj6ovuHqo9BElv9oDeBB.png deleted file mode 100644 index c6f0fb0..0000000 Binary files a/public/photos/JTxPrEvDSbsfq2Asxfnjvj6ovuHqo9BElv9oDeBB.png and /dev/null differ diff --git a/public/photos/JZi5xlYyDR.webp b/public/photos/JZi5xlYyDR.webp deleted file mode 100644 index 67c0454..0000000 Binary files a/public/photos/JZi5xlYyDR.webp and /dev/null differ diff --git a/public/photos/JhK3XnzhvMmmx9bSIFPueEAtnXdkJA8lU9Dn0Hps.png b/public/photos/JhK3XnzhvMmmx9bSIFPueEAtnXdkJA8lU9Dn0Hps.png deleted file mode 100644 index f52707e..0000000 Binary files a/public/photos/JhK3XnzhvMmmx9bSIFPueEAtnXdkJA8lU9Dn0Hps.png and /dev/null differ diff --git a/public/photos/K75TV67VB8fX6PEqDmEzmOqPd4mt8Qqfa7ncYge2.png b/public/photos/K75TV67VB8fX6PEqDmEzmOqPd4mt8Qqfa7ncYge2.png deleted file mode 100644 index 5b58920..0000000 Binary files a/public/photos/K75TV67VB8fX6PEqDmEzmOqPd4mt8Qqfa7ncYge2.png and /dev/null differ diff --git a/public/photos/KAmMCVJy14fF.webp b/public/photos/KAmMCVJy14fF.webp deleted file mode 100644 index 01e42b7..0000000 Binary files a/public/photos/KAmMCVJy14fF.webp and /dev/null differ diff --git a/public/photos/KFHE5HtbimPdYu0mE9BpgebomvOQ6nvC6bY1CkvJ.png b/public/photos/KFHE5HtbimPdYu0mE9BpgebomvOQ6nvC6bY1CkvJ.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/KFHE5HtbimPdYu0mE9BpgebomvOQ6nvC6bY1CkvJ.png and /dev/null differ diff --git a/public/photos/KLJIjZiBK5.webp b/public/photos/KLJIjZiBK5.webp deleted file mode 100644 index 050da11..0000000 Binary files a/public/photos/KLJIjZiBK5.webp and /dev/null differ diff --git a/public/photos/KVEd8remlF.webp b/public/photos/KVEd8remlF.webp deleted file mode 100644 index 9f7aac9..0000000 Binary files a/public/photos/KVEd8remlF.webp and /dev/null differ diff --git a/public/photos/KYjNetCRLb.webp b/public/photos/KYjNetCRLb.webp deleted file mode 100644 index 09d8f33..0000000 Binary files a/public/photos/KYjNetCRLb.webp and /dev/null differ diff --git a/public/photos/Ke31YFtH94em7IYQVbQFsyE6EHCqIQUfL3OdBE7U.png b/public/photos/Ke31YFtH94em7IYQVbQFsyE6EHCqIQUfL3OdBE7U.png deleted file mode 100644 index 84e45ce..0000000 Binary files a/public/photos/Ke31YFtH94em7IYQVbQFsyE6EHCqIQUfL3OdBE7U.png and /dev/null differ diff --git a/public/photos/Kszq2N8MhcvAXp8NRGLD7PiC6kX98s1er9h5UCXf.png b/public/photos/Kszq2N8MhcvAXp8NRGLD7PiC6kX98s1er9h5UCXf.png deleted file mode 100644 index caeae7a..0000000 Binary files a/public/photos/Kszq2N8MhcvAXp8NRGLD7PiC6kX98s1er9h5UCXf.png and /dev/null differ diff --git a/public/photos/L6PuEIikhp.webp b/public/photos/L6PuEIikhp.webp deleted file mode 100644 index 37c1924..0000000 Binary files a/public/photos/L6PuEIikhp.webp and /dev/null differ diff --git a/public/photos/LBBWH2yTgNJIboMxrVZhkCft72956ynLIXT2FH61.png b/public/photos/LBBWH2yTgNJIboMxrVZhkCft72956ynLIXT2FH61.png deleted file mode 100644 index 97856c8..0000000 Binary files a/public/photos/LBBWH2yTgNJIboMxrVZhkCft72956ynLIXT2FH61.png and /dev/null differ diff --git a/public/photos/LHKGHhTKESZClDF8Kx5NUHilPVdcP9B1bIALBo1V.jpg b/public/photos/LHKGHhTKESZClDF8Kx5NUHilPVdcP9B1bIALBo1V.jpg deleted file mode 100644 index d4cfeb4..0000000 Binary files a/public/photos/LHKGHhTKESZClDF8Kx5NUHilPVdcP9B1bIALBo1V.jpg and /dev/null differ diff --git a/public/photos/LafTdvbbwx9OEQbuHxePT8jD7yTEw5ZxfUpG0bi5.png b/public/photos/LafTdvbbwx9OEQbuHxePT8jD7yTEw5ZxfUpG0bi5.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/LafTdvbbwx9OEQbuHxePT8jD7yTEw5ZxfUpG0bi5.png and /dev/null differ diff --git a/public/photos/LdbCe2gAysQBDADtNNpQRgdemxXyRnZbcSoggelt.webp b/public/photos/LdbCe2gAysQBDADtNNpQRgdemxXyRnZbcSoggelt.webp deleted file mode 100644 index 9fa60df..0000000 Binary files a/public/photos/LdbCe2gAysQBDADtNNpQRgdemxXyRnZbcSoggelt.webp and /dev/null differ diff --git a/public/photos/LgSTB06c0x.webp b/public/photos/LgSTB06c0x.webp deleted file mode 100644 index f61e720..0000000 Binary files a/public/photos/LgSTB06c0x.webp and /dev/null differ diff --git a/public/photos/LlNqDlLF1qkia7oVqx4d6lcZyvCMKUr6b316RoCI.png b/public/photos/LlNqDlLF1qkia7oVqx4d6lcZyvCMKUr6b316RoCI.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/LlNqDlLF1qkia7oVqx4d6lcZyvCMKUr6b316RoCI.png and /dev/null differ diff --git a/public/photos/LsZI9toqGB.webp b/public/photos/LsZI9toqGB.webp deleted file mode 100644 index 46e709a..0000000 Binary files a/public/photos/LsZI9toqGB.webp and /dev/null differ diff --git a/public/photos/LwqxcAsUugu0xNHctMYGWqpAwTiV6L6FEk0ISYfA.mp4 b/public/photos/LwqxcAsUugu0xNHctMYGWqpAwTiV6L6FEk0ISYfA.mp4 deleted file mode 100644 index d43e73b..0000000 Binary files a/public/photos/LwqxcAsUugu0xNHctMYGWqpAwTiV6L6FEk0ISYfA.mp4 and /dev/null differ diff --git a/public/photos/M7E879XHBuqF0GaHs9U0q2fzoAElqkNPhshDcCiY.png b/public/photos/M7E879XHBuqF0GaHs9U0q2fzoAElqkNPhshDcCiY.png deleted file mode 100644 index 8f48bf0..0000000 Binary files a/public/photos/M7E879XHBuqF0GaHs9U0q2fzoAElqkNPhshDcCiY.png and /dev/null differ diff --git a/public/photos/ME4cHihfIx0WHSd2qdJbZe6j2QNhyTR0NnJtK9qL.jpg b/public/photos/ME4cHihfIx0WHSd2qdJbZe6j2QNhyTR0NnJtK9qL.jpg deleted file mode 100644 index b3ae5cb..0000000 Binary files a/public/photos/ME4cHihfIx0WHSd2qdJbZe6j2QNhyTR0NnJtK9qL.jpg and /dev/null differ diff --git a/public/photos/MGIxMQi3eZVQ.webp b/public/photos/MGIxMQi3eZVQ.webp deleted file mode 100644 index da742e8..0000000 Binary files a/public/photos/MGIxMQi3eZVQ.webp and /dev/null differ diff --git a/public/photos/MGKjgmlvdL.webp b/public/photos/MGKjgmlvdL.webp deleted file mode 100644 index 46e709a..0000000 Binary files a/public/photos/MGKjgmlvdL.webp and /dev/null differ diff --git a/public/photos/MIDeoYInvQ.webp b/public/photos/MIDeoYInvQ.webp deleted file mode 100644 index ae044c9..0000000 Binary files a/public/photos/MIDeoYInvQ.webp and /dev/null differ diff --git a/public/photos/Mc0CcfuqARKZKT8luR4HqDjzUFFKvXrbKK6UNVtU.png b/public/photos/Mc0CcfuqARKZKT8luR4HqDjzUFFKvXrbKK6UNVtU.png deleted file mode 100644 index 89b25da..0000000 Binary files a/public/photos/Mc0CcfuqARKZKT8luR4HqDjzUFFKvXrbKK6UNVtU.png and /dev/null differ diff --git a/public/photos/MqQkvcWTmP8lecNfnqtw8z6UlpoZRGMp8jwprdHD.png b/public/photos/MqQkvcWTmP8lecNfnqtw8z6UlpoZRGMp8jwprdHD.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/MqQkvcWTmP8lecNfnqtw8z6UlpoZRGMp8jwprdHD.png and /dev/null differ diff --git a/public/photos/Mxm1nk2TuT.webp b/public/photos/Mxm1nk2TuT.webp deleted file mode 100644 index 32cc1ea..0000000 Binary files a/public/photos/Mxm1nk2TuT.webp and /dev/null differ diff --git a/public/photos/N06YiZezAB.webp b/public/photos/N06YiZezAB.webp deleted file mode 100644 index 1421d53..0000000 Binary files a/public/photos/N06YiZezAB.webp and /dev/null differ diff --git a/public/photos/NIq3qQfC8aU6VFfsDiARNC5BbOF9UM4BonPbVV0d.png b/public/photos/NIq3qQfC8aU6VFfsDiARNC5BbOF9UM4BonPbVV0d.png deleted file mode 100644 index be5a390..0000000 Binary files a/public/photos/NIq3qQfC8aU6VFfsDiARNC5BbOF9UM4BonPbVV0d.png and /dev/null differ diff --git a/public/photos/NbBLe9kms5.webp b/public/photos/NbBLe9kms5.webp deleted file mode 100644 index d9be395..0000000 Binary files a/public/photos/NbBLe9kms5.webp and /dev/null differ diff --git a/public/photos/Nc6sWP6UV9.webp b/public/photos/Nc6sWP6UV9.webp deleted file mode 100644 index d580992..0000000 Binary files a/public/photos/Nc6sWP6UV9.webp and /dev/null differ diff --git a/public/photos/NiVKVNYauPrkyHK7KmFTUwleIhZqRuxgOHdmOFBx.jpg b/public/photos/NiVKVNYauPrkyHK7KmFTUwleIhZqRuxgOHdmOFBx.jpg deleted file mode 100644 index ae07dd3..0000000 Binary files a/public/photos/NiVKVNYauPrkyHK7KmFTUwleIhZqRuxgOHdmOFBx.jpg and /dev/null differ diff --git a/public/photos/NpmQSqAWtPMfCvupgxixWNyykcsgxprsah6w7bKm.png b/public/photos/NpmQSqAWtPMfCvupgxixWNyykcsgxprsah6w7bKm.png deleted file mode 100644 index 1dd35eb..0000000 Binary files a/public/photos/NpmQSqAWtPMfCvupgxixWNyykcsgxprsah6w7bKm.png and /dev/null differ diff --git a/public/photos/O1Vdc83SPV.webp b/public/photos/O1Vdc83SPV.webp deleted file mode 100644 index 0d96e19..0000000 Binary files a/public/photos/O1Vdc83SPV.webp and /dev/null differ diff --git a/public/photos/O5iqoT0es1kDrAzUR6RnjA0hqrX7FRlVpOQF6sFa.jpg b/public/photos/O5iqoT0es1kDrAzUR6RnjA0hqrX7FRlVpOQF6sFa.jpg deleted file mode 100644 index d707d2c..0000000 Binary files a/public/photos/O5iqoT0es1kDrAzUR6RnjA0hqrX7FRlVpOQF6sFa.jpg and /dev/null differ diff --git a/public/photos/O6CvvNTj4516NtpSGPG9OSFzWeBONDj2MK1qEhNx.png b/public/photos/O6CvvNTj4516NtpSGPG9OSFzWeBONDj2MK1qEhNx.png deleted file mode 100644 index f391503..0000000 Binary files a/public/photos/O6CvvNTj4516NtpSGPG9OSFzWeBONDj2MK1qEhNx.png and /dev/null differ diff --git a/public/photos/OEKPJSSyYlA9XaN1G4pH3QPHTOHxy6llOSXJc40I.png b/public/photos/OEKPJSSyYlA9XaN1G4pH3QPHTOHxy6llOSXJc40I.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/OEKPJSSyYlA9XaN1G4pH3QPHTOHxy6llOSXJc40I.png and /dev/null differ diff --git a/public/photos/OG2bWs4DjG.webp b/public/photos/OG2bWs4DjG.webp deleted file mode 100644 index e4df666..0000000 Binary files a/public/photos/OG2bWs4DjG.webp and /dev/null differ diff --git a/public/photos/OPsltoXurb.webp b/public/photos/OPsltoXurb.webp deleted file mode 100644 index e216e31..0000000 Binary files a/public/photos/OPsltoXurb.webp and /dev/null differ diff --git a/public/photos/OiNv3Xmmj0Q5SAIghYtugxan0O6n78UWp3O3YhBP.png b/public/photos/OiNv3Xmmj0Q5SAIghYtugxan0O6n78UWp3O3YhBP.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/OiNv3Xmmj0Q5SAIghYtugxan0O6n78UWp3O3YhBP.png and /dev/null differ diff --git a/public/photos/PGpq4lU6o4.webp b/public/photos/PGpq4lU6o4.webp deleted file mode 100644 index 13ed093..0000000 Binary files a/public/photos/PGpq4lU6o4.webp and /dev/null differ diff --git a/public/photos/PO8jW4932qF0n8DGnBT33IiUo9s6dbRZXRnizLGm.png b/public/photos/PO8jW4932qF0n8DGnBT33IiUo9s6dbRZXRnizLGm.png deleted file mode 100644 index 5b3304c..0000000 Binary files a/public/photos/PO8jW4932qF0n8DGnBT33IiUo9s6dbRZXRnizLGm.png and /dev/null differ diff --git a/public/photos/PqbHjl73m1.webp b/public/photos/PqbHjl73m1.webp deleted file mode 100644 index 81f9deb..0000000 Binary files a/public/photos/PqbHjl73m1.webp and /dev/null differ diff --git a/public/photos/Ptyw3J4kApavBkB1jFchuxJiKhk0CTBAUx0aNPYj.png b/public/photos/Ptyw3J4kApavBkB1jFchuxJiKhk0CTBAUx0aNPYj.png deleted file mode 100644 index 4ea6aa7..0000000 Binary files a/public/photos/Ptyw3J4kApavBkB1jFchuxJiKhk0CTBAUx0aNPYj.png and /dev/null differ diff --git a/public/photos/PvXmdtl6WBqSiM4fUxdwr61LYjHXNy9ZFyFNS4My.png b/public/photos/PvXmdtl6WBqSiM4fUxdwr61LYjHXNy9ZFyFNS4My.png deleted file mode 100644 index 05be71e..0000000 Binary files a/public/photos/PvXmdtl6WBqSiM4fUxdwr61LYjHXNy9ZFyFNS4My.png and /dev/null differ diff --git a/public/photos/PvqTFPnXR22JNZTvFPb9LZuTewMZIXW5lW3kyLwN.png b/public/photos/PvqTFPnXR22JNZTvFPb9LZuTewMZIXW5lW3kyLwN.png deleted file mode 100644 index 427af29..0000000 Binary files a/public/photos/PvqTFPnXR22JNZTvFPb9LZuTewMZIXW5lW3kyLwN.png and /dev/null differ diff --git a/public/photos/PxgA4rsS4E.webp b/public/photos/PxgA4rsS4E.webp deleted file mode 100644 index d35fa06..0000000 Binary files a/public/photos/PxgA4rsS4E.webp and /dev/null differ diff --git a/public/photos/PzU7HEZNQj.webp b/public/photos/PzU7HEZNQj.webp deleted file mode 100644 index fa3a1c5..0000000 Binary files a/public/photos/PzU7HEZNQj.webp and /dev/null differ diff --git a/public/photos/Q4bTPlUcpT.webp b/public/photos/Q4bTPlUcpT.webp deleted file mode 100644 index 9acda6d..0000000 Binary files a/public/photos/Q4bTPlUcpT.webp and /dev/null differ diff --git a/public/photos/QY0ZcPHsi5Nra8moTjFV2rw9zpxzZbQw8QqqTkaP.png b/public/photos/QY0ZcPHsi5Nra8moTjFV2rw9zpxzZbQw8QqqTkaP.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/QY0ZcPHsi5Nra8moTjFV2rw9zpxzZbQw8QqqTkaP.png and /dev/null differ diff --git a/public/photos/Qb8DSh40ZnPeZaWSsXwfAjhLuDSHUYuILeBVW3br.png b/public/photos/Qb8DSh40ZnPeZaWSsXwfAjhLuDSHUYuILeBVW3br.png deleted file mode 100644 index ed21a3a..0000000 Binary files a/public/photos/Qb8DSh40ZnPeZaWSsXwfAjhLuDSHUYuILeBVW3br.png and /dev/null differ diff --git a/public/photos/QhhtxUhVge.webp b/public/photos/QhhtxUhVge.webp deleted file mode 100644 index 50b8a4b..0000000 Binary files a/public/photos/QhhtxUhVge.webp and /dev/null differ diff --git a/public/photos/QlCBA7hypNi6uU6SWBWX93HcWlfGrd5WdBjpUG13.png b/public/photos/QlCBA7hypNi6uU6SWBWX93HcWlfGrd5WdBjpUG13.png deleted file mode 100644 index e97614e..0000000 Binary files a/public/photos/QlCBA7hypNi6uU6SWBWX93HcWlfGrd5WdBjpUG13.png and /dev/null differ diff --git a/public/photos/Qo4yreeXOX.webp b/public/photos/Qo4yreeXOX.webp deleted file mode 100644 index 92abd37..0000000 Binary files a/public/photos/Qo4yreeXOX.webp and /dev/null differ diff --git a/public/photos/QyMuOGf8Lq27x0On2Efbr4dGcD5P6hJoWHfoCp1K.png b/public/photos/QyMuOGf8Lq27x0On2Efbr4dGcD5P6hJoWHfoCp1K.png deleted file mode 100644 index 427af29..0000000 Binary files a/public/photos/QyMuOGf8Lq27x0On2Efbr4dGcD5P6hJoWHfoCp1K.png and /dev/null differ diff --git a/public/photos/R4veldxlNLmfBCYkrF0qfykHBzKahULSOi6cEJo3.jpg b/public/photos/R4veldxlNLmfBCYkrF0qfykHBzKahULSOi6cEJo3.jpg deleted file mode 100644 index 078c988..0000000 Binary files a/public/photos/R4veldxlNLmfBCYkrF0qfykHBzKahULSOi6cEJo3.jpg and /dev/null differ diff --git a/public/photos/RAfIxNncJ2Aif06eIRGKas1ImYPx6ZTosEdrQhCm.png b/public/photos/RAfIxNncJ2Aif06eIRGKas1ImYPx6ZTosEdrQhCm.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/RAfIxNncJ2Aif06eIRGKas1ImYPx6ZTosEdrQhCm.png and /dev/null differ diff --git a/public/photos/RIu5ql9pkA.webp b/public/photos/RIu5ql9pkA.webp deleted file mode 100644 index 3675667..0000000 Binary files a/public/photos/RIu5ql9pkA.webp and /dev/null differ diff --git a/public/photos/RNDgjmZj2AVfKKQSCIV8b6fVPE7cLtQvCZRarlW5.png b/public/photos/RNDgjmZj2AVfKKQSCIV8b6fVPE7cLtQvCZRarlW5.png deleted file mode 100644 index 6fe4596..0000000 Binary files a/public/photos/RNDgjmZj2AVfKKQSCIV8b6fVPE7cLtQvCZRarlW5.png and /dev/null differ diff --git a/public/photos/RNiHv2rBdAgM2FYZ85BOamTV3K0I2SFWAAnWRCdY.jpg b/public/photos/RNiHv2rBdAgM2FYZ85BOamTV3K0I2SFWAAnWRCdY.jpg deleted file mode 100644 index 21e2a9c..0000000 Binary files a/public/photos/RNiHv2rBdAgM2FYZ85BOamTV3K0I2SFWAAnWRCdY.jpg and /dev/null differ diff --git a/public/photos/RV0Na3S7tRcy7zF0lnGd0RPKKFGQvQmytxjVhMwG.jpg b/public/photos/RV0Na3S7tRcy7zF0lnGd0RPKKFGQvQmytxjVhMwG.jpg deleted file mode 100644 index ecdc689..0000000 Binary files a/public/photos/RV0Na3S7tRcy7zF0lnGd0RPKKFGQvQmytxjVhMwG.jpg and /dev/null differ diff --git a/public/photos/RfO04ZiDS2vHGDnFhm24WwiaOvdvfRpa8r4s4tfx.png b/public/photos/RfO04ZiDS2vHGDnFhm24WwiaOvdvfRpa8r4s4tfx.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/RfO04ZiDS2vHGDnFhm24WwiaOvdvfRpa8r4s4tfx.png and /dev/null differ diff --git a/public/photos/RfPwhSAEIFvpnpcAdFfJ9FhzSsHu4Zh0HZypmJJW.png b/public/photos/RfPwhSAEIFvpnpcAdFfJ9FhzSsHu4Zh0HZypmJJW.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/RfPwhSAEIFvpnpcAdFfJ9FhzSsHu4Zh0HZypmJJW.png and /dev/null differ diff --git a/public/photos/RsYgvQuL9E1ExvFPOXlJdVizIP73qusezktCjzAf.jpg b/public/photos/RsYgvQuL9E1ExvFPOXlJdVizIP73qusezktCjzAf.jpg deleted file mode 100644 index f9a563d..0000000 Binary files a/public/photos/RsYgvQuL9E1ExvFPOXlJdVizIP73qusezktCjzAf.jpg and /dev/null differ diff --git a/public/photos/S1udvkaG8I.webp b/public/photos/S1udvkaG8I.webp deleted file mode 100644 index 0d7ec10..0000000 Binary files a/public/photos/S1udvkaG8I.webp and /dev/null differ diff --git a/public/photos/S3HRCt4jqNAGqLl5ro8tbmZFRIMyppmDhJXDIS20.png b/public/photos/S3HRCt4jqNAGqLl5ro8tbmZFRIMyppmDhJXDIS20.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/S3HRCt4jqNAGqLl5ro8tbmZFRIMyppmDhJXDIS20.png and /dev/null differ diff --git a/public/photos/S3h5UfKKlmEmcIGYfxxquEPOvCBLBf9aGKpQ0oHE.png b/public/photos/S3h5UfKKlmEmcIGYfxxquEPOvCBLBf9aGKpQ0oHE.png deleted file mode 100644 index f996ed5..0000000 Binary files a/public/photos/S3h5UfKKlmEmcIGYfxxquEPOvCBLBf9aGKpQ0oHE.png and /dev/null differ diff --git a/public/photos/S7AJW6bj3v.webp b/public/photos/S7AJW6bj3v.webp deleted file mode 100644 index ab44c20..0000000 Binary files a/public/photos/S7AJW6bj3v.webp and /dev/null differ diff --git a/public/photos/SFC4mv7hI4.webp b/public/photos/SFC4mv7hI4.webp deleted file mode 100644 index fb3f28e..0000000 Binary files a/public/photos/SFC4mv7hI4.webp and /dev/null differ diff --git a/public/photos/SIRwtTf8mtBTs5jiEjeVMMCEFUjE3ClVl563KulN.png b/public/photos/SIRwtTf8mtBTs5jiEjeVMMCEFUjE3ClVl563KulN.png deleted file mode 100644 index c186daa..0000000 Binary files a/public/photos/SIRwtTf8mtBTs5jiEjeVMMCEFUjE3ClVl563KulN.png and /dev/null differ diff --git a/public/photos/SQcIcnCKrX.webp b/public/photos/SQcIcnCKrX.webp deleted file mode 100644 index 066c405..0000000 Binary files a/public/photos/SQcIcnCKrX.webp and /dev/null differ diff --git a/public/photos/SQk563pAjynaLeLe8yE8XoEDdDcR4y9R5cAieMGc.png b/public/photos/SQk563pAjynaLeLe8yE8XoEDdDcR4y9R5cAieMGc.png deleted file mode 100644 index 389cabe..0000000 Binary files a/public/photos/SQk563pAjynaLeLe8yE8XoEDdDcR4y9R5cAieMGc.png and /dev/null differ diff --git a/public/photos/SR1A53fJ9YuRo7KQ5XRsHVYapFZXlvBhTsxMJqNg.png b/public/photos/SR1A53fJ9YuRo7KQ5XRsHVYapFZXlvBhTsxMJqNg.png deleted file mode 100644 index d4bfb19..0000000 Binary files a/public/photos/SR1A53fJ9YuRo7KQ5XRsHVYapFZXlvBhTsxMJqNg.png and /dev/null differ diff --git a/public/photos/SRaDZe8F9b.webp b/public/photos/SRaDZe8F9b.webp deleted file mode 100644 index d205165..0000000 Binary files a/public/photos/SRaDZe8F9b.webp and /dev/null differ diff --git a/public/photos/SbbvuZwUp3.webp b/public/photos/SbbvuZwUp3.webp deleted file mode 100644 index 50b8a4b..0000000 Binary files a/public/photos/SbbvuZwUp3.webp and /dev/null differ diff --git a/public/photos/Se6Nn4NA7C.webp b/public/photos/Se6Nn4NA7C.webp deleted file mode 100644 index 13dab85..0000000 Binary files a/public/photos/Se6Nn4NA7C.webp and /dev/null differ diff --git a/public/photos/ShOInzzKWz.webp b/public/photos/ShOInzzKWz.webp deleted file mode 100644 index 2f665ed..0000000 Binary files a/public/photos/ShOInzzKWz.webp and /dev/null differ diff --git a/public/photos/Ss8a8Rm5B4.webp b/public/photos/Ss8a8Rm5B4.webp deleted file mode 100644 index 966cafd..0000000 Binary files a/public/photos/Ss8a8Rm5B4.webp and /dev/null differ diff --git a/public/photos/T1T5Q0AMzR.webp b/public/photos/T1T5Q0AMzR.webp deleted file mode 100644 index 34567bd..0000000 Binary files a/public/photos/T1T5Q0AMzR.webp and /dev/null differ diff --git a/public/photos/T47MpK7b09LB7WH4TH14PgGsksdny33tNpiUsQ3H.jpg b/public/photos/T47MpK7b09LB7WH4TH14PgGsksdny33tNpiUsQ3H.jpg deleted file mode 100644 index 7dc6f98..0000000 Binary files a/public/photos/T47MpK7b09LB7WH4TH14PgGsksdny33tNpiUsQ3H.jpg and /dev/null differ diff --git a/public/photos/T8knuwNZjc7fwAr9GwikEBHJLJSx9XhGZAihmQCh.png b/public/photos/T8knuwNZjc7fwAr9GwikEBHJLJSx9XhGZAihmQCh.png deleted file mode 100644 index 1258d06..0000000 Binary files a/public/photos/T8knuwNZjc7fwAr9GwikEBHJLJSx9XhGZAihmQCh.png and /dev/null differ diff --git a/public/photos/TIETYyMdnJZeGU0rhEssvPds2goHPt1YkeF5czaQ.png b/public/photos/TIETYyMdnJZeGU0rhEssvPds2goHPt1YkeF5czaQ.png deleted file mode 100644 index 37ab746..0000000 Binary files a/public/photos/TIETYyMdnJZeGU0rhEssvPds2goHPt1YkeF5czaQ.png and /dev/null differ diff --git a/public/photos/TIFMbe4d34.webp b/public/photos/TIFMbe4d34.webp deleted file mode 100644 index a0422cb..0000000 Binary files a/public/photos/TIFMbe4d34.webp and /dev/null differ diff --git a/public/photos/TQ9CNzGhgfeFXGC5pIpnINFuV5fA9Jhwa4SPgM1u.png b/public/photos/TQ9CNzGhgfeFXGC5pIpnINFuV5fA9Jhwa4SPgM1u.png deleted file mode 100644 index 21b589e..0000000 Binary files a/public/photos/TQ9CNzGhgfeFXGC5pIpnINFuV5fA9Jhwa4SPgM1u.png and /dev/null differ diff --git a/public/photos/TlTtb5Dk0dLLHNlyGu9P4XYilwz3ksGIsYFZuaCK.png b/public/photos/TlTtb5Dk0dLLHNlyGu9P4XYilwz3ksGIsYFZuaCK.png deleted file mode 100644 index 927699d..0000000 Binary files a/public/photos/TlTtb5Dk0dLLHNlyGu9P4XYilwz3ksGIsYFZuaCK.png and /dev/null differ diff --git a/public/photos/TmqP8T8SC9wnLlQWIYRwo9BOTVLPotjhryOJ5Qa6.jpg b/public/photos/TmqP8T8SC9wnLlQWIYRwo9BOTVLPotjhryOJ5Qa6.jpg deleted file mode 100644 index 5f6c8d8..0000000 Binary files a/public/photos/TmqP8T8SC9wnLlQWIYRwo9BOTVLPotjhryOJ5Qa6.jpg and /dev/null differ diff --git a/public/photos/Tw89hOL8Nf.webp b/public/photos/Tw89hOL8Nf.webp deleted file mode 100644 index 13dc189..0000000 Binary files a/public/photos/Tw89hOL8Nf.webp and /dev/null differ diff --git a/public/photos/TxXR8v4QNX.webp b/public/photos/TxXR8v4QNX.webp deleted file mode 100644 index d8f4c72..0000000 Binary files a/public/photos/TxXR8v4QNX.webp and /dev/null differ diff --git a/public/photos/U1i4xRxfhHMx66LtJdw1rAoVJe9tZ8sqXDwrHUdi.png b/public/photos/U1i4xRxfhHMx66LtJdw1rAoVJe9tZ8sqXDwrHUdi.png deleted file mode 100644 index 0a78d62..0000000 Binary files a/public/photos/U1i4xRxfhHMx66LtJdw1rAoVJe9tZ8sqXDwrHUdi.png and /dev/null differ diff --git a/public/photos/UBdwGLtbWz3lUBHMXgMkX9Vz4mFFCNvjnr2uDXox.png b/public/photos/UBdwGLtbWz3lUBHMXgMkX9Vz4mFFCNvjnr2uDXox.png deleted file mode 100644 index d5a2d9c..0000000 Binary files a/public/photos/UBdwGLtbWz3lUBHMXgMkX9Vz4mFFCNvjnr2uDXox.png and /dev/null differ diff --git a/public/photos/UFJ4dz8oJgyMr1DfA5mYR99v9Y6G2FsiSwiUqOq8.jpg b/public/photos/UFJ4dz8oJgyMr1DfA5mYR99v9Y6G2FsiSwiUqOq8.jpg deleted file mode 100644 index 2a051dd..0000000 Binary files a/public/photos/UFJ4dz8oJgyMr1DfA5mYR99v9Y6G2FsiSwiUqOq8.jpg and /dev/null differ diff --git a/public/photos/UGaTUEp9Ww5Y6hns1A6Cu3gVzBtTIsj2ryMvauFP.png b/public/photos/UGaTUEp9Ww5Y6hns1A6Cu3gVzBtTIsj2ryMvauFP.png deleted file mode 100644 index aa7af3d..0000000 Binary files a/public/photos/UGaTUEp9Ww5Y6hns1A6Cu3gVzBtTIsj2ryMvauFP.png and /dev/null differ diff --git a/public/photos/UZ1aBw7dE8VSLA3EnuJC5V5sSLfnZU5LHcJwdw2I.png b/public/photos/UZ1aBw7dE8VSLA3EnuJC5V5sSLfnZU5LHcJwdw2I.png deleted file mode 100644 index 7156dc1..0000000 Binary files a/public/photos/UZ1aBw7dE8VSLA3EnuJC5V5sSLfnZU5LHcJwdw2I.png and /dev/null differ diff --git a/public/photos/Ue1713Y890.webp b/public/photos/Ue1713Y890.webp deleted file mode 100644 index d0e26c4..0000000 Binary files a/public/photos/Ue1713Y890.webp and /dev/null differ diff --git a/public/photos/UtaPqpIRE461lue19iTTB9xJeR8cKxBUm5kXWHfz.png b/public/photos/UtaPqpIRE461lue19iTTB9xJeR8cKxBUm5kXWHfz.png deleted file mode 100644 index e5d407d..0000000 Binary files a/public/photos/UtaPqpIRE461lue19iTTB9xJeR8cKxBUm5kXWHfz.png and /dev/null differ diff --git a/public/photos/UxMj6mCbAV.webp b/public/photos/UxMj6mCbAV.webp deleted file mode 100644 index b6bcdd1..0000000 Binary files a/public/photos/UxMj6mCbAV.webp and /dev/null differ diff --git a/public/photos/V1a1kQhE2tWhw6BRGzLVZa3SJtgUuJKvYHvwqTmc.png b/public/photos/V1a1kQhE2tWhw6BRGzLVZa3SJtgUuJKvYHvwqTmc.png deleted file mode 100644 index 76adc92..0000000 Binary files a/public/photos/V1a1kQhE2tWhw6BRGzLVZa3SJtgUuJKvYHvwqTmc.png and /dev/null differ diff --git a/public/photos/VRxozA3RFBaHkix1xk4Fd3Wb5NaHL69JYCZneBXS.png b/public/photos/VRxozA3RFBaHkix1xk4Fd3Wb5NaHL69JYCZneBXS.png deleted file mode 100644 index 2d14073..0000000 Binary files a/public/photos/VRxozA3RFBaHkix1xk4Fd3Wb5NaHL69JYCZneBXS.png and /dev/null differ diff --git a/public/photos/VcPeNY5eeb.webp b/public/photos/VcPeNY5eeb.webp deleted file mode 100644 index d0098a1..0000000 Binary files a/public/photos/VcPeNY5eeb.webp and /dev/null differ diff --git a/public/photos/VmFpUt6t5l.webp b/public/photos/VmFpUt6t5l.webp deleted file mode 100644 index 4653200..0000000 Binary files a/public/photos/VmFpUt6t5l.webp and /dev/null differ diff --git a/public/photos/Vt2kZ4C6Ejl5fxGpLZ35xnaDLzfgoH1XRaFZd0Gu.jpg b/public/photos/Vt2kZ4C6Ejl5fxGpLZ35xnaDLzfgoH1XRaFZd0Gu.jpg deleted file mode 100644 index 869d0d4..0000000 Binary files a/public/photos/Vt2kZ4C6Ejl5fxGpLZ35xnaDLzfgoH1XRaFZd0Gu.jpg and /dev/null differ diff --git a/public/photos/WIql12n04smT0X1R2xP2lwBXdlK9Lcdh4W0T4Utb.png b/public/photos/WIql12n04smT0X1R2xP2lwBXdlK9Lcdh4W0T4Utb.png deleted file mode 100644 index 63c2414..0000000 Binary files a/public/photos/WIql12n04smT0X1R2xP2lwBXdlK9Lcdh4W0T4Utb.png and /dev/null differ diff --git a/public/photos/Wtl6yU0yFo.webp b/public/photos/Wtl6yU0yFo.webp deleted file mode 100644 index 19ab3ac..0000000 Binary files a/public/photos/Wtl6yU0yFo.webp and /dev/null differ diff --git a/public/photos/X8pGgcvMR08mqo8BXP86ArCk3zlvumbjftexxUWZ.png b/public/photos/X8pGgcvMR08mqo8BXP86ArCk3zlvumbjftexxUWZ.png deleted file mode 100644 index 613cc23..0000000 Binary files a/public/photos/X8pGgcvMR08mqo8BXP86ArCk3zlvumbjftexxUWZ.png and /dev/null differ diff --git a/public/photos/XEIcy6DjSTRNZXOsI8g1aIX1vbOLiT153CjTsThp.png b/public/photos/XEIcy6DjSTRNZXOsI8g1aIX1vbOLiT153CjTsThp.png deleted file mode 100644 index fc568cf..0000000 Binary files a/public/photos/XEIcy6DjSTRNZXOsI8g1aIX1vbOLiT153CjTsThp.png and /dev/null differ diff --git a/public/photos/XV6VczZSOAYKjz5QUlPI0HLCc3xdyo8yaNP1aANY.png b/public/photos/XV6VczZSOAYKjz5QUlPI0HLCc3xdyo8yaNP1aANY.png deleted file mode 100644 index aa7af3d..0000000 Binary files a/public/photos/XV6VczZSOAYKjz5QUlPI0HLCc3xdyo8yaNP1aANY.png and /dev/null differ diff --git a/public/photos/XX1rikkAiL.webp b/public/photos/XX1rikkAiL.webp deleted file mode 100644 index e2ee263..0000000 Binary files a/public/photos/XX1rikkAiL.webp and /dev/null differ diff --git a/public/photos/XXY9j0v3aJRsF5zYPCh7KgejkdOk37ppeSa4kzAQ.png b/public/photos/XXY9j0v3aJRsF5zYPCh7KgejkdOk37ppeSa4kzAQ.png deleted file mode 100644 index af4e8d5..0000000 Binary files a/public/photos/XXY9j0v3aJRsF5zYPCh7KgejkdOk37ppeSa4kzAQ.png and /dev/null differ diff --git a/public/photos/XkZpeUK4zD.webp b/public/photos/XkZpeUK4zD.webp deleted file mode 100644 index 56b54de..0000000 Binary files a/public/photos/XkZpeUK4zD.webp and /dev/null differ diff --git a/public/photos/XstHRWT0RqzCfPENPOpTDybwKHunM9R7PNvgscNq.png b/public/photos/XstHRWT0RqzCfPENPOpTDybwKHunM9R7PNvgscNq.png deleted file mode 100644 index ac66ffd..0000000 Binary files a/public/photos/XstHRWT0RqzCfPENPOpTDybwKHunM9R7PNvgscNq.png and /dev/null differ diff --git a/public/photos/XxA0RbjGZhoV0tMBMOcaq4p8Zb8jvnWMod9490sO.png b/public/photos/XxA0RbjGZhoV0tMBMOcaq4p8Zb8jvnWMod9490sO.png deleted file mode 100644 index e5596a7..0000000 Binary files a/public/photos/XxA0RbjGZhoV0tMBMOcaq4p8Zb8jvnWMod9490sO.png and /dev/null differ diff --git a/public/photos/Y7rBcQzwpq.webp b/public/photos/Y7rBcQzwpq.webp deleted file mode 100644 index 6670991..0000000 Binary files a/public/photos/Y7rBcQzwpq.webp and /dev/null differ diff --git a/public/photos/YAsNTun6lFsLLMfZCtmM1q1PIfIyuCMvv4Rmdm8B.png b/public/photos/YAsNTun6lFsLLMfZCtmM1q1PIfIyuCMvv4Rmdm8B.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/YAsNTun6lFsLLMfZCtmM1q1PIfIyuCMvv4Rmdm8B.png and /dev/null differ diff --git a/public/photos/YMvvllq8IM.webp b/public/photos/YMvvllq8IM.webp deleted file mode 100644 index 2141dd6..0000000 Binary files a/public/photos/YMvvllq8IM.webp and /dev/null differ diff --git a/public/photos/YZseBATr2U.webp b/public/photos/YZseBATr2U.webp deleted file mode 100644 index 876dd2f..0000000 Binary files a/public/photos/YZseBATr2U.webp and /dev/null differ diff --git a/public/photos/YnA2OwOI1ys1TFJJCQa6hoVzn1RcfmJKGbPGeMdc.png b/public/photos/YnA2OwOI1ys1TFJJCQa6hoVzn1RcfmJKGbPGeMdc.png deleted file mode 100644 index ba2722d..0000000 Binary files a/public/photos/YnA2OwOI1ys1TFJJCQa6hoVzn1RcfmJKGbPGeMdc.png and /dev/null differ diff --git a/public/photos/ZNieqp5AwHfeJO3pLsYsNI4PZoUkZgbkXsLznQFp.jpg b/public/photos/ZNieqp5AwHfeJO3pLsYsNI4PZoUkZgbkXsLznQFp.jpg deleted file mode 100644 index c537638..0000000 Binary files a/public/photos/ZNieqp5AwHfeJO3pLsYsNI4PZoUkZgbkXsLznQFp.jpg and /dev/null differ diff --git a/public/photos/ZR2i5rV3Yq.webp b/public/photos/ZR2i5rV3Yq.webp deleted file mode 100644 index 057c1e1..0000000 Binary files a/public/photos/ZR2i5rV3Yq.webp and /dev/null differ diff --git a/public/photos/ZTwTQgLOEP2RrwX0bN6pMW72mtdOI5aRWKNql6hI.png b/public/photos/ZTwTQgLOEP2RrwX0bN6pMW72mtdOI5aRWKNql6hI.png deleted file mode 100644 index 231ccd0..0000000 Binary files a/public/photos/ZTwTQgLOEP2RrwX0bN6pMW72mtdOI5aRWKNql6hI.png and /dev/null differ diff --git a/public/photos/ZrSQ0rjN7w6rsjRUSXKsTPkGorZBh2ZhIepR0B3E.png b/public/photos/ZrSQ0rjN7w6rsjRUSXKsTPkGorZBh2ZhIepR0B3E.png deleted file mode 100644 index a7f574d..0000000 Binary files a/public/photos/ZrSQ0rjN7w6rsjRUSXKsTPkGorZBh2ZhIepR0B3E.png and /dev/null differ diff --git a/public/photos/Zzkj1wUP68.webp b/public/photos/Zzkj1wUP68.webp deleted file mode 100644 index 6041703..0000000 Binary files a/public/photos/Zzkj1wUP68.webp and /dev/null differ diff --git a/public/photos/a2Y4UZRfyICNjpw8kM3wXion4rMScfVU5PEuUXcw.jpg b/public/photos/a2Y4UZRfyICNjpw8kM3wXion4rMScfVU5PEuUXcw.jpg deleted file mode 100644 index f9a563d..0000000 Binary files a/public/photos/a2Y4UZRfyICNjpw8kM3wXion4rMScfVU5PEuUXcw.jpg and /dev/null differ diff --git a/public/photos/a7B6y1RjhI.webp b/public/photos/a7B6y1RjhI.webp deleted file mode 100644 index ce9012f..0000000 Binary files a/public/photos/a7B6y1RjhI.webp and /dev/null differ diff --git a/public/photos/a8NKrMHHAr79tLo6FbvEKEv2fFTmQssYIODw4Ps5.jpg b/public/photos/a8NKrMHHAr79tLo6FbvEKEv2fFTmQssYIODw4Ps5.jpg deleted file mode 100644 index f9a563d..0000000 Binary files a/public/photos/a8NKrMHHAr79tLo6FbvEKEv2fFTmQssYIODw4Ps5.jpg and /dev/null differ diff --git a/public/photos/a8xFOP1nUU0r3VEdG8KQdhA2fuo0aQhPNSbkNVNm.png b/public/photos/a8xFOP1nUU0r3VEdG8KQdhA2fuo0aQhPNSbkNVNm.png deleted file mode 100644 index dd9123e..0000000 Binary files a/public/photos/a8xFOP1nUU0r3VEdG8KQdhA2fuo0aQhPNSbkNVNm.png and /dev/null differ diff --git a/public/photos/aOoVoPzq1O.webp b/public/photos/aOoVoPzq1O.webp deleted file mode 100644 index a66e70b..0000000 Binary files a/public/photos/aOoVoPzq1O.webp and /dev/null differ diff --git a/public/photos/bLzQquPh15.webp b/public/photos/bLzQquPh15.webp deleted file mode 100644 index 513af78..0000000 Binary files a/public/photos/bLzQquPh15.webp and /dev/null differ diff --git a/public/photos/bNpe8OjAjY.webp b/public/photos/bNpe8OjAjY.webp deleted file mode 100644 index e216e31..0000000 Binary files a/public/photos/bNpe8OjAjY.webp and /dev/null differ diff --git a/public/photos/bVdjVXS7Ek.webp b/public/photos/bVdjVXS7Ek.webp deleted file mode 100644 index fa4585d..0000000 Binary files a/public/photos/bVdjVXS7Ek.webp and /dev/null differ diff --git a/public/photos/bYl4ck3SedaHiMC7FEqO0PYS716cgOLwbPDfxhYy.png b/public/photos/bYl4ck3SedaHiMC7FEqO0PYS716cgOLwbPDfxhYy.png deleted file mode 100644 index c07167c..0000000 Binary files a/public/photos/bYl4ck3SedaHiMC7FEqO0PYS716cgOLwbPDfxhYy.png and /dev/null differ diff --git a/public/photos/bim0lIktFc.webp b/public/photos/bim0lIktFc.webp deleted file mode 100644 index b418ad0..0000000 Binary files a/public/photos/bim0lIktFc.webp and /dev/null differ diff --git a/public/photos/blBX9eRTB0.webp b/public/photos/blBX9eRTB0.webp deleted file mode 100644 index 10dfe2d..0000000 Binary files a/public/photos/blBX9eRTB0.webp and /dev/null differ diff --git a/public/photos/brC7EDWUFYzxdtwbcbCloT6qYkJRhjEGkdIxZn9l.png b/public/photos/brC7EDWUFYzxdtwbcbCloT6qYkJRhjEGkdIxZn9l.png deleted file mode 100644 index 7d432a5..0000000 Binary files a/public/photos/brC7EDWUFYzxdtwbcbCloT6qYkJRhjEGkdIxZn9l.png and /dev/null differ diff --git a/public/photos/c6pQBdrGmDKu9nx47woMbwRQ6zFrZ9ur8HGPouqR.png b/public/photos/c6pQBdrGmDKu9nx47woMbwRQ6zFrZ9ur8HGPouqR.png deleted file mode 100644 index 1dd35eb..0000000 Binary files a/public/photos/c6pQBdrGmDKu9nx47woMbwRQ6zFrZ9ur8HGPouqR.png and /dev/null differ diff --git a/public/photos/cF88G5hOV31DzWdnShBXiUDvPF6FtBjFsS045Fff.jpg b/public/photos/cF88G5hOV31DzWdnShBXiUDvPF6FtBjFsS045Fff.jpg deleted file mode 100644 index b5cf2d6..0000000 Binary files a/public/photos/cF88G5hOV31DzWdnShBXiUDvPF6FtBjFsS045Fff.jpg and /dev/null differ diff --git a/public/photos/cSwZBdaXLEkHu8LVeMyDB1TU3TaQWQ7eBHZRa6J9.jpg b/public/photos/cSwZBdaXLEkHu8LVeMyDB1TU3TaQWQ7eBHZRa6J9.jpg deleted file mode 100644 index d707d2c..0000000 Binary files a/public/photos/cSwZBdaXLEkHu8LVeMyDB1TU3TaQWQ7eBHZRa6J9.jpg and /dev/null differ diff --git a/public/photos/ccBZSMJQ4DUE5aXBTjx6iDOITqpeRI6lgdbOGwCO.jpg b/public/photos/ccBZSMJQ4DUE5aXBTjx6iDOITqpeRI6lgdbOGwCO.jpg deleted file mode 100644 index 5f81105..0000000 Binary files a/public/photos/ccBZSMJQ4DUE5aXBTjx6iDOITqpeRI6lgdbOGwCO.jpg and /dev/null differ diff --git a/public/photos/ccGTwv4RYQPHegT4kIljp521Ec2FJmaxITkEjXxJ.png b/public/photos/ccGTwv4RYQPHegT4kIljp521Ec2FJmaxITkEjXxJ.png deleted file mode 100644 index 747c822..0000000 Binary files a/public/photos/ccGTwv4RYQPHegT4kIljp521Ec2FJmaxITkEjXxJ.png and /dev/null differ diff --git a/public/photos/cgBU4TwYGV.webp b/public/photos/cgBU4TwYGV.webp deleted file mode 100644 index 13f91cf..0000000 Binary files a/public/photos/cgBU4TwYGV.webp and /dev/null differ diff --git a/public/photos/cvGPkRNBWKShjWUdHDVxAr5CjepddWqp2a4FqVFy.png b/public/photos/cvGPkRNBWKShjWUdHDVxAr5CjepddWqp2a4FqVFy.png deleted file mode 100644 index 82f8b16..0000000 Binary files a/public/photos/cvGPkRNBWKShjWUdHDVxAr5CjepddWqp2a4FqVFy.png and /dev/null differ diff --git a/public/photos/cx4OuwuIMt.webp b/public/photos/cx4OuwuIMt.webp deleted file mode 100644 index a72d668..0000000 Binary files a/public/photos/cx4OuwuIMt.webp and /dev/null differ diff --git a/public/photos/cxQnpPiEoYVllC3Qbap5qOnkaNu4gL7Nj1liOCHt.png b/public/photos/cxQnpPiEoYVllC3Qbap5qOnkaNu4gL7Nj1liOCHt.png deleted file mode 100644 index 736d5d0..0000000 Binary files a/public/photos/cxQnpPiEoYVllC3Qbap5qOnkaNu4gL7Nj1liOCHt.png and /dev/null differ diff --git a/public/photos/d0409ZRZDe.webp b/public/photos/d0409ZRZDe.webp deleted file mode 100644 index 8634b20..0000000 Binary files a/public/photos/d0409ZRZDe.webp and /dev/null differ diff --git a/public/photos/d2iURtAHwwyoaPExd0RpRDNhFYfylcKcUBul987Z.png b/public/photos/d2iURtAHwwyoaPExd0RpRDNhFYfylcKcUBul987Z.png deleted file mode 100644 index aa7a1b6..0000000 Binary files a/public/photos/d2iURtAHwwyoaPExd0RpRDNhFYfylcKcUBul987Z.png and /dev/null differ diff --git a/public/photos/dMiMJPXpmAUNPHOPpBaufjpxrlgk7VLZlVw1laLn.png b/public/photos/dMiMJPXpmAUNPHOPpBaufjpxrlgk7VLZlVw1laLn.png deleted file mode 100644 index 113eed0..0000000 Binary files a/public/photos/dMiMJPXpmAUNPHOPpBaufjpxrlgk7VLZlVw1laLn.png and /dev/null differ diff --git a/public/photos/dUQwdb5T8lMGVaM5WlbgaEln4bJvbspiG4ebgJF1.png b/public/photos/dUQwdb5T8lMGVaM5WlbgaEln4bJvbspiG4ebgJF1.png deleted file mode 100644 index 7b814d6..0000000 Binary files a/public/photos/dUQwdb5T8lMGVaM5WlbgaEln4bJvbspiG4ebgJF1.png and /dev/null differ diff --git a/public/photos/da7q5qLhK5oAqKcXz9SbrIwuxzoIltter5rqJF3H.png b/public/photos/da7q5qLhK5oAqKcXz9SbrIwuxzoIltter5rqJF3H.png deleted file mode 100644 index 1dd35eb..0000000 Binary files a/public/photos/da7q5qLhK5oAqKcXz9SbrIwuxzoIltter5rqJF3H.png and /dev/null differ diff --git a/public/photos/dnUWYYznAtENshz6W2g0HUdk1TlGkLzaLDWqEGBD.png b/public/photos/dnUWYYznAtENshz6W2g0HUdk1TlGkLzaLDWqEGBD.png deleted file mode 100644 index 073a3c4..0000000 Binary files a/public/photos/dnUWYYznAtENshz6W2g0HUdk1TlGkLzaLDWqEGBD.png and /dev/null differ diff --git a/public/photos/doN7VjAEWk.webp b/public/photos/doN7VjAEWk.webp deleted file mode 100644 index 58ceb5b..0000000 Binary files a/public/photos/doN7VjAEWk.webp and /dev/null differ diff --git a/public/photos/drPDxvrryowjOTS3EXxeFs3vdjHwKa3NeXzH5bOf.png b/public/photos/drPDxvrryowjOTS3EXxeFs3vdjHwKa3NeXzH5bOf.png deleted file mode 100644 index ff9902b..0000000 Binary files a/public/photos/drPDxvrryowjOTS3EXxeFs3vdjHwKa3NeXzH5bOf.png and /dev/null differ diff --git a/public/photos/duIJ8Fypd5Tq07IQj0kCFGYejTs6LhF9LMzMDl7M.png b/public/photos/duIJ8Fypd5Tq07IQj0kCFGYejTs6LhF9LMzMDl7M.png deleted file mode 100644 index 7811be9..0000000 Binary files a/public/photos/duIJ8Fypd5Tq07IQj0kCFGYejTs6LhF9LMzMDl7M.png and /dev/null differ diff --git a/public/photos/dz1hfq9zDC.webp b/public/photos/dz1hfq9zDC.webp deleted file mode 100644 index ab44c20..0000000 Binary files a/public/photos/dz1hfq9zDC.webp and /dev/null differ diff --git a/public/photos/e3dTEqUO0EKbOvePo2H8c0Qu2wv2ajAckuqqgy9L.png b/public/photos/e3dTEqUO0EKbOvePo2H8c0Qu2wv2ajAckuqqgy9L.png deleted file mode 100644 index 5f09cff..0000000 Binary files a/public/photos/e3dTEqUO0EKbOvePo2H8c0Qu2wv2ajAckuqqgy9L.png and /dev/null differ diff --git a/public/photos/e8zFsIzqm1.webp b/public/photos/e8zFsIzqm1.webp deleted file mode 100644 index b525b56..0000000 Binary files a/public/photos/e8zFsIzqm1.webp and /dev/null differ diff --git a/public/photos/eK3jN4GByV.webp b/public/photos/eK3jN4GByV.webp deleted file mode 100644 index 588bf4b..0000000 Binary files a/public/photos/eK3jN4GByV.webp and /dev/null differ diff --git a/public/photos/eKdki0q0DgweJe86aB4F8VwQ4m5JHxrdSSggrttr.jpg b/public/photos/eKdki0q0DgweJe86aB4F8VwQ4m5JHxrdSSggrttr.jpg deleted file mode 100644 index 71b8eca..0000000 Binary files a/public/photos/eKdki0q0DgweJe86aB4F8VwQ4m5JHxrdSSggrttr.jpg and /dev/null differ diff --git a/public/photos/eWhSjJtbz2.webp b/public/photos/eWhSjJtbz2.webp deleted file mode 100644 index 5db1990..0000000 Binary files a/public/photos/eWhSjJtbz2.webp and /dev/null differ diff --git a/public/photos/ec7ldlsmEeWXhpimkoMClVr6nx3mkPI2heO8FprD.png b/public/photos/ec7ldlsmEeWXhpimkoMClVr6nx3mkPI2heO8FprD.png deleted file mode 100644 index 66610cd..0000000 Binary files a/public/photos/ec7ldlsmEeWXhpimkoMClVr6nx3mkPI2heO8FprD.png and /dev/null differ diff --git a/public/photos/ejcNmHyFfQ0DeD5aFsLT0xkwRJmkDqnA5ZmEhx7K.png b/public/photos/ejcNmHyFfQ0DeD5aFsLT0xkwRJmkDqnA5ZmEhx7K.png deleted file mode 100644 index 6be45d0..0000000 Binary files a/public/photos/ejcNmHyFfQ0DeD5aFsLT0xkwRJmkDqnA5ZmEhx7K.png and /dev/null differ diff --git a/public/photos/ekwnriNnFYeve5ibKqbtA95FW25pghgyi59cB1hQ.png b/public/photos/ekwnriNnFYeve5ibKqbtA95FW25pghgyi59cB1hQ.png deleted file mode 100644 index aff8ed2..0000000 Binary files a/public/photos/ekwnriNnFYeve5ibKqbtA95FW25pghgyi59cB1hQ.png and /dev/null differ diff --git a/public/photos/euLCEQnfr6.webp b/public/photos/euLCEQnfr6.webp deleted file mode 100644 index 2f665ed..0000000 Binary files a/public/photos/euLCEQnfr6.webp and /dev/null differ diff --git a/public/photos/f16FUT8TOjUIxHRnnpXT14292yZrcrkfEnKTa8UQ.jpg b/public/photos/f16FUT8TOjUIxHRnnpXT14292yZrcrkfEnKTa8UQ.jpg deleted file mode 100644 index 5fe7976..0000000 Binary files a/public/photos/f16FUT8TOjUIxHRnnpXT14292yZrcrkfEnKTa8UQ.jpg and /dev/null differ diff --git a/public/photos/f7y9QSHoAzuxgKQJTDh6wrCcd2fkHEbDUlJXl7Mo.png b/public/photos/f7y9QSHoAzuxgKQJTDh6wrCcd2fkHEbDUlJXl7Mo.png deleted file mode 100644 index a0cbfac..0000000 Binary files a/public/photos/f7y9QSHoAzuxgKQJTDh6wrCcd2fkHEbDUlJXl7Mo.png and /dev/null differ diff --git a/public/photos/f8u1tN8kZ4.webp b/public/photos/f8u1tN8kZ4.webp deleted file mode 100644 index 2453c69..0000000 Binary files a/public/photos/f8u1tN8kZ4.webp and /dev/null differ diff --git a/public/photos/fMCL6u7XF3.webp b/public/photos/fMCL6u7XF3.webp deleted file mode 100644 index 6a567c2..0000000 Binary files a/public/photos/fMCL6u7XF3.webp and /dev/null differ diff --git a/public/photos/fR5E9G4pXv.webp b/public/photos/fR5E9G4pXv.webp deleted file mode 100644 index 7b0cdd1..0000000 Binary files a/public/photos/fR5E9G4pXv.webp and /dev/null differ diff --git a/public/photos/fgo4HLPKU8MFVHq4vlSve6LXEE4HvCYxdBx7huM7.png b/public/photos/fgo4HLPKU8MFVHq4vlSve6LXEE4HvCYxdBx7huM7.png deleted file mode 100644 index 1515c5b..0000000 Binary files a/public/photos/fgo4HLPKU8MFVHq4vlSve6LXEE4HvCYxdBx7huM7.png and /dev/null differ diff --git a/public/photos/fnGhx6oZC6wc74KaQQ0QWDHYbiwScu0xhVssLxqA.png b/public/photos/fnGhx6oZC6wc74KaQQ0QWDHYbiwScu0xhVssLxqA.png deleted file mode 100644 index d514688..0000000 Binary files a/public/photos/fnGhx6oZC6wc74KaQQ0QWDHYbiwScu0xhVssLxqA.png and /dev/null differ diff --git a/public/photos/fu6tnwN5FKeIKCznbFkXp7lUGrLlgmdMZccM34Do.png b/public/photos/fu6tnwN5FKeIKCznbFkXp7lUGrLlgmdMZccM34Do.png deleted file mode 100644 index 4fc1ced..0000000 Binary files a/public/photos/fu6tnwN5FKeIKCznbFkXp7lUGrLlgmdMZccM34Do.png and /dev/null differ diff --git a/public/photos/fvhqI7nMv5.webp b/public/photos/fvhqI7nMv5.webp deleted file mode 100644 index 31a238f..0000000 Binary files a/public/photos/fvhqI7nMv5.webp and /dev/null differ diff --git a/public/photos/fzUiSwUubNTrOXypOcRvcnRdIKRH1qtckcZG6ekl.jpg b/public/photos/fzUiSwUubNTrOXypOcRvcnRdIKRH1qtckcZG6ekl.jpg deleted file mode 100644 index e91a5e4..0000000 Binary files a/public/photos/fzUiSwUubNTrOXypOcRvcnRdIKRH1qtckcZG6ekl.jpg and /dev/null differ diff --git a/public/photos/g12lyyCUijDVW6KrukqU1pFpnGRFpaieLDpx3D1Q.png b/public/photos/g12lyyCUijDVW6KrukqU1pFpnGRFpaieLDpx3D1Q.png deleted file mode 100644 index 45a9763..0000000 Binary files a/public/photos/g12lyyCUijDVW6KrukqU1pFpnGRFpaieLDpx3D1Q.png and /dev/null differ diff --git a/public/photos/g1xLU3fqGl.webp b/public/photos/g1xLU3fqGl.webp deleted file mode 100644 index 1f0d523..0000000 Binary files a/public/photos/g1xLU3fqGl.webp and /dev/null differ diff --git a/public/photos/gKVoc6IFjX.webp b/public/photos/gKVoc6IFjX.webp deleted file mode 100644 index dad693a..0000000 Binary files a/public/photos/gKVoc6IFjX.webp and /dev/null differ diff --git a/public/photos/ghFhnaIFsv.webp b/public/photos/ghFhnaIFsv.webp deleted file mode 100644 index 675cba3..0000000 Binary files a/public/photos/ghFhnaIFsv.webp and /dev/null differ diff --git a/public/photos/gr1b69NQqs.webp b/public/photos/gr1b69NQqs.webp deleted file mode 100644 index 361a333..0000000 Binary files a/public/photos/gr1b69NQqs.webp and /dev/null differ diff --git a/public/photos/gvnfJ6vvetZ0Oqo6zzLWyiEW29up16bFrOxKEcx1.png b/public/photos/gvnfJ6vvetZ0Oqo6zzLWyiEW29up16bFrOxKEcx1.png deleted file mode 100644 index 088039f..0000000 Binary files a/public/photos/gvnfJ6vvetZ0Oqo6zzLWyiEW29up16bFrOxKEcx1.png and /dev/null differ diff --git a/public/photos/h9HvF39CyZ.webp b/public/photos/h9HvF39CyZ.webp deleted file mode 100644 index d54d75f..0000000 Binary files a/public/photos/h9HvF39CyZ.webp and /dev/null differ diff --git a/public/photos/hHPqHVJPAk.webp b/public/photos/hHPqHVJPAk.webp deleted file mode 100644 index 609e6cb..0000000 Binary files a/public/photos/hHPqHVJPAk.webp and /dev/null differ diff --git a/public/photos/hNbOtJ6Oz9.webp b/public/photos/hNbOtJ6Oz9.webp deleted file mode 100644 index 788696d..0000000 Binary files a/public/photos/hNbOtJ6Oz9.webp and /dev/null differ diff --git a/public/photos/hiGQf49COS.webp b/public/photos/hiGQf49COS.webp deleted file mode 100644 index 5e54357..0000000 Binary files a/public/photos/hiGQf49COS.webp and /dev/null differ diff --git a/public/photos/hoE1as7KOBC2cEUbautR3Ytd7l1hzr4ZrdsE5pVV.png b/public/photos/hoE1as7KOBC2cEUbautR3Ytd7l1hzr4ZrdsE5pVV.png deleted file mode 100644 index 7bef6b8..0000000 Binary files a/public/photos/hoE1as7KOBC2cEUbautR3Ytd7l1hzr4ZrdsE5pVV.png and /dev/null differ diff --git a/public/photos/hpcguNG4sKdgVZtd0aYctGVRpJKJqYWKQw4TWAge.png b/public/photos/hpcguNG4sKdgVZtd0aYctGVRpJKJqYWKQw4TWAge.png deleted file mode 100644 index ace17e0..0000000 Binary files a/public/photos/hpcguNG4sKdgVZtd0aYctGVRpJKJqYWKQw4TWAge.png and /dev/null differ diff --git a/public/photos/hqzMvfeyOG5K37kljhO5Yx0pVoISvMYUfTGL6Pk4.png b/public/photos/hqzMvfeyOG5K37kljhO5Yx0pVoISvMYUfTGL6Pk4.png deleted file mode 100644 index aa5b168..0000000 Binary files a/public/photos/hqzMvfeyOG5K37kljhO5Yx0pVoISvMYUfTGL6Pk4.png and /dev/null differ diff --git a/public/photos/hyS2P5ruRBr6AMDTE5T3BXqihD1gg5szsIHP9Vdu.jpg b/public/photos/hyS2P5ruRBr6AMDTE5T3BXqihD1gg5szsIHP9Vdu.jpg deleted file mode 100644 index e4e9536..0000000 Binary files a/public/photos/hyS2P5ruRBr6AMDTE5T3BXqihD1gg5szsIHP9Vdu.jpg and /dev/null differ diff --git a/public/photos/i2owuSVR0ghTvTRGkeAfTHXLgPbfgcxx3xrCKED1.png b/public/photos/i2owuSVR0ghTvTRGkeAfTHXLgPbfgcxx3xrCKED1.png deleted file mode 100644 index c25304a..0000000 Binary files a/public/photos/i2owuSVR0ghTvTRGkeAfTHXLgPbfgcxx3xrCKED1.png and /dev/null differ diff --git a/public/photos/i4fKQpyBsbHTeg8jcZq7JhyrDbNyRPxlu1nrD1W4.png b/public/photos/i4fKQpyBsbHTeg8jcZq7JhyrDbNyRPxlu1nrD1W4.png deleted file mode 100644 index 045c0fb..0000000 Binary files a/public/photos/i4fKQpyBsbHTeg8jcZq7JhyrDbNyRPxlu1nrD1W4.png and /dev/null differ diff --git a/public/photos/i5mntDrYO6JVeHp0CbFu56MqdsCbg46835rJap4E.png b/public/photos/i5mntDrYO6JVeHp0CbFu56MqdsCbg46835rJap4E.png deleted file mode 100644 index 3822d36..0000000 Binary files a/public/photos/i5mntDrYO6JVeHp0CbFu56MqdsCbg46835rJap4E.png and /dev/null differ diff --git a/public/photos/iOGJ5rdL0ThcepgEhKMjG1PCiIQAGnJxLvyO7W0m.jpg b/public/photos/iOGJ5rdL0ThcepgEhKMjG1PCiIQAGnJxLvyO7W0m.jpg deleted file mode 100644 index 443088c..0000000 Binary files a/public/photos/iOGJ5rdL0ThcepgEhKMjG1PCiIQAGnJxLvyO7W0m.jpg and /dev/null differ diff --git a/public/photos/iOM09Rc5NrWPIAzQ1E51awrs59tLaS6Ke4Cjhe2I.jpg b/public/photos/iOM09Rc5NrWPIAzQ1E51awrs59tLaS6Ke4Cjhe2I.jpg deleted file mode 100644 index 3ecb0dc..0000000 Binary files a/public/photos/iOM09Rc5NrWPIAzQ1E51awrs59tLaS6Ke4Cjhe2I.jpg and /dev/null differ diff --git a/public/photos/iXYFFt9OYpsG0oOZhztmLKjS0BZd2np0P9wYHhsK.png b/public/photos/iXYFFt9OYpsG0oOZhztmLKjS0BZd2np0P9wYHhsK.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/iXYFFt9OYpsG0oOZhztmLKjS0BZd2np0P9wYHhsK.png and /dev/null differ diff --git a/public/photos/ii3ZHTwzTNI9dxM5hzlO7QCfjGsl8jsayIDmTNwS.png b/public/photos/ii3ZHTwzTNI9dxM5hzlO7QCfjGsl8jsayIDmTNwS.png deleted file mode 100644 index 65c67c4..0000000 Binary files a/public/photos/ii3ZHTwzTNI9dxM5hzlO7QCfjGsl8jsayIDmTNwS.png and /dev/null differ diff --git a/public/photos/inRapfujbc.webp b/public/photos/inRapfujbc.webp deleted file mode 100644 index 9014272..0000000 Binary files a/public/photos/inRapfujbc.webp and /dev/null differ diff --git a/public/photos/iwLNizO65SFpE02cfrSxhqeFodx7EeTWyWXA8pyp.jpg b/public/photos/iwLNizO65SFpE02cfrSxhqeFodx7EeTWyWXA8pyp.jpg deleted file mode 100644 index 15d9a5d..0000000 Binary files a/public/photos/iwLNizO65SFpE02cfrSxhqeFodx7EeTWyWXA8pyp.jpg and /dev/null differ diff --git a/public/photos/jHlWxV8JSS7IwKlZurequUNheoZF4I1vQgClqkWc.png b/public/photos/jHlWxV8JSS7IwKlZurequUNheoZF4I1vQgClqkWc.png deleted file mode 100644 index 747c822..0000000 Binary files a/public/photos/jHlWxV8JSS7IwKlZurequUNheoZF4I1vQgClqkWc.png and /dev/null differ diff --git a/public/photos/jXwpyZThv2.webp b/public/photos/jXwpyZThv2.webp deleted file mode 100644 index e9f909f..0000000 Binary files a/public/photos/jXwpyZThv2.webp and /dev/null differ diff --git a/public/photos/jfikZPlTxUenHOO7ohN5dYSrW9PPjYCS16jOtNQ3.png b/public/photos/jfikZPlTxUenHOO7ohN5dYSrW9PPjYCS16jOtNQ3.png deleted file mode 100644 index 85eca94..0000000 Binary files a/public/photos/jfikZPlTxUenHOO7ohN5dYSrW9PPjYCS16jOtNQ3.png and /dev/null differ diff --git a/public/photos/jmIOizw81mlTCV83spkO5r0pEn1lAfTRYpkiBctL.png b/public/photos/jmIOizw81mlTCV83spkO5r0pEn1lAfTRYpkiBctL.png deleted file mode 100644 index 747c822..0000000 Binary files a/public/photos/jmIOizw81mlTCV83spkO5r0pEn1lAfTRYpkiBctL.png and /dev/null differ diff --git a/public/photos/kRAGNxL3G1jSKHaVDwPvGtzsTYTqDPJ2r9Swmt2I.png b/public/photos/kRAGNxL3G1jSKHaVDwPvGtzsTYTqDPJ2r9Swmt2I.png deleted file mode 100644 index a9dd6ea..0000000 Binary files a/public/photos/kRAGNxL3G1jSKHaVDwPvGtzsTYTqDPJ2r9Swmt2I.png and /dev/null differ diff --git a/public/photos/kTXvjvFZe5.webp b/public/photos/kTXvjvFZe5.webp deleted file mode 100644 index 92ea135..0000000 Binary files a/public/photos/kTXvjvFZe5.webp and /dev/null differ diff --git a/public/photos/kWIDR8FS8iodfjuKxmyRnuiplMCvQnXoo3MBCDRO.png b/public/photos/kWIDR8FS8iodfjuKxmyRnuiplMCvQnXoo3MBCDRO.png deleted file mode 100644 index 2a6b07b..0000000 Binary files a/public/photos/kWIDR8FS8iodfjuKxmyRnuiplMCvQnXoo3MBCDRO.png and /dev/null differ diff --git a/public/photos/kkLWoPh7s6gPPGDjvhb2rLElF2Y0WMFzyCrj3PZW.png b/public/photos/kkLWoPh7s6gPPGDjvhb2rLElF2Y0WMFzyCrj3PZW.png deleted file mode 100644 index b5de30d..0000000 Binary files a/public/photos/kkLWoPh7s6gPPGDjvhb2rLElF2Y0WMFzyCrj3PZW.png and /dev/null differ diff --git a/public/photos/kq9l5Hf2MJLNcfqNysmV1BooPOrRaIX28AzJxbR2.png b/public/photos/kq9l5Hf2MJLNcfqNysmV1BooPOrRaIX28AzJxbR2.png deleted file mode 100644 index 0f4259e..0000000 Binary files a/public/photos/kq9l5Hf2MJLNcfqNysmV1BooPOrRaIX28AzJxbR2.png and /dev/null differ diff --git a/public/photos/ks41Z1BqOlMxNjDV2P7pHaTBt9lCGyS3sltLitFq.png b/public/photos/ks41Z1BqOlMxNjDV2P7pHaTBt9lCGyS3sltLitFq.png deleted file mode 100644 index 6955847..0000000 Binary files a/public/photos/ks41Z1BqOlMxNjDV2P7pHaTBt9lCGyS3sltLitFq.png and /dev/null differ diff --git a/public/photos/kyMjdozMZe.webp b/public/photos/kyMjdozMZe.webp deleted file mode 100644 index 050da11..0000000 Binary files a/public/photos/kyMjdozMZe.webp and /dev/null differ diff --git a/public/photos/l6QFJILWRIfMOdH28TIRdS8sgQnGmJNDyGmUXa5g.png b/public/photos/l6QFJILWRIfMOdH28TIRdS8sgQnGmJNDyGmUXa5g.png deleted file mode 100644 index e29d869..0000000 Binary files a/public/photos/l6QFJILWRIfMOdH28TIRdS8sgQnGmJNDyGmUXa5g.png and /dev/null differ diff --git a/public/photos/lIGZnTBXwW.webp b/public/photos/lIGZnTBXwW.webp deleted file mode 100644 index 6e2520c..0000000 Binary files a/public/photos/lIGZnTBXwW.webp and /dev/null differ diff --git a/public/photos/lVCdHD6d4g.webp b/public/photos/lVCdHD6d4g.webp deleted file mode 100644 index b1b9c90..0000000 Binary files a/public/photos/lVCdHD6d4g.webp and /dev/null differ diff --git a/public/photos/lVyk3hdUHC2xf4bdCT61rwaJXXQ49e5ryx2cBPOr.png b/public/photos/lVyk3hdUHC2xf4bdCT61rwaJXXQ49e5ryx2cBPOr.png deleted file mode 100644 index 7961977..0000000 Binary files a/public/photos/lVyk3hdUHC2xf4bdCT61rwaJXXQ49e5ryx2cBPOr.png and /dev/null differ diff --git a/public/photos/lzBFQ0hdNt.webp b/public/photos/lzBFQ0hdNt.webp deleted file mode 100644 index ea7742d..0000000 Binary files a/public/photos/lzBFQ0hdNt.webp and /dev/null differ diff --git a/public/photos/m2p49p90m3yBFuw0DvrLnen3EVmUWDGiGoBWShmy.png b/public/photos/m2p49p90m3yBFuw0DvrLnen3EVmUWDGiGoBWShmy.png deleted file mode 100644 index 7bab018..0000000 Binary files a/public/photos/m2p49p90m3yBFuw0DvrLnen3EVmUWDGiGoBWShmy.png and /dev/null differ diff --git a/public/photos/mGUj1GRAWhD8po3uIsTnXpHtkrGh5FPzAN5T3UtD.png b/public/photos/mGUj1GRAWhD8po3uIsTnXpHtkrGh5FPzAN5T3UtD.png deleted file mode 100644 index 43ef810..0000000 Binary files a/public/photos/mGUj1GRAWhD8po3uIsTnXpHtkrGh5FPzAN5T3UtD.png and /dev/null differ diff --git a/public/photos/mlQGiAwOvl.webp b/public/photos/mlQGiAwOvl.webp deleted file mode 100644 index 930bd1e..0000000 Binary files a/public/photos/mlQGiAwOvl.webp and /dev/null differ diff --git a/public/photos/mp4I9IH2k5n87flARDKwcOlQ9Hfii0pWr30b7wYB.png b/public/photos/mp4I9IH2k5n87flARDKwcOlQ9Hfii0pWr30b7wYB.png deleted file mode 100644 index 7fa4a33..0000000 Binary files a/public/photos/mp4I9IH2k5n87flARDKwcOlQ9Hfii0pWr30b7wYB.png and /dev/null differ diff --git a/public/photos/mzkv7fWVcNjSq6NNbCQYQJrhOTmCE9Bdz7hMIADm.png b/public/photos/mzkv7fWVcNjSq6NNbCQYQJrhOTmCE9Bdz7hMIADm.png deleted file mode 100644 index b1004fb..0000000 Binary files a/public/photos/mzkv7fWVcNjSq6NNbCQYQJrhOTmCE9Bdz7hMIADm.png and /dev/null differ diff --git a/public/photos/nNXT7hr6x3DwQpt34Meumay1Bgv0AFdGkMPLIQFt.png b/public/photos/nNXT7hr6x3DwQpt34Meumay1Bgv0AFdGkMPLIQFt.png deleted file mode 100644 index d34bbc1..0000000 Binary files a/public/photos/nNXT7hr6x3DwQpt34Meumay1Bgv0AFdGkMPLIQFt.png and /dev/null differ diff --git a/public/photos/nocepFI1gC.webp b/public/photos/nocepFI1gC.webp deleted file mode 100644 index 7b0cdd1..0000000 Binary files a/public/photos/nocepFI1gC.webp and /dev/null differ diff --git a/public/photos/ntFnWKbFs0.webp b/public/photos/ntFnWKbFs0.webp deleted file mode 100644 index 07171ae..0000000 Binary files a/public/photos/ntFnWKbFs0.webp and /dev/null differ diff --git a/public/photos/oBaKM44NjU.webp b/public/photos/oBaKM44NjU.webp deleted file mode 100644 index 06336c5..0000000 Binary files a/public/photos/oBaKM44NjU.webp and /dev/null differ diff --git a/public/photos/oazGH0aZEEjS1Rn8TNTIB3AP342CWfz9GB7sQRvb.png b/public/photos/oazGH0aZEEjS1Rn8TNTIB3AP342CWfz9GB7sQRvb.png deleted file mode 100644 index a1c5764..0000000 Binary files a/public/photos/oazGH0aZEEjS1Rn8TNTIB3AP342CWfz9GB7sQRvb.png and /dev/null differ diff --git a/public/photos/og8qcUlrAdjEfPOPVqo8leWI4iRMuoXMCBhD28k5.png b/public/photos/og8qcUlrAdjEfPOPVqo8leWI4iRMuoXMCBhD28k5.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/og8qcUlrAdjEfPOPVqo8leWI4iRMuoXMCBhD28k5.png and /dev/null differ diff --git a/public/photos/omtKlw7rnj.webp b/public/photos/omtKlw7rnj.webp deleted file mode 100644 index 895fd3e..0000000 Binary files a/public/photos/omtKlw7rnj.webp and /dev/null differ diff --git a/public/photos/osFeJc1Qtl.webp b/public/photos/osFeJc1Qtl.webp deleted file mode 100644 index 5fa40d6..0000000 Binary files a/public/photos/osFeJc1Qtl.webp and /dev/null differ diff --git a/public/photos/oyTdumpOAk.webp b/public/photos/oyTdumpOAk.webp deleted file mode 100644 index 609e6cb..0000000 Binary files a/public/photos/oyTdumpOAk.webp and /dev/null differ diff --git a/public/photos/p1PmNR51uC.webp b/public/photos/p1PmNR51uC.webp deleted file mode 100644 index 9f90bd2..0000000 Binary files a/public/photos/p1PmNR51uC.webp and /dev/null differ diff --git a/public/photos/p5QzbbZbIq.webp b/public/photos/p5QzbbZbIq.webp deleted file mode 100644 index 6a54539..0000000 Binary files a/public/photos/p5QzbbZbIq.webp and /dev/null differ diff --git a/public/photos/pQVuTWJkuJ.webp b/public/photos/pQVuTWJkuJ.webp deleted file mode 100644 index c682122..0000000 Binary files a/public/photos/pQVuTWJkuJ.webp and /dev/null differ diff --git a/public/photos/pVGPspGooT.webp b/public/photos/pVGPspGooT.webp deleted file mode 100644 index e4e352b..0000000 Binary files a/public/photos/pVGPspGooT.webp and /dev/null differ diff --git a/public/photos/pYy34cIbW0.webp b/public/photos/pYy34cIbW0.webp deleted file mode 100644 index 5fa40d6..0000000 Binary files a/public/photos/pYy34cIbW0.webp and /dev/null differ diff --git a/public/photos/pjuqf5YkI7XyOD00D5rucqri7UtofiZuEo2l9u19.png b/public/photos/pjuqf5YkI7XyOD00D5rucqri7UtofiZuEo2l9u19.png deleted file mode 100644 index 69dfc65..0000000 Binary files a/public/photos/pjuqf5YkI7XyOD00D5rucqri7UtofiZuEo2l9u19.png and /dev/null differ diff --git a/public/photos/pmJoHXL9UH.webp b/public/photos/pmJoHXL9UH.webp deleted file mode 100644 index 9daacdc..0000000 Binary files a/public/photos/pmJoHXL9UH.webp and /dev/null differ diff --git a/public/photos/qBYr7RVhee.webp b/public/photos/qBYr7RVhee.webp deleted file mode 100644 index 7224b8f..0000000 Binary files a/public/photos/qBYr7RVhee.webp and /dev/null differ diff --git a/public/photos/qBp0m9pTTu.webp b/public/photos/qBp0m9pTTu.webp deleted file mode 100644 index 00d516c..0000000 Binary files a/public/photos/qBp0m9pTTu.webp and /dev/null differ diff --git a/public/photos/qOToutFzTxxf8vwUXUzTqf0RPkvH9lOp8HZUcLFo.png b/public/photos/qOToutFzTxxf8vwUXUzTqf0RPkvH9lOp8HZUcLFo.png deleted file mode 100644 index a85238f..0000000 Binary files a/public/photos/qOToutFzTxxf8vwUXUzTqf0RPkvH9lOp8HZUcLFo.png and /dev/null differ diff --git a/public/photos/qQB0Gi8LWV.webp b/public/photos/qQB0Gi8LWV.webp deleted file mode 100644 index 81f9deb..0000000 Binary files a/public/photos/qQB0Gi8LWV.webp and /dev/null differ diff --git a/public/photos/qRvmjokvlltgXZsguO97Qor2AWDbfGBKqusXn1Uq.jpg b/public/photos/qRvmjokvlltgXZsguO97Qor2AWDbfGBKqusXn1Uq.jpg deleted file mode 100644 index 82da1b9..0000000 Binary files a/public/photos/qRvmjokvlltgXZsguO97Qor2AWDbfGBKqusXn1Uq.jpg and /dev/null differ diff --git a/public/photos/qdKBlNkeiP.webp b/public/photos/qdKBlNkeiP.webp deleted file mode 100644 index 98b1848..0000000 Binary files a/public/photos/qdKBlNkeiP.webp and /dev/null differ diff --git a/public/photos/rDJMygZxNHL2jUgUREFeJASMCYeXRQzZBqLvx5zM.png b/public/photos/rDJMygZxNHL2jUgUREFeJASMCYeXRQzZBqLvx5zM.png deleted file mode 100644 index 1b1d69e..0000000 Binary files a/public/photos/rDJMygZxNHL2jUgUREFeJASMCYeXRQzZBqLvx5zM.png and /dev/null differ diff --git a/public/photos/rKjY1L0F59KwBD6aKhQm4fw3Z1i5QGXyN5H0N95L.png b/public/photos/rKjY1L0F59KwBD6aKhQm4fw3Z1i5QGXyN5H0N95L.png deleted file mode 100644 index 91d942d..0000000 Binary files a/public/photos/rKjY1L0F59KwBD6aKhQm4fw3Z1i5QGXyN5H0N95L.png and /dev/null differ diff --git a/public/photos/rNXRM7m7cr.webp b/public/photos/rNXRM7m7cr.webp deleted file mode 100644 index 9d8402a..0000000 Binary files a/public/photos/rNXRM7m7cr.webp and /dev/null differ diff --git a/public/photos/rRhrcMq6ZdOIvbYhpZ3s74ccSMFDJusgSzQM8WGL.png b/public/photos/rRhrcMq6ZdOIvbYhpZ3s74ccSMFDJusgSzQM8WGL.png deleted file mode 100644 index 473be0d..0000000 Binary files a/public/photos/rRhrcMq6ZdOIvbYhpZ3s74ccSMFDJusgSzQM8WGL.png and /dev/null differ diff --git a/public/photos/rUqpxRiGAaZR7t753VjjVuw4RijbRvsfWnEKx1iU.png b/public/photos/rUqpxRiGAaZR7t753VjjVuw4RijbRvsfWnEKx1iU.png deleted file mode 100644 index 2952136..0000000 Binary files a/public/photos/rUqpxRiGAaZR7t753VjjVuw4RijbRvsfWnEKx1iU.png and /dev/null differ diff --git a/public/photos/rVC5v1iLT2cswbpgttPQG1mScZd8DI898WFlLmMy.png b/public/photos/rVC5v1iLT2cswbpgttPQG1mScZd8DI898WFlLmMy.png deleted file mode 100644 index 1b80926..0000000 Binary files a/public/photos/rVC5v1iLT2cswbpgttPQG1mScZd8DI898WFlLmMy.png and /dev/null differ diff --git a/public/photos/rWeEIjiKXD.webp b/public/photos/rWeEIjiKXD.webp deleted file mode 100644 index a242dbb..0000000 Binary files a/public/photos/rWeEIjiKXD.webp and /dev/null differ diff --git a/public/photos/rq1lTGUl5YtbbwdzNb7CTywYFnJ3wP2CUwfkRuNm.png b/public/photos/rq1lTGUl5YtbbwdzNb7CTywYFnJ3wP2CUwfkRuNm.png deleted file mode 100644 index 1dd35eb..0000000 Binary files a/public/photos/rq1lTGUl5YtbbwdzNb7CTywYFnJ3wP2CUwfkRuNm.png and /dev/null differ diff --git a/public/photos/ruktjvHnuUbdUWepk6OkDmFV0lVKqiYsNeegDbBv.png b/public/photos/ruktjvHnuUbdUWepk6OkDmFV0lVKqiYsNeegDbBv.png deleted file mode 100644 index 747c822..0000000 Binary files a/public/photos/ruktjvHnuUbdUWepk6OkDmFV0lVKqiYsNeegDbBv.png and /dev/null differ diff --git a/public/photos/sEcwhllQwfDYmxxB4EWiIIoz2ixnylEejqXKsmHk.png b/public/photos/sEcwhllQwfDYmxxB4EWiIIoz2ixnylEejqXKsmHk.png deleted file mode 100644 index 880c5f7..0000000 Binary files a/public/photos/sEcwhllQwfDYmxxB4EWiIIoz2ixnylEejqXKsmHk.png and /dev/null differ diff --git a/public/photos/sEoC8j6ygPZtD8ncHUyTjLteSc5rcXpx9BAy8Ure.png b/public/photos/sEoC8j6ygPZtD8ncHUyTjLteSc5rcXpx9BAy8Ure.png deleted file mode 100644 index f1c67ca..0000000 Binary files a/public/photos/sEoC8j6ygPZtD8ncHUyTjLteSc5rcXpx9BAy8Ure.png and /dev/null differ diff --git a/public/photos/sPjCyrbWaK.webp b/public/photos/sPjCyrbWaK.webp deleted file mode 100644 index 6225396..0000000 Binary files a/public/photos/sPjCyrbWaK.webp and /dev/null differ diff --git a/public/photos/sR6f1UinY7FnfCWhtMsbxxHDj2zgybMaXyWzzFKO.png b/public/photos/sR6f1UinY7FnfCWhtMsbxxHDj2zgybMaXyWzzFKO.png deleted file mode 100644 index e09daaa..0000000 Binary files a/public/photos/sR6f1UinY7FnfCWhtMsbxxHDj2zgybMaXyWzzFKO.png and /dev/null differ diff --git a/public/photos/sgYiqaOEfVJoy1xKC2Y3Z1nbRr3k5Zye22xWz4Ph.png b/public/photos/sgYiqaOEfVJoy1xKC2Y3Z1nbRr3k5Zye22xWz4Ph.png deleted file mode 100644 index 11b1a09..0000000 Binary files a/public/photos/sgYiqaOEfVJoy1xKC2Y3Z1nbRr3k5Zye22xWz4Ph.png and /dev/null differ diff --git a/public/photos/szY2sf4lFaHcOcrkQz0cCmtc4rNgCX85LwMGAO5b.png b/public/photos/szY2sf4lFaHcOcrkQz0cCmtc4rNgCX85LwMGAO5b.png deleted file mode 100644 index 1dd35eb..0000000 Binary files a/public/photos/szY2sf4lFaHcOcrkQz0cCmtc4rNgCX85LwMGAO5b.png and /dev/null differ diff --git a/public/photos/t5uy86ubg5rm6XFDcaYxyhk75rUsonFLY8Ic4qIL.jpg b/public/photos/t5uy86ubg5rm6XFDcaYxyhk75rUsonFLY8Ic4qIL.jpg deleted file mode 100644 index 7587e32..0000000 Binary files a/public/photos/t5uy86ubg5rm6XFDcaYxyhk75rUsonFLY8Ic4qIL.jpg and /dev/null differ diff --git a/public/photos/t7IsgNZPC7.webp b/public/photos/t7IsgNZPC7.webp deleted file mode 100644 index 3a1bbbb..0000000 Binary files a/public/photos/t7IsgNZPC7.webp and /dev/null differ diff --git a/public/photos/t7UMSkKxxK.webp b/public/photos/t7UMSkKxxK.webp deleted file mode 100644 index 5f85099..0000000 Binary files a/public/photos/t7UMSkKxxK.webp and /dev/null differ diff --git a/public/photos/tArURUorCK.webp b/public/photos/tArURUorCK.webp deleted file mode 100644 index 9acda6d..0000000 Binary files a/public/photos/tArURUorCK.webp and /dev/null differ diff --git a/public/photos/tExX1H9sfEjU3ndg5TMSn4tvXpGJcTG1K8xlYluZ.png b/public/photos/tExX1H9sfEjU3ndg5TMSn4tvXpGJcTG1K8xlYluZ.png deleted file mode 100644 index 747c822..0000000 Binary files a/public/photos/tExX1H9sfEjU3ndg5TMSn4tvXpGJcTG1K8xlYluZ.png and /dev/null differ diff --git a/public/photos/tKToegrFCc.webp b/public/photos/tKToegrFCc.webp deleted file mode 100644 index de50c9b..0000000 Binary files a/public/photos/tKToegrFCc.webp and /dev/null differ diff --git a/public/photos/tOY4EEP5Bn.webp b/public/photos/tOY4EEP5Bn.webp deleted file mode 100644 index ac4bceb..0000000 Binary files a/public/photos/tOY4EEP5Bn.webp and /dev/null differ diff --git a/public/photos/tXaS4Eb4Oq9UZP9NV7b5LPnP9ZKjglX1yiLWftUy.png b/public/photos/tXaS4Eb4Oq9UZP9NV7b5LPnP9ZKjglX1yiLWftUy.png deleted file mode 100644 index fc568cf..0000000 Binary files a/public/photos/tXaS4Eb4Oq9UZP9NV7b5LPnP9ZKjglX1yiLWftUy.png and /dev/null differ diff --git a/public/photos/tfVfvHy3eRXLKVhY892SsjUTNJ1SAHUuW7d95A50.png b/public/photos/tfVfvHy3eRXLKVhY892SsjUTNJ1SAHUuW7d95A50.png deleted file mode 100644 index a061250..0000000 Binary files a/public/photos/tfVfvHy3eRXLKVhY892SsjUTNJ1SAHUuW7d95A50.png and /dev/null differ diff --git a/public/photos/tjxeKCyxaMcH34kF1jdoX7sn2IRAOfO6vrHiawYb.png b/public/photos/tjxeKCyxaMcH34kF1jdoX7sn2IRAOfO6vrHiawYb.png deleted file mode 100644 index 0927398..0000000 Binary files a/public/photos/tjxeKCyxaMcH34kF1jdoX7sn2IRAOfO6vrHiawYb.png and /dev/null differ diff --git a/public/photos/u1eoSaZufrKB2nhvfaQgaKHVbIBikP1mnzr2Djpg.png b/public/photos/u1eoSaZufrKB2nhvfaQgaKHVbIBikP1mnzr2Djpg.png deleted file mode 100644 index 762a824..0000000 Binary files a/public/photos/u1eoSaZufrKB2nhvfaQgaKHVbIBikP1mnzr2Djpg.png and /dev/null differ diff --git a/public/photos/u4FpBW15OHRENf7TMtbWQQIO09CWZjg5QNPRZqSX.png b/public/photos/u4FpBW15OHRENf7TMtbWQQIO09CWZjg5QNPRZqSX.png deleted file mode 100644 index 433f2ab..0000000 Binary files a/public/photos/u4FpBW15OHRENf7TMtbWQQIO09CWZjg5QNPRZqSX.png and /dev/null differ diff --git a/public/photos/u5ctpJbEMaCdbDogs3jbqTNvm860mJ4CMzduEGwa.png b/public/photos/u5ctpJbEMaCdbDogs3jbqTNvm860mJ4CMzduEGwa.png deleted file mode 100644 index 747c822..0000000 Binary files a/public/photos/u5ctpJbEMaCdbDogs3jbqTNvm860mJ4CMzduEGwa.png and /dev/null differ diff --git a/public/photos/u9GWSqposG.webp b/public/photos/u9GWSqposG.webp deleted file mode 100644 index 3e59733..0000000 Binary files a/public/photos/u9GWSqposG.webp and /dev/null differ diff --git a/public/photos/uQgAhfgfD2LfDRV3qkZa46GGt55Iw0VFvpSUHnGF.png b/public/photos/uQgAhfgfD2LfDRV3qkZa46GGt55Iw0VFvpSUHnGF.png deleted file mode 100644 index 5b6417f..0000000 Binary files a/public/photos/uQgAhfgfD2LfDRV3qkZa46GGt55Iw0VFvpSUHnGF.png and /dev/null differ diff --git a/public/photos/uW0ZUAtSey.webp b/public/photos/uW0ZUAtSey.webp deleted file mode 100644 index 675baa6..0000000 Binary files a/public/photos/uW0ZUAtSey.webp and /dev/null differ diff --git a/public/photos/uob6XXD9cehraHWJsNTk4ztlhwfoiU3Kyo4JK0Qv.png b/public/photos/uob6XXD9cehraHWJsNTk4ztlhwfoiU3Kyo4JK0Qv.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/uob6XXD9cehraHWJsNTk4ztlhwfoiU3Kyo4JK0Qv.png and /dev/null differ diff --git a/public/photos/uyLeM9v3Bo3T3EOnwgCXLy4NGdlPI8Avsp4uVHZo.png b/public/photos/uyLeM9v3Bo3T3EOnwgCXLy4NGdlPI8Avsp4uVHZo.png deleted file mode 100644 index 09cd87b..0000000 Binary files a/public/photos/uyLeM9v3Bo3T3EOnwgCXLy4NGdlPI8Avsp4uVHZo.png and /dev/null differ diff --git a/public/photos/uyQRz5A5QVOrnUqNiwllL52rAkL8xrgPL2Hh4ReR.png b/public/photos/uyQRz5A5QVOrnUqNiwllL52rAkL8xrgPL2Hh4ReR.png deleted file mode 100644 index 1591173..0000000 Binary files a/public/photos/uyQRz5A5QVOrnUqNiwllL52rAkL8xrgPL2Hh4ReR.png and /dev/null differ diff --git a/public/photos/v0yCGPvX1PMdrnqI0Yxv7vlgNWnC4kTfLenyhUSF.png b/public/photos/v0yCGPvX1PMdrnqI0Yxv7vlgNWnC4kTfLenyhUSF.png deleted file mode 100644 index 584318c..0000000 Binary files a/public/photos/v0yCGPvX1PMdrnqI0Yxv7vlgNWnC4kTfLenyhUSF.png and /dev/null differ diff --git a/public/photos/v2K3Qwr0srjE3NXeX1cEIHCEuMEwMbElhlmE1E1Q.png b/public/photos/v2K3Qwr0srjE3NXeX1cEIHCEuMEwMbElhlmE1E1Q.png deleted file mode 100644 index 0804b41..0000000 Binary files a/public/photos/v2K3Qwr0srjE3NXeX1cEIHCEuMEwMbElhlmE1E1Q.png and /dev/null differ diff --git a/public/photos/vN7U2nQG9C.webp b/public/photos/vN7U2nQG9C.webp deleted file mode 100644 index 14da341..0000000 Binary files a/public/photos/vN7U2nQG9C.webp and /dev/null differ diff --git a/public/photos/vqIOlezGSF9frlsP2ACgt6jLmP74mp4OdVv7zdfn.jpg b/public/photos/vqIOlezGSF9frlsP2ACgt6jLmP74mp4OdVv7zdfn.jpg deleted file mode 100644 index e91a5e4..0000000 Binary files a/public/photos/vqIOlezGSF9frlsP2ACgt6jLmP74mp4OdVv7zdfn.jpg and /dev/null differ diff --git a/public/photos/vtfxydASMaCZBx0lSYzjXVOQedKrs67RFmESGbL5.png b/public/photos/vtfxydASMaCZBx0lSYzjXVOQedKrs67RFmESGbL5.png deleted file mode 100644 index 85eca94..0000000 Binary files a/public/photos/vtfxydASMaCZBx0lSYzjXVOQedKrs67RFmESGbL5.png and /dev/null differ diff --git a/public/photos/vtqsdYzpjGfHgrH7IU0LoyoeOjAEqd8MGmEsyafQ.png b/public/photos/vtqsdYzpjGfHgrH7IU0LoyoeOjAEqd8MGmEsyafQ.png deleted file mode 100644 index 9d33986..0000000 Binary files a/public/photos/vtqsdYzpjGfHgrH7IU0LoyoeOjAEqd8MGmEsyafQ.png and /dev/null differ diff --git a/public/photos/vwbD0WmWVgAU05WBZkkpzNJbcrzKTQBIpiF0jk0N.png b/public/photos/vwbD0WmWVgAU05WBZkkpzNJbcrzKTQBIpiF0jk0N.png deleted file mode 100644 index ec9dde1..0000000 Binary files a/public/photos/vwbD0WmWVgAU05WBZkkpzNJbcrzKTQBIpiF0jk0N.png and /dev/null differ diff --git a/public/photos/vzW5bFoAgMOXmal2dJhNVQ2tZt4YNoL6gPV4rPUt.png b/public/photos/vzW5bFoAgMOXmal2dJhNVQ2tZt4YNoL6gPV4rPUt.png deleted file mode 100644 index 32baa7c..0000000 Binary files a/public/photos/vzW5bFoAgMOXmal2dJhNVQ2tZt4YNoL6gPV4rPUt.png and /dev/null differ diff --git a/public/photos/w8FFaLtNICK5pezFrfHi1hZt1CstZGeteqJM3lAp.png b/public/photos/w8FFaLtNICK5pezFrfHi1hZt1CstZGeteqJM3lAp.png deleted file mode 100644 index e94fcc0..0000000 Binary files a/public/photos/w8FFaLtNICK5pezFrfHi1hZt1CstZGeteqJM3lAp.png and /dev/null differ diff --git a/public/photos/wEWMZel4Vb.webp b/public/photos/wEWMZel4Vb.webp deleted file mode 100644 index d0a05da..0000000 Binary files a/public/photos/wEWMZel4Vb.webp and /dev/null differ diff --git a/public/photos/wJ336pD9Z4bYbUSgLSveuxYC4KoqliV9uGf6wHPW.png b/public/photos/wJ336pD9Z4bYbUSgLSveuxYC4KoqliV9uGf6wHPW.png deleted file mode 100644 index fdcd085..0000000 Binary files a/public/photos/wJ336pD9Z4bYbUSgLSveuxYC4KoqliV9uGf6wHPW.png and /dev/null differ diff --git a/public/photos/wbKJQ7THTT.webp b/public/photos/wbKJQ7THTT.webp deleted file mode 100644 index 13dab85..0000000 Binary files a/public/photos/wbKJQ7THTT.webp and /dev/null differ diff --git a/public/photos/wf3kqawP9tkzC8vVlm3ynwjXtX6pERN8A24XBDRU.png b/public/photos/wf3kqawP9tkzC8vVlm3ynwjXtX6pERN8A24XBDRU.png deleted file mode 100644 index 747c822..0000000 Binary files a/public/photos/wf3kqawP9tkzC8vVlm3ynwjXtX6pERN8A24XBDRU.png and /dev/null differ diff --git a/public/photos/wlK6NqHQ8vFrcotd2wlKoiAC2Z7Dkxhdwk2jbOt3.png b/public/photos/wlK6NqHQ8vFrcotd2wlKoiAC2Z7Dkxhdwk2jbOt3.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/wlK6NqHQ8vFrcotd2wlKoiAC2Z7Dkxhdwk2jbOt3.png and /dev/null differ diff --git a/public/photos/wqe67Gn9vL3EVklpmlkdOtRaaJTzff2w3b2wa4N9.png b/public/photos/wqe67Gn9vL3EVklpmlkdOtRaaJTzff2w3b2wa4N9.png deleted file mode 100644 index ff66253..0000000 Binary files a/public/photos/wqe67Gn9vL3EVklpmlkdOtRaaJTzff2w3b2wa4N9.png and /dev/null differ diff --git a/public/photos/x97OssnmjQ7RmVuNzhCC3SvRC9d0Zi34Y7cbMGBD.png b/public/photos/x97OssnmjQ7RmVuNzhCC3SvRC9d0Zi34Y7cbMGBD.png deleted file mode 100644 index 69df8a4..0000000 Binary files a/public/photos/x97OssnmjQ7RmVuNzhCC3SvRC9d0Zi34Y7cbMGBD.png and /dev/null differ diff --git a/public/photos/xBeNarAAMnX1Hl9XxrAJeonwxEeeU7mbHPAnR7bw.png b/public/photos/xBeNarAAMnX1Hl9XxrAJeonwxEeeU7mbHPAnR7bw.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/xBeNarAAMnX1Hl9XxrAJeonwxEeeU7mbHPAnR7bw.png and /dev/null differ diff --git a/public/photos/xKkpiV48KJLfpLVpteE3lCJaS6xgmP7NPbczAVlw.jpg b/public/photos/xKkpiV48KJLfpLVpteE3lCJaS6xgmP7NPbczAVlw.jpg deleted file mode 100644 index 3d73cb7..0000000 Binary files a/public/photos/xKkpiV48KJLfpLVpteE3lCJaS6xgmP7NPbczAVlw.jpg and /dev/null differ diff --git a/public/photos/xMl97eAEzf.webp b/public/photos/xMl97eAEzf.webp deleted file mode 100644 index 5c6eb7c..0000000 Binary files a/public/photos/xMl97eAEzf.webp and /dev/null differ diff --git a/public/photos/xUkUe3Z1GE.webp b/public/photos/xUkUe3Z1GE.webp deleted file mode 100644 index f19ba98..0000000 Binary files a/public/photos/xUkUe3Z1GE.webp and /dev/null differ diff --git a/public/photos/xXj3cRtrCwQLc8YUMDgrqOm9AlsQ20tNdQqN6iRa.png b/public/photos/xXj3cRtrCwQLc8YUMDgrqOm9AlsQ20tNdQqN6iRa.png deleted file mode 100644 index f1848e6..0000000 Binary files a/public/photos/xXj3cRtrCwQLc8YUMDgrqOm9AlsQ20tNdQqN6iRa.png and /dev/null differ diff --git a/public/photos/xdd7N4uG3JFer8ium5NHj0JO4eqw9QehemWTSO95.png b/public/photos/xdd7N4uG3JFer8ium5NHj0JO4eqw9QehemWTSO95.png deleted file mode 100644 index 6424745..0000000 Binary files a/public/photos/xdd7N4uG3JFer8ium5NHj0JO4eqw9QehemWTSO95.png and /dev/null differ diff --git a/public/photos/xfd62x7Naz5q6pn5YC983CpN8TshBFlcW9Ca5NLk.png b/public/photos/xfd62x7Naz5q6pn5YC983CpN8TshBFlcW9Ca5NLk.png deleted file mode 100644 index a3e3606..0000000 Binary files a/public/photos/xfd62x7Naz5q6pn5YC983CpN8TshBFlcW9Ca5NLk.png and /dev/null differ diff --git a/public/photos/yB1SAi6rilD45urlbDX45Pe5Y98utQxIeJaURRlq.png b/public/photos/yB1SAi6rilD45urlbDX45Pe5Y98utQxIeJaURRlq.png deleted file mode 100644 index 3ec0b08..0000000 Binary files a/public/photos/yB1SAi6rilD45urlbDX45Pe5Y98utQxIeJaURRlq.png and /dev/null differ diff --git a/public/photos/yUBgzoYRl7.webp b/public/photos/yUBgzoYRl7.webp deleted file mode 100644 index b645b69..0000000 Binary files a/public/photos/yUBgzoYRl7.webp and /dev/null differ diff --git a/public/photos/yeHnifs6pW.webp b/public/photos/yeHnifs6pW.webp deleted file mode 100644 index 2f665ed..0000000 Binary files a/public/photos/yeHnifs6pW.webp and /dev/null differ diff --git a/public/photos/ytHE547cNgYjboEWS7Gr3c51sf2IdIjAy0KXgtWW.png b/public/photos/ytHE547cNgYjboEWS7Gr3c51sf2IdIjAy0KXgtWW.png deleted file mode 100644 index 978c971..0000000 Binary files a/public/photos/ytHE547cNgYjboEWS7Gr3c51sf2IdIjAy0KXgtWW.png and /dev/null differ diff --git a/public/photos/yu6VrwAjx3dgys8CU5Rf6fIl3MuUVxOyJsXWXOt4.png b/public/photos/yu6VrwAjx3dgys8CU5Rf6fIl3MuUVxOyJsXWXOt4.png deleted file mode 100644 index 661ad7b..0000000 Binary files a/public/photos/yu6VrwAjx3dgys8CU5Rf6fIl3MuUVxOyJsXWXOt4.png and /dev/null differ diff --git a/public/photos/zGDkmnXi7nzkTVSYifnb4nOlSTsbJ3Sl5s2yaoGu.png b/public/photos/zGDkmnXi7nzkTVSYifnb4nOlSTsbJ3Sl5s2yaoGu.png deleted file mode 100644 index 415be1c..0000000 Binary files a/public/photos/zGDkmnXi7nzkTVSYifnb4nOlSTsbJ3Sl5s2yaoGu.png and /dev/null differ diff --git a/public/photos/zZ5Z2crlBwSOIWTPggGhvcQmm6mXs6G6ZXPTNdkf.jpg b/public/photos/zZ5Z2crlBwSOIWTPggGhvcQmm6mXs6G6ZXPTNdkf.jpg deleted file mode 100644 index da542d9..0000000 Binary files a/public/photos/zZ5Z2crlBwSOIWTPggGhvcQmm6mXs6G6ZXPTNdkf.jpg and /dev/null differ diff --git a/public/photos/ze7qC02gxVsY04lDvUvxZ0yDLyNHZsSb5KRBli5A.png b/public/photos/ze7qC02gxVsY04lDvUvxZ0yDLyNHZsSb5KRBli5A.png deleted file mode 100644 index 1d87da9..0000000 Binary files a/public/photos/ze7qC02gxVsY04lDvUvxZ0yDLyNHZsSb5KRBli5A.png and /dev/null differ diff --git a/public/photos/zezGI9AqNxAWpRATQOQBfsBAfIoqbUk3HE2zcWGV.png b/public/photos/zezGI9AqNxAWpRATQOQBfsBAfIoqbUk3HE2zcWGV.png deleted file mode 100644 index d76b0a2..0000000 Binary files a/public/photos/zezGI9AqNxAWpRATQOQBfsBAfIoqbUk3HE2zcWGV.png and /dev/null differ diff --git a/public/photos/zlcDHDQX3Q.webp b/public/photos/zlcDHDQX3Q.webp deleted file mode 100644 index 0c89a7e..0000000 Binary files a/public/photos/zlcDHDQX3Q.webp and /dev/null differ diff --git a/public/photos/zq6kddzbAgkoo1C9cDRU8KDGuKVf2ehHPPppmgs6.jpg b/public/photos/zq6kddzbAgkoo1C9cDRU8KDGuKVf2ehHPPppmgs6.jpg deleted file mode 100644 index 56100c0..0000000 Binary files a/public/photos/zq6kddzbAgkoo1C9cDRU8KDGuKVf2ehHPPppmgs6.jpg and /dev/null differ diff --git a/public/photos/zqvgSPlXPe.webp b/public/photos/zqvgSPlXPe.webp deleted file mode 100644 index dceb37a..0000000 Binary files a/public/photos/zqvgSPlXPe.webp and /dev/null differ diff --git a/public/robots.txt b/public/robots.txt old mode 100644 new mode 100755 diff --git a/public/vendor/livewire-alert/livewire-alert.js b/public/vendor/livewire-alert/livewire-alert.js old mode 100644 new mode 100755 diff --git a/public/vendor/livewire/livewire.js b/public/vendor/livewire/livewire.js old mode 100644 new mode 100755 index 4d9ef6e..c28a26b --- a/public/vendor/livewire/livewire.js +++ b/public/vendor/livewire/livewire.js @@ -1,4 +1,4 @@ -!function(global,factory){"object"==typeof exports&&"undefined"!=typeof module?module.exports=factory():"function"==typeof define&&define.amd?define(factory):(global="undefined"!=typeof globalThis?globalThis:global||self).Livewire=factory()}(this,(function(){"use strict";function ownKeys$1(object,enumerableOnly){var keys=Object.keys(object);if(Object.getOwnPropertySymbols){var symbols=Object.getOwnPropertySymbols(object);enumerableOnly&&(symbols=symbols.filter((function(sym){return Object.getOwnPropertyDescriptor(object,sym).enumerable}))),keys.push.apply(keys,symbols)}return keys}function _objectSpread2(target){for(var i=1;iarr.length)&&(len=arr.length);for(var i=0,arr2=new Array(len);i0&&void 0!==arguments[0]?arguments[0]:"right";return this.modifiers.includes("up")?"up":this.modifiers.includes("down")?"down":this.modifiers.includes("left")?"left":this.modifiers.includes("right")?"right":fallback}}]),Directive}();function walk(root,callback){if(!1!==callback(root))for(var node=root.firstElementChild;node;)walk(node,callback),node=node.nextElementSibling}function dispatch(eventName){var event=document.createEvent("Events");return event.initEvent(eventName,!0,!0),document.dispatchEvent(event),event}function getCsrfToken(){var _window$livewire_toke,tokenTag=document.head.querySelector('meta[name="csrf-token"]');return tokenTag?tokenTag.content:null!==(_window$livewire_toke=window.livewire_token)&&void 0!==_window$livewire_toke?_window$livewire_toke:void 0}function kebabCase(subject){return subject.replace(/([a-z])([A-Z])/g,"$1-$2").replace(/[_\s]/,"-").toLowerCase()} +!function(global,factory){"object"==typeof exports&&"undefined"!=typeof module?module.exports=factory():"function"==typeof define&&define.amd?define(factory):(global="undefined"!=typeof globalThis?globalThis:global||self).Livewire=factory()}(this,(function(){"use strict";function _iterableToArrayLimit(arr,i){var _i=null==arr?null:"undefined"!=typeof Symbol&&arr[Symbol.iterator]||arr["@@iterator"];if(null!=_i){var _s,_e,_x,_r,_arr=[],_n=!0,_d=!1;try{if(_x=(_i=_i.call(arr)).next,0===i){if(Object(_i)!==_i)return;_n=!1}else for(;!(_n=(_s=_x.call(_i)).done)&&(_arr.push(_s.value),_arr.length!==i);_n=!0);}catch(err){_d=!0,_e=err}finally{try{if(!_n&&null!=_i.return&&(_r=_i.return(),Object(_r)!==_r))return}finally{if(_d)throw _e}}return _arr}}function ownKeys$1(object,enumerableOnly){var keys=Object.keys(object);if(Object.getOwnPropertySymbols){var symbols=Object.getOwnPropertySymbols(object);enumerableOnly&&(symbols=symbols.filter((function(sym){return Object.getOwnPropertyDescriptor(object,sym).enumerable}))),keys.push.apply(keys,symbols)}return keys}function _objectSpread2(target){for(var i=1;iarr.length)&&(len=arr.length);for(var i=0,arr2=new Array(len);i0&&void 0!==arguments[0]?arguments[0]:"right";return this.modifiers.includes("up")?"up":this.modifiers.includes("down")?"down":this.modifiers.includes("left")?"left":this.modifiers.includes("right")?"right":fallback}}]),Directive}();function walk(root,callback){if(!1!==callback(root))for(var node=root.firstElementChild;node;)walk(node,callback),node=node.nextElementSibling}function dispatch(eventName){var event=document.createEvent("Events");return event.initEvent(eventName,!0,!0),document.dispatchEvent(event),event}function getCsrfToken(){var _window$livewire_toke,tokenTag=document.head.querySelector('meta[name="csrf-token"]');return tokenTag?tokenTag.content:null!==(_window$livewire_toke=window.livewire_token)&&void 0!==_window$livewire_toke?_window$livewire_toke:void 0}function kebabCase(subject){return subject.replace(/([a-z])([A-Z])/g,"$1-$2").replace(/[_\s]/,"-").toLowerCase()} /*! * isobject * @@ -10,5 +10,5 @@ * * Copyright (c) 2014-2018, Jon Schlinkert. * Released under the MIT License. - */function join(segs,joinChar,options){return"function"==typeof options.join?options.join(segs):segs[0]+joinChar+segs[1]}function split$1(path,splitChar,options){return"function"==typeof options.split?options.split(path):path.split(splitChar)}function isValid(key,target,options){return"function"!=typeof options.isValid||options.isValid(key,target)}function isValidObject(val){return isobject(val)||Array.isArray(val)||"function"==typeof val}var _default$6=function(){function _default(el){var skipWatcher=arguments.length>1&&void 0!==arguments[1]&&arguments[1];_classCallCheck(this,_default),this.el=el,this.skipWatcher=skipWatcher,this.resolveCallback=function(){},this.rejectCallback=function(){},this.signature=(Math.random()+1).toString(36).substring(8)}return _createClass(_default,[{key:"toId",value:function(){return btoa(encodeURIComponent(this.el.outerHTML))}},{key:"onResolve",value:function(callback){this.resolveCallback=callback}},{key:"onReject",value:function(callback){this.rejectCallback=callback}},{key:"resolve",value:function(thing){this.resolveCallback(thing)}},{key:"reject",value:function(thing){this.rejectCallback(thing)}}]),_default}(),_default$5=function(_Action){_inherits(_default,_Action);var _super=_createSuper(_default);function _default(event,params,el){var _this;return _classCallCheck(this,_default),(_this=_super.call(this,el)).type="fireEvent",_this.payload={id:_this.signature,event:event,params:params},_this}return _createClass(_default,[{key:"toId",value:function(){return btoa(encodeURIComponent(this.type,this.payload.event,JSON.stringify(this.payload.params)))}}]),_default}(_default$6),MessageBus=function(){function MessageBus(){_classCallCheck(this,MessageBus),this.listeners={}}return _createClass(MessageBus,[{key:"register",value:function(name,callback){this.listeners[name]||(this.listeners[name]=[]),this.listeners[name].push(callback)}},{key:"call",value:function(name){for(var _len=arguments.length,params=new Array(_len>1?_len-1:0),_key=1;_key<_len;_key++)params[_key-1]=arguments[_key];(this.listeners[name]||[]).forEach((function(callback){callback.apply(void 0,params)}))}},{key:"has",value:function(name){return Object.keys(this.listeners).includes(name)}}]),MessageBus}(),HookManager={availableHooks:["component.initialized","element.initialized","element.updating","element.updated","element.removed","message.sent","message.failed","message.received","message.processed","interceptWireModelSetValue","interceptWireModelAttachListener","beforeReplaceState","beforePushState"],bus:new MessageBus,register:function(name,callback){if(!this.availableHooks.includes(name))throw"Livewire: Referencing unknown hook: [".concat(name,"]");this.bus.register(name,callback)},call:function(name){for(var _this$bus,_len=arguments.length,params=new Array(_len>1?_len-1:0),_key=1;_key<_len;_key++)params[_key-1]=arguments[_key];(_this$bus=this.bus).call.apply(_this$bus,[name].concat(params))}},DirectiveManager={directives:new MessageBus,register:function(name,callback){if(this.has(name))throw"Livewire: Directive already registered: [".concat(name,"]");this.directives.register(name,callback)},call:function(name,el,directive,component){this.directives.call(name,el,directive,component)},has:function(name){return this.directives.has(name)}},store$2={componentsById:{},listeners:new MessageBus,initialRenderIsFinished:!1,livewireIsInBackground:!1,livewireIsOffline:!1,sessionHasExpired:!1,sessionHasExpiredCallback:void 0,directives:DirectiveManager,hooks:HookManager,onErrorCallback:function(){},components:function(){var _this=this;return Object.keys(this.componentsById).map((function(key){return _this.componentsById[key]}))},addComponent:function(component){return this.componentsById[component.id]=component},findComponent:function(id){return this.componentsById[id]},getComponentsByName:function(name){return this.components().filter((function(component){return component.name===name}))},hasComponent:function(id){return!!this.componentsById[id]},tearDownComponents:function(){var _this2=this;this.components().forEach((function(component){_this2.removeComponent(component)}))},on:function(event,callback){this.listeners.register(event,callback)},emit:function(event){for(var _this$listeners,_len=arguments.length,params=new Array(_len>1?_len-1:0),_key=1;_key<_len;_key++)params[_key-1]=arguments[_key];(_this$listeners=this.listeners).call.apply(_this$listeners,[event].concat(params)),this.componentsListeningForEvent(event).forEach((function(component){return component.addAction(new _default$5(event,params))}))},emitUp:function(el,event){for(var _len2=arguments.length,params=new Array(_len2>2?_len2-2:0),_key2=2;_key2<_len2;_key2++)params[_key2-2]=arguments[_key2];this.componentsListeningForEventThatAreTreeAncestors(el,event).forEach((function(component){return component.addAction(new _default$5(event,params))}))},emitSelf:function(componentId,event){var component=this.findComponent(componentId);if(component.listeners.includes(event)){for(var _len3=arguments.length,params=new Array(_len3>2?_len3-2:0),_key3=2;_key3<_len3;_key3++)params[_key3-2]=arguments[_key3];component.addAction(new _default$5(event,params))}},emitTo:function(componentName,event){for(var _len4=arguments.length,params=new Array(_len4>2?_len4-2:0),_key4=2;_key4<_len4;_key4++)params[_key4-2]=arguments[_key4];var components=this.getComponentsByName(componentName);components.forEach((function(component){component.listeners.includes(event)&&component.addAction(new _default$5(event,params))}))},componentsListeningForEventThatAreTreeAncestors:function(el,event){for(var parentIds=[],parent=el.parentElement.closest("[wire\\:id]");parent;)parentIds.push(parent.getAttribute("wire:id")),parent=parent.parentElement.closest("[wire\\:id]");return this.components().filter((function(component){return component.listeners.includes(event)&&parentIds.includes(component.id)}))},componentsListeningForEvent:function(event){return this.components().filter((function(component){return component.listeners.includes(event)}))},registerDirective:function(name,callback){this.directives.register(name,callback)},registerHook:function(name,callback){this.hooks.register(name,callback)},callHook:function(name){for(var _this$hooks,_len5=arguments.length,params=new Array(_len5>1?_len5-1:0),_key5=1;_key5<_len5;_key5++)params[_key5-1]=arguments[_key5];(_this$hooks=this.hooks).call.apply(_this$hooks,[name].concat(params))},changeComponentId:function(component,newId){var oldId=component.id;component.id=newId,component.fingerprint.id=newId,this.componentsById[newId]=component,delete this.componentsById[oldId],this.components().forEach((function(component){var children=component.serverMemo.children||{};Object.entries(children).forEach((function(_ref){var _ref2=_slicedToArray(_ref,2),key=_ref2[0],_ref2$=_ref2[1],id=_ref2$.id;_ref2$.tagName,id===oldId&&(children[key].id=newId)}))}))},removeComponent:function(component){component.tearDown(),delete this.componentsById[component.id]},onError:function(callback){this.onErrorCallback=callback},getClosestParentId:function(childId,subsetOfParentIds){var _this3=this,distancesByParentId={};subsetOfParentIds.forEach((function(parentId){var distance=_this3.getDistanceToChild(parentId,childId);distance&&(distancesByParentId[parentId]=distance)}));var closestParentId,smallestDistance=Math.min.apply(Math,_toConsumableArray(Object.values(distancesByParentId)));return Object.entries(distancesByParentId).forEach((function(_ref3){var _ref4=_slicedToArray(_ref3,2),parentId=_ref4[0];_ref4[1]===smallestDistance&&(closestParentId=parentId)})),closestParentId},getDistanceToChild:function(parentId,childId){var distanceMemo=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,parentComponent=this.findComponent(parentId);if(parentComponent){var childIds=parentComponent.childIds;if(childIds.includes(childId))return distanceMemo;for(var i=0;i0&&void 0!==arguments[0]?arguments[0]:null;null===node&&(node=document);var allEls=Array.from(node.querySelectorAll("[wire\\:initial-data]")),onlyChildEls=Array.from(node.querySelectorAll("[wire\\:initial-data] [wire\\:initial-data]"));return allEls.filter((function(el){return!onlyChildEls.includes(el)}))},allModelElementsInside:function(root){return Array.from(root.querySelectorAll("[wire\\:model]"))},getByAttributeAndValue:function(attribute,value){return document.querySelector("[wire\\:".concat(attribute,'="').concat(value,'"]'))},nextFrame:function(fn){var _this=this;requestAnimationFrame((function(){requestAnimationFrame(fn.bind(_this))}))},closestRoot:function(el){return this.closestByAttribute(el,"id")},closestByAttribute:function(el,attribute){var closestEl=el.closest("[wire\\:".concat(attribute,"]"));if(!closestEl)throw"\nLivewire Error:\n\nCannot find parent element in DOM tree containing attribute: [wire:".concat(attribute,"].\n\nUsually this is caused by Livewire's DOM-differ not being able to properly track changes.\n\nReference the following guide for common causes: https://laravel-livewire.com/docs/troubleshooting \n\nReferenced element:\n\n").concat(el.outerHTML,"\n");return closestEl},isComponentRootEl:function(el){return this.hasAttribute(el,"id")},hasAttribute:function(el,attribute){return el.hasAttribute("wire:".concat(attribute))},getAttribute:function(el,attribute){return el.getAttribute("wire:".concat(attribute))},removeAttribute:function(el,attribute){return el.removeAttribute("wire:".concat(attribute))},setAttribute:function(el,attribute,value){return el.setAttribute("wire:".concat(attribute),value)},hasFocus:function(el){return el===document.activeElement},isInput:function(el){return["INPUT","TEXTAREA","SELECT"].includes(el.tagName.toUpperCase())},isTextInput:function(el){return["INPUT","TEXTAREA"].includes(el.tagName.toUpperCase())&&!["checkbox","radio"].includes(el.type)},valueFromInput:function(el,component){if("checkbox"===el.type){var modelName=wireDirectives(el).get("model").value,modelValue=component.deferredActions[modelName]?component.deferredActions[modelName].payload.value:getValue(component.data,modelName);return Array.isArray(modelValue)?this.mergeCheckboxValueIntoArray(el,modelValue):!!el.checked&&(el.getAttribute("value")||!0)}return"SELECT"===el.tagName&&el.multiple?this.getSelectValues(el):el.value},mergeCheckboxValueIntoArray:function(el,arrayValue){return el.checked?arrayValue.includes(el.value)?arrayValue:arrayValue.concat(el.value):arrayValue.filter((function(item){return item!=el.value}))},setInputValueFromModel:function(el,component){var modelString=wireDirectives(el).get("model").value,modelValue=getValue(component.data,modelString);"input"===el.tagName.toLowerCase()&&"file"===el.type||this.setInputValue(el,modelValue)},setInputValue:function(el,value){if(store$2.callHook("interceptWireModelSetValue",value,el),"radio"===el.type)el.checked=el.value==value;else if("checkbox"===el.type)if(Array.isArray(value)){var valueFound=!1;value.forEach((function(val){val==el.value&&(valueFound=!0)})),el.checked=valueFound}else el.checked=!!value;else"SELECT"===el.tagName?this.updateSelect(el,value):(value=void 0===value?"":value,el.value=value)},getSelectValues:function(el){return Array.from(el.options).filter((function(option){return option.selected})).map((function(option){return option.value||option.text}))},updateSelect:function(el,value){var arrayWrappedValue=[].concat(value).map((function(value){return value+""}));Array.from(el.options).forEach((function(option){option.selected=arrayWrappedValue.includes(option.value)}))}},ceil=Math.ceil,floor=Math.floor,toInteger=function(argument){return isNaN(argument=+argument)?0:(argument>0?floor:ceil)(argument)},requireObjectCoercible=function(it){if(null==it)throw TypeError("Can't call method on "+it);return it},createMethod$3=function(CONVERT_TO_STRING){return function($this,pos){var first,second,S=String(requireObjectCoercible($this)),position=toInteger(pos),size=S.length;return position<0||position>=size?CONVERT_TO_STRING?"":void 0:(first=S.charCodeAt(position))<55296||first>56319||position+1===size||(second=S.charCodeAt(position+1))<56320||second>57343?CONVERT_TO_STRING?S.charAt(position):first:CONVERT_TO_STRING?S.slice(position,position+2):second-56320+(first-55296<<10)+65536}},stringMultibyte={codeAt:createMethod$3(!1),charAt:createMethod$3(!0)},commonjsGlobal="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function createCommonjsModule(fn,basedir,module){return fn(module={path:basedir,exports:{},require:function(path,base){return commonjsRequire(path,null==base?module.path:base)}},module.exports),module.exports}function commonjsRequire(){throw new Error("Dynamic requires are not currently supported by @rollup/plugin-commonjs")}var check=function(it){return it&&it.Math==Math&&it},global_1=check("object"==typeof globalThis&&globalThis)||check("object"==typeof window&&window)||check("object"==typeof self&&self)||check("object"==typeof commonjsGlobal&&commonjsGlobal)||function(){return this}()||Function("return this")(),fails=function(exec){try{return!!exec()}catch(error){return!0}},descriptors=!fails((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})),isObject=function(it){return"object"==typeof it?null!==it:"function"==typeof it},document$3=global_1.document,EXISTS=isObject(document$3)&&isObject(document$3.createElement),documentCreateElement=function(it){return EXISTS?document$3.createElement(it):{}},ie8DomDefine=!descriptors&&!fails((function(){return 7!=Object.defineProperty(documentCreateElement("div"),"a",{get:function(){return 7}}).a})),anObject=function(it){if(!isObject(it))throw TypeError(String(it)+" is not an object");return it},toPrimitive=function(input,PREFERRED_STRING){if(!isObject(input))return input;var fn,val;if(PREFERRED_STRING&&"function"==typeof(fn=input.toString)&&!isObject(val=fn.call(input)))return val;if("function"==typeof(fn=input.valueOf)&&!isObject(val=fn.call(input)))return val;if(!PREFERRED_STRING&&"function"==typeof(fn=input.toString)&&!isObject(val=fn.call(input)))return val;throw TypeError("Can't convert object to primitive value")},$defineProperty=Object.defineProperty,f$5=descriptors?$defineProperty:function(O,P,Attributes){if(anObject(O),P=toPrimitive(P,!0),anObject(Attributes),ie8DomDefine)try{return $defineProperty(O,P,Attributes)}catch(error){}if("get"in Attributes||"set"in Attributes)throw TypeError("Accessors not supported");return"value"in Attributes&&(O[P]=Attributes.value),O},objectDefineProperty={f:f$5},createPropertyDescriptor=function(bitmap,value){return{enumerable:!(1&bitmap),configurable:!(2&bitmap),writable:!(4&bitmap),value:value}},createNonEnumerableProperty=descriptors?function(object,key,value){return objectDefineProperty.f(object,key,createPropertyDescriptor(1,value))}:function(object,key,value){return object[key]=value,object},setGlobal=function(key,value){try{createNonEnumerableProperty(global_1,key,value)}catch(error){global_1[key]=value}return value},SHARED="__core-js_shared__",store$1=global_1[SHARED]||setGlobal(SHARED,{}),sharedStore=store$1,functionToString=Function.toString;"function"!=typeof sharedStore.inspectSource&&(sharedStore.inspectSource=function(it){return functionToString.call(it)});var inspectSource=sharedStore.inspectSource,WeakMap$1=global_1.WeakMap,nativeWeakMap="function"==typeof WeakMap$1&&/native code/.test(inspectSource(WeakMap$1)),toObject=function(argument){return Object(requireObjectCoercible(argument))},hasOwnProperty={}.hasOwnProperty,has$1=Object.hasOwn||function(it,key){return hasOwnProperty.call(toObject(it),key)},shared=createCommonjsModule((function(module){(module.exports=function(key,value){return sharedStore[key]||(sharedStore[key]=void 0!==value?value:{})})("versions",[]).push({version:"3.15.2",mode:"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})})),id=0,postfix=Math.random(),uid=function(key){return"Symbol("+String(void 0===key?"":key)+")_"+(++id+postfix).toString(36)},keys=shared("keys"),sharedKey=function(key){return keys[key]||(keys[key]=uid(key))},hiddenKeys$1={},OBJECT_ALREADY_INITIALIZED="Object already initialized",WeakMap=global_1.WeakMap,set$1,get,has,enforce=function(it){return has(it)?get(it):set$1(it,{})},getterFor=function(TYPE){return function(it){var state;if(!isObject(it)||(state=get(it)).type!==TYPE)throw TypeError("Incompatible receiver, "+TYPE+" required");return state}};if(nativeWeakMap||sharedStore.state){var store=sharedStore.state||(sharedStore.state=new WeakMap),wmget=store.get,wmhas=store.has,wmset=store.set;set$1=function(it,metadata){if(wmhas.call(store,it))throw new TypeError(OBJECT_ALREADY_INITIALIZED);return metadata.facade=it,wmset.call(store,it,metadata),metadata},get=function(it){return wmget.call(store,it)||{}},has=function(it){return wmhas.call(store,it)}}else{var STATE=sharedKey("state");hiddenKeys$1[STATE]=!0,set$1=function(it,metadata){if(has$1(it,STATE))throw new TypeError(OBJECT_ALREADY_INITIALIZED);return metadata.facade=it,createNonEnumerableProperty(it,STATE,metadata),metadata},get=function(it){return has$1(it,STATE)?it[STATE]:{}},has=function(it){return has$1(it,STATE)}}var internalState={set:set$1,get:get,has:has,enforce:enforce,getterFor:getterFor},$propertyIsEnumerable={}.propertyIsEnumerable,getOwnPropertyDescriptor$3=Object.getOwnPropertyDescriptor,NASHORN_BUG=getOwnPropertyDescriptor$3&&!$propertyIsEnumerable.call({1:2},1),f$4=NASHORN_BUG?function(V){var descriptor=getOwnPropertyDescriptor$3(this,V);return!!descriptor&&descriptor.enumerable}:$propertyIsEnumerable,objectPropertyIsEnumerable={f:f$4},toString={}.toString,classofRaw=function(it){return toString.call(it).slice(8,-1)},split="".split,indexedObject=fails((function(){return!Object("z").propertyIsEnumerable(0)}))?function(it){return"String"==classofRaw(it)?split.call(it,""):Object(it)}:Object,toIndexedObject=function(it){return indexedObject(requireObjectCoercible(it))},$getOwnPropertyDescriptor=Object.getOwnPropertyDescriptor,f$3=descriptors?$getOwnPropertyDescriptor:function(O,P){if(O=toIndexedObject(O),P=toPrimitive(P,!0),ie8DomDefine)try{return $getOwnPropertyDescriptor(O,P)}catch(error){}if(has$1(O,P))return createPropertyDescriptor(!objectPropertyIsEnumerable.f.call(O,P),O[P])},objectGetOwnPropertyDescriptor={f:f$3},redefine=createCommonjsModule((function(module){var getInternalState=internalState.get,enforceInternalState=internalState.enforce,TEMPLATE=String(String).split("String");(module.exports=function(O,key,value,options){var state,unsafe=!!options&&!!options.unsafe,simple=!!options&&!!options.enumerable,noTargetGet=!!options&&!!options.noTargetGet;"function"==typeof value&&("string"!=typeof key||has$1(value,"name")||createNonEnumerableProperty(value,"name",key),(state=enforceInternalState(value)).source||(state.source=TEMPLATE.join("string"==typeof key?key:""))),O!==global_1?(unsafe?!noTargetGet&&O[key]&&(simple=!0):delete O[key],simple?O[key]=value:createNonEnumerableProperty(O,key,value)):simple?O[key]=value:setGlobal(key,value)})(Function.prototype,"toString",(function(){return"function"==typeof this&&getInternalState(this).source||inspectSource(this)}))})),path=global_1,aFunction$1=function(variable){return"function"==typeof variable?variable:void 0},getBuiltIn=function(namespace,method){return arguments.length<2?aFunction$1(path[namespace])||aFunction$1(global_1[namespace]):path[namespace]&&path[namespace][method]||global_1[namespace]&&global_1[namespace][method]},min$2=Math.min,toLength=function(argument){return argument>0?min$2(toInteger(argument),9007199254740991):0},max=Math.max,min$1=Math.min,toAbsoluteIndex=function(index,length){var integer=toInteger(index);return integer<0?max(integer+length,0):min$1(integer,length)},createMethod$2=function(IS_INCLUDES){return function($this,el,fromIndex){var value,O=toIndexedObject($this),length=toLength(O.length),index=toAbsoluteIndex(fromIndex,length);if(IS_INCLUDES&&el!=el){for(;length>index;)if((value=O[index++])!=value)return!0}else for(;length>index;index++)if((IS_INCLUDES||index in O)&&O[index]===el)return IS_INCLUDES||index||0;return!IS_INCLUDES&&-1}},arrayIncludes={includes:createMethod$2(!0),indexOf:createMethod$2(!1)},indexOf=arrayIncludes.indexOf,objectKeysInternal=function(object,names){var key,O=toIndexedObject(object),i=0,result=[];for(key in O)!has$1(hiddenKeys$1,key)&&has$1(O,key)&&result.push(key);for(;names.length>i;)has$1(O,key=names[i++])&&(~indexOf(result,key)||result.push(key));return result},enumBugKeys=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],hiddenKeys=enumBugKeys.concat("length","prototype"),f$2=Object.getOwnPropertyNames||function(O){return objectKeysInternal(O,hiddenKeys)},objectGetOwnPropertyNames={f:f$2},f$1=Object.getOwnPropertySymbols,objectGetOwnPropertySymbols={f:f$1},ownKeys=getBuiltIn("Reflect","ownKeys")||function(it){var keys=objectGetOwnPropertyNames.f(anObject(it)),getOwnPropertySymbols=objectGetOwnPropertySymbols.f;return getOwnPropertySymbols?keys.concat(getOwnPropertySymbols(it)):keys},copyConstructorProperties=function(target,source){for(var keys=ownKeys(source),defineProperty=objectDefineProperty.f,getOwnPropertyDescriptor=objectGetOwnPropertyDescriptor.f,i=0;i=74)&&(match=engineUserAgent.match(/Chrome\/(\d+)/),match&&(version=match[1])));var engineV8Version=version&&+version,nativeSymbol=!!Object.getOwnPropertySymbols&&!fails((function(){var symbol=Symbol();return!String(symbol)||!(Object(symbol)instanceof Symbol)||!Symbol.sham&&engineV8Version&&engineV8Version<41})),useSymbolAsUid=nativeSymbol&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,WellKnownSymbolsStore=shared("wks"),Symbol$1=global_1.Symbol,createWellKnownSymbol=useSymbolAsUid?Symbol$1:Symbol$1&&Symbol$1.withoutSetter||uid,wellKnownSymbol=function(name){return has$1(WellKnownSymbolsStore,name)&&(nativeSymbol||"string"==typeof WellKnownSymbolsStore[name])||(nativeSymbol&&has$1(Symbol$1,name)?WellKnownSymbolsStore[name]=Symbol$1[name]:WellKnownSymbolsStore[name]=createWellKnownSymbol("Symbol."+name)),WellKnownSymbolsStore[name]},ITERATOR$5=wellKnownSymbol("iterator"),BUGGY_SAFARI_ITERATORS$1=!1,returnThis$2=function(){return this},IteratorPrototype$2,PrototypeOfArrayIteratorPrototype,arrayIterator;[].keys&&(arrayIterator=[].keys(),"next"in arrayIterator?(PrototypeOfArrayIteratorPrototype=objectGetPrototypeOf(objectGetPrototypeOf(arrayIterator)),PrototypeOfArrayIteratorPrototype!==Object.prototype&&(IteratorPrototype$2=PrototypeOfArrayIteratorPrototype)):BUGGY_SAFARI_ITERATORS$1=!0);var NEW_ITERATOR_PROTOTYPE=null==IteratorPrototype$2||fails((function(){var test={};return IteratorPrototype$2[ITERATOR$5].call(test)!==test}));NEW_ITERATOR_PROTOTYPE&&(IteratorPrototype$2={}),has$1(IteratorPrototype$2,ITERATOR$5)||createNonEnumerableProperty(IteratorPrototype$2,ITERATOR$5,returnThis$2);var iteratorsCore={IteratorPrototype:IteratorPrototype$2,BUGGY_SAFARI_ITERATORS:BUGGY_SAFARI_ITERATORS$1},objectKeys=Object.keys||function(O){return objectKeysInternal(O,enumBugKeys)},objectDefineProperties=descriptors?Object.defineProperties:function(O,Properties){anObject(O);for(var key,keys=objectKeys(Properties),length=keys.length,index=0;length>index;)objectDefineProperty.f(O,key=keys[index++],Properties[key]);return O},html=getBuiltIn("document","documentElement"),GT=">",LT="<",PROTOTYPE="prototype",SCRIPT="script",IE_PROTO=sharedKey("IE_PROTO"),EmptyConstructor=function(){},scriptTag=function(content){return LT+SCRIPT+GT+content+LT+"/"+SCRIPT+GT},NullProtoObjectViaActiveX=function(activeXDocument){activeXDocument.write(scriptTag("")),activeXDocument.close();var temp=activeXDocument.parentWindow.Object;return activeXDocument=null,temp},NullProtoObjectViaIFrame=function(){var iframeDocument,iframe=documentCreateElement("iframe"),JS="java"+SCRIPT+":";return iframe.style.display="none",html.appendChild(iframe),iframe.src=String(JS),(iframeDocument=iframe.contentWindow.document).open(),iframeDocument.write(scriptTag("document.F=Object")),iframeDocument.close(),iframeDocument.F},activeXDocument,NullProtoObject=function(){try{activeXDocument=document.domain&&new ActiveXObject("htmlfile")}catch(error){}NullProtoObject=activeXDocument?NullProtoObjectViaActiveX(activeXDocument):NullProtoObjectViaIFrame();for(var length=enumBugKeys.length;length--;)delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];return NullProtoObject()};hiddenKeys$1[IE_PROTO]=!0;var objectCreate=Object.create||function(O,Properties){var result;return null!==O?(EmptyConstructor[PROTOTYPE]=anObject(O),result=new EmptyConstructor,EmptyConstructor[PROTOTYPE]=null,result[IE_PROTO]=O):result=NullProtoObject(),void 0===Properties?result:objectDefineProperties(result,Properties)},defineProperty$1=objectDefineProperty.f,TO_STRING_TAG$3=wellKnownSymbol("toStringTag"),setToStringTag=function(it,TAG,STATIC){it&&!has$1(it=STATIC?it:it.prototype,TO_STRING_TAG$3)&&defineProperty$1(it,TO_STRING_TAG$3,{configurable:!0,value:TAG})},iterators={},IteratorPrototype$1=iteratorsCore.IteratorPrototype,returnThis$1=function(){return this},createIteratorConstructor=function(IteratorConstructor,NAME,next){var TO_STRING_TAG=NAME+" Iterator";return IteratorConstructor.prototype=objectCreate(IteratorPrototype$1,{next:createPropertyDescriptor(1,next)}),setToStringTag(IteratorConstructor,TO_STRING_TAG,!1),iterators[TO_STRING_TAG]=returnThis$1,IteratorConstructor},aPossiblePrototype=function(it){if(!isObject(it)&&null!==it)throw TypeError("Can't set "+String(it)+" as a prototype");return it},objectSetPrototypeOf=Object.setPrototypeOf||("__proto__"in{}?function(){var setter,CORRECT_SETTER=!1,test={};try{(setter=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(test,[]),CORRECT_SETTER=test instanceof Array}catch(error){}return function(O,proto){return anObject(O),aPossiblePrototype(proto),CORRECT_SETTER?setter.call(O,proto):O.__proto__=proto,O}}():void 0),IteratorPrototype=iteratorsCore.IteratorPrototype,BUGGY_SAFARI_ITERATORS=iteratorsCore.BUGGY_SAFARI_ITERATORS,ITERATOR$4=wellKnownSymbol("iterator"),KEYS="keys",VALUES="values",ENTRIES="entries",returnThis=function(){return this},defineIterator=function(Iterable,NAME,IteratorConstructor,next,DEFAULT,IS_SET,FORCED){createIteratorConstructor(IteratorConstructor,NAME,next);var CurrentIteratorPrototype,methods,KEY,getIterationMethod=function(KIND){if(KIND===DEFAULT&&defaultIterator)return defaultIterator;if(!BUGGY_SAFARI_ITERATORS&&KIND in IterablePrototype)return IterablePrototype[KIND];switch(KIND){case KEYS:case VALUES:case ENTRIES:return function(){return new IteratorConstructor(this,KIND)}}return function(){return new IteratorConstructor(this)}},TO_STRING_TAG=NAME+" Iterator",INCORRECT_VALUES_NAME=!1,IterablePrototype=Iterable.prototype,nativeIterator=IterablePrototype[ITERATOR$4]||IterablePrototype["@@iterator"]||DEFAULT&&IterablePrototype[DEFAULT],defaultIterator=!BUGGY_SAFARI_ITERATORS&&nativeIterator||getIterationMethod(DEFAULT),anyNativeIterator="Array"==NAME&&IterablePrototype.entries||nativeIterator;if(anyNativeIterator&&(CurrentIteratorPrototype=objectGetPrototypeOf(anyNativeIterator.call(new Iterable)),IteratorPrototype!==Object.prototype&&CurrentIteratorPrototype.next&&(objectGetPrototypeOf(CurrentIteratorPrototype)!==IteratorPrototype&&(objectSetPrototypeOf?objectSetPrototypeOf(CurrentIteratorPrototype,IteratorPrototype):"function"!=typeof CurrentIteratorPrototype[ITERATOR$4]&&createNonEnumerableProperty(CurrentIteratorPrototype,ITERATOR$4,returnThis)),setToStringTag(CurrentIteratorPrototype,TO_STRING_TAG,!0))),DEFAULT==VALUES&&nativeIterator&&nativeIterator.name!==VALUES&&(INCORRECT_VALUES_NAME=!0,defaultIterator=function(){return nativeIterator.call(this)}),IterablePrototype[ITERATOR$4]!==defaultIterator&&createNonEnumerableProperty(IterablePrototype,ITERATOR$4,defaultIterator),iterators[NAME]=defaultIterator,DEFAULT)if(methods={values:getIterationMethod(VALUES),keys:IS_SET?defaultIterator:getIterationMethod(KEYS),entries:getIterationMethod(ENTRIES)},FORCED)for(KEY in methods)(BUGGY_SAFARI_ITERATORS||INCORRECT_VALUES_NAME||!(KEY in IterablePrototype))&&redefine(IterablePrototype,KEY,methods[KEY]);else _export({target:NAME,proto:!0,forced:BUGGY_SAFARI_ITERATORS||INCORRECT_VALUES_NAME},methods);return methods},charAt=stringMultibyte.charAt,STRING_ITERATOR="String Iterator",setInternalState$2=internalState.set,getInternalState$2=internalState.getterFor(STRING_ITERATOR);defineIterator(String,"String",(function(iterated){setInternalState$2(this,{type:STRING_ITERATOR,string:String(iterated),index:0})}),(function(){var point,state=getInternalState$2(this),string=state.string,index=state.index;return index>=string.length?{value:void 0,done:!0}:(point=charAt(string,index),state.index+=point.length,{value:point,done:!1})}));var aFunction=function(it){if("function"!=typeof it)throw TypeError(String(it)+" is not a function");return it},functionBindContext=function(fn,that,length){if(aFunction(fn),void 0===that)return fn;switch(length){case 0:return function(){return fn.call(that)};case 1:return function(a){return fn.call(that,a)};case 2:return function(a,b){return fn.call(that,a,b)};case 3:return function(a,b,c){return fn.call(that,a,b,c)}}return function(){return fn.apply(that,arguments)}},iteratorClose=function(iterator){var returnMethod=iterator.return;if(void 0!==returnMethod)return anObject(returnMethod.call(iterator)).value},callWithSafeIterationClosing=function(iterator,fn,value,ENTRIES){try{return ENTRIES?fn(anObject(value)[0],value[1]):fn(value)}catch(error){throw iteratorClose(iterator),error}},ITERATOR$3=wellKnownSymbol("iterator"),ArrayPrototype$1=Array.prototype,isArrayIteratorMethod=function(it){return void 0!==it&&(iterators.Array===it||ArrayPrototype$1[ITERATOR$3]===it)},createProperty=function(object,key,value){var propertyKey=toPrimitive(key);propertyKey in object?objectDefineProperty.f(object,propertyKey,createPropertyDescriptor(0,value)):object[propertyKey]=value},TO_STRING_TAG$2=wellKnownSymbol("toStringTag"),test={};test[TO_STRING_TAG$2]="z";var toStringTagSupport="[object z]"===String(test),TO_STRING_TAG$1=wellKnownSymbol("toStringTag"),CORRECT_ARGUMENTS="Arguments"==classofRaw(function(){return arguments}()),tryGet=function(it,key){try{return it[key]}catch(error){}},classof=toStringTagSupport?classofRaw:function(it){var O,tag,result;return void 0===it?"Undefined":null===it?"Null":"string"==typeof(tag=tryGet(O=Object(it),TO_STRING_TAG$1))?tag:CORRECT_ARGUMENTS?classofRaw(O):"Object"==(result=classofRaw(O))&&"function"==typeof O.callee?"Arguments":result},ITERATOR$2=wellKnownSymbol("iterator"),getIteratorMethod=function(it){if(null!=it)return it[ITERATOR$2]||it["@@iterator"]||iterators[classof(it)]},arrayFrom=function(arrayLike){var length,result,step,iterator,next,value,O=toObject(arrayLike),C="function"==typeof this?this:Array,argumentsLength=arguments.length,mapfn=argumentsLength>1?arguments[1]:void 0,mapping=void 0!==mapfn,iteratorMethod=getIteratorMethod(O),index=0;if(mapping&&(mapfn=functionBindContext(mapfn,argumentsLength>2?arguments[2]:void 0,2)),null==iteratorMethod||C==Array&&isArrayIteratorMethod(iteratorMethod))for(result=new C(length=toLength(O.length));length>index;index++)value=mapping?mapfn(O[index],index):O[index],createProperty(result,index,value);else for(next=(iterator=iteratorMethod.call(O)).next,result=new C;!(step=next.call(iterator)).done;index++)value=mapping?callWithSafeIterationClosing(iterator,mapfn,[step.value,index],!0):step.value,createProperty(result,index,value);return result.length=index,result},ITERATOR$1=wellKnownSymbol("iterator"),SAFE_CLOSING=!1;try{var called=0,iteratorWithReturn={next:function(){return{done:!!called++}},return:function(){SAFE_CLOSING=!0}};iteratorWithReturn[ITERATOR$1]=function(){return this},Array.from(iteratorWithReturn,(function(){throw 2}))}catch(error){}var checkCorrectnessOfIteration=function(exec,SKIP_CLOSING){if(!SKIP_CLOSING&&!SAFE_CLOSING)return!1;var ITERATION_SUPPORT=!1;try{var object={};object[ITERATOR$1]=function(){return{next:function(){return{done:ITERATION_SUPPORT=!0}}}},exec(object)}catch(error){}return ITERATION_SUPPORT},INCORRECT_ITERATION$1=!checkCorrectnessOfIteration((function(iterable){Array.from(iterable)}));_export({target:"Array",stat:!0,forced:INCORRECT_ITERATION$1},{from:arrayFrom}),path.Array.from;var UNSCOPABLES=wellKnownSymbol("unscopables"),ArrayPrototype=Array.prototype;null==ArrayPrototype[UNSCOPABLES]&&objectDefineProperty.f(ArrayPrototype,UNSCOPABLES,{configurable:!0,value:objectCreate(null)});var addToUnscopables=function(key){ArrayPrototype[UNSCOPABLES][key]=!0},$includes=arrayIncludes.includes;_export({target:"Array",proto:!0},{includes:function(el){return $includes(this,el,arguments.length>1?arguments[1]:void 0)}}),addToUnscopables("includes");var call=Function.call,entryUnbind=function(CONSTRUCTOR,METHOD,length){return functionBindContext(call,global_1[CONSTRUCTOR].prototype[METHOD],length)};entryUnbind("Array","includes");var isArray=Array.isArray||function(arg){return"Array"==classofRaw(arg)},flattenIntoArray=function(target,original,source,sourceLen,start,depth,mapper,thisArg){for(var element,targetIndex=start,sourceIndex=0,mapFn=!!mapper&&functionBindContext(mapper,thisArg,3);sourceIndex0&&isArray(element))targetIndex=flattenIntoArray(target,original,element,toLength(element.length),targetIndex,depth-1)-1;else{if(targetIndex>=9007199254740991)throw TypeError("Exceed the acceptable array length");target[targetIndex]=element}targetIndex++}sourceIndex++}return targetIndex},flattenIntoArray_1=flattenIntoArray,SPECIES$3=wellKnownSymbol("species"),arraySpeciesCreate=function(originalArray,length){var C;return isArray(originalArray)&&("function"!=typeof(C=originalArray.constructor)||C!==Array&&!isArray(C.prototype)?isObject(C)&&null===(C=C[SPECIES$3])&&(C=void 0):C=void 0),new(void 0===C?Array:C)(0===length?0:length)};_export({target:"Array",proto:!0},{flat:function(){var depthArg=arguments.length?arguments[0]:void 0,O=toObject(this),sourceLen=toLength(O.length),A=arraySpeciesCreate(O,0);return A.length=flattenIntoArray_1(A,O,O,sourceLen,0,void 0===depthArg?1:toInteger(depthArg)),A}}),addToUnscopables("flat"),entryUnbind("Array","flat");var push=[].push,createMethod$1=function(TYPE){var IS_MAP=1==TYPE,IS_FILTER=2==TYPE,IS_SOME=3==TYPE,IS_EVERY=4==TYPE,IS_FIND_INDEX=6==TYPE,IS_FILTER_OUT=7==TYPE,NO_HOLES=5==TYPE||IS_FIND_INDEX;return function($this,callbackfn,that,specificCreate){for(var value,result,O=toObject($this),self=indexedObject(O),boundFunction=functionBindContext(callbackfn,that,3),length=toLength(self.length),index=0,create=specificCreate||arraySpeciesCreate,target=IS_MAP?create($this,length):IS_FILTER||IS_FILTER_OUT?create($this,0):void 0;length>index;index++)if((NO_HOLES||index in self)&&(result=boundFunction(value=self[index],index,O),TYPE))if(IS_MAP)target[index]=result;else if(result)switch(TYPE){case 3:return!0;case 5:return value;case 6:return index;case 2:push.call(target,value)}else switch(TYPE){case 4:return!1;case 7:push.call(target,value)}return IS_FIND_INDEX?-1:IS_SOME||IS_EVERY?IS_EVERY:target}},arrayIteration={forEach:createMethod$1(0),map:createMethod$1(1),filter:createMethod$1(2),some:createMethod$1(3),every:createMethod$1(4),find:createMethod$1(5),findIndex:createMethod$1(6),filterOut:createMethod$1(7)},$find=arrayIteration.find,FIND="find",SKIPS_HOLES=!0;FIND in[]&&Array(1)[FIND]((function(){SKIPS_HOLES=!1})),_export({target:"Array",proto:!0,forced:SKIPS_HOLES},{find:function(callbackfn){return $find(this,callbackfn,arguments.length>1?arguments[1]:void 0)}}),addToUnscopables(FIND),entryUnbind("Array","find");var $assign=Object.assign,defineProperty=Object.defineProperty,objectAssign=!$assign||fails((function(){if(descriptors&&1!==$assign({b:1},$assign(defineProperty({},"a",{enumerable:!0,get:function(){defineProperty(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var A={},B={},symbol=Symbol();return A[symbol]=7,"abcdefghijklmnopqrst".split("").forEach((function(chr){B[chr]=chr})),7!=$assign({},A)[symbol]||"abcdefghijklmnopqrst"!=objectKeys($assign({},B)).join("")}))?function(target,source){for(var T=toObject(target),argumentsLength=arguments.length,index=1,getOwnPropertySymbols=objectGetOwnPropertySymbols.f,propertyIsEnumerable=objectPropertyIsEnumerable.f;argumentsLength>index;)for(var key,S=indexedObject(arguments[index++]),keys=getOwnPropertySymbols?objectKeys(S).concat(getOwnPropertySymbols(S)):objectKeys(S),length=keys.length,j=0;length>j;)key=keys[j++],descriptors&&!propertyIsEnumerable.call(S,key)||(T[key]=S[key]);return T}:$assign;_export({target:"Object",stat:!0,forced:Object.assign!==objectAssign},{assign:objectAssign}),path.Object.assign;var propertyIsEnumerable=objectPropertyIsEnumerable.f,createMethod=function(TO_ENTRIES){return function(it){for(var key,O=toIndexedObject(it),keys=objectKeys(O),length=keys.length,i=0,result=[];length>i;)key=keys[i++],descriptors&&!propertyIsEnumerable.call(O,key)||result.push(TO_ENTRIES?[key,O[key]]:O[key]);return result}},objectToArray={entries:createMethod(!0),values:createMethod(!1)},$entries=objectToArray.entries;_export({target:"Object",stat:!0},{entries:function(O){return $entries(O)}}),path.Object.entries;var $values=objectToArray.values;_export({target:"Object",stat:!0},{values:function(O){return $values(O)}}),path.Object.values;var Result=function(stopped,result){this.stopped=stopped,this.result=result},iterate=function(iterable,unboundFunction,options){var iterator,iterFn,index,length,result,next,step,that=options&&options.that,AS_ENTRIES=!(!options||!options.AS_ENTRIES),IS_ITERATOR=!(!options||!options.IS_ITERATOR),INTERRUPTED=!(!options||!options.INTERRUPTED),fn=functionBindContext(unboundFunction,that,1+AS_ENTRIES+INTERRUPTED),stop=function(condition){return iterator&&iteratorClose(iterator),new Result(!0,condition)},callFn=function(value){return AS_ENTRIES?(anObject(value),INTERRUPTED?fn(value[0],value[1],stop):fn(value[0],value[1])):INTERRUPTED?fn(value,stop):fn(value)};if(IS_ITERATOR)iterator=iterable;else{if("function"!=typeof(iterFn=getIteratorMethod(iterable)))throw TypeError("Target is not iterable");if(isArrayIteratorMethod(iterFn)){for(index=0,length=toLength(iterable.length);length>index;index++)if((result=callFn(iterable[index]))&&result instanceof Result)return result;return new Result(!1)}iterator=iterFn.call(iterable)}for(next=iterator.next;!(step=next.call(iterator)).done;){try{result=callFn(step.value)}catch(error){throw iteratorClose(iterator),error}if("object"==typeof result&&result&&result instanceof Result)return result}return new Result(!1)},$AggregateError=function(errors,message){var that=this;if(!(that instanceof $AggregateError))return new $AggregateError(errors,message);objectSetPrototypeOf&&(that=objectSetPrototypeOf(new Error(void 0),objectGetPrototypeOf(that))),void 0!==message&&createNonEnumerableProperty(that,"message",String(message));var errorsArray=[];return iterate(errors,errorsArray.push,{that:errorsArray}),createNonEnumerableProperty(that,"errors",errorsArray),that};$AggregateError.prototype=objectCreate(Error.prototype,{constructor:createPropertyDescriptor(5,$AggregateError),message:createPropertyDescriptor(5,""),name:createPropertyDescriptor(5,"AggregateError")}),_export({global:!0},{AggregateError:$AggregateError});var objectToString=toStringTagSupport?{}.toString:function(){return"[object "+classof(this)+"]"};toStringTagSupport||redefine(Object.prototype,"toString",objectToString,{unsafe:!0});var nativePromiseConstructor=global_1.Promise,redefineAll=function(target,src,options){for(var key in src)redefine(target,key,src[key],options);return target},SPECIES$2=wellKnownSymbol("species"),setSpecies=function(CONSTRUCTOR_NAME){var Constructor=getBuiltIn(CONSTRUCTOR_NAME),defineProperty=objectDefineProperty.f;descriptors&&Constructor&&!Constructor[SPECIES$2]&&defineProperty(Constructor,SPECIES$2,{configurable:!0,get:function(){return this}})},anInstance=function(it,Constructor,name){if(!(it instanceof Constructor))throw TypeError("Incorrect "+(name?name+" ":"")+"invocation");return it},SPECIES$1=wellKnownSymbol("species"),speciesConstructor=function(O,defaultConstructor){var S,C=anObject(O).constructor;return void 0===C||null==(S=anObject(C)[SPECIES$1])?defaultConstructor:aFunction(S)},engineIsIos=/(?:iphone|ipod|ipad).*applewebkit/i.test(engineUserAgent),engineIsNode="process"==classofRaw(global_1.process),location=global_1.location,set=global_1.setImmediate,clear=global_1.clearImmediate,process$2=global_1.process,MessageChannel=global_1.MessageChannel,Dispatch=global_1.Dispatch,counter=0,queue={},ONREADYSTATECHANGE="onreadystatechange",defer,channel,port,run=function(id){if(queue.hasOwnProperty(id)){var fn=queue[id];delete queue[id],fn()}},runner=function(id){return function(){run(id)}},listener=function(event){run(event.data)},post=function(id){global_1.postMessage(id+"",location.protocol+"//"+location.host)};set&&clear||(set=function(fn){for(var args=[],i=1;arguments.length>i;)args.push(arguments[i++]);return queue[++counter]=function(){("function"==typeof fn?fn:Function(fn)).apply(void 0,args)},defer(counter),counter},clear=function(id){delete queue[id]},engineIsNode?defer=function(id){process$2.nextTick(runner(id))}:Dispatch&&Dispatch.now?defer=function(id){Dispatch.now(runner(id))}:MessageChannel&&!engineIsIos?(channel=new MessageChannel,port=channel.port2,channel.port1.onmessage=listener,defer=functionBindContext(port.postMessage,port,1)):global_1.addEventListener&&"function"==typeof postMessage&&!global_1.importScripts&&location&&"file:"!==location.protocol&&!fails(post)?(defer=post,global_1.addEventListener("message",listener,!1)):defer=ONREADYSTATECHANGE in documentCreateElement("script")?function(id){html.appendChild(documentCreateElement("script"))[ONREADYSTATECHANGE]=function(){html.removeChild(this),run(id)}}:function(id){setTimeout(runner(id),0)});var task$1={set:set,clear:clear},engineIsWebosWebkit=/web0s(?!.*chrome)/i.test(engineUserAgent),getOwnPropertyDescriptor$1=objectGetOwnPropertyDescriptor.f,macrotask=task$1.set,MutationObserver=global_1.MutationObserver||global_1.WebKitMutationObserver,document$2=global_1.document,process$1=global_1.process,Promise$1=global_1.Promise,queueMicrotaskDescriptor=getOwnPropertyDescriptor$1(global_1,"queueMicrotask"),queueMicrotask=queueMicrotaskDescriptor&&queueMicrotaskDescriptor.value,flush,head,last,notify$1,toggle,node,promise,then;queueMicrotask||(flush=function(){var parent,fn;for(engineIsNode&&(parent=process$1.domain)&&parent.exit();head;){fn=head.fn,head=head.next;try{fn()}catch(error){throw head?notify$1():last=void 0,error}}last=void 0,parent&&parent.enter()},engineIsIos||engineIsNode||engineIsWebosWebkit||!MutationObserver||!document$2?Promise$1&&Promise$1.resolve?(promise=Promise$1.resolve(void 0),promise.constructor=Promise$1,then=promise.then,notify$1=function(){then.call(promise,flush)}):notify$1=engineIsNode?function(){process$1.nextTick(flush)}:function(){macrotask.call(global_1,flush)}:(toggle=!0,node=document$2.createTextNode(""),new MutationObserver(flush).observe(node,{characterData:!0}),notify$1=function(){node.data=toggle=!toggle}));var microtask=queueMicrotask||function(fn){var task={fn:fn,next:void 0};last&&(last.next=task),head||(head=task,notify$1()),last=task},PromiseCapability=function(C){var resolve,reject;this.promise=new C((function($$resolve,$$reject){if(void 0!==resolve||void 0!==reject)throw TypeError("Bad Promise constructor");resolve=$$resolve,reject=$$reject})),this.resolve=aFunction(resolve),this.reject=aFunction(reject)},f=function(C){return new PromiseCapability(C)},newPromiseCapability$1={f:f},promiseResolve=function(C,x){if(anObject(C),isObject(x)&&x.constructor===C)return x;var promiseCapability=newPromiseCapability$1.f(C);return(0,promiseCapability.resolve)(x),promiseCapability.promise},hostReportErrors=function(a,b){var console=global_1.console;console&&console.error&&(1===arguments.length?console.error(a):console.error(a,b))},perform=function(exec){try{return{error:!1,value:exec()}}catch(error){return{error:!0,value:error}}},engineIsBrowser="object"==typeof window,task=task$1.set,SPECIES=wellKnownSymbol("species"),PROMISE="Promise",getInternalState$1=internalState.get,setInternalState$1=internalState.set,getInternalPromiseState=internalState.getterFor(PROMISE),NativePromisePrototype=nativePromiseConstructor&&nativePromiseConstructor.prototype,PromiseConstructor=nativePromiseConstructor,PromiseConstructorPrototype=NativePromisePrototype,TypeError$1=global_1.TypeError,document$1=global_1.document,process=global_1.process,newPromiseCapability=newPromiseCapability$1.f,newGenericPromiseCapability=newPromiseCapability,DISPATCH_EVENT=!!(document$1&&document$1.createEvent&&global_1.dispatchEvent),NATIVE_REJECTION_EVENT="function"==typeof PromiseRejectionEvent,UNHANDLED_REJECTION="unhandledrejection",REJECTION_HANDLED="rejectionhandled",PENDING=0,FULFILLED=1,REJECTED=2,HANDLED=1,UNHANDLED=2,SUBCLASSING=!1,Internal,OwnPromiseCapability,PromiseWrapper,nativeThen,FORCED=isForced_1(PROMISE,(function(){var PROMISE_CONSTRUCTOR_SOURCE=inspectSource(PromiseConstructor),GLOBAL_CORE_JS_PROMISE=PROMISE_CONSTRUCTOR_SOURCE!==String(PromiseConstructor);if(!GLOBAL_CORE_JS_PROMISE&&66===engineV8Version)return!0;if(engineV8Version>=51&&/native code/.test(PROMISE_CONSTRUCTOR_SOURCE))return!1;var promise=new PromiseConstructor((function(resolve){resolve(1)})),FakePromise=function(exec){exec((function(){}),(function(){}))};return(promise.constructor={})[SPECIES]=FakePromise,!(SUBCLASSING=promise.then((function(){}))instanceof FakePromise)||!GLOBAL_CORE_JS_PROMISE&&engineIsBrowser&&!NATIVE_REJECTION_EVENT})),INCORRECT_ITERATION=FORCED||!checkCorrectnessOfIteration((function(iterable){PromiseConstructor.all(iterable).catch((function(){}))})),isThenable=function(it){var then;return!(!isObject(it)||"function"!=typeof(then=it.then))&&then},notify=function(state,isReject){if(!state.notified){state.notified=!0;var chain=state.reactions;microtask((function(){for(var value=state.value,ok=state.state==FULFILLED,index=0;chain.length>index;){var result,then,exited,reaction=chain[index++],handler=ok?reaction.ok:reaction.fail,resolve=reaction.resolve,reject=reaction.reject,domain=reaction.domain;try{handler?(ok||(state.rejection===UNHANDLED&&onHandleUnhandled(state),state.rejection=HANDLED),!0===handler?result=value:(domain&&domain.enter(),result=handler(value),domain&&(domain.exit(),exited=!0)),result===reaction.promise?reject(TypeError$1("Promise-chain cycle")):(then=isThenable(result))?then.call(result,resolve,reject):resolve(result)):reject(value)}catch(error){domain&&!exited&&domain.exit(),reject(error)}}state.reactions=[],state.notified=!1,isReject&&!state.rejection&&onUnhandled(state)}))}},dispatchEvent=function(name,promise,reason){var event,handler;DISPATCH_EVENT?((event=document$1.createEvent("Event")).promise=promise,event.reason=reason,event.initEvent(name,!1,!0),global_1.dispatchEvent(event)):event={promise:promise,reason:reason},!NATIVE_REJECTION_EVENT&&(handler=global_1["on"+name])?handler(event):name===UNHANDLED_REJECTION&&hostReportErrors("Unhandled promise rejection",reason)},onUnhandled=function(state){task.call(global_1,(function(){var result,promise=state.facade,value=state.value;if(isUnhandled(state)&&(result=perform((function(){engineIsNode?process.emit("unhandledRejection",value,promise):dispatchEvent(UNHANDLED_REJECTION,promise,value)})),state.rejection=engineIsNode||isUnhandled(state)?UNHANDLED:HANDLED,result.error))throw result.value}))},isUnhandled=function(state){return state.rejection!==HANDLED&&!state.parent},onHandleUnhandled=function(state){task.call(global_1,(function(){var promise=state.facade;engineIsNode?process.emit("rejectionHandled",promise):dispatchEvent(REJECTION_HANDLED,promise,state.value)}))},bind=function(fn,state,unwrap){return function(value){fn(state,value,unwrap)}},internalReject=function(state,value,unwrap){state.done||(state.done=!0,unwrap&&(state=unwrap),state.value=value,state.state=REJECTED,notify(state,!0))},internalResolve=function(state,value,unwrap){if(!state.done){state.done=!0,unwrap&&(state=unwrap);try{if(state.facade===value)throw TypeError$1("Promise can't be resolved itself");var then=isThenable(value);then?microtask((function(){var wrapper={done:!1};try{then.call(value,bind(internalResolve,wrapper,state),bind(internalReject,wrapper,state))}catch(error){internalReject(wrapper,error,state)}})):(state.value=value,state.state=FULFILLED,notify(state,!1))}catch(error){internalReject({done:!1},error,state)}}};if(FORCED&&(PromiseConstructor=function(executor){anInstance(this,PromiseConstructor,PROMISE),aFunction(executor),Internal.call(this);var state=getInternalState$1(this);try{executor(bind(internalResolve,state),bind(internalReject,state))}catch(error){internalReject(state,error)}},PromiseConstructorPrototype=PromiseConstructor.prototype,Internal=function(executor){setInternalState$1(this,{type:PROMISE,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:PENDING,value:void 0})},Internal.prototype=redefineAll(PromiseConstructorPrototype,{then:function(onFulfilled,onRejected){var state=getInternalPromiseState(this),reaction=newPromiseCapability(speciesConstructor(this,PromiseConstructor));return reaction.ok="function"!=typeof onFulfilled||onFulfilled,reaction.fail="function"==typeof onRejected&&onRejected,reaction.domain=engineIsNode?process.domain:void 0,state.parent=!0,state.reactions.push(reaction),state.state!=PENDING&¬ify(state,!1),reaction.promise},catch:function(onRejected){return this.then(void 0,onRejected)}}),OwnPromiseCapability=function(){var promise=new Internal,state=getInternalState$1(promise);this.promise=promise,this.resolve=bind(internalResolve,state),this.reject=bind(internalReject,state)},newPromiseCapability$1.f=newPromiseCapability=function(C){return C===PromiseConstructor||C===PromiseWrapper?new OwnPromiseCapability(C):newGenericPromiseCapability(C)},"function"==typeof nativePromiseConstructor&&NativePromisePrototype!==Object.prototype)){nativeThen=NativePromisePrototype.then,SUBCLASSING||(redefine(NativePromisePrototype,"then",(function(onFulfilled,onRejected){var that=this;return new PromiseConstructor((function(resolve,reject){nativeThen.call(that,resolve,reject)})).then(onFulfilled,onRejected)}),{unsafe:!0}),redefine(NativePromisePrototype,"catch",PromiseConstructorPrototype.catch,{unsafe:!0}));try{delete NativePromisePrototype.constructor}catch(error){}objectSetPrototypeOf&&objectSetPrototypeOf(NativePromisePrototype,PromiseConstructorPrototype)}_export({global:!0,wrap:!0,forced:FORCED},{Promise:PromiseConstructor}),setToStringTag(PromiseConstructor,PROMISE,!1),setSpecies(PROMISE),PromiseWrapper=getBuiltIn(PROMISE),_export({target:PROMISE,stat:!0,forced:FORCED},{reject:function(r){var capability=newPromiseCapability(this);return capability.reject.call(void 0,r),capability.promise}}),_export({target:PROMISE,stat:!0,forced:FORCED},{resolve:function(x){return promiseResolve(this,x)}}),_export({target:PROMISE,stat:!0,forced:INCORRECT_ITERATION},{all:function(iterable){var C=this,capability=newPromiseCapability(C),resolve=capability.resolve,reject=capability.reject,result=perform((function(){var $promiseResolve=aFunction(C.resolve),values=[],counter=0,remaining=1;iterate(iterable,(function(promise){var index=counter++,alreadyCalled=!1;values.push(void 0),remaining++,$promiseResolve.call(C,promise).then((function(value){alreadyCalled||(alreadyCalled=!0,values[index]=value,--remaining||resolve(values))}),reject)})),--remaining||resolve(values)}));return result.error&&reject(result.value),capability.promise},race:function(iterable){var C=this,capability=newPromiseCapability(C),reject=capability.reject,result=perform((function(){var $promiseResolve=aFunction(C.resolve);iterate(iterable,(function(promise){$promiseResolve.call(C,promise).then(capability.resolve,reject)}))}));return result.error&&reject(result.value),capability.promise}}),_export({target:"Promise",stat:!0},{allSettled:function(iterable){var C=this,capability=newPromiseCapability$1.f(C),resolve=capability.resolve,reject=capability.reject,result=perform((function(){var promiseResolve=aFunction(C.resolve),values=[],counter=0,remaining=1;iterate(iterable,(function(promise){var index=counter++,alreadyCalled=!1;values.push(void 0),remaining++,promiseResolve.call(C,promise).then((function(value){alreadyCalled||(alreadyCalled=!0,values[index]={status:"fulfilled",value:value},--remaining||resolve(values))}),(function(error){alreadyCalled||(alreadyCalled=!0,values[index]={status:"rejected",reason:error},--remaining||resolve(values))}))})),--remaining||resolve(values)}));return result.error&&reject(result.value),capability.promise}});var PROMISE_ANY_ERROR="No one promise resolved";_export({target:"Promise",stat:!0},{any:function(iterable){var C=this,capability=newPromiseCapability$1.f(C),resolve=capability.resolve,reject=capability.reject,result=perform((function(){var promiseResolve=aFunction(C.resolve),errors=[],counter=0,remaining=1,alreadyResolved=!1;iterate(iterable,(function(promise){var index=counter++,alreadyRejected=!1;errors.push(void 0),remaining++,promiseResolve.call(C,promise).then((function(value){alreadyRejected||alreadyResolved||(alreadyResolved=!0,resolve(value))}),(function(error){alreadyRejected||alreadyResolved||(alreadyRejected=!0,errors[index]=error,--remaining||reject(new(getBuiltIn("AggregateError"))(errors,PROMISE_ANY_ERROR)))}))})),--remaining||reject(new(getBuiltIn("AggregateError"))(errors,PROMISE_ANY_ERROR))}));return result.error&&reject(result.value),capability.promise}});var NON_GENERIC=!!nativePromiseConstructor&&fails((function(){nativePromiseConstructor.prototype.finally.call({then:function(){}},(function(){}))}));if(_export({target:"Promise",proto:!0,real:!0,forced:NON_GENERIC},{finally:function(onFinally){var C=speciesConstructor(this,getBuiltIn("Promise")),isFunction="function"==typeof onFinally;return this.then(isFunction?function(x){return promiseResolve(C,onFinally()).then((function(){return x}))}:onFinally,isFunction?function(e){return promiseResolve(C,onFinally()).then((function(){throw e}))}:onFinally)}}),"function"==typeof nativePromiseConstructor){var method=getBuiltIn("Promise").prototype.finally;nativePromiseConstructor.prototype.finally!==method&&redefine(nativePromiseConstructor.prototype,"finally",method,{unsafe:!0})}var domIterables={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},ARRAY_ITERATOR="Array Iterator",setInternalState=internalState.set,getInternalState=internalState.getterFor(ARRAY_ITERATOR),es_array_iterator=defineIterator(Array,"Array",(function(iterated,kind){setInternalState(this,{type:ARRAY_ITERATOR,target:toIndexedObject(iterated),index:0,kind:kind})}),(function(){var state=getInternalState(this),target=state.target,kind=state.kind,index=state.index++;return!target||index>=target.length?(state.target=void 0,{value:void 0,done:!0}):"keys"==kind?{value:index,done:!1}:"values"==kind?{value:target[index],done:!1}:{value:[index,target[index]],done:!1}}),"values");iterators.Arguments=iterators.Array,addToUnscopables("keys"),addToUnscopables("values"),addToUnscopables("entries");var ITERATOR=wellKnownSymbol("iterator"),TO_STRING_TAG=wellKnownSymbol("toStringTag"),ArrayValues=es_array_iterator.values;for(var COLLECTION_NAME in domIterables){var Collection=global_1[COLLECTION_NAME],CollectionPrototype=Collection&&Collection.prototype;if(CollectionPrototype){if(CollectionPrototype[ITERATOR]!==ArrayValues)try{createNonEnumerableProperty(CollectionPrototype,ITERATOR,ArrayValues)}catch(error){CollectionPrototype[ITERATOR]=ArrayValues}if(CollectionPrototype[TO_STRING_TAG]||createNonEnumerableProperty(CollectionPrototype,TO_STRING_TAG,COLLECTION_NAME),domIterables[COLLECTION_NAME])for(var METHOD_NAME in es_array_iterator)if(CollectionPrototype[METHOD_NAME]!==es_array_iterator[METHOD_NAME])try{createNonEnumerableProperty(CollectionPrototype,METHOD_NAME,es_array_iterator[METHOD_NAME])}catch(error){CollectionPrototype[METHOD_NAME]=es_array_iterator[METHOD_NAME]}}}path.Promise,_export({target:"Promise",stat:!0},{try:function(callbackfn){var promiseCapability=newPromiseCapability$1.f(this),result=perform(callbackfn);return(result.error?promiseCapability.reject:promiseCapability.resolve)(result.value),promiseCapability.promise}});var MATCH$1=wellKnownSymbol("match"),isRegexp=function(it){var isRegExp;return isObject(it)&&(void 0!==(isRegExp=it[MATCH$1])?!!isRegExp:"RegExp"==classofRaw(it))},notARegexp=function(it){if(isRegexp(it))throw TypeError("The method doesn't accept regular expressions");return it},MATCH=wellKnownSymbol("match"),correctIsRegexpLogic=function(METHOD_NAME){var regexp=/./;try{"/./"[METHOD_NAME](regexp)}catch(error1){try{return regexp[MATCH]=!1,"/./"[METHOD_NAME](regexp)}catch(error2){}}return!1},getOwnPropertyDescriptor=objectGetOwnPropertyDescriptor.f,$startsWith="".startsWith,min=Math.min,CORRECT_IS_REGEXP_LOGIC=correctIsRegexpLogic("startsWith"),MDN_POLYFILL_BUG=!(CORRECT_IS_REGEXP_LOGIC||(descriptor=getOwnPropertyDescriptor(String.prototype,"startsWith"),!descriptor||descriptor.writable)),descriptor;_export({target:"String",proto:!0,forced:!MDN_POLYFILL_BUG&&!CORRECT_IS_REGEXP_LOGIC},{startsWith:function(searchString){var that=String(requireObjectCoercible(this));notARegexp(searchString);var index=toLength(min(arguments.length>1?arguments[1]:void 0,that.length)),search=String(searchString);return $startsWith?$startsWith.call(that,search,index):that.slice(index,index+search.length)===search}}),entryUnbind("String","startsWith");var global$1="undefined"!=typeof globalThis&&globalThis||"undefined"!=typeof self&&self||void 0!==global$1&&global$1,support={searchParams:"URLSearchParams"in global$1,iterable:"Symbol"in global$1&&"iterator"in Symbol,blob:"FileReader"in global$1&&"Blob"in global$1&&function(){try{return new Blob,!0}catch(e){return!1}}(),formData:"FormData"in global$1,arrayBuffer:"ArrayBuffer"in global$1};function isDataView(obj){return obj&&DataView.prototype.isPrototypeOf(obj)}if(support.arrayBuffer)var viewClasses=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],isArrayBufferView=ArrayBuffer.isView||function(obj){return obj&&viewClasses.indexOf(Object.prototype.toString.call(obj))>-1};function normalizeName(name){if("string"!=typeof name&&(name=String(name)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(name)||""===name)throw new TypeError('Invalid character in header field name: "'+name+'"');return name.toLowerCase()}function normalizeValue(value){return"string"!=typeof value&&(value=String(value)),value}function iteratorFor(items){var iterator={next:function(){var value=items.shift();return{done:void 0===value,value:value}}};return support.iterable&&(iterator[Symbol.iterator]=function(){return iterator}),iterator}function Headers(headers){this.map={},headers instanceof Headers?headers.forEach((function(value,name){this.append(name,value)}),this):Array.isArray(headers)?headers.forEach((function(header){this.append(header[0],header[1])}),this):headers&&Object.getOwnPropertyNames(headers).forEach((function(name){this.append(name,headers[name])}),this)}function consumed(body){if(body.bodyUsed)return Promise.reject(new TypeError("Already read"));body.bodyUsed=!0}function fileReaderReady(reader){return new Promise((function(resolve,reject){reader.onload=function(){resolve(reader.result)},reader.onerror=function(){reject(reader.error)}}))}function readBlobAsArrayBuffer(blob){var reader=new FileReader,promise=fileReaderReady(reader);return reader.readAsArrayBuffer(blob),promise}function readBlobAsText(blob){var reader=new FileReader,promise=fileReaderReady(reader);return reader.readAsText(blob),promise}function readArrayBufferAsText(buf){for(var view=new Uint8Array(buf),chars=new Array(view.length),i=0;i-1?upcased:method}function Request(input,options){if(!(this instanceof Request))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');var body=(options=options||{}).body;if(input instanceof Request){if(input.bodyUsed)throw new TypeError("Already read");this.url=input.url,this.credentials=input.credentials,options.headers||(this.headers=new Headers(input.headers)),this.method=input.method,this.mode=input.mode,this.signal=input.signal,body||null==input._bodyInit||(body=input._bodyInit,input.bodyUsed=!0)}else this.url=String(input);if(this.credentials=options.credentials||this.credentials||"same-origin",!options.headers&&this.headers||(this.headers=new Headers(options.headers)),this.method=normalizeMethod(options.method||this.method||"GET"),this.mode=options.mode||this.mode||null,this.signal=options.signal||this.signal,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&body)throw new TypeError("Body not allowed for GET or HEAD requests");if(this._initBody(body),!("GET"!==this.method&&"HEAD"!==this.method||"no-store"!==options.cache&&"no-cache"!==options.cache)){var reParamSearch=/([?&])_=[^&]*/;if(reParamSearch.test(this.url))this.url=this.url.replace(reParamSearch,"$1_="+(new Date).getTime());else{this.url+=(/\?/.test(this.url)?"&":"?")+"_="+(new Date).getTime()}}}function decode(body){var form=new FormData;return body.trim().split("&").forEach((function(bytes){if(bytes){var split=bytes.split("="),name=split.shift().replace(/\+/g," "),value=split.join("=").replace(/\+/g," ");form.append(decodeURIComponent(name),decodeURIComponent(value))}})),form}function parseHeaders(rawHeaders){var headers=new Headers;return rawHeaders.replace(/\r?\n[\t ]+/g," ").split("\r").map((function(header){return 0===header.indexOf("\n")?header.substr(1,header.length):header})).forEach((function(line){var parts=line.split(":"),key=parts.shift().trim();if(key){var value=parts.join(":").trim();headers.append(key,value)}})),headers}function Response(bodyInit,options){if(!(this instanceof Response))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');options||(options={}),this.type="default",this.status=void 0===options.status?200:options.status,this.ok=this.status>=200&&this.status<300,this.statusText=void 0===options.statusText?"":""+options.statusText,this.headers=new Headers(options.headers),this.url=options.url||"",this._initBody(bodyInit)}Request.prototype.clone=function(){return new Request(this,{body:this._bodyInit})},Body.call(Request.prototype),Body.call(Response.prototype),Response.prototype.clone=function(){return new Response(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new Headers(this.headers),url:this.url})},Response.error=function(){var response=new Response(null,{status:0,statusText:""});return response.type="error",response};var redirectStatuses=[301,302,303,307,308];Response.redirect=function(url,status){if(-1===redirectStatuses.indexOf(status))throw new RangeError("Invalid status code");return new Response(null,{status:status,headers:{location:url}})};var DOMException=global$1.DOMException;try{new DOMException}catch(err){DOMException=function(message,name){this.message=message,this.name=name;var error=Error(message);this.stack=error.stack},DOMException.prototype=Object.create(Error.prototype),DOMException.prototype.constructor=DOMException}function fetch$1(input,init){return new Promise((function(resolve,reject){var request=new Request(input,init);if(request.signal&&request.signal.aborted)return reject(new DOMException("Aborted","AbortError"));var xhr=new XMLHttpRequest;function abortXhr(){xhr.abort()}xhr.onload=function(){var options={status:xhr.status,statusText:xhr.statusText,headers:parseHeaders(xhr.getAllResponseHeaders()||"")};options.url="responseURL"in xhr?xhr.responseURL:options.headers.get("X-Request-URL");var body="response"in xhr?xhr.response:xhr.responseText;setTimeout((function(){resolve(new Response(body,options))}),0)},xhr.onerror=function(){setTimeout((function(){reject(new TypeError("Network request failed"))}),0)},xhr.ontimeout=function(){setTimeout((function(){reject(new TypeError("Network request failed"))}),0)},xhr.onabort=function(){setTimeout((function(){reject(new DOMException("Aborted","AbortError"))}),0)},xhr.open(request.method,function(url){try{return""===url&&global$1.location.href?global$1.location.href:url}catch(e){return url}}(request.url),!0),"include"===request.credentials?xhr.withCredentials=!0:"omit"===request.credentials&&(xhr.withCredentials=!1),"responseType"in xhr&&(support.blob?xhr.responseType="blob":support.arrayBuffer&&request.headers.get("Content-Type")&&-1!==request.headers.get("Content-Type").indexOf("application/octet-stream")&&(xhr.responseType="arraybuffer")),!init||"object"!=typeof init.headers||init.headers instanceof Headers?request.headers.forEach((function(value,name){xhr.setRequestHeader(name,value)})):Object.getOwnPropertyNames(init.headers).forEach((function(name){xhr.setRequestHeader(name,normalizeValue(init.headers[name]))})),request.signal&&(request.signal.addEventListener("abort",abortXhr),xhr.onreadystatechange=function(){4===xhr.readyState&&request.signal.removeEventListener("abort",abortXhr)}),xhr.send(void 0===request._bodyInit?null:request._bodyInit)}))}fetch$1.polyfill=!0,global$1.fetch||(global$1.fetch=fetch$1,global$1.Headers=Headers,global$1.Request=Request,global$1.Response=Response),null==Element.prototype.getAttributeNames&&(Element.prototype.getAttributeNames=function(){for(var attributes=this.attributes,length=attributes.length,result=new Array(length),i=0;i=0&&matches.item(i)!==this;);return i>-1}),Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector),Element.prototype.closest||(Element.prototype.closest=function(s){var el=this;do{if(el.matches(s))return el;el=el.parentElement||el.parentNode}while(null!==el&&1===el.nodeType);return null});var Connection=function(){function Connection(){_classCallCheck(this,Connection),this.headers={}}return _createClass(Connection,[{key:"onMessage",value:function(message,payload){message.component.receiveMessage(message,payload)}},{key:"onError",value:function(message,status,response){return message.component.messageSendFailed(),store$2.onErrorCallback(status,response)}},{key:"showExpiredMessage",value:function(response,message){store$2.sessionHasExpiredCallback?store$2.sessionHasExpiredCallback(response,message):confirm("This page has expired.\nWould you like to refresh the page?")&&window.location.reload()}},{key:"sendMessage",value:function(message){var _this=this,payload=message.payload(),csrfToken=getCsrfToken(),socketId=this.getSocketId();if(window.__testing_request_interceptor)return window.__testing_request_interceptor(payload,this);fetch("".concat(window.livewire_app_url,"/livewire/message/").concat(payload.fingerprint.name),{method:"POST",body:JSON.stringify(payload),credentials:"same-origin",headers:_objectSpread2(_objectSpread2(_objectSpread2({"Content-Type":"application/json",Accept:"text/html, application/xhtml+xml","X-Livewire":!0},this.headers),{},{Referer:window.location.href},csrfToken&&{"X-CSRF-TOKEN":csrfToken}),socketId&&{"X-Socket-ID":socketId})}).then((function(response){if(response.ok)response.text().then((function(response){_this.isOutputFromDump(response)?(_this.onError(message),_this.showHtmlModal(response)):_this.onMessage(message,JSON.parse(response))}));else{if(!1===_this.onError(message,response.status,response))return;if(419===response.status){if(store$2.sessionHasExpired)return;store$2.sessionHasExpired=!0,_this.showExpiredMessage(response,message)}else response.text().then((function(response){_this.showHtmlModal(response)}))}})).catch((function(){_this.onError(message)}))}},{key:"isOutputFromDump",value:function(output){return!!output.match(/