Full Code of linuxserver/Heimdall for AI

2.x 7861ae1512fa cached
14203 files
85.8 MB
23.4M tokens
59230 symbols
1 requests
Copy disabled (too large) Download .txt
Showing preview only (93,327K chars total). Download the full file to get everything.
Repository: linuxserver/Heimdall
Branch: 2.x
Commit: 7861ae1512fa
Files: 14203
Total size: 85.8 MB

Directory structure:
gitextract_mms3jl0v/

├── .eslintignore
├── .eslintrc
├── .gitattributes
├── .github/
│   └── workflows/
│       ├── call_issue_pr_tracker.yml
│       ├── call_issues_cron.yml
│       └── ci.yml
├── .gitignore
├── .phpstorm.meta.php
├── .vscode/
│   ├── launch.json
│   └── tasks.json
├── CHANGELOG.md
├── LICENSE
├── _config.yml
├── _ide_helper.php
├── app/
│   ├── Application.php
│   ├── Console/
│   │   └── Commands/
│   │       └── RegisterApp.php
│   ├── EnhancedApps.php
│   ├── Facades/
│   │   └── Form.php
│   ├── Helper.php
│   ├── Http/
│   │   ├── Controllers/
│   │   │   ├── Auth/
│   │   │   │   ├── ForgotPasswordController.php
│   │   │   │   ├── LoginController.php
│   │   │   │   ├── RegisterController.php
│   │   │   │   └── ResetPasswordController.php
│   │   │   ├── Controller.php
│   │   │   ├── HealthController.php
│   │   │   ├── HomeController.php
│   │   │   ├── ImportController.php
│   │   │   ├── ItemController.php
│   │   │   ├── ItemRestController.php
│   │   │   ├── SearchController.php
│   │   │   ├── SettingsController.php
│   │   │   ├── TagController.php
│   │   │   └── UserController.php
│   │   └── Middleware/
│   │       ├── CheckAllowed.php
│   │       ├── RedirectIfAuthenticated.php
│   │       └── TrustProxies.php
│   ├── Item.php
│   ├── ItemTag.php
│   ├── Jobs/
│   │   ├── ProcessApps.php
│   │   └── UpdateApps.php
│   ├── Providers/
│   │   ├── AppServiceProvider.php
│   │   └── RouteServiceProvider.php
│   ├── Search.php
│   ├── SearchInterface.php
│   ├── Services/
│   │   └── CustomFormBuilder.php
│   ├── Setting.php
│   ├── SettingGroup.php
│   ├── SettingUser.php
│   ├── SupportedApps.php
│   └── User.php
├── artisan
├── bootstrap/
│   ├── app.php
│   ├── cache/
│   │   └── .gitignore
│   └── providers.php
├── composer.json
├── config/
│   ├── .gitkeep
│   ├── app.php
│   ├── auth.php
│   ├── database.php
│   ├── filesystems.php
│   ├── github.php
│   ├── mail.php
│   └── services.php
├── css/
│   └── app.css
├── database/
│   ├── .gitignore
│   ├── factories/
│   │   ├── ItemFactory.php
│   │   ├── ItemTagFactory.php
│   │   └── UserFactory.php
│   ├── migrations/
│   │   ├── 2018_01_27_155922_create_items_table.php
│   │   ├── 2018_02_04_185524_create_settings_table.php
│   │   ├── 2018_02_04_185802_create_setting_groups_table.php
│   │   ├── 2018_02_16_175830_add_columns_to_items_for_groups.php
│   │   ├── 2018_02_16_193703_item_tag.php
│   │   ├── 2018_10_12_122907_create_users_table.php
│   │   ├── 2018_10_12_123036_create_password_resets_table.php
│   │   ├── 2018_10_12_131222_add_user_id_to_items_table.php
│   │   ├── 2018_10_12_140451_create_setting_user_pivot_table.php
│   │   ├── 2018_10_18_110905_create_applications_table.php
│   │   ├── 2018_10_23_132008_add_class_to_items_table.php
│   │   ├── 2018_10_31_191604_create_jobs_table.php
│   │   ├── 2018_11_06_112434_create_failed_jobs_table.php
│   │   ├── 2022_03_15_140911_add_appid_to_items.php
│   │   ├── 2022_03_16_093044_add_class_to_application.php
│   │   ├── 2022_03_16_181343_add_app_description_to_items.php
│   │   ├── 2023_01_27_121000_add_role_to_item.php
│   │   ├── 2024_02_16_000000_rename_password_resets_table.php
│   │   └── 2025_07_17_134226_create_cache_table.php
│   └── seeders/
│       ├── DatabaseSeeder.php
│       ├── SettingsSeeder.php
│       └── UsersSeeder.php
├── docker/
│   ├── docker-compose.yml
│   ├── nginx/
│   │   ├── Dockerfile
│   │   └── default.conf
│   └── php/
│       └── Dockerfile
├── lang/
│   ├── br/
│   │   └── app.php
│   ├── cs/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── da/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── de/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── el/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── en/
│   │   ├── app.php
│   │   └── passwords.php
│   ├── es/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── fi/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── fr/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── hu/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── it/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── jp/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── ko/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── lmo/
│   │   └── app.php
│   ├── nl/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── no/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── pl/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── pt/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── rs/
│   │   └── app.php
│   ├── ru/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── sl/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── sv/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── tr/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── uk/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── zh/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   └── zh_TW/
│       ├── app.php
│       ├── auth.php
│       ├── pagination.php
│       └── passwords.php
├── mix-manifest.json
├── package.json
├── phpcs.xml
├── phpunit.xml
├── public/
│   ├── .htaccess
│   ├── browserconfig.xml
│   ├── css/
│   │   └── app.css
│   ├── index.php
│   ├── js/
│   │   ├── app.js
│   │   ├── fontawesome.js
│   │   └── trianglify.js
│   ├── manifest.json
│   ├── mix-manifest.json
│   └── robots.txt
├── readme.md
├── resources/
│   ├── assets/
│   │   ├── js/
│   │   │   ├── app.js
│   │   │   ├── bootstrap.js
│   │   │   ├── components/
│   │   │   │   └── ExampleComponent.vue
│   │   │   ├── huebee.js
│   │   │   ├── itemExport.js
│   │   │   ├── itemImport.js
│   │   │   ├── keyBindings.js
│   │   │   └── liveStatRefresh.js
│   │   └── sass/
│   │       ├── _app.scss
│   │       ├── _huebee.scss
│   │       ├── _normalise.scss
│   │       ├── _rune.scss
│   │       ├── _select2.scss
│   │       ├── _variables.scss
│   │       └── app.scss
│   └── views/
│       ├── add.blade.php
│       ├── auth/
│       │   ├── login.blade.php
│       │   ├── passwords/
│       │   │   ├── email.blade.php
│       │   │   └── reset.blade.php
│       │   └── register.blade.php
│       ├── home.blade.php
│       ├── item.blade.php
│       ├── items/
│       │   ├── create.blade.php
│       │   ├── edit.blade.php
│       │   ├── enable.blade.php
│       │   ├── form.blade.php
│       │   ├── import.blade.php
│       │   ├── list.blade.php
│       │   ├── preview.blade.php
│       │   ├── scripts.blade.php
│       │   └── trash.blade.php
│       ├── layouts/
│       │   ├── app.blade.php
│       │   └── users.blade.php
│       ├── partials/
│       │   ├── search.blade.php
│       │   └── taglist.blade.php
│       ├── settings/
│       │   ├── edit.blade.php
│       │   ├── form.blade.php
│       │   └── list.blade.php
│       ├── sortable.blade.php
│       ├── tags/
│       │   ├── create.blade.php
│       │   ├── edit.blade.php
│       │   ├── form.blade.php
│       │   ├── list.blade.php
│       │   ├── scripts.blade.php
│       │   └── trash.blade.php
│       ├── users/
│       │   ├── create.blade.php
│       │   ├── edit.blade.php
│       │   ├── form.blade.php
│       │   ├── index.blade.php
│       │   ├── scripts.blade.php
│       │   └── trash.blade.php
│       ├── userselect.blade.php
│       └── welcome.blade.php
├── routes/
│   ├── api.php
│   ├── channels.php
│   ├── console.php
│   └── web.php
├── storage/
│   ├── app/
│   │   ├── .gitignore
│   │   ├── public/
│   │   │   └── .gitignore
│   │   ├── searchproviders.yaml
│   │   └── supportedapps.json
│   ├── framework/
│   │   ├── .gitignore
│   │   ├── cache/
│   │   │   └── .gitignore
│   │   ├── sessions/
│   │   │   └── .gitignore
│   │   ├── testing/
│   │   │   └── .gitignore
│   │   └── views/
│   │       └── .gitignore
│   └── logs/
│       └── .gitignore
├── tests/
│   ├── Feature/
│   │   ├── DashTest.php
│   │   ├── ImportTest.php
│   │   ├── ItemCreateTest.php
│   │   ├── ItemDeleteTest.php
│   │   ├── ItemExportTest.php
│   │   ├── ItemListTest.php
│   │   ├── SVGSanitizerTest.php
│   │   ├── SearchTest.php
│   │   ├── SettingsTest.php
│   │   ├── TagListTest.php
│   │   ├── UserEditTest.php
│   │   └── UserListTest.php
│   ├── TestCase.php
│   └── Unit/
│       ├── database/
│       │   └── seeders/
│       │       └── SettingsSeederTest.php
│       ├── helpers/
│       │   ├── IsImageTest.php
│       │   └── SlugTest.php
│       └── lang/
│           └── LangTest.php
├── vendor/
│   ├── autoload.php
│   ├── aws/
│   │   ├── aws-crt-php/
│   │   │   ├── CODE_OF_CONDUCT.md
│   │   │   ├── LICENSE
│   │   │   ├── NOTICE
│   │   │   ├── README.md
│   │   │   ├── composer.json
│   │   │   ├── format-check.py
│   │   │   └── src/
│   │   │       └── AWS/
│   │   │           └── CRT/
│   │   │               ├── Auth/
│   │   │               │   ├── AwsCredentials.php
│   │   │               │   ├── CredentialsProvider.php
│   │   │               │   ├── Signable.php
│   │   │               │   ├── SignatureType.php
│   │   │               │   ├── SignedBodyHeaderType.php
│   │   │               │   ├── Signing.php
│   │   │               │   ├── SigningAlgorithm.php
│   │   │               │   ├── SigningConfigAWS.php
│   │   │               │   ├── SigningResult.php
│   │   │               │   └── StaticCredentialsProvider.php
│   │   │               ├── CRT.php
│   │   │               ├── HTTP/
│   │   │               │   ├── Headers.php
│   │   │               │   ├── Message.php
│   │   │               │   ├── Request.php
│   │   │               │   └── Response.php
│   │   │               ├── IO/
│   │   │               │   ├── EventLoopGroup.php
│   │   │               │   └── InputStream.php
│   │   │               ├── Internal/
│   │   │               │   ├── Encoding.php
│   │   │               │   └── Extension.php
│   │   │               ├── Log.php
│   │   │               ├── NativeResource.php
│   │   │               └── Options.php
│   │   └── aws-sdk-php/
│   │       ├── CODE_OF_CONDUCT.md
│   │       ├── CRT_INSTRUCTIONS.md
│   │       ├── LICENSE
│   │       ├── NOTICE
│   │       ├── THIRD-PARTY-LICENSES
│   │       ├── composer.json
│   │       └── src/
│   │           ├── ACMPCA/
│   │           │   ├── ACMPCAClient.php
│   │           │   └── Exception/
│   │           │       └── ACMPCAException.php
│   │           ├── AIOps/
│   │           │   ├── AIOpsClient.php
│   │           │   └── Exception/
│   │           │       └── AIOpsException.php
│   │           ├── ARCZonalShift/
│   │           │   ├── ARCZonalShiftClient.php
│   │           │   └── Exception/
│   │           │       └── ARCZonalShiftException.php
│   │           ├── AbstractConfigurationProvider.php
│   │           ├── AccessAnalyzer/
│   │           │   ├── AccessAnalyzerClient.php
│   │           │   └── Exception/
│   │           │       └── AccessAnalyzerException.php
│   │           ├── Account/
│   │           │   ├── AccountClient.php
│   │           │   └── Exception/
│   │           │       └── AccountException.php
│   │           ├── Acm/
│   │           │   ├── AcmClient.php
│   │           │   └── Exception/
│   │           │       └── AcmException.php
│   │           ├── Amplify/
│   │           │   ├── AmplifyClient.php
│   │           │   └── Exception/
│   │           │       └── AmplifyException.php
│   │           ├── AmplifyBackend/
│   │           │   ├── AmplifyBackendClient.php
│   │           │   └── Exception/
│   │           │       └── AmplifyBackendException.php
│   │           ├── AmplifyUIBuilder/
│   │           │   ├── AmplifyUIBuilderClient.php
│   │           │   └── Exception/
│   │           │       └── AmplifyUIBuilderException.php
│   │           ├── Api/
│   │           │   ├── AbstractModel.php
│   │           │   ├── ApiProvider.php
│   │           │   ├── DateTimeResult.php
│   │           │   ├── DocModel.php
│   │           │   ├── ErrorParser/
│   │           │   │   ├── AbstractErrorParser.php
│   │           │   │   ├── JsonParserTrait.php
│   │           │   │   ├── JsonRpcErrorParser.php
│   │           │   │   ├── RestJsonErrorParser.php
│   │           │   │   └── XmlErrorParser.php
│   │           │   ├── ListShape.php
│   │           │   ├── MapShape.php
│   │           │   ├── Operation.php
│   │           │   ├── Parser/
│   │           │   │   ├── AbstractParser.php
│   │           │   │   ├── AbstractRestParser.php
│   │           │   │   ├── Crc32ValidatingParser.php
│   │           │   │   ├── DecodingEventStreamIterator.php
│   │           │   │   ├── EventParsingIterator.php
│   │           │   │   ├── Exception/
│   │           │   │   │   └── ParserException.php
│   │           │   │   ├── JsonParser.php
│   │           │   │   ├── JsonRpcParser.php
│   │           │   │   ├── MetadataParserTrait.php
│   │           │   │   ├── NonSeekableStreamDecodingEventStreamIterator.php
│   │           │   │   ├── PayloadParserTrait.php
│   │           │   │   ├── QueryParser.php
│   │           │   │   ├── RestJsonParser.php
│   │           │   │   ├── RestXmlParser.php
│   │           │   │   └── XmlParser.php
│   │           │   ├── Serializer/
│   │           │   │   ├── Ec2ParamBuilder.php
│   │           │   │   ├── JsonBody.php
│   │           │   │   ├── JsonRpcSerializer.php
│   │           │   │   ├── QueryParamBuilder.php
│   │           │   │   ├── QuerySerializer.php
│   │           │   │   ├── RestJsonSerializer.php
│   │           │   │   ├── RestSerializer.php
│   │           │   │   ├── RestXmlSerializer.php
│   │           │   │   └── XmlBody.php
│   │           │   ├── Service.php
│   │           │   ├── Shape.php
│   │           │   ├── ShapeMap.php
│   │           │   ├── StructureShape.php
│   │           │   ├── SupportedProtocols.php
│   │           │   ├── TimestampShape.php
│   │           │   └── Validator.php
│   │           ├── ApiGateway/
│   │           │   ├── ApiGatewayClient.php
│   │           │   └── Exception/
│   │           │       └── ApiGatewayException.php
│   │           ├── ApiGatewayManagementApi/
│   │           │   ├── ApiGatewayManagementApiClient.php
│   │           │   └── Exception/
│   │           │       └── ApiGatewayManagementApiException.php
│   │           ├── ApiGatewayV2/
│   │           │   ├── ApiGatewayV2Client.php
│   │           │   └── Exception/
│   │           │       └── ApiGatewayV2Exception.php
│   │           ├── AppConfig/
│   │           │   ├── AppConfigClient.php
│   │           │   └── Exception/
│   │           │       └── AppConfigException.php
│   │           ├── AppConfigData/
│   │           │   ├── AppConfigDataClient.php
│   │           │   └── Exception/
│   │           │       └── AppConfigDataException.php
│   │           ├── AppFabric/
│   │           │   ├── AppFabricClient.php
│   │           │   └── Exception/
│   │           │       └── AppFabricException.php
│   │           ├── AppIntegrationsService/
│   │           │   ├── AppIntegrationsServiceClient.php
│   │           │   └── Exception/
│   │           │       └── AppIntegrationsServiceException.php
│   │           ├── AppMesh/
│   │           │   ├── AppMeshClient.php
│   │           │   └── Exception/
│   │           │       └── AppMeshException.php
│   │           ├── AppRegistry/
│   │           │   ├── AppRegistryClient.php
│   │           │   └── Exception/
│   │           │       └── AppRegistryException.php
│   │           ├── AppRunner/
│   │           │   ├── AppRunnerClient.php
│   │           │   └── Exception/
│   │           │       └── AppRunnerException.php
│   │           ├── AppSync/
│   │           │   ├── AppSyncClient.php
│   │           │   └── Exception/
│   │           │       └── AppSyncException.php
│   │           ├── AppTest/
│   │           │   ├── AppTestClient.php
│   │           │   └── Exception/
│   │           │       └── AppTestException.php
│   │           ├── Appflow/
│   │           │   ├── AppflowClient.php
│   │           │   └── Exception/
│   │           │       └── AppflowException.php
│   │           ├── ApplicationAutoScaling/
│   │           │   ├── ApplicationAutoScalingClient.php
│   │           │   └── Exception/
│   │           │       └── ApplicationAutoScalingException.php
│   │           ├── ApplicationCostProfiler/
│   │           │   ├── ApplicationCostProfilerClient.php
│   │           │   └── Exception/
│   │           │       └── ApplicationCostProfilerException.php
│   │           ├── ApplicationDiscoveryService/
│   │           │   ├── ApplicationDiscoveryServiceClient.php
│   │           │   └── Exception/
│   │           │       └── ApplicationDiscoveryServiceException.php
│   │           ├── ApplicationInsights/
│   │           │   ├── ApplicationInsightsClient.php
│   │           │   └── Exception/
│   │           │       └── ApplicationInsightsException.php
│   │           ├── ApplicationSignals/
│   │           │   ├── ApplicationSignalsClient.php
│   │           │   └── Exception/
│   │           │       └── ApplicationSignalsException.php
│   │           ├── Appstream/
│   │           │   ├── AppstreamClient.php
│   │           │   └── Exception/
│   │           │       └── AppstreamException.php
│   │           ├── Arn/
│   │           │   ├── AccessPointArn.php
│   │           │   ├── AccessPointArnInterface.php
│   │           │   ├── Arn.php
│   │           │   ├── ArnInterface.php
│   │           │   ├── ArnParser.php
│   │           │   ├── Exception/
│   │           │   │   └── InvalidArnException.php
│   │           │   ├── ObjectLambdaAccessPointArn.php
│   │           │   ├── ResourceTypeAndIdTrait.php
│   │           │   └── S3/
│   │           │       ├── AccessPointArn.php
│   │           │       ├── BucketArnInterface.php
│   │           │       ├── MultiRegionAccessPointArn.php
│   │           │       ├── OutpostsAccessPointArn.php
│   │           │       ├── OutpostsArnInterface.php
│   │           │       └── OutpostsBucketArn.php
│   │           ├── Artifact/
│   │           │   ├── ArtifactClient.php
│   │           │   └── Exception/
│   │           │       └── ArtifactException.php
│   │           ├── Athena/
│   │           │   ├── AthenaClient.php
│   │           │   └── Exception/
│   │           │       └── AthenaException.php
│   │           ├── AuditManager/
│   │           │   ├── AuditManagerClient.php
│   │           │   └── Exception/
│   │           │       └── AuditManagerException.php
│   │           ├── AugmentedAIRuntime/
│   │           │   ├── AugmentedAIRuntimeClient.php
│   │           │   └── Exception/
│   │           │       └── AugmentedAIRuntimeException.php
│   │           ├── Auth/
│   │           │   ├── AuthSchemeResolver.php
│   │           │   ├── AuthSchemeResolverInterface.php
│   │           │   ├── AuthSelectionMiddleware.php
│   │           │   └── Exception/
│   │           │       └── UnresolvedAuthSchemeException.php
│   │           ├── AutoScaling/
│   │           │   ├── AutoScalingClient.php
│   │           │   └── Exception/
│   │           │       └── AutoScalingException.php
│   │           ├── AutoScalingPlans/
│   │           │   ├── AutoScalingPlansClient.php
│   │           │   └── Exception/
│   │           │       └── AutoScalingPlansException.php
│   │           ├── AwsClient.php
│   │           ├── AwsClientInterface.php
│   │           ├── AwsClientTrait.php
│   │           ├── B2bi/
│   │           │   ├── B2biClient.php
│   │           │   └── Exception/
│   │           │       └── B2biException.php
│   │           ├── BCMDataExports/
│   │           │   ├── BCMDataExportsClient.php
│   │           │   └── Exception/
│   │           │       └── BCMDataExportsException.php
│   │           ├── BCMPricingCalculator/
│   │           │   ├── BCMPricingCalculatorClient.php
│   │           │   └── Exception/
│   │           │       └── BCMPricingCalculatorException.php
│   │           ├── Backup/
│   │           │   ├── BackupClient.php
│   │           │   └── Exception/
│   │           │       └── BackupException.php
│   │           ├── BackupGateway/
│   │           │   ├── BackupGatewayClient.php
│   │           │   └── Exception/
│   │           │       └── BackupGatewayException.php
│   │           ├── BackupSearch/
│   │           │   ├── BackupSearchClient.php
│   │           │   └── Exception/
│   │           │       └── BackupSearchException.php
│   │           ├── Batch/
│   │           │   ├── BatchClient.php
│   │           │   └── Exception/
│   │           │       └── BatchException.php
│   │           ├── Bedrock/
│   │           │   ├── BedrockClient.php
│   │           │   └── Exception/
│   │           │       └── BedrockException.php
│   │           ├── BedrockAgent/
│   │           │   ├── BedrockAgentClient.php
│   │           │   └── Exception/
│   │           │       └── BedrockAgentException.php
│   │           ├── BedrockAgentRuntime/
│   │           │   ├── BedrockAgentRuntimeClient.php
│   │           │   └── Exception/
│   │           │       └── BedrockAgentRuntimeException.php
│   │           ├── BedrockDataAutomation/
│   │           │   ├── BedrockDataAutomationClient.php
│   │           │   └── Exception/
│   │           │       └── BedrockDataAutomationException.php
│   │           ├── BedrockDataAutomationRuntime/
│   │           │   ├── BedrockDataAutomationRuntimeClient.php
│   │           │   └── Exception/
│   │           │       └── BedrockDataAutomationRuntimeException.php
│   │           ├── BedrockRuntime/
│   │           │   ├── BedrockRuntimeClient.php
│   │           │   └── Exception/
│   │           │       └── BedrockRuntimeException.php
│   │           ├── Billing/
│   │           │   ├── BillingClient.php
│   │           │   └── Exception/
│   │           │       └── BillingException.php
│   │           ├── BillingConductor/
│   │           │   ├── BillingConductorClient.php
│   │           │   └── Exception/
│   │           │       └── BillingConductorException.php
│   │           ├── Braket/
│   │           │   ├── BraketClient.php
│   │           │   └── Exception/
│   │           │       └── BraketException.php
│   │           ├── Budgets/
│   │           │   ├── BudgetsClient.php
│   │           │   └── Exception/
│   │           │       └── BudgetsException.php
│   │           ├── CacheInterface.php
│   │           ├── Chatbot/
│   │           │   ├── ChatbotClient.php
│   │           │   └── Exception/
│   │           │       └── ChatbotException.php
│   │           ├── Chime/
│   │           │   ├── ChimeClient.php
│   │           │   └── Exception/
│   │           │       └── ChimeException.php
│   │           ├── ChimeSDKIdentity/
│   │           │   ├── ChimeSDKIdentityClient.php
│   │           │   └── Exception/
│   │           │       └── ChimeSDKIdentityException.php
│   │           ├── ChimeSDKMediaPipelines/
│   │           │   ├── ChimeSDKMediaPipelinesClient.php
│   │           │   └── Exception/
│   │           │       └── ChimeSDKMediaPipelinesException.php
│   │           ├── ChimeSDKMeetings/
│   │           │   ├── ChimeSDKMeetingsClient.php
│   │           │   └── Exception/
│   │           │       └── ChimeSDKMeetingsException.php
│   │           ├── ChimeSDKMessaging/
│   │           │   ├── ChimeSDKMessagingClient.php
│   │           │   └── Exception/
│   │           │       └── ChimeSDKMessagingException.php
│   │           ├── ChimeSDKVoice/
│   │           │   ├── ChimeSDKVoiceClient.php
│   │           │   └── Exception/
│   │           │       └── ChimeSDKVoiceException.php
│   │           ├── CleanRooms/
│   │           │   ├── CleanRoomsClient.php
│   │           │   └── Exception/
│   │           │       └── CleanRoomsException.php
│   │           ├── CleanRoomsML/
│   │           │   ├── CleanRoomsMLClient.php
│   │           │   └── Exception/
│   │           │       └── CleanRoomsMLException.php
│   │           ├── ClientResolver.php
│   │           ├── ClientSideMonitoring/
│   │           │   ├── AbstractMonitoringMiddleware.php
│   │           │   ├── ApiCallAttemptMonitoringMiddleware.php
│   │           │   ├── ApiCallMonitoringMiddleware.php
│   │           │   ├── Configuration.php
│   │           │   ├── ConfigurationInterface.php
│   │           │   ├── ConfigurationProvider.php
│   │           │   ├── Exception/
│   │           │   │   └── ConfigurationException.php
│   │           │   └── MonitoringMiddlewareInterface.php
│   │           ├── Cloud9/
│   │           │   ├── Cloud9Client.php
│   │           │   └── Exception/
│   │           │       └── Cloud9Exception.php
│   │           ├── CloudControlApi/
│   │           │   ├── CloudControlApiClient.php
│   │           │   └── Exception/
│   │           │       └── CloudControlApiException.php
│   │           ├── CloudDirectory/
│   │           │   ├── CloudDirectoryClient.php
│   │           │   └── Exception/
│   │           │       └── CloudDirectoryException.php
│   │           ├── CloudFormation/
│   │           │   ├── CloudFormationClient.php
│   │           │   └── Exception/
│   │           │       └── CloudFormationException.php
│   │           ├── CloudFront/
│   │           │   ├── CloudFrontClient.php
│   │           │   ├── CookieSigner.php
│   │           │   ├── Exception/
│   │           │   │   └── CloudFrontException.php
│   │           │   ├── Signer.php
│   │           │   └── UrlSigner.php
│   │           ├── CloudFrontKeyValueStore/
│   │           │   ├── CloudFrontKeyValueStoreClient.php
│   │           │   └── Exception/
│   │           │       └── CloudFrontKeyValueStoreException.php
│   │           ├── CloudHSMV2/
│   │           │   ├── CloudHSMV2Client.php
│   │           │   └── Exception/
│   │           │       └── CloudHSMV2Exception.php
│   │           ├── CloudHsm/
│   │           │   ├── CloudHsmClient.php
│   │           │   └── Exception/
│   │           │       └── CloudHsmException.php
│   │           ├── CloudSearch/
│   │           │   ├── CloudSearchClient.php
│   │           │   └── Exception/
│   │           │       └── CloudSearchException.php
│   │           ├── CloudSearchDomain/
│   │           │   ├── CloudSearchDomainClient.php
│   │           │   └── Exception/
│   │           │       └── CloudSearchDomainException.php
│   │           ├── CloudTrail/
│   │           │   ├── CloudTrailClient.php
│   │           │   ├── Exception/
│   │           │   │   └── CloudTrailException.php
│   │           │   ├── LogFileIterator.php
│   │           │   ├── LogFileReader.php
│   │           │   └── LogRecordIterator.php
│   │           ├── CloudTrailData/
│   │           │   ├── CloudTrailDataClient.php
│   │           │   └── Exception/
│   │           │       └── CloudTrailDataException.php
│   │           ├── CloudWatch/
│   │           │   ├── CloudWatchClient.php
│   │           │   └── Exception/
│   │           │       └── CloudWatchException.php
│   │           ├── CloudWatchEvents/
│   │           │   ├── CloudWatchEventsClient.php
│   │           │   └── Exception/
│   │           │       └── CloudWatchEventsException.php
│   │           ├── CloudWatchEvidently/
│   │           │   ├── CloudWatchEvidentlyClient.php
│   │           │   └── Exception/
│   │           │       └── CloudWatchEvidentlyException.php
│   │           ├── CloudWatchLogs/
│   │           │   ├── CloudWatchLogsClient.php
│   │           │   └── Exception/
│   │           │       └── CloudWatchLogsException.php
│   │           ├── CloudWatchRUM/
│   │           │   ├── CloudWatchRUMClient.php
│   │           │   └── Exception/
│   │           │       └── CloudWatchRUMException.php
│   │           ├── CodeArtifact/
│   │           │   ├── CodeArtifactClient.php
│   │           │   └── Exception/
│   │           │       └── CodeArtifactException.php
│   │           ├── CodeBuild/
│   │           │   ├── CodeBuildClient.php
│   │           │   └── Exception/
│   │           │       └── CodeBuildException.php
│   │           ├── CodeCatalyst/
│   │           │   ├── CodeCatalystClient.php
│   │           │   └── Exception/
│   │           │       └── CodeCatalystException.php
│   │           ├── CodeCommit/
│   │           │   ├── CodeCommitClient.php
│   │           │   └── Exception/
│   │           │       └── CodeCommitException.php
│   │           ├── CodeConnections/
│   │           │   ├── CodeConnectionsClient.php
│   │           │   └── Exception/
│   │           │       └── CodeConnectionsException.php
│   │           ├── CodeDeploy/
│   │           │   ├── CodeDeployClient.php
│   │           │   └── Exception/
│   │           │       └── CodeDeployException.php
│   │           ├── CodeGuruProfiler/
│   │           │   ├── CodeGuruProfilerClient.php
│   │           │   └── Exception/
│   │           │       └── CodeGuruProfilerException.php
│   │           ├── CodeGuruReviewer/
│   │           │   ├── CodeGuruReviewerClient.php
│   │           │   └── Exception/
│   │           │       └── CodeGuruReviewerException.php
│   │           ├── CodeGuruSecurity/
│   │           │   ├── CodeGuruSecurityClient.php
│   │           │   └── Exception/
│   │           │       └── CodeGuruSecurityException.php
│   │           ├── CodePipeline/
│   │           │   ├── CodePipelineClient.php
│   │           │   └── Exception/
│   │           │       └── CodePipelineException.php
│   │           ├── CodeStarNotifications/
│   │           │   ├── CodeStarNotificationsClient.php
│   │           │   └── Exception/
│   │           │       └── CodeStarNotificationsException.php
│   │           ├── CodeStarconnections/
│   │           │   ├── CodeStarconnectionsClient.php
│   │           │   └── Exception/
│   │           │       └── CodeStarconnectionsException.php
│   │           ├── CognitoIdentity/
│   │           │   ├── CognitoIdentityClient.php
│   │           │   ├── CognitoIdentityProvider.php
│   │           │   └── Exception/
│   │           │       └── CognitoIdentityException.php
│   │           ├── CognitoIdentityProvider/
│   │           │   ├── CognitoIdentityProviderClient.php
│   │           │   └── Exception/
│   │           │       └── CognitoIdentityProviderException.php
│   │           ├── CognitoSync/
│   │           │   ├── CognitoSyncClient.php
│   │           │   └── Exception/
│   │           │       └── CognitoSyncException.php
│   │           ├── Command.php
│   │           ├── CommandInterface.php
│   │           ├── CommandPool.php
│   │           ├── Comprehend/
│   │           │   ├── ComprehendClient.php
│   │           │   └── Exception/
│   │           │       └── ComprehendException.php
│   │           ├── ComprehendMedical/
│   │           │   ├── ComprehendMedicalClient.php
│   │           │   └── Exception/
│   │           │       └── ComprehendMedicalException.php
│   │           ├── ComputeOptimizer/
│   │           │   ├── ComputeOptimizerClient.php
│   │           │   └── Exception/
│   │           │       └── ComputeOptimizerException.php
│   │           ├── ConfigService/
│   │           │   ├── ConfigServiceClient.php
│   │           │   └── Exception/
│   │           │       └── ConfigServiceException.php
│   │           ├── Configuration/
│   │           │   └── ConfigurationResolver.php
│   │           ├── ConfigurationProviderInterface.php
│   │           ├── Connect/
│   │           │   ├── ConnectClient.php
│   │           │   └── Exception/
│   │           │       └── ConnectException.php
│   │           ├── ConnectCampaignService/
│   │           │   ├── ConnectCampaignServiceClient.php
│   │           │   └── Exception/
│   │           │       └── ConnectCampaignServiceException.php
│   │           ├── ConnectCampaignsV2/
│   │           │   ├── ConnectCampaignsV2Client.php
│   │           │   └── Exception/
│   │           │       └── ConnectCampaignsV2Exception.php
│   │           ├── ConnectCases/
│   │           │   ├── ConnectCasesClient.php
│   │           │   └── Exception/
│   │           │       └── ConnectCasesException.php
│   │           ├── ConnectContactLens/
│   │           │   ├── ConnectContactLensClient.php
│   │           │   └── Exception/
│   │           │       └── ConnectContactLensException.php
│   │           ├── ConnectParticipant/
│   │           │   ├── ConnectParticipantClient.php
│   │           │   └── Exception/
│   │           │       └── ConnectParticipantException.php
│   │           ├── ConnectWisdomService/
│   │           │   ├── ConnectWisdomServiceClient.php
│   │           │   └── Exception/
│   │           │       └── ConnectWisdomServiceException.php
│   │           ├── ControlCatalog/
│   │           │   ├── ControlCatalogClient.php
│   │           │   └── Exception/
│   │           │       └── ControlCatalogException.php
│   │           ├── ControlTower/
│   │           │   ├── ControlTowerClient.php
│   │           │   └── Exception/
│   │           │       └── ControlTowerException.php
│   │           ├── CostExplorer/
│   │           │   ├── CostExplorerClient.php
│   │           │   └── Exception/
│   │           │       └── CostExplorerException.php
│   │           ├── CostOptimizationHub/
│   │           │   ├── CostOptimizationHubClient.php
│   │           │   └── Exception/
│   │           │       └── CostOptimizationHubException.php
│   │           ├── CostandUsageReportService/
│   │           │   ├── CostandUsageReportServiceClient.php
│   │           │   └── Exception/
│   │           │       └── CostandUsageReportServiceException.php
│   │           ├── Credentials/
│   │           │   ├── AssumeRoleCredentialProvider.php
│   │           │   ├── AssumeRoleWithWebIdentityCredentialProvider.php
│   │           │   ├── CredentialProvider.php
│   │           │   ├── CredentialSources.php
│   │           │   ├── Credentials.php
│   │           │   ├── CredentialsInterface.php
│   │           │   ├── CredentialsUtils.php
│   │           │   ├── EcsCredentialProvider.php
│   │           │   └── InstanceProfileProvider.php
│   │           ├── Crypto/
│   │           │   ├── AbstractCryptoClient.php
│   │           │   ├── AbstractCryptoClientV2.php
│   │           │   ├── AesDecryptingStream.php
│   │           │   ├── AesEncryptingStream.php
│   │           │   ├── AesGcmDecryptingStream.php
│   │           │   ├── AesGcmEncryptingStream.php
│   │           │   ├── AesStreamInterface.php
│   │           │   ├── AesStreamInterfaceV2.php
│   │           │   ├── Cipher/
│   │           │   │   ├── Cbc.php
│   │           │   │   ├── CipherBuilderTrait.php
│   │           │   │   └── CipherMethod.php
│   │           │   ├── DecryptionTrait.php
│   │           │   ├── DecryptionTraitV2.php
│   │           │   ├── EncryptionTrait.php
│   │           │   ├── EncryptionTraitV2.php
│   │           │   ├── KmsMaterialsProvider.php
│   │           │   ├── KmsMaterialsProviderV2.php
│   │           │   ├── MaterialsProvider.php
│   │           │   ├── MaterialsProviderInterface.php
│   │           │   ├── MaterialsProviderInterfaceV2.php
│   │           │   ├── MaterialsProviderV2.php
│   │           │   ├── MetadataEnvelope.php
│   │           │   └── MetadataStrategyInterface.php
│   │           ├── CustomerProfiles/
│   │           │   ├── CustomerProfilesClient.php
│   │           │   └── Exception/
│   │           │       └── CustomerProfilesException.php
│   │           ├── DAX/
│   │           │   ├── DAXClient.php
│   │           │   └── Exception/
│   │           │       └── DAXException.php
│   │           ├── DLM/
│   │           │   ├── DLMClient.php
│   │           │   └── Exception/
│   │           │       └── DLMException.php
│   │           ├── DSQL/
│   │           │   ├── AuthTokenGenerator.php
│   │           │   ├── DSQLClient.php
│   │           │   └── Exception/
│   │           │       └── DSQLException.php
│   │           ├── DataExchange/
│   │           │   ├── DataExchangeClient.php
│   │           │   └── Exception/
│   │           │       └── DataExchangeException.php
│   │           ├── DataPipeline/
│   │           │   ├── DataPipelineClient.php
│   │           │   └── Exception/
│   │           │       └── DataPipelineException.php
│   │           ├── DataSync/
│   │           │   ├── DataSyncClient.php
│   │           │   └── Exception/
│   │           │       └── DataSyncException.php
│   │           ├── DataZone/
│   │           │   ├── DataZoneClient.php
│   │           │   └── Exception/
│   │           │       └── DataZoneException.php
│   │           ├── DatabaseMigrationService/
│   │           │   ├── DatabaseMigrationServiceClient.php
│   │           │   └── Exception/
│   │           │       └── DatabaseMigrationServiceException.php
│   │           ├── Deadline/
│   │           │   ├── DeadlineClient.php
│   │           │   └── Exception/
│   │           │       └── DeadlineException.php
│   │           ├── DefaultsMode/
│   │           │   ├── Configuration.php
│   │           │   ├── ConfigurationInterface.php
│   │           │   ├── ConfigurationProvider.php
│   │           │   └── Exception/
│   │           │       └── ConfigurationException.php
│   │           ├── Detective/
│   │           │   ├── DetectiveClient.php
│   │           │   └── Exception/
│   │           │       └── DetectiveException.php
│   │           ├── DevOpsGuru/
│   │           │   ├── DevOpsGuruClient.php
│   │           │   └── Exception/
│   │           │       └── DevOpsGuruException.php
│   │           ├── DeviceFarm/
│   │           │   ├── DeviceFarmClient.php
│   │           │   └── Exception/
│   │           │       └── DeviceFarmException.php
│   │           ├── DirectConnect/
│   │           │   ├── DirectConnectClient.php
│   │           │   └── Exception/
│   │           │       └── DirectConnectException.php
│   │           ├── DirectoryService/
│   │           │   ├── DirectoryServiceClient.php
│   │           │   └── Exception/
│   │           │       └── DirectoryServiceException.php
│   │           ├── DirectoryServiceData/
│   │           │   ├── DirectoryServiceDataClient.php
│   │           │   └── Exception/
│   │           │       └── DirectoryServiceDataException.php
│   │           ├── DocDB/
│   │           │   ├── DocDBClient.php
│   │           │   └── Exception/
│   │           │       └── DocDBException.php
│   │           ├── DocDBElastic/
│   │           │   ├── DocDBElasticClient.php
│   │           │   └── Exception/
│   │           │       └── DocDBElasticException.php
│   │           ├── DoctrineCacheAdapter.php
│   │           ├── DynamoDb/
│   │           │   ├── BinaryValue.php
│   │           │   ├── DynamoDbClient.php
│   │           │   ├── Exception/
│   │           │   │   └── DynamoDbException.php
│   │           │   ├── LockingSessionConnection.php
│   │           │   ├── Marshaler.php
│   │           │   ├── NumberValue.php
│   │           │   ├── SessionConnectionConfigTrait.php
│   │           │   ├── SessionConnectionInterface.php
│   │           │   ├── SessionHandler.php
│   │           │   ├── SetValue.php
│   │           │   ├── StandardSessionConnection.php
│   │           │   └── WriteRequestBatch.php
│   │           ├── DynamoDbStreams/
│   │           │   ├── DynamoDbStreamsClient.php
│   │           │   └── Exception/
│   │           │       └── DynamoDbStreamsException.php
│   │           ├── EBS/
│   │           │   ├── EBSClient.php
│   │           │   └── Exception/
│   │           │       └── EBSException.php
│   │           ├── EC2InstanceConnect/
│   │           │   ├── EC2InstanceConnectClient.php
│   │           │   └── Exception/
│   │           │       └── EC2InstanceConnectException.php
│   │           ├── ECRPublic/
│   │           │   ├── ECRPublicClient.php
│   │           │   └── Exception/
│   │           │       └── ECRPublicException.php
│   │           ├── EKS/
│   │           │   ├── EKSClient.php
│   │           │   └── Exception/
│   │           │       └── EKSException.php
│   │           ├── EKSAuth/
│   │           │   ├── EKSAuthClient.php
│   │           │   └── Exception/
│   │           │       └── EKSAuthException.php
│   │           ├── EMRContainers/
│   │           │   ├── EMRContainersClient.php
│   │           │   └── Exception/
│   │           │       └── EMRContainersException.php
│   │           ├── EMRServerless/
│   │           │   ├── EMRServerlessClient.php
│   │           │   └── Exception/
│   │           │       └── EMRServerlessException.php
│   │           ├── Ec2/
│   │           │   ├── Ec2Client.php
│   │           │   └── Exception/
│   │           │       └── Ec2Exception.php
│   │           ├── Ecr/
│   │           │   ├── EcrClient.php
│   │           │   └── Exception/
│   │           │       └── EcrException.php
│   │           ├── Ecs/
│   │           │   ├── EcsClient.php
│   │           │   └── Exception/
│   │           │       └── EcsException.php
│   │           ├── Efs/
│   │           │   ├── EfsClient.php
│   │           │   └── Exception/
│   │           │       └── EfsException.php
│   │           ├── ElastiCache/
│   │           │   ├── ElastiCacheClient.php
│   │           │   └── Exception/
│   │           │       └── ElastiCacheException.php
│   │           ├── ElasticBeanstalk/
│   │           │   ├── ElasticBeanstalkClient.php
│   │           │   └── Exception/
│   │           │       └── ElasticBeanstalkException.php
│   │           ├── ElasticLoadBalancing/
│   │           │   ├── ElasticLoadBalancingClient.php
│   │           │   └── Exception/
│   │           │       └── ElasticLoadBalancingException.php
│   │           ├── ElasticLoadBalancingV2/
│   │           │   ├── ElasticLoadBalancingV2Client.php
│   │           │   └── Exception/
│   │           │       └── ElasticLoadBalancingV2Exception.php
│   │           ├── ElasticTranscoder/
│   │           │   ├── ElasticTranscoderClient.php
│   │           │   └── Exception/
│   │           │       └── ElasticTranscoderException.php
│   │           ├── ElasticsearchService/
│   │           │   ├── ElasticsearchServiceClient.php
│   │           │   └── Exception/
│   │           │       └── ElasticsearchServiceException.php
│   │           ├── Emr/
│   │           │   ├── EmrClient.php
│   │           │   └── Exception/
│   │           │       └── EmrException.php
│   │           ├── Endpoint/
│   │           │   ├── EndpointProvider.php
│   │           │   ├── Partition.php
│   │           │   ├── PartitionEndpointProvider.php
│   │           │   ├── PartitionInterface.php
│   │           │   ├── PatternEndpointProvider.php
│   │           │   ├── UseDualstackEndpoint/
│   │           │   │   ├── Configuration.php
│   │           │   │   ├── ConfigurationInterface.php
│   │           │   │   ├── ConfigurationProvider.php
│   │           │   │   └── Exception/
│   │           │   │       └── ConfigurationException.php
│   │           │   └── UseFipsEndpoint/
│   │           │       ├── Configuration.php
│   │           │       ├── ConfigurationInterface.php
│   │           │       ├── ConfigurationProvider.php
│   │           │       └── Exception/
│   │           │           └── ConfigurationException.php
│   │           ├── EndpointDiscovery/
│   │           │   ├── Configuration.php
│   │           │   ├── ConfigurationInterface.php
│   │           │   ├── ConfigurationProvider.php
│   │           │   ├── EndpointDiscoveryMiddleware.php
│   │           │   ├── EndpointList.php
│   │           │   └── Exception/
│   │           │       └── ConfigurationException.php
│   │           ├── EndpointParameterMiddleware.php
│   │           ├── EndpointV2/
│   │           │   ├── EndpointDefinitionProvider.php
│   │           │   ├── EndpointProviderV2.php
│   │           │   ├── EndpointV2Middleware.php
│   │           │   ├── EndpointV2SerializerTrait.php
│   │           │   ├── Rule/
│   │           │   │   ├── AbstractRule.php
│   │           │   │   ├── EndpointRule.php
│   │           │   │   ├── ErrorRule.php
│   │           │   │   ├── RuleCreator.php
│   │           │   │   └── TreeRule.php
│   │           │   └── Ruleset/
│   │           │       ├── Ruleset.php
│   │           │       ├── RulesetEndpoint.php
│   │           │       ├── RulesetParameter.php
│   │           │       └── RulesetStandardLibrary.php
│   │           ├── EntityResolution/
│   │           │   ├── EntityResolutionClient.php
│   │           │   └── Exception/
│   │           │       └── EntityResolutionException.php
│   │           ├── EventBridge/
│   │           │   ├── EventBridgeClient.php
│   │           │   ├── EventBridgeEndpointMiddleware.php
│   │           │   └── Exception/
│   │           │       └── EventBridgeException.php
│   │           ├── Evs/
│   │           │   ├── EvsClient.php
│   │           │   └── Exception/
│   │           │       └── EvsException.php
│   │           ├── Exception/
│   │           │   ├── AwsException.php
│   │           │   ├── CommonRuntimeException.php
│   │           │   ├── CouldNotCreateChecksumException.php
│   │           │   ├── CredentialsException.php
│   │           │   ├── CryptoException.php
│   │           │   ├── CryptoPolyfillException.php
│   │           │   ├── EventStreamDataException.php
│   │           │   ├── IncalculablePayloadException.php
│   │           │   ├── InvalidJsonException.php
│   │           │   ├── InvalidRegionException.php
│   │           │   ├── MultipartUploadException.php
│   │           │   ├── TokenException.php
│   │           │   ├── UnresolvedApiException.php
│   │           │   ├── UnresolvedEndpointException.php
│   │           │   └── UnresolvedSignatureException.php
│   │           ├── FIS/
│   │           │   ├── Exception/
│   │           │   │   └── FISException.php
│   │           │   └── FISClient.php
│   │           ├── FMS/
│   │           │   ├── Exception/
│   │           │   │   └── FMSException.php
│   │           │   └── FMSClient.php
│   │           ├── FSx/
│   │           │   ├── Exception/
│   │           │   │   └── FSxException.php
│   │           │   └── FSxClient.php
│   │           ├── FinSpaceData/
│   │           │   ├── Exception/
│   │           │   │   └── FinSpaceDataException.php
│   │           │   └── FinSpaceDataClient.php
│   │           ├── Firehose/
│   │           │   ├── Exception/
│   │           │   │   └── FirehoseException.php
│   │           │   └── FirehoseClient.php
│   │           ├── ForecastQueryService/
│   │           │   ├── Exception/
│   │           │   │   └── ForecastQueryServiceException.php
│   │           │   └── ForecastQueryServiceClient.php
│   │           ├── ForecastService/
│   │           │   ├── Exception/
│   │           │   │   └── ForecastServiceException.php
│   │           │   └── ForecastServiceClient.php
│   │           ├── FraudDetector/
│   │           │   ├── Exception/
│   │           │   │   └── FraudDetectorException.php
│   │           │   └── FraudDetectorClient.php
│   │           ├── FreeTier/
│   │           │   ├── Exception/
│   │           │   │   └── FreeTierException.php
│   │           │   └── FreeTierClient.php
│   │           ├── GameLift/
│   │           │   ├── Exception/
│   │           │   │   └── GameLiftException.php
│   │           │   └── GameLiftClient.php
│   │           ├── GameLiftStreams/
│   │           │   ├── Exception/
│   │           │   │   └── GameLiftStreamsException.php
│   │           │   └── GameLiftStreamsClient.php
│   │           ├── GeoMaps/
│   │           │   ├── Exception/
│   │           │   │   └── GeoMapsException.php
│   │           │   └── GeoMapsClient.php
│   │           ├── GeoPlaces/
│   │           │   ├── Exception/
│   │           │   │   └── GeoPlacesException.php
│   │           │   └── GeoPlacesClient.php
│   │           ├── GeoRoutes/
│   │           │   ├── Exception/
│   │           │   │   └── GeoRoutesException.php
│   │           │   └── GeoRoutesClient.php
│   │           ├── Glacier/
│   │           │   ├── Exception/
│   │           │   │   └── GlacierException.php
│   │           │   ├── GlacierClient.php
│   │           │   ├── MultipartUploader.php
│   │           │   └── TreeHash.php
│   │           ├── GlobalAccelerator/
│   │           │   ├── Exception/
│   │           │   │   └── GlobalAcceleratorException.php
│   │           │   └── GlobalAcceleratorClient.php
│   │           ├── Glue/
│   │           │   ├── Exception/
│   │           │   │   └── GlueException.php
│   │           │   └── GlueClient.php
│   │           ├── GlueDataBrew/
│   │           │   ├── Exception/
│   │           │   │   └── GlueDataBrewException.php
│   │           │   └── GlueDataBrewClient.php
│   │           ├── Greengrass/
│   │           │   ├── Exception/
│   │           │   │   └── GreengrassException.php
│   │           │   └── GreengrassClient.php
│   │           ├── GreengrassV2/
│   │           │   ├── Exception/
│   │           │   │   └── GreengrassV2Exception.php
│   │           │   └── GreengrassV2Client.php
│   │           ├── GroundStation/
│   │           │   ├── Exception/
│   │           │   │   └── GroundStationException.php
│   │           │   └── GroundStationClient.php
│   │           ├── GuardDuty/
│   │           │   ├── Exception/
│   │           │   │   └── GuardDutyException.php
│   │           │   └── GuardDutyClient.php
│   │           ├── Handler/
│   │           │   ├── Guzzle/
│   │           │   │   └── GuzzleHandler.php
│   │           │   └── GuzzleV6/
│   │           │       └── GuzzleHandler.php
│   │           ├── HandlerList.php
│   │           ├── HasDataTrait.php
│   │           ├── HasMonitoringEventsTrait.php
│   │           ├── HashInterface.php
│   │           ├── HashingStream.php
│   │           ├── Health/
│   │           │   ├── Exception/
│   │           │   │   └── HealthException.php
│   │           │   └── HealthClient.php
│   │           ├── HealthLake/
│   │           │   ├── Exception/
│   │           │   │   └── HealthLakeException.php
│   │           │   └── HealthLakeClient.php
│   │           ├── History.php
│   │           ├── IVS/
│   │           │   ├── Exception/
│   │           │   │   └── IVSException.php
│   │           │   └── IVSClient.php
│   │           ├── IVSRealTime/
│   │           │   ├── Exception/
│   │           │   │   └── IVSRealTimeException.php
│   │           │   └── IVSRealTimeClient.php
│   │           ├── Iam/
│   │           │   ├── Exception/
│   │           │   │   └── IamException.php
│   │           │   └── IamClient.php
│   │           ├── IdempotencyTokenMiddleware.php
│   │           ├── Identity/
│   │           │   ├── AwsCredentialIdentity.php
│   │           │   ├── BearerTokenIdentity.php
│   │           │   ├── IdentityInterface.php
│   │           │   └── S3/
│   │           │       ├── S3ExpressIdentity.php
│   │           │       └── S3ExpressIdentityProvider.php
│   │           ├── IdentityStore/
│   │           │   ├── Exception/
│   │           │   │   └── IdentityStoreException.php
│   │           │   └── IdentityStoreClient.php
│   │           ├── ImportExport/
│   │           │   ├── Exception/
│   │           │   │   └── ImportExportException.php
│   │           │   └── ImportExportClient.php
│   │           ├── InputValidationMiddleware.php
│   │           ├── Inspector/
│   │           │   ├── Exception/
│   │           │   │   └── InspectorException.php
│   │           │   └── InspectorClient.php
│   │           ├── Inspector2/
│   │           │   ├── Exception/
│   │           │   │   └── Inspector2Exception.php
│   │           │   └── Inspector2Client.php
│   │           ├── InspectorScan/
│   │           │   ├── Exception/
│   │           │   │   └── InspectorScanException.php
│   │           │   └── InspectorScanClient.php
│   │           ├── InternetMonitor/
│   │           │   ├── Exception/
│   │           │   │   └── InternetMonitorException.php
│   │           │   └── InternetMonitorClient.php
│   │           ├── Invoicing/
│   │           │   ├── Exception/
│   │           │   │   └── InvoicingException.php
│   │           │   └── InvoicingClient.php
│   │           ├── IoTAnalytics/
│   │           │   ├── Exception/
│   │           │   │   └── IoTAnalyticsException.php
│   │           │   └── IoTAnalyticsClient.php
│   │           ├── IoTDeviceAdvisor/
│   │           │   ├── Exception/
│   │           │   │   └── IoTDeviceAdvisorException.php
│   │           │   └── IoTDeviceAdvisorClient.php
│   │           ├── IoTEvents/
│   │           │   ├── Exception/
│   │           │   │   └── IoTEventsException.php
│   │           │   └── IoTEventsClient.php
│   │           ├── IoTEventsData/
│   │           │   ├── Exception/
│   │           │   │   └── IoTEventsDataException.php
│   │           │   └── IoTEventsDataClient.php
│   │           ├── IoTFleetHub/
│   │           │   ├── Exception/
│   │           │   │   └── IoTFleetHubException.php
│   │           │   └── IoTFleetHubClient.php
│   │           ├── IoTFleetWise/
│   │           │   ├── Exception/
│   │           │   │   └── IoTFleetWiseException.php
│   │           │   └── IoTFleetWiseClient.php
│   │           ├── IoTJobsDataPlane/
│   │           │   ├── Exception/
│   │           │   │   └── IoTJobsDataPlaneException.php
│   │           │   └── IoTJobsDataPlaneClient.php
│   │           ├── IoTManagedIntegrations/
│   │           │   ├── Exception/
│   │           │   │   └── IoTManagedIntegrationsException.php
│   │           │   └── IoTManagedIntegrationsClient.php
│   │           ├── IoTSecureTunneling/
│   │           │   ├── Exception/
│   │           │   │   └── IoTSecureTunnelingException.php
│   │           │   └── IoTSecureTunnelingClient.php
│   │           ├── IoTSiteWise/
│   │           │   ├── Exception/
│   │           │   │   └── IoTSiteWiseException.php
│   │           │   └── IoTSiteWiseClient.php
│   │           ├── IoTThingsGraph/
│   │           │   ├── Exception/
│   │           │   │   └── IoTThingsGraphException.php
│   │           │   └── IoTThingsGraphClient.php
│   │           ├── IoTTwinMaker/
│   │           │   ├── Exception/
│   │           │   │   └── IoTTwinMakerException.php
│   │           │   └── IoTTwinMakerClient.php
│   │           ├── IoTWireless/
│   │           │   ├── Exception/
│   │           │   │   └── IoTWirelessException.php
│   │           │   └── IoTWirelessClient.php
│   │           ├── Iot/
│   │           │   ├── Exception/
│   │           │   │   └── IotException.php
│   │           │   └── IotClient.php
│   │           ├── IotDataPlane/
│   │           │   ├── Exception/
│   │           │   │   └── IotDataPlaneException.php
│   │           │   └── IotDataPlaneClient.php
│   │           ├── JsonCompiler.php
│   │           ├── Kafka/
│   │           │   ├── Exception/
│   │           │   │   └── KafkaException.php
│   │           │   └── KafkaClient.php
│   │           ├── KafkaConnect/
│   │           │   ├── Exception/
│   │           │   │   └── KafkaConnectException.php
│   │           │   └── KafkaConnectClient.php
│   │           ├── KendraRanking/
│   │           │   ├── Exception/
│   │           │   │   └── KendraRankingException.php
│   │           │   └── KendraRankingClient.php
│   │           ├── Keyspaces/
│   │           │   ├── Exception/
│   │           │   │   └── KeyspacesException.php
│   │           │   └── KeyspacesClient.php
│   │           ├── KeyspacesStreams/
│   │           │   ├── Exception/
│   │           │   │   └── KeyspacesStreamsException.php
│   │           │   └── KeyspacesStreamsClient.php
│   │           ├── Kinesis/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisException.php
│   │           │   └── KinesisClient.php
│   │           ├── KinesisAnalytics/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisAnalyticsException.php
│   │           │   └── KinesisAnalyticsClient.php
│   │           ├── KinesisAnalyticsV2/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisAnalyticsV2Exception.php
│   │           │   └── KinesisAnalyticsV2Client.php
│   │           ├── KinesisVideo/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisVideoException.php
│   │           │   └── KinesisVideoClient.php
│   │           ├── KinesisVideoArchivedMedia/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisVideoArchivedMediaException.php
│   │           │   └── KinesisVideoArchivedMediaClient.php
│   │           ├── KinesisVideoMedia/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisVideoMediaException.php
│   │           │   └── KinesisVideoMediaClient.php
│   │           ├── KinesisVideoSignalingChannels/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisVideoSignalingChannelsException.php
│   │           │   └── KinesisVideoSignalingChannelsClient.php
│   │           ├── KinesisVideoWebRTCStorage/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisVideoWebRTCStorageException.php
│   │           │   └── KinesisVideoWebRTCStorageClient.php
│   │           ├── Kms/
│   │           │   ├── Exception/
│   │           │   │   └── KmsException.php
│   │           │   └── KmsClient.php
│   │           ├── LakeFormation/
│   │           │   ├── Exception/
│   │           │   │   └── LakeFormationException.php
│   │           │   └── LakeFormationClient.php
│   │           ├── Lambda/
│   │           │   ├── Exception/
│   │           │   │   └── LambdaException.php
│   │           │   └── LambdaClient.php
│   │           ├── LaunchWizard/
│   │           │   ├── Exception/
│   │           │   │   └── LaunchWizardException.php
│   │           │   └── LaunchWizardClient.php
│   │           ├── LexModelBuildingService/
│   │           │   ├── Exception/
│   │           │   │   └── LexModelBuildingServiceException.php
│   │           │   └── LexModelBuildingServiceClient.php
│   │           ├── LexModelsV2/
│   │           │   ├── Exception/
│   │           │   │   └── LexModelsV2Exception.php
│   │           │   └── LexModelsV2Client.php
│   │           ├── LexRuntimeService/
│   │           │   ├── Exception/
│   │           │   │   └── LexRuntimeServiceException.php
│   │           │   └── LexRuntimeServiceClient.php
│   │           ├── LexRuntimeV2/
│   │           │   ├── Exception/
│   │           │   │   └── LexRuntimeV2Exception.php
│   │           │   └── LexRuntimeV2Client.php
│   │           ├── LicenseManager/
│   │           │   ├── Exception/
│   │           │   │   └── LicenseManagerException.php
│   │           │   └── LicenseManagerClient.php
│   │           ├── LicenseManagerLinuxSubscriptions/
│   │           │   ├── Exception/
│   │           │   │   └── LicenseManagerLinuxSubscriptionsException.php
│   │           │   └── LicenseManagerLinuxSubscriptionsClient.php
│   │           ├── LicenseManagerUserSubscriptions/
│   │           │   ├── Exception/
│   │           │   │   └── LicenseManagerUserSubscriptionsException.php
│   │           │   └── LicenseManagerUserSubscriptionsClient.php
│   │           ├── Lightsail/
│   │           │   ├── Exception/
│   │           │   │   └── LightsailException.php
│   │           │   └── LightsailClient.php
│   │           ├── LocationService/
│   │           │   ├── Exception/
│   │           │   │   └── LocationServiceException.php
│   │           │   └── LocationServiceClient.php
│   │           ├── LookoutEquipment/
│   │           │   ├── Exception/
│   │           │   │   └── LookoutEquipmentException.php
│   │           │   └── LookoutEquipmentClient.php
│   │           ├── LookoutMetrics/
│   │           │   ├── Exception/
│   │           │   │   └── LookoutMetricsException.php
│   │           │   └── LookoutMetricsClient.php
│   │           ├── LookoutforVision/
│   │           │   ├── Exception/
│   │           │   │   └── LookoutforVisionException.php
│   │           │   └── LookoutforVisionClient.php
│   │           ├── LruArrayCache.php
│   │           ├── MPA/
│   │           │   ├── Exception/
│   │           │   │   └── MPAException.php
│   │           │   └── MPAClient.php
│   │           ├── MQ/
│   │           │   ├── Exception/
│   │           │   │   └── MQException.php
│   │           │   └── MQClient.php
│   │           ├── MTurk/
│   │           │   ├── Exception/
│   │           │   │   └── MTurkException.php
│   │           │   └── MTurkClient.php
│   │           ├── MWAA/
│   │           │   ├── Exception/
│   │           │   │   └── MWAAException.php
│   │           │   └── MWAAClient.php
│   │           ├── MachineLearning/
│   │           │   ├── Exception/
│   │           │   │   └── MachineLearningException.php
│   │           │   └── MachineLearningClient.php
│   │           ├── Macie2/
│   │           │   ├── Exception/
│   │           │   │   └── Macie2Exception.php
│   │           │   └── Macie2Client.php
│   │           ├── MailManager/
│   │           │   ├── Exception/
│   │           │   │   └── MailManagerException.php
│   │           │   └── MailManagerClient.php
│   │           ├── MainframeModernization/
│   │           │   ├── Exception/
│   │           │   │   └── MainframeModernizationException.php
│   │           │   └── MainframeModernizationClient.php
│   │           ├── ManagedBlockchain/
│   │           │   ├── Exception/
│   │           │   │   └── ManagedBlockchainException.php
│   │           │   └── ManagedBlockchainClient.php
│   │           ├── ManagedBlockchainQuery/
│   │           │   ├── Exception/
│   │           │   │   └── ManagedBlockchainQueryException.php
│   │           │   └── ManagedBlockchainQueryClient.php
│   │           ├── ManagedGrafana/
│   │           │   ├── Exception/
│   │           │   │   └── ManagedGrafanaException.php
│   │           │   └── ManagedGrafanaClient.php
│   │           ├── MarketplaceAgreement/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceAgreementException.php
│   │           │   └── MarketplaceAgreementClient.php
│   │           ├── MarketplaceCatalog/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceCatalogException.php
│   │           │   └── MarketplaceCatalogClient.php
│   │           ├── MarketplaceCommerceAnalytics/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceCommerceAnalyticsException.php
│   │           │   └── MarketplaceCommerceAnalyticsClient.php
│   │           ├── MarketplaceDeployment/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceDeploymentException.php
│   │           │   └── MarketplaceDeploymentClient.php
│   │           ├── MarketplaceEntitlementService/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceEntitlementServiceException.php
│   │           │   └── MarketplaceEntitlementServiceClient.php
│   │           ├── MarketplaceMetering/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceMeteringException.php
│   │           │   └── MarketplaceMeteringClient.php
│   │           ├── MarketplaceReporting/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceReportingException.php
│   │           │   └── MarketplaceReportingClient.php
│   │           ├── MediaConnect/
│   │           │   ├── Exception/
│   │           │   │   └── MediaConnectException.php
│   │           │   └── MediaConnectClient.php
│   │           ├── MediaConvert/
│   │           │   ├── Exception/
│   │           │   │   └── MediaConvertException.php
│   │           │   └── MediaConvertClient.php
│   │           ├── MediaLive/
│   │           │   ├── Exception/
│   │           │   │   └── MediaLiveException.php
│   │           │   └── MediaLiveClient.php
│   │           ├── MediaPackage/
│   │           │   ├── Exception/
│   │           │   │   └── MediaPackageException.php
│   │           │   └── MediaPackageClient.php
│   │           ├── MediaPackageV2/
│   │           │   ├── Exception/
│   │           │   │   └── MediaPackageV2Exception.php
│   │           │   └── MediaPackageV2Client.php
│   │           ├── MediaPackageVod/
│   │           │   ├── Exception/
│   │           │   │   └── MediaPackageVodException.php
│   │           │   └── MediaPackageVodClient.php
│   │           ├── MediaStore/
│   │           │   ├── Exception/
│   │           │   │   └── MediaStoreException.php
│   │           │   └── MediaStoreClient.php
│   │           ├── MediaStoreData/
│   │           │   ├── Exception/
│   │           │   │   └── MediaStoreDataException.php
│   │           │   └── MediaStoreDataClient.php
│   │           ├── MediaTailor/
│   │           │   ├── Exception/
│   │           │   │   └── MediaTailorException.php
│   │           │   └── MediaTailorClient.php
│   │           ├── MedicalImaging/
│   │           │   ├── Exception/
│   │           │   │   └── MedicalImagingException.php
│   │           │   └── MedicalImagingClient.php
│   │           ├── MemoryDB/
│   │           │   ├── Exception/
│   │           │   │   └── MemoryDBException.php
│   │           │   └── MemoryDBClient.php
│   │           ├── MetricsBuilder.php
│   │           ├── Middleware.php
│   │           ├── MigrationHub/
│   │           │   ├── Exception/
│   │           │   │   └── MigrationHubException.php
│   │           │   └── MigrationHubClient.php
│   │           ├── MigrationHubConfig/
│   │           │   ├── Exception/
│   │           │   │   └── MigrationHubConfigException.php
│   │           │   └── MigrationHubConfigClient.php
│   │           ├── MigrationHubOrchestrator/
│   │           │   ├── Exception/
│   │           │   │   └── MigrationHubOrchestratorException.php
│   │           │   └── MigrationHubOrchestratorClient.php
│   │           ├── MigrationHubRefactorSpaces/
│   │           │   ├── Exception/
│   │           │   │   └── MigrationHubRefactorSpacesException.php
│   │           │   └── MigrationHubRefactorSpacesClient.php
│   │           ├── MigrationHubStrategyRecommendations/
│   │           │   ├── Exception/
│   │           │   │   └── MigrationHubStrategyRecommendationsException.php
│   │           │   └── MigrationHubStrategyRecommendationsClient.php
│   │           ├── MockHandler.php
│   │           ├── MonitoringEventsInterface.php
│   │           ├── MultiRegionClient.php
│   │           ├── Multipart/
│   │           │   ├── AbstractUploadManager.php
│   │           │   ├── AbstractUploader.php
│   │           │   └── UploadState.php
│   │           ├── Neptune/
│   │           │   ├── Exception/
│   │           │   │   └── NeptuneException.php
│   │           │   └── NeptuneClient.php
│   │           ├── NeptuneGraph/
│   │           │   ├── Exception/
│   │           │   │   └── NeptuneGraphException.php
│   │           │   └── NeptuneGraphClient.php
│   │           ├── Neptunedata/
│   │           │   ├── Exception/
│   │           │   │   └── NeptunedataException.php
│   │           │   └── NeptunedataClient.php
│   │           ├── NetworkFirewall/
│   │           │   ├── Exception/
│   │           │   │   └── NetworkFirewallException.php
│   │           │   └── NetworkFirewallClient.php
│   │           ├── NetworkFlowMonitor/
│   │           │   ├── Exception/
│   │           │   │   └── NetworkFlowMonitorException.php
│   │           │   └── NetworkFlowMonitorClient.php
│   │           ├── NetworkManager/
│   │           │   ├── Exception/
│   │           │   │   └── NetworkManagerException.php
│   │           │   └── NetworkManagerClient.php
│   │           ├── NetworkMonitor/
│   │           │   ├── Exception/
│   │           │   │   └── NetworkMonitorException.php
│   │           │   └── NetworkMonitorClient.php
│   │           ├── Notifications/
│   │           │   ├── Exception/
│   │           │   │   └── NotificationsException.php
│   │           │   └── NotificationsClient.php
│   │           ├── NotificationsContacts/
│   │           │   ├── Exception/
│   │           │   │   └── NotificationsContactsException.php
│   │           │   └── NotificationsContactsClient.php
│   │           ├── OAM/
│   │           │   ├── Exception/
│   │           │   │   └── OAMException.php
│   │           │   └── OAMClient.php
│   │           ├── OSIS/
│   │           │   ├── Exception/
│   │           │   │   └── OSISException.php
│   │           │   └── OSISClient.php
│   │           ├── ObservabilityAdmin/
│   │           │   ├── Exception/
│   │           │   │   └── ObservabilityAdminException.php
│   │           │   └── ObservabilityAdminClient.php
│   │           ├── Odb/
│   │           │   ├── Exception/
│   │           │   │   └── OdbException.php
│   │           │   └── OdbClient.php
│   │           ├── Omics/
│   │           │   ├── Exception/
│   │           │   │   └── OmicsException.php
│   │           │   └── OmicsClient.php
│   │           ├── OpenSearchServerless/
│   │           │   ├── Exception/
│   │           │   │   └── OpenSearchServerlessException.php
│   │           │   └── OpenSearchServerlessClient.php
│   │           ├── OpenSearchService/
│   │           │   ├── Exception/
│   │           │   │   └── OpenSearchServiceException.php
│   │           │   └── OpenSearchServiceClient.php
│   │           ├── OpsWorks/
│   │           │   ├── Exception/
│   │           │   │   └── OpsWorksException.php
│   │           │   └── OpsWorksClient.php
│   │           ├── OpsWorksCM/
│   │           │   ├── Exception/
│   │           │   │   └── OpsWorksCMException.php
│   │           │   └── OpsWorksCMClient.php
│   │           ├── Organizations/
│   │           │   ├── Exception/
│   │           │   │   └── OrganizationsException.php
│   │           │   └── OrganizationsClient.php
│   │           ├── Outposts/
│   │           │   ├── Exception/
│   │           │   │   └── OutpostsException.php
│   │           │   └── OutpostsClient.php
│   │           ├── PCS/
│   │           │   ├── Exception/
│   │           │   │   └── PCSException.php
│   │           │   └── PCSClient.php
│   │           ├── PI/
│   │           │   ├── Exception/
│   │           │   │   └── PIException.php
│   │           │   └── PIClient.php
│   │           ├── Panorama/
│   │           │   ├── Exception/
│   │           │   │   └── PanoramaException.php
│   │           │   └── PanoramaClient.php
│   │           ├── PartnerCentralSelling/
│   │           │   ├── Exception/
│   │           │   │   └── PartnerCentralSellingException.php
│   │           │   └── PartnerCentralSellingClient.php
│   │           ├── PaymentCryptography/
│   │           │   ├── Exception/
│   │           │   │   └── PaymentCryptographyException.php
│   │           │   └── PaymentCryptographyClient.php
│   │           ├── PaymentCryptographyData/
│   │           │   ├── Exception/
│   │           │   │   └── PaymentCryptographyDataException.php
│   │           │   └── PaymentCryptographyDataClient.php
│   │           ├── PcaConnectorAd/
│   │           │   ├── Exception/
│   │           │   │   └── PcaConnectorAdException.php
│   │           │   └── PcaConnectorAdClient.php
│   │           ├── PcaConnectorScep/
│   │           │   ├── Exception/
│   │           │   │   └── PcaConnectorScepException.php
│   │           │   └── PcaConnectorScepClient.php
│   │           ├── Personalize/
│   │           │   ├── Exception/
│   │           │   │   └── PersonalizeException.php
│   │           │   └── PersonalizeClient.php
│   │           ├── PersonalizeEvents/
│   │           │   ├── Exception/
│   │           │   │   └── PersonalizeEventsException.php
│   │           │   └── PersonalizeEventsClient.php
│   │           ├── PersonalizeRuntime/
│   │           │   ├── Exception/
│   │           │   │   └── PersonalizeRuntimeException.php
│   │           │   └── PersonalizeRuntimeClient.php
│   │           ├── PhpHash.php
│   │           ├── Pinpoint/
│   │           │   ├── Exception/
│   │           │   │   └── PinpointException.php
│   │           │   └── PinpointClient.php
│   │           ├── PinpointEmail/
│   │           │   ├── Exception/
│   │           │   │   └── PinpointEmailException.php
│   │           │   └── PinpointEmailClient.php
│   │           ├── PinpointSMSVoice/
│   │           │   ├── Exception/
│   │           │   │   └── PinpointSMSVoiceException.php
│   │           │   └── PinpointSMSVoiceClient.php
│   │           ├── PinpointSMSVoiceV2/
│   │           │   ├── Exception/
│   │           │   │   └── PinpointSMSVoiceV2Exception.php
│   │           │   └── PinpointSMSVoiceV2Client.php
│   │           ├── Pipes/
│   │           │   ├── Exception/
│   │           │   │   └── PipesException.php
│   │           │   └── PipesClient.php
│   │           ├── Polly/
│   │           │   ├── Exception/
│   │           │   │   └── PollyException.php
│   │           │   └── PollyClient.php
│   │           ├── PresignUrlMiddleware.php
│   │           ├── Pricing/
│   │           │   ├── Exception/
│   │           │   │   └── PricingException.php
│   │           │   └── PricingClient.php
│   │           ├── PrometheusService/
│   │           │   ├── Exception/
│   │           │   │   └── PrometheusServiceException.php
│   │           │   └── PrometheusServiceClient.php
│   │           ├── Proton/
│   │           │   ├── Exception/
│   │           │   │   └── ProtonException.php
│   │           │   └── ProtonClient.php
│   │           ├── Psr16CacheAdapter.php
│   │           ├── PsrCacheAdapter.php
│   │           ├── QApps/
│   │           │   ├── Exception/
│   │           │   │   └── QAppsException.php
│   │           │   └── QAppsClient.php
│   │           ├── QBusiness/
│   │           │   ├── Exception/
│   │           │   │   └── QBusinessException.php
│   │           │   └── QBusinessClient.php
│   │           ├── QConnect/
│   │           │   ├── Exception/
│   │           │   │   └── QConnectException.php
│   │           │   └── QConnectClient.php
│   │           ├── QLDB/
│   │           │   ├── Exception/
│   │           │   │   └── QLDBException.php
│   │           │   └── QLDBClient.php
│   │           ├── QLDBSession/
│   │           │   ├── Exception/
│   │           │   │   └── QLDBSessionException.php
│   │           │   └── QLDBSessionClient.php
│   │           ├── QueryCompatibleInputMiddleware.php
│   │           ├── QuickSight/
│   │           │   ├── Exception/
│   │           │   │   └── QuickSightException.php
│   │           │   └── QuickSightClient.php
│   │           ├── RAM/
│   │           │   ├── Exception/
│   │           │   │   └── RAMException.php
│   │           │   └── RAMClient.php
│   │           ├── RDSDataService/
│   │           │   ├── Exception/
│   │           │   │   └── RDSDataServiceException.php
│   │           │   └── RDSDataServiceClient.php
│   │           ├── Rds/
│   │           │   ├── AuthTokenGenerator.php
│   │           │   ├── Exception/
│   │           │   │   └── RdsException.php
│   │           │   └── RdsClient.php
│   │           ├── RecycleBin/
│   │           │   ├── Exception/
│   │           │   │   └── RecycleBinException.php
│   │           │   └── RecycleBinClient.php
│   │           ├── Redshift/
│   │           │   ├── Exception/
│   │           │   │   └── RedshiftException.php
│   │           │   └── RedshiftClient.php
│   │           ├── RedshiftDataAPIService/
│   │           │   ├── Exception/
│   │           │   │   └── RedshiftDataAPIServiceException.php
│   │           │   └── RedshiftDataAPIServiceClient.php
│   │           ├── RedshiftServerless/
│   │           │   ├── Exception/
│   │           │   │   └── RedshiftServerlessException.php
│   │           │   └── RedshiftServerlessClient.php
│   │           ├── Rekognition/
│   │           │   ├── Exception/
│   │           │   │   └── RekognitionException.php
│   │           │   └── RekognitionClient.php
│   │           ├── Repostspace/
│   │           │   ├── Exception/
│   │           │   │   └── RepostspaceException.php
│   │           │   └── RepostspaceClient.php
│   │           ├── RequestCompressionMiddleware.php
│   │           ├── ResilienceHub/
│   │           │   ├── Exception/
│   │           │   │   └── ResilienceHubException.php
│   │           │   └── ResilienceHubClient.php
│   │           ├── ResourceExplorer2/
│   │           │   ├── Exception/
│   │           │   │   └── ResourceExplorer2Exception.php
│   │           │   └── ResourceExplorer2Client.php
│   │           ├── ResourceGroups/
│   │           │   ├── Exception/
│   │           │   │   └── ResourceGroupsException.php
│   │           │   └── ResourceGroupsClient.php
│   │           ├── ResourceGroupsTaggingAPI/
│   │           │   ├── Exception/
│   │           │   │   └── ResourceGroupsTaggingAPIException.php
│   │           │   └── ResourceGroupsTaggingAPIClient.php
│   │           ├── ResponseContainerInterface.php
│   │           ├── Result.php
│   │           ├── ResultInterface.php
│   │           ├── ResultPaginator.php
│   │           ├── Retry/
│   │           │   ├── Configuration.php
│   │           │   ├── ConfigurationInterface.php
│   │           │   ├── ConfigurationProvider.php
│   │           │   ├── Exception/
│   │           │   │   └── ConfigurationException.php
│   │           │   ├── QuotaManager.php
│   │           │   ├── RateLimiter.php
│   │           │   └── RetryHelperTrait.php
│   │           ├── RetryMiddleware.php
│   │           ├── RetryMiddlewareV2.php
│   │           ├── RoboMaker/
│   │           │   ├── Exception/
│   │           │   │   └── RoboMakerException.php
│   │           │   └── RoboMakerClient.php
│   │           ├── RolesAnywhere/
│   │           │   ├── Exception/
│   │           │   │   └── RolesAnywhereException.php
│   │           │   └── RolesAnywhereClient.php
│   │           ├── Route53/
│   │           │   ├── Exception/
│   │           │   │   └── Route53Exception.php
│   │           │   └── Route53Client.php
│   │           ├── Route53Domains/
│   │           │   ├── Exception/
│   │           │   │   └── Route53DomainsException.php
│   │           │   └── Route53DomainsClient.php
│   │           ├── Route53Profiles/
│   │           │   ├── Exception/
│   │           │   │   └── Route53ProfilesException.php
│   │           │   └── Route53ProfilesClient.php
│   │           ├── Route53RecoveryCluster/
│   │           │   ├── Exception/
│   │           │   │   └── Route53RecoveryClusterException.php
│   │           │   └── Route53RecoveryClusterClient.php
│   │           ├── Route53RecoveryControlConfig/
│   │           │   ├── Exception/
│   │           │   │   └── Route53RecoveryControlConfigException.php
│   │           │   └── Route53RecoveryControlConfigClient.php
│   │           ├── Route53RecoveryReadiness/
│   │           │   ├── Exception/
│   │           │   │   └── Route53RecoveryReadinessException.php
│   │           │   └── Route53RecoveryReadinessClient.php
│   │           ├── Route53Resolver/
│   │           │   ├── Exception/
│   │           │   │   └── Route53ResolverException.php
│   │           │   └── Route53ResolverClient.php
│   │           ├── S3/
│   │           │   ├── AmbiguousSuccessParser.php
│   │           │   ├── ApplyChecksumMiddleware.php
│   │           │   ├── BatchDelete.php
│   │           │   ├── BucketEndpointArnMiddleware.php
│   │           │   ├── BucketEndpointMiddleware.php
│   │           │   ├── CalculatesChecksumTrait.php
│   │           │   ├── Crypto/
│   │           │   │   ├── CryptoParamsTrait.php
│   │           │   │   ├── CryptoParamsTraitV2.php
│   │           │   │   ├── HeadersMetadataStrategy.php
│   │           │   │   ├── InstructionFileMetadataStrategy.php
│   │           │   │   ├── S3EncryptionClient.php
│   │           │   │   ├── S3EncryptionClientV2.php
│   │           │   │   ├── S3EncryptionMultipartUploader.php
│   │           │   │   ├── S3EncryptionMultipartUploaderV2.php
│   │           │   │   └── UserAgentTrait.php
│   │           │   ├── EndpointRegionHelperTrait.php
│   │           │   ├── Exception/
│   │           │   │   ├── DeleteMultipleObjectsException.php
│   │           │   │   ├── PermanentRedirectException.php
│   │           │   │   ├── S3Exception.php
│   │           │   │   └── S3MultipartUploadException.php
│   │           │   ├── ExpiresParsingMiddleware.php
│   │           │   ├── GetBucketLocationParser.php
│   │           │   ├── MultipartCopy.php
│   │           │   ├── MultipartUploader.php
│   │           │   ├── MultipartUploadingTrait.php
│   │           │   ├── ObjectCopier.php
│   │           │   ├── ObjectUploader.php
│   │           │   ├── Parser/
│   │           │   │   ├── GetBucketLocationResultMutator.php
│   │           │   │   ├── S3Parser.php
│   │           │   │   ├── S3ResultMutator.php
│   │           │   │   └── ValidateResponseChecksumResultMutator.php
│   │           │   ├── PermanentRedirectMiddleware.php
│   │           │   ├── PostObject.php
│   │           │   ├── PostObjectV4.php
│   │           │   ├── PutObjectUrlMiddleware.php
│   │           │   ├── RegionalEndpoint/
│   │           │   │   ├── Configuration.php
│   │           │   │   ├── ConfigurationInterface.php
│   │           │   │   ├── ConfigurationProvider.php
│   │           │   │   └── Exception/
│   │           │   │       └── ConfigurationException.php
│   │           │   ├── RetryableMalformedResponseParser.php
│   │           │   ├── S3Client.php
│   │           │   ├── S3ClientInterface.php
│   │           │   ├── S3ClientTrait.php
│   │           │   ├── S3EndpointMiddleware.php
│   │           │   ├── S3MultiRegionClient.php
│   │           │   ├── S3UriParser.php
│   │           │   ├── SSECMiddleware.php
│   │           │   ├── StreamWrapper.php
│   │           │   ├── Transfer.php
│   │           │   ├── UseArnRegion/
│   │           │   │   ├── Configuration.php
│   │           │   │   ├── ConfigurationInterface.php
│   │           │   │   ├── ConfigurationProvider.php
│   │           │   │   └── Exception/
│   │           │   │       └── ConfigurationException.php
│   │           │   └── ValidateResponseChecksumParser.php
│   │           ├── S3Control/
│   │           │   ├── EndpointArnMiddleware.php
│   │           │   ├── Exception/
│   │           │   │   └── S3ControlException.php
│   │           │   └── S3ControlClient.php
│   │           ├── S3Outposts/
│   │           │   ├── Exception/
│   │           │   │   └── S3OutpostsException.php
│   │           │   └── S3OutpostsClient.php
│   │           ├── S3Tables/
│   │           │   ├── Exception/
│   │           │   │   └── S3TablesException.php
│   │           │   └── S3TablesClient.php
│   │           ├── SSMContacts/
│   │           │   ├── Exception/
│   │           │   │   └── SSMContactsException.php
│   │           │   └── SSMContactsClient.php
│   │           ├── SSMGuiConnect/
│   │           │   ├── Exception/
│   │           │   │   └── SSMGuiConnectException.php
│   │           │   └── SSMGuiConnectClient.php
│   │           ├── SSMIncidents/
│   │           │   ├── Exception/
│   │           │   │   └── SSMIncidentsException.php
│   │           │   └── SSMIncidentsClient.php
│   │           ├── SSMQuickSetup/
│   │           │   ├── Exception/
│   │           │   │   └── SSMQuickSetupException.php
│   │           │   └── SSMQuickSetupClient.php
│   │           ├── SSO/
│   │           │   ├── Exception/
│   │           │   │   └── SSOException.php
│   │           │   └── SSOClient.php
│   │           ├── SSOAdmin/
│   │           │   ├── Exception/
│   │           │   │   └── SSOAdminException.php
│   │           │   └── SSOAdminClient.php
│   │           ├── SSOOIDC/
│   │           │   ├── Exception/
│   │           │   │   └── SSOOIDCException.php
│   │           │   └── SSOOIDCClient.php
│   │           ├── SageMaker/
│   │           │   ├── Exception/
│   │           │   │   └── SageMakerException.php
│   │           │   └── SageMakerClient.php
│   │           ├── SageMakerFeatureStoreRuntime/
│   │           │   ├── Exception/
│   │           │   │   └── SageMakerFeatureStoreRuntimeException.php
│   │           │   └── SageMakerFeatureStoreRuntimeClient.php
│   │           ├── SageMakerGeospatial/
│   │           │   ├── Exception/
│   │           │   │   └── SageMakerGeospatialException.php
│   │           │   └── SageMakerGeospatialClient.php
│   │           ├── SageMakerMetrics/
│   │           │   ├── Exception/
│   │           │   │   └── SageMakerMetricsException.php
│   │           │   └── SageMakerMetricsClient.php
│   │           ├── SageMakerRuntime/
│   │           │   ├── Exception/
│   │           │   │   └── SageMakerRuntimeException.php
│   │           │   └── SageMakerRuntimeClient.php
│   │           ├── SagemakerEdgeManager/
│   │           │   ├── Exception/
│   │           │   │   └── SagemakerEdgeManagerException.php
│   │           │   └── SagemakerEdgeManagerClient.php
│   │           ├── SavingsPlans/
│   │           │   ├── Exception/
│   │           │   │   └── SavingsPlansException.php
│   │           │   └── SavingsPlansClient.php
│   │           ├── Scheduler/
│   │           │   ├── Exception/
│   │           │   │   └── SchedulerException.php
│   │           │   └── SchedulerClient.php
│   │           ├── Schemas/
│   │           │   ├── Exception/
│   │           │   │   └── SchemasException.php
│   │           │   └── SchemasClient.php
│   │           ├── Script/
│   │           │   └── Composer/
│   │           │       └── Composer.php
│   │           ├── Sdk.php
│   │           ├── SecretsManager/
│   │           │   ├── Exception/
│   │           │   │   └── SecretsManagerException.php
│   │           │   └── SecretsManagerClient.php
│   │           ├── SecurityHub/
│   │           │   ├── Exception/
│   │           │   │   └── SecurityHubException.php
│   │           │   └── SecurityHubClient.php
│   │           ├── SecurityIR/
│   │           │   ├── Exception/
│   │           │   │   └── SecurityIRException.php
│   │           │   └── SecurityIRClient.php
│   │           ├── SecurityLake/
│   │           │   ├── Exception/
│   │           │   │   └── SecurityLakeException.php
│   │           │   └── SecurityLakeClient.php
│   │           ├── ServerlessApplicationRepository/
│   │           │   ├── Exception/
│   │           │   │   └── ServerlessApplicationRepositoryException.php
│   │           │   └── ServerlessApplicationRepositoryClient.php
│   │           ├── ServiceCatalog/
│   │           │   ├── Exception/
│   │           │   │   └── ServiceCatalogException.php
│   │           │   └── ServiceCatalogClient.php
│   │           ├── ServiceDiscovery/
│   │           │   ├── Exception/
│   │           │   │   └── ServiceDiscoveryException.php
│   │           │   └── ServiceDiscoveryClient.php
│   │           ├── ServiceQuotas/
│   │           │   ├── Exception/
│   │           │   │   └── ServiceQuotasException.php
│   │           │   └── ServiceQuotasClient.php
│   │           ├── Ses/
│   │           │   ├── Exception/
│   │           │   │   └── SesException.php
│   │           │   └── SesClient.php
│   │           ├── SesV2/
│   │           │   ├── Exception/
│   │           │   │   └── SesV2Exception.php
│   │           │   └── SesV2Client.php
│   │           ├── Sfn/
│   │           │   ├── Exception/
│   │           │   │   └── SfnException.php
│   │           │   └── SfnClient.php
│   │           ├── Shield/
│   │           │   ├── Exception/
│   │           │   │   └── ShieldException.php
│   │           │   └── ShieldClient.php
│   │           ├── Signature/
│   │           │   ├── AnonymousSignature.php
│   │           │   ├── S3ExpressSignature.php
│   │           │   ├── S3SignatureV4.php
│   │           │   ├── SignatureInterface.php
│   │           │   ├── SignatureProvider.php
│   │           │   ├── SignatureTrait.php
│   │           │   └── SignatureV4.php
│   │           ├── SimSpaceWeaver/
│   │           │   ├── Exception/
│   │           │   │   └── SimSpaceWeaverException.php
│   │           │   └── SimSpaceWeaverClient.php
│   │           ├── Sms/
│   │           │   ├── Exception/
│   │           │   │   └── SmsException.php
│   │           │   └── SmsClient.php
│   │           ├── SnowBall/
│   │           │   ├── Exception/
│   │           │   │   └── SnowBallException.php
│   │           │   └── SnowBallClient.php
│   │           ├── SnowDeviceManagement/
│   │           │   ├── Exception/
│   │           │   │   └── SnowDeviceManagementException.php
│   │           │   └── SnowDeviceManagementClient.php
│   │           ├── Sns/
│   │           │   ├── Exception/
│   │           │   │   └── SnsException.php
│   │           │   └── SnsClient.php
│   │           ├── SocialMessaging/
│   │           │   ├── Exception/
│   │           │   │   └── SocialMessagingException.php
│   │           │   └── SocialMessagingClient.php
│   │           ├── Sqs/
│   │           │   ├── Exception/
│   │           │   │   └── SqsException.php
│   │           │   └── SqsClient.php
│   │           ├── Ssm/
│   │           │   ├── Exception/
│   │           │   │   └── SsmException.php
│   │           │   └── SsmClient.php
│   │           ├── SsmSap/
│   │           │   ├── Exception/
│   │           │   │   └── SsmSapException.php
│   │           │   └── SsmSapClient.php
│   │           ├── StorageGateway/
│   │           │   ├── Exception/
│   │           │   │   └── StorageGatewayException.php
│   │           │   └── StorageGatewayClient.php
│   │           ├── StreamRequestPayloadMiddleware.php
│   │           ├── Sts/
│   │           │   ├── Exception/
│   │           │   │   └── StsException.php
│   │           │   ├── RegionalEndpoints/
│   │           │   │   ├── Configuration.php
│   │           │   │   ├── ConfigurationInterface.php
│   │           │   │   ├── ConfigurationProvider.php
│   │           │   │   └── Exception/
│   │           │   │       └── ConfigurationException.php
│   │           │   └── StsClient.php
│   │           ├── SupplyChain/
│   │           │   ├── Exception/
│   │           │   │   └── SupplyChainException.php
│   │           │   └── SupplyChainClient.php
│   │           ├── Support/
│   │           │   ├── Exception/
│   │           │   │   └── SupportException.php
│   │           │   └── SupportClient.php
│   │           ├── SupportApp/
│   │           │   ├── Exception/
│   │           │   │   └── SupportAppException.php
│   │           │   └── SupportAppClient.php
│   │           ├── Swf/
│   │           │   ├── Exception/
│   │           │   │   └── SwfException.php
│   │           │   └── SwfClient.php
│   │           ├── Synthetics/
│   │           │   ├── Exception/
│   │           │   │   └── SyntheticsException.php
│   │           │   └── SyntheticsClient.php
│   │           ├── TaxSettings/
│   │           │   ├── Exception/
│   │           │   │   └── TaxSettingsException.php
│   │           │   └── TaxSettingsClient.php
│   │           ├── Textract/
│   │           │   ├── Exception/
│   │           │   │   └── TextractException.php
│   │           │   └── TextractClient.php
│   │           ├── TimestreamInfluxDB/
│   │           │   ├── Exception/
│   │           │   │   └── TimestreamInfluxDBException.php
│   │           │   └── TimestreamInfluxDBClient.php
│   │           ├── TimestreamQuery/
│   │           │   ├── Exception/
│   │           │   │   └── TimestreamQueryException.php
│   │           │   └── TimestreamQueryClient.php
│   │           ├── TimestreamWrite/
│   │           │   ├── Exception/
│   │           │   │   └── TimestreamWriteException.php
│   │           │   └── TimestreamWriteClient.php
│   │           ├── Tnb/
│   │           │   ├── Exception/
│   │           │   │   └── TnbException.php
│   │           │   └── TnbClient.php
│   │           ├── Token/
│   │           │   ├── BearerTokenAuthorization.php
│   │           │   ├── ParsesIniTrait.php
│   │           │   ├── RefreshableTokenProviderInterface.php
│   │           │   ├── SsoToken.php
│   │           │   ├── SsoTokenProvider.php
│   │           │   ├── Token.php
│   │           │   ├── TokenAuthorization.php
│   │           │   ├── TokenInterface.php
│   │           │   └── TokenProvider.php
│   │           ├── TraceMiddleware.php
│   │           ├── TranscribeService/
│   │           │   ├── Exception/
│   │           │   │   └── TranscribeServiceException.php
│   │           │   └── TranscribeServiceClient.php
│   │           ├── Transfer/
│   │           │   ├── Exception/
│   │           │   │   └── TransferException.php
│   │           │   └── TransferClient.php
│   │           ├── Translate/
│   │           │   ├── Exception/
│   │           │   │   └── TranslateException.php
│   │           │   └── TranslateClient.php
│   │           ├── TrustedAdvisor/
│   │           │   ├── Exception/
│   │           │   │   └── TrustedAdvisorException.php
│   │           │   └── TrustedAdvisorClient.php
│   │           ├── UserAgentMiddleware.php
│   │           ├── VPCLattice/
│   │           │   ├── Exception/
│   │           │   │   └── VPCLatticeException.php
│   │           │   └── VPCLatticeClient.php
│   │           ├── VerifiedPermissions/
│   │           │   ├── Exception/
│   │           │   │   └── VerifiedPermissionsException.php
│   │           │   └── VerifiedPermissionsClient.php
│   │           ├── VoiceID/
│   │           │   ├── Exception/
│   │           │   │   └── VoiceIDException.php
│   │           │   └── VoiceIDClient.php
│   │           ├── WAFV2/
│   │           │   ├── Exception/
│   │           │   │   └── WAFV2Exception.php
│   │           │   └── WAFV2Client.php
│   │           ├── Waf/
│   │           │   ├── Exception/
│   │           │   │   └── WafException.php
│   │           │   └── WafClient.php
│   │           ├── WafRegional/
│   │           │   ├── Exception/
│   │           │   │   └── WafRegionalException.php
│   │           │   └── WafRegionalClient.php
│   │           ├── Waiter.php
│   │           ├── WellArchitected/
│   │           │   ├── Exception/
│   │           │   │   └── WellArchitectedException.php
│   │           │   └── WellArchitectedClient.php
│   │           ├── WorkDocs/
│   │           │   ├── Exception/
│   │           │   │   └── WorkDocsException.php
│   │           │   └── WorkDocsClient.php
│   │           ├── WorkMail/
│   │           │   ├── Exception/
│   │           │   │   └── WorkMailException.php
│   │           │   └── WorkMailClient.php
│   │           ├── WorkMailMessageFlow/
│   │           │   ├── Exception/
│   │           │   │   └── WorkMailMessageFlowException.php
│   │           │   └── WorkMailMessageFlowClient.php
│   │           ├── WorkSpaces/
│   │           │   ├── Exception/
│   │           │   │   └── WorkSpacesException.php
│   │           │   └── WorkSpacesClient.php
│   │           ├── WorkSpacesThinClient/
│   │           │   ├── Exception/
│   │           │   │   └── WorkSpacesThinClientException.php
│   │           │   └── WorkSpacesThinClientClient.php
│   │           ├── WorkSpacesWeb/
│   │           │   ├── Exception/
│   │           │   │   └── WorkSpacesWebException.php
│   │           │   └── WorkSpacesWebClient.php
│   │           ├── WorkspacesInstances/
│   │           │   ├── Exception/
│   │           │   │   └── WorkspacesInstancesException.php
│   │           │   └── WorkspacesInstancesClient.php
│   │           ├── WrappedHttpHandler.php
│   │           ├── XRay/
│   │           │   ├── Exception/
│   │           │   │   └── XRayException.php
│   │           │   └── XRayClient.php
│   │           ├── data/
│   │           │   ├── accessanalyzer/
│   │           │   │   └── 2019-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── account/
│   │           │   │   └── 2021-02-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── defaults-1.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── acm/
│   │           │   │   └── 2015-12-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── acm-pca/
│   │           │   │   └── 2017-08-22/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── aiops/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── aliases.json.php
│   │           │   ├── amp/
│   │           │   │   └── 2020-08-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── amplify/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── amplifybackend/
│   │           │   │   └── 2020-08-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── amplifyuibuilder/
│   │           │   │   └── 2021-08-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── apigateway/
│   │           │   │   └── 2015-07-09/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── apigatewaymanagementapi/
│   │           │   │   └── 2018-11-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── apigatewayv2/
│   │           │   │   └── 2018-11-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── appconfig/
│   │           │   │   └── 2019-10-09/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── appconfigdata/
│   │           │   │   └── 2021-11-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── appfabric/
│   │           │   │   └── 2023-05-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── appflow/
│   │           │   │   └── 2020-08-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── appintegrations/
│   │           │   │   └── 2020-07-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── application-autoscaling/
│   │           │   │   └── 2016-02-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── application-insights/
│   │           │   │   └── 2018-11-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── application-signals/
│   │           │   │   └── 2024-04-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── applicationcostprofiler/
│   │           │   │   └── 2020-09-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── appmesh/
│   │           │   │   ├── 2018-10-01/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   └── paginators-1.json.php
│   │           │   │   └── 2019-01-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── apprunner/
│   │           │   │   └── 2020-05-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── appstream/
│   │           │   │   └── 2016-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── appsync/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── apptest/
│   │           │   │   └── 2022-12-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── arc-zonal-shift/
│   │           │   │   └── 2022-10-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── artifact/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── athena/
│   │           │   │   └── 2017-05-18/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── auditmanager/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── autoscaling/
│   │           │   │   └── 2011-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── autoscaling-plans/
│   │           │   │   └── 2018-01-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── b2bi/
│   │           │   │   └── 2022-06-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── backup/
│   │           │   │   └── 2018-11-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── backup-gateway/
│   │           │   │   └── 2021-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── backupsearch/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── batch/
│   │           │   │   └── 2016-08-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── bcm-data-exports/
│   │           │   │   └── 2023-11-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── bcm-pricing-calculator/
│   │           │   │   └── 2024-06-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── bedrock/
│   │           │   │   └── 2023-04-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── bedrock-agent/
│   │           │   │   └── 2023-06-05/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── bedrock-agent-runtime/
│   │           │   │   └── 2023-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── bedrock-data-automation/
│   │           │   │   └── 2023-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── bedrock-data-automation-runtime/
│   │           │   │   └── 2024-06-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── bedrock-runtime/
│   │           │   │   └── 2023-09-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── billing/
│   │           │   │   └── 2023-09-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── billingconductor/
│   │           │   │   └── 2021-07-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── braket/
│   │           │   │   └── 2019-09-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── budgets/
│   │           │   │   └── 2016-10-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ce/
│   │           │   │   └── 2017-10-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chatbot/
│   │           │   │   └── 2017-10-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chime/
│   │           │   │   └── 2018-05-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chime-sdk-identity/
│   │           │   │   └── 2021-04-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chime-sdk-media-pipelines/
│   │           │   │   └── 2021-07-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chime-sdk-meetings/
│   │           │   │   └── 2021-07-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chime-sdk-messaging/
│   │           │   │   └── 2021-05-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chime-sdk-voice/
│   │           │   │   └── 2022-08-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cleanrooms/
│   │           │   │   └── 2022-02-17/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── cleanroomsml/
│   │           │   │   └── 2023-09-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── cloud9/
│   │           │   │   └── 2017-09-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cloudcontrol/
│   │           │   │   └── 2021-09-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── clouddirectory/
│   │           │   │   ├── 2016-05-10/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   └── paginators-1.json.php
│   │           │   │   └── 2017-01-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cloudformation/
│   │           │   │   └── 2010-05-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── cloudfront/
│   │           │   │   ├── 2015-07-27/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-01-28/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-08-01/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-08-20/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-09-07/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-09-29/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-11-25/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2017-03-25/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2017-10-30/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── smoke.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2018-06-18/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── smoke.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2018-11-05/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── smoke.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2019-03-26/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── smoke.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   └── 2020-05-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── cloudfront-keyvaluestore/
│   │           │   │   └── 2022-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cloudhsm/
│   │           │   │   └── 2014-05-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cloudhsmv2/
│   │           │   │   └── 2017-04-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── cloudsearch/
│   │           │   │   └── 2013-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── cloudsearchdomain/
│   │           │   │   └── 2013-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       └── endpoint-rule-set-1.json.php
│   │           │   ├── cloudtrail/
│   │           │   │   └── 2013-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── cloudtrail-data/
│   │           │   │   └── 2021-08-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── codeartifact/
│   │           │   │   └── 2018-09-22/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── codebuild/
│   │           │   │   └── 2016-10-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── codecatalyst/
│   │           │   │   └── 2022-09-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── codecommit/
│   │           │   │   └── 2015-04-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── codeconnections/
│   │           │   │   └── 2023-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── codedeploy/
│   │           │   │   └── 2014-10-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── codeguru-reviewer/
│   │           │   │   └── 2019-09-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── codeguru-security/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── codeguruprofiler/
│   │           │   │   └── 2019-07-18/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── codepipeline/
│   │           │   │   └── 2015-07-09/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── codestar-connections/
│   │           │   │   └── 2019-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── codestar-notifications/
│   │           │   │   └── 2019-10-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cognito-identity/
│   │           │   │   └── 2014-06-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── cognito-idp/
│   │           │   │   └── 2016-04-18/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── cognito-sync/
│   │           │   │   └── 2014-06-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── comprehend/
│   │           │   │   └── 2017-11-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── comprehendmedical/
│   │           │   │   └── 2018-10-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── compute-optimizer/
│   │           │   │   └── 2019-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── config/
│   │           │   │   └── 2014-11-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── connect/
│   │           │   │   └── 2017-08-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── connect-contact-lens/
│   │           │   │   └── 2020-08-21/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── connectcampaigns/
│   │           │   │   └── 2021-01-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── connectcampaignsv2/
│   │           │   │   └── 2024-04-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── connectcases/
│   │           │   │   └── 2022-10-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── connectparticipant/
│   │           │   │   └── 2018-09-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── controlcatalog/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── controltower/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cost-optimization-hub/
│   │           │   │   └── 2022-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── cur/
│   │           │   │   └── 2017-01-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── customer-profiles/
│   │           │   │   └── 2020-08-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── data.iot/
│   │           │   │   └── 2015-05-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── databrew/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── dataexchange/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── datapipeline/
│   │           │   │   └── 2012-10-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── datasync/
│   │           │   │   └── 2018-11-09/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── datazone/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── dax/
│   │           │   │   └── 2017-04-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── deadline/
│   │           │   │   └── 2023-10-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── detective/
│   │           │   │   └── 2018-10-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── devicefarm/
│   │           │   │   └── 2015-06-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── devops-guru/
│   │           │   │   └── 2020-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── directconnect/
│   │           │   │   └── 2012-10-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── directory-service-data/
│   │           │   │   └── 2023-05-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── discovery/
│   │           │   │   └── 2015-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── dlm/
│   │           │   │   └── 2018-01-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── dms/
│   │           │   │   └── 2016-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── docdb/
│   │           │   │   └── 2014-10-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── docdb-elastic/
│   │           │   │   └── 2022-11-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── drs/
│   │           │   │   └── 2020-02-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ds/
│   │           │   │   └── 2015-04-16/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── dsql/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── dynamodb/
│   │           │   │   ├── 2011-12-05/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── smoke.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   └── 2012-08-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── ebs/
│   │           │   │   └── 2019-11-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ec2/
│   │           │   │   ├── 2015-10-01/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-04-01/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-09-15/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   └── 2016-11-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── ec2-instance-connect/
│   │           │   │   └── 2018-04-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ecr/
│   │           │   │   └── 2015-09-21/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── ecr-public/
│   │           │   │   └── 2020-10-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ecs/
│   │           │   │   └── 2014-11-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── eks/
│   │           │   │   └── 2017-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── eks-auth/
│   │           │   │   └── 2023-11-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── elasticache/
│   │           │   │   └── 2015-02-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── elasticbeanstalk/
│   │           │   │   └── 2010-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── elasticfilesystem/
│   │           │   │   └── 2015-02-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── elasticloadbalancing/
│   │           │   │   └── 2012-06-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── elasticloadbalancingv2/
│   │           │   │   └── 2015-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── elasticmapreduce/
│   │           │   │   └── 2009-03-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── elastictranscoder/
│   │           │   │   └── 2012-09-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── email/
│   │           │   │   └── 2010-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── emr-containers/
│   │           │   │   └── 2020-10-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── emr-serverless/
│   │           │   │   └── 2021-07-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── endpoints.json.php
│   │           │   ├── endpoints_prefix_history.json.php
│   │           │   ├── entitlement.marketplace/
│   │           │   │   └── 2017-01-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── entityresolution/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── es/
│   │           │   │   └── 2015-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── eventbridge/
│   │           │   │   └── 2015-10-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── events/
│   │           │   │   └── 2015-10-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── evidently/
│   │           │   │   └── 2021-02-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── evs/
│   │           │   │   └── 2023-07-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── finspace/
│   │           │   │   └── 2021-03-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── finspace-data/
│   │           │   │   └── 2020-07-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── firehose/
│   │           │   │   └── 2015-08-04/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── fis/
│   │           │   │   └── 2020-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── fms/
│   │           │   │   └── 2018-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── forecast/
│   │           │   │   └── 2018-06-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── forecastquery/
│   │           │   │   └── 2018-06-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── frauddetector/
│   │           │   │   └── 2019-11-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── freetier/
│   │           │   │   └── 2023-09-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── fsx/
│   │           │   │   └── 2018-03-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── gamelift/
│   │           │   │   └── 2015-10-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── gameliftstreams/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── geo-maps/
│   │           │   │   └── 2020-11-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── geo-places/
│   │           │   │   └── 2020-11-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── geo-routes/
│   │           │   │   └── 2020-11-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── glacier/
│   │           │   │   └── 2012-06-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── globalaccelerator/
│   │           │   │   └── 2018-08-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── glue/
│   │           │   │   └── 2017-03-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── grafana/
│   │           │   │   └── 2020-08-18/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── defaults-1.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── grandfathered-services.json.php
│   │           │   ├── greengrass/
│   │           │   │   └── 2017-06-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       └── endpoint-rule-set-1.json.php
│   │           │   ├── greengrassv2/
│   │           │   │   └── 2020-11-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── groundstation/
│   │           │   │   └── 2019-05-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── guardduty/
│   │           │   │   └── 2017-11-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── health/
│   │           │   │   └── 2016-08-04/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── healthlake/
│   │           │   │   └── 2017-07-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iam/
│   │           │   │   └── 2010-05-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── identitystore/
│   │           │   │   └── 2020-06-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── imagebuilder/
│   │           │   │   └── 2019-12-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── importexport/
│   │           │   │   └── 2010-06-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── inspector/
│   │           │   │   └── 2016-02-16/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── inspector-scan/
│   │           │   │   └── 2023-08-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── inspector2/
│   │           │   │   └── 2020-06-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── internetmonitor/
│   │           │   │   └── 2021-06-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── invoicing/
│   │           │   │   └── 2024-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── iot/
│   │           │   │   └── 2015-05-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── iot-jobs-data/
│   │           │   │   └── 2017-09-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iot-managed-integrations/
│   │           │   │   └── 2025-03-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotanalytics/
│   │           │   │   └── 2017-11-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotdeviceadvisor/
│   │           │   │   └── 2020-09-18/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotevents/
│   │           │   │   └── 2018-07-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotevents-data/
│   │           │   │   └── 2018-10-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotfleethub/
│   │           │   │   └── 2020-11-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotfleetwise/
│   │           │   │   └── 2021-06-17/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── iotsecuretunneling/
│   │           │   │   └── 2018-10-05/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotsitewise/
│   │           │   │   └── 2019-12-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── iotthingsgraph/
│   │           │   │   └── 2018-09-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iottwinmaker/
│   │           │   │   └── 2021-11-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── iotwireless/
│   │           │   │   └── 2020-11-22/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ivs/
│   │           │   │   └── 2020-07-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ivs-realtime/
│   │           │   │   └── 2020-07-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── ivschat/
│   │           │   │   └── 2020-07-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── kafka/
│   │           │   │   └── 2018-11-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kafkaconnect/
│   │           │   │   └── 2021-09-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── kendra/
│   │           │   │   └── 2019-02-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kendra-ranking/
│   │           │   │   └── 2022-10-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── keyspaces/
│   │           │   │   └── 2022-02-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── keyspacesstreams/
│   │           │   │   └── 2024-09-09/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── kinesis/
│   │           │   │   └── 2013-12-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── kinesis-video-archived-media/
│   │           │   │   └── 2017-09-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kinesis-video-media/
│   │           │   │   └── 2017-09-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kinesis-video-signaling/
│   │           │   │   └── 2019-12-04/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kinesis-video-webrtc-storage/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kinesisanalytics/
│   │           │   │   └── 2015-08-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kinesisanalyticsv2/
│   │           │   │   └── 2018-05-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kinesisvideo/
│   │           │   │   └── 2017-09-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kms/
│   │           │   │   └── 2014-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── lakeformation/
│   │           │   │   └── 2017-03-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── lambda/
│   │           │   │   └── 2015-03-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── launch-wizard/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── lex-models/
│   │           │   │   └── 2017-04-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── license-manager/
│   │           │   │   └── 2018-08-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── license-manager-linux-subscriptions/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── license-manager-user-subscriptions/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── lightsail/
│   │           │   │   └── 2016-11-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── location/
│   │           │   │   └── 2020-11-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── logs/
│   │           │   │   └── 2014-03-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── lookoutequipment/
│   │           │   │   └── 2020-12-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── lookoutmetrics/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── lookoutvision/
│   │           │   │   └── 2020-11-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── m2/
│   │           │   │   └── 2021-04-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── machinelearning/
│   │           │   │   └── 2014-12-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── macie2/
│   │           │   │   └── 2020-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── mailmanager/
│   │           │   │   └── 2023-10-17/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── managedblockchain/
│   │           │   │   └── 2018-09-24/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── managedblockchain-query/
│   │           │   │   └── 2023-05-04/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── manifest.json.php
│   │           │   ├── marketplace-agreement/
│   │           │   │   └── 2020-03-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── marketplace-catalog/
│   │           │   │   └── 2018-09-17/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── marketplace-deployment/
│   │           │   │   └── 2023-01-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── marketplace-reporting/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── marketplacecommerceanalytics/
│   │           │   │   └── 2015-07-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── mediaconnect/
│   │           │   │   └── 2018-11-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── mediaconvert/
│   │           │   │   └── 2017-08-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── medialive/
│   │           │   │   └── 2017-10-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── mediapackage/
│   │           │   │   └── 2017-10-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mediapackage-vod/
│   │           │   │   └── 2018-11-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mediapackagev2/
│   │           │   │   └── 2022-12-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── mediastore/
│   │           │   │   └── 2017-09-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mediastore-data/
│   │           │   │   └── 2017-09-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mediatailor/
│   │           │   │   └── 2018-04-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── medical-imaging/
│   │           │   │   └── 2023-07-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── memorydb/
│   │           │   │   └── 2021-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── metering.marketplace/
│   │           │   │   └── 2016-01-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mgh/
│   │           │   │   └── 2017-05-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mgn/
│   │           │   │   └── 2020-02-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── migration-hub-refactor-spaces/
│   │           │   │   └── 2021-10-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── migrationhub-config/
│   │           │   │   └── 2019-06-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── migrationhuborchestrator/
│   │           │   │   └── 2021-08-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── migrationhubstrategy/
│   │           │   │   └── 2020-02-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── models.lex.v2/
│   │           │   │   └── 2020-08-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── monitoring/
│   │           │   │   └── 2010-08-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── mpa/
│   │           │   │   └── 2022-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── mq/
│   │           │   │   └── 2017-11-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mturk-requester/
│   │           │   │   └── 2017-01-17/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── mwaa/
│   │           │   │   └── 2020-07-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── neptune/
│   │           │   │   └── 2014-10-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── neptune-graph/
│   │           │   │   └── 2023-11-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── neptunedata/
│   │           │   │   └── 2023-08-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── network-firewall/
│   │           │   │   └── 2020-11-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── networkflowmonitor/
│   │           │   │   └── 2023-04-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── networkmanager/
│   │           │   │   └── 2019-07-05/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── networkmonitor/
│   │           │   │   └── 2023-08-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── notifications/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── notificationscontacts/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── oam/
│   │           │   │   └── 2022-06-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── observabilityadmin/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── odb/
│   │           │   │   └── 2024-08-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── omics/
│   │           │   │   └── 2022-11-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── defaults-1.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── opensearch/
│   │           │   │   └── 2021-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── opensearchserverless/
│   │           │   │   └── 2021-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── opsworks/
│   │           │   │   └── 2013-02-18/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── opsworkscm/
│   │           │   │   └── 2016-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── organizations/
│   │           │   │   └── 2016-11-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── osis/
│   │           │   │   └── 2022-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── outposts/
│   │           │   │   └── 2019-12-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── panorama/
│   │           │   │   └── 2019-07-24/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── partitions.json.php
│   │           │   ├── partnercentral-selling/
│   │           │   │   └── 2022-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── payment-cryptography/
│   │           │   │   └── 2021-09-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── payment-cryptography-data/
│   │           │   │   └── 2022-02-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── pca-connector-ad/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── pca-connector-scep/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── pcs/
│   │           │   │   └── 2023-02-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── personalize/
│   │           │   │   └── 2018-05-22/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── personalize-events/
│   │           │   │   └── 2018-03-22/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── personalize-runtime/
│   │           │   │   └── 2018-05-22/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── pi/
│   │           │   │   └── 2018-02-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── pinpoint/
│   │           │   │   └── 2016-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       └── endpoint-rule-set-1.json.php
│   │           │   ├── pinpoint-email/
│   │           │   │   └── 2018-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── pinpoint-sms-voice-v2/
│   │           │   │   └── 2022-03-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── pipes/
│   │           │   │   └── 2015-10-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── polly/
│   │           │   │   └── 2016-06-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── pricing/
│   │           │   │   └── 2017-10-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── proton/
│   │           │   │   └── 2020-07-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── qapps/
│   │           │   │   └── 2023-11-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── qbusiness/
│   │           │   │   └── 2023-11-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── qconnect/
│   │           │   │   └── 2020-10-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── qldb/
│   │           │   │   └── 2019-01-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── qldb-session/
│   │           │   │   └── 2019-07-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── quicksight/
│   │           │   │   └── 2018-04-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ram/
│   │           │   │   └── 2018-01-04/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── rbin/
│   │           │   │   └── 2021-06-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── rds/
│   │           │   │   ├── 2014-09-01/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   └── smoke.json.php
│   │           │   │   └── 2014-10-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── rds-data/
│   │           │   │   └── 2018-08-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── redshift/
│   │           │   │   └── 2012-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── redshift-data/
│   │           │   │   └── 2019-12-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── redshift-serverless/
│   │           │   │   └── 2021-04-21/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── rekognition/
│   │           │   │   └── 2016-06-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── repostspace/
│   │           │   │   └── 2022-05-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── resiliencehub/
│   │           │   │   └── 2020-04-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── resource-explorer-2/
│   │           │   │   └── 2022-07-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── resource-groups/
│   │           │   │   └── 2017-11-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── resourcegroupstaggingapi/
│   │           │   │   └── 2017-01-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── robomaker/
│   │           │   │   └── 2018-06-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── rolesanywhere/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── route53/
│   │           │   │   └── 2013-04-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── route53-recovery-cluster/
│   │           │   │   └── 2019-12-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── route53-recovery-control-config/
│   │           │   │   └── 2020-11-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── route53-recovery-readiness/
│   │           │   │   └── 2019-12-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── route53domains/
│   │           │   │   └── 2014-05-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── route53profiles/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── route53resolver/
│   │           │   │   └── 2018-04-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── rum/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── runtime.lex/
│   │           │   │   └── 2016-11-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── runtime.lex.v2/
│   │           │   │   └── 2020-08-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── runtime.sagemaker/
│   │           │   │   └── 2017-05-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── s3/
│   │           │   │   └── 2006-03-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── s3control/
│   │           │   │   └── 2018-08-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── s3outposts/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── s3tables/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── sagemaker/
│   │           │   │   └── 2017-07-24/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── sagemaker-a2i-runtime/
│   │           │   │   └── 2019-11-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── sagemaker-edge/
│   │           │   │   └── 2020-09-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── sagemaker-featurestore-runtime/
│   │           │   │   └── 2020-07-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── sagemaker-geospatial/
│   │           │   │   └── 2020-05-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── sagemaker-metrics/
│   │           │   │   └── 2022-09-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── savingsplans/
│   │           │   │   └── 2019-06-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── scheduler/
│   │           │   │   └── 2021-06-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── schemas/
│   │           │   │   └── 2019-12-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── sdk-default-configuration.json.php
│   │           │   ├── secretsmanager/
│   │           │   │   └── 2017-10-17/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── security-ir/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── securityhub/
│   │           │   │   └── 2018-10-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── securitylake/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── serverlessrepo/
│   │           │   │   └── 2017-09-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── service-quotas/
│   │           │   │   └── 2019-06-24/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── servicecatalog/
│   │           │   │   └── 2015-12-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── servicecatalog-appregistry/
│   │           │   │   └── 2020-06-24/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── servicediscovery/
│   │           │   │   └── 2017-03-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │  

================================================
FILE CONTENTS
================================================

================================================
FILE: .eslintignore
================================================
huebee.js
jquery-ui.min.js
bootstrap.js

================================================
FILE: .eslintrc
================================================
{
    "extends": ["airbnb-base", "prettier"],
    "plugins": ["prettier"],
    "rules": {
        "prettier/prettier": ["error"]
    },
    "env": {
        "browser": true
    },
    "globals": {
        "$": true
    }
}

================================================
FILE: .gitattributes
================================================
# Configuration file for Git attributes

# Core Settings {{{
# .gitattributes
.gitattributes !filter !diff

# Line Endings
* text=auto

# Set binary to none-text files
*.png -text

# }}}


# GitHub Linguist {{{

# Exclude files/folder from being detected by the GitHub linguist
# statistic.
node_modules/* linguist-vendored
public/*  linguist-generated=true
vendor/* linguist-vendored

# Remove Vue as it's currently not used in the project.
resources/assets/js/components/ExampleComponent.vue linguist-vendored

# System Wide
*.css linguist-vendored
*.scss linguist-vendored
*.js linguist-vendored

# Include user generated files that's removed bu the setting above.
resources/assets/js/app.js linguist-vendored=false
resources/assets/sass/_app.scss linguist-vendored=false
resources/assets/sass/_rune.scss linguist-vendored=false
resources/assets/sass/_variables.scss linguist-vendored=false

# }}}


# Archive Exlude {{{
# Exclude files/folders from being exported when creating an archive.

.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore
CHANGELOG.md export-ignore

# }}}


================================================
FILE: .github/workflows/call_issue_pr_tracker.yml
================================================
name: Issue & PR Tracker

on:
  issues:
    types: [opened,reopened,labeled,unlabeled,closed]
  pull_request_target:
    types: [opened,reopened,review_requested,review_request_removed,labeled,unlabeled,closed]
  pull_request_review:
    types: [submitted,edited,dismissed]

jobs:
  manage-project:
    permissions:
      issues: write
    uses: linuxserver/github-workflows/.github/workflows/issue-pr-tracker.yml@v1
    secrets: inherit


================================================
FILE: .github/workflows/call_issues_cron.yml
================================================
name: Mark stale issues and pull requests
on:
  schedule:
    - cron:  '35 15 * * *'
  workflow_dispatch:

jobs:
  stale:
    permissions:
      issues: write
      pull-requests: write
    uses: linuxserver/github-workflows/.github/workflows/issues-cron.yml@v1
    secrets: inherit


================================================
FILE: .github/workflows/ci.yml
================================================
name: Tests (PHP)

on: [pull_request]

jobs:
  tests:
    name: Run tests
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1

      - name: Setup PHP, with composer and extensions
        uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
        with:
          php-version: '8.3'
          extensions: mbstring, dom, fileinfo, mysql, libxml, xml, xmlwriter, dom, tokenizer, filter, json, phar, pcre, openssl, pdo, intl, curl

      - name: Cache composer dependencies
        uses: actions/cache@v4
        with:
          path: vendor
          key: composer-${{ hashFiles('composer.lock') }}

      #- name: Run composer install
      #  run: composer install -n --prefer-dist
      #  env:
      #    APP_ENV: testing

      - name: Prepare Laravel Application
        run: |
          cp .env.example .env
          php artisan key:generate

      - name: Cache yarn dependencies
        uses: actions/cache@v4
        with:
          path: node_modules
          key: yarn-${{ hashFiles('yarn.lock') }}

      - name: Run yarn
        run: yarn && yarn dev

      - name: Run ESLint
        run: yarn lint

      - name: Run tests
        run: php artisan test
        env:
          APP_ENV: testing

      - name: Php code sniffer
        run: ./vendor/bin/phpcs --config-set ignore_warnings_on_exit 1

      - name: Upload artifacts
        uses: actions/upload-artifact@master
        if: failure()
        with:
          name: Logs
          path: ./storage/logs


================================================
FILE: .gitignore
================================================
/app/SupportedApps
/node_modules
/public/hot
/public/storage
/storage/*.key
/storage/debugbar
/.idea
/.vagrant
Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log

### macOS ###
*.DS_Store
.AppleDouble
.LSOverride

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
storage/app/public/avatars/*
.env
.phpunit.result.cache


================================================
FILE: .phpstorm.meta.php
================================================
<?php
/* @noinspection ALL */
// @formatter:off
// phpcs:ignoreFile

namespace PHPSTORM_META {

   /**
    * PhpStorm Meta file, to provide autocomplete information for PhpStorm
    *
    * @author Barry vd. Heuvel <barryvdh@gmail.com>
    * @see https://github.com/barryvdh/laravel-ide-helper
    */
    override(new \Illuminate\Contracts\Container\Container, map([
        '' => '@',
            'Illuminate\Bus\BatchRepository' => \Illuminate\Bus\DatabaseBatchRepository::class,
            'Illuminate\Contracts\Auth\Access\Gate' => \Illuminate\Auth\Access\Gate::class,
            'Illuminate\Contracts\Broadcasting\Broadcaster' => \Illuminate\Broadcasting\Broadcasters\LogBroadcaster::class,
            'Illuminate\Contracts\Console\Kernel' => \Illuminate\Foundation\Console\Kernel::class,
            'Illuminate\Contracts\Debug\ExceptionHandler' => \NunoMaduro\Collision\Adapters\Laravel\ExceptionHandler::class,
            'Illuminate\Contracts\Foundation\ExceptionRenderer' => \Spatie\LaravelIgnition\Renderers\IgnitionExceptionRenderer::class,
            'Illuminate\Contracts\Foundation\MaintenanceMode' => \Illuminate\Foundation\FileBasedMaintenanceMode::class,
            'Illuminate\Contracts\Pipeline\Hub' => \Illuminate\Pipeline\Hub::class,
            'Illuminate\Contracts\Queue\EntityResolver' => \Illuminate\Database\Eloquent\QueueEntityResolver::class,
            'Illuminate\Contracts\Routing\ResponseFactory' => \Illuminate\Routing\ResponseFactory::class,
            'Illuminate\Contracts\Validation\UncompromisedVerifier' => \Illuminate\Validation\NotPwnedVerifier::class,
            'Illuminate\Routing\Contracts\CallableDispatcher' => \Illuminate\Routing\CallableDispatcher::class,
            'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class,
            'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => \Spatie\ErrorSolutions\SolutionProviderRepository::class,
            'Spatie\Ignition\Contracts\ConfigManager' => \Spatie\Ignition\Config\FileConfigManager::class,
            'auth' => \Illuminate\Auth\AuthManager::class,
            'auth.driver' => \Illuminate\Auth\SessionGuard::class,
            'auth.password' => \Illuminate\Auth\Passwords\PasswordBrokerManager::class,
            'auth.password.broker' => \Illuminate\Auth\Passwords\PasswordBroker::class,
            'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
            'cache' => \Illuminate\Cache\CacheManager::class,
            'cache.psr6' => \Symfony\Component\Cache\Adapter\Psr16Adapter::class,
            'cache.store' => \Illuminate\Cache\Repository::class,
            'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
            'composer' => \Illuminate\Support\Composer::class,
            'cookie' => \Illuminate\Cookie\CookieJar::class,
            'custom-form' => \App\Services\CustomFormBuilder::class,
            'db' => \Illuminate\Database\DatabaseManager::class,
            'db.connection' => \Illuminate\Database\SQLiteConnection::class,
            'db.factory' => \Illuminate\Database\Connectors\ConnectionFactory::class,
            'db.schema' => \Illuminate\Database\Schema\SQLiteBuilder::class,
            'db.transactions' => \Illuminate\Database\DatabaseTransactionsManager::class,
            'encrypter' => \Illuminate\Encryption\Encrypter::class,
            'events' => \Illuminate\Events\Dispatcher::class,
            'files' => \Illuminate\Filesystem\Filesystem::class,
            'filesystem' => \Illuminate\Filesystem\FilesystemManager::class,
            'filesystem.cloud' => \Illuminate\Filesystem\AwsS3V3Adapter::class,
            'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class,
            'flare.logger' => \Monolog\Logger::class,
            'github' => \GrahamCampbell\GitHub\GitHubManager::class,
            'github.authfactory' => \GrahamCampbell\GitHub\Auth\AuthenticatorFactory::class,
            'github.cachefactory' => \GrahamCampbell\GitHub\Cache\ConnectionFactory::class,
            'github.connection' => \Github\Client::class,
            'github.factory' => \GrahamCampbell\GitHub\GitHubFactory::class,
            'github.httpclientfactory' => \GrahamCampbell\GitHub\HttpClient\BuilderFactory::class,
            'hash' => \Illuminate\Hashing\HashManager::class,
            'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
            'log' => \Illuminate\Log\LogManager::class,
            'mail.manager' => \Illuminate\Mail\MailManager::class,
            'mailer' => \Illuminate\Mail\Mailer::class,
            'memcached.connector' => \Illuminate\Cache\MemcachedConnector::class,
            'migration.creator' => \Illuminate\Database\Migrations\MigrationCreator::class,
            'migration.repository' => \Illuminate\Database\Migrations\DatabaseMigrationRepository::class,
            'migrator' => \Illuminate\Database\Migrations\Migrator::class,
            'pipeline' => \Illuminate\Pipeline\Pipeline::class,
            'queue' => \Illuminate\Queue\QueueManager::class,
            'queue.connection' => \Illuminate\Queue\SyncQueue::class,
            'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
            'queue.listener' => \Illuminate\Queue\Listener::class,
            'queue.worker' => \Illuminate\Queue\Worker::class,
            'redirect' => \Illuminate\Routing\Redirector::class,
            'redis' => \Illuminate\Redis\RedisManager::class,
            'router' => \Illuminate\Routing\Router::class,
            'session' => \Illuminate\Session\SessionManager::class,
            'session.store' => \Illuminate\Session\Store::class,
            'settings' => \App\Setting::class,
            'translation.loader' => \Illuminate\Translation\FileLoader::class,
            'translator' => \Illuminate\Translation\Translator::class,
            'url' => \Illuminate\Routing\UrlGenerator::class,
            'validation.presence' => \Illuminate\Validation\DatabasePresenceVerifier::class,
            'view' => \Illuminate\View\Factory::class,
            'view.engine.resolver' => \Illuminate\View\Engines\EngineResolver::class,
            'view.finder' => \Illuminate\View\FileViewFinder::class,
        ]));
    override(\Illuminate\Container\Container::makeWith(0), map([
        '' => '@',
            'Illuminate\Bus\BatchRepository' => \Illuminate\Bus\DatabaseBatchRepository::class,
            'Illuminate\Contracts\Auth\Access\Gate' => \Illuminate\Auth\Access\Gate::class,
            'Illuminate\Contracts\Broadcasting\Broadcaster' => \Illuminate\Broadcasting\Broadcasters\LogBroadcaster::class,
            'Illuminate\Contracts\Console\Kernel' => \Illuminate\Foundation\Console\Kernel::class,
            'Illuminate\Contracts\Debug\ExceptionHandler' => \NunoMaduro\Collision\Adapters\Laravel\ExceptionHandler::class,
            'Illuminate\Contracts\Foundation\ExceptionRenderer' => \Spatie\LaravelIgnition\Renderers\IgnitionExceptionRenderer::class,
            'Illuminate\Contracts\Foundation\MaintenanceMode' => \Illuminate\Foundation\FileBasedMaintenanceMode::class,
            'Illuminate\Contracts\Pipeline\Hub' => \Illuminate\Pipeline\Hub::class,
            'Illuminate\Contracts\Queue\EntityResolver' => \Illuminate\Database\Eloquent\QueueEntityResolver::class,
            'Illuminate\Contracts\Routing\ResponseFactory' => \Illuminate\Routing\ResponseFactory::class,
            'Illuminate\Contracts\Validation\UncompromisedVerifier' => \Illuminate\Validation\NotPwnedVerifier::class,
            'Illuminate\Routing\Contracts\CallableDispatcher' => \Illuminate\Routing\CallableDispatcher::class,
            'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class,
            'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => \Spatie\ErrorSolutions\SolutionProviderRepository::class,
            'Spatie\Ignition\Contracts\ConfigManager' => \Spatie\Ignition\Config\FileConfigManager::class,
            'auth' => \Illuminate\Auth\AuthManager::class,
            'auth.driver' => \Illuminate\Auth\SessionGuard::class,
            'auth.password' => \Illuminate\Auth\Passwords\PasswordBrokerManager::class,
            'auth.password.broker' => \Illuminate\Auth\Passwords\PasswordBroker::class,
            'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
            'cache' => \Illuminate\Cache\CacheManager::class,
            'cache.psr6' => \Symfony\Component\Cache\Adapter\Psr16Adapter::class,
            'cache.store' => \Illuminate\Cache\Repository::class,
            'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
            'composer' => \Illuminate\Support\Composer::class,
            'cookie' => \Illuminate\Cookie\CookieJar::class,
            'custom-form' => \App\Services\CustomFormBuilder::class,
            'db' => \Illuminate\Database\DatabaseManager::class,
            'db.connection' => \Illuminate\Database\SQLiteConnection::class,
            'db.factory' => \Illuminate\Database\Connectors\ConnectionFactory::class,
            'db.schema' => \Illuminate\Database\Schema\SQLiteBuilder::class,
            'db.transactions' => \Illuminate\Database\DatabaseTransactionsManager::class,
            'encrypter' => \Illuminate\Encryption\Encrypter::class,
            'events' => \Illuminate\Events\Dispatcher::class,
            'files' => \Illuminate\Filesystem\Filesystem::class,
            'filesystem' => \Illuminate\Filesystem\FilesystemManager::class,
            'filesystem.cloud' => \Illuminate\Filesystem\AwsS3V3Adapter::class,
            'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class,
            'flare.logger' => \Monolog\Logger::class,
            'github' => \GrahamCampbell\GitHub\GitHubManager::class,
            'github.authfactory' => \GrahamCampbell\GitHub\Auth\AuthenticatorFactory::class,
            'github.cachefactory' => \GrahamCampbell\GitHub\Cache\ConnectionFactory::class,
            'github.connection' => \Github\Client::class,
            'github.factory' => \GrahamCampbell\GitHub\GitHubFactory::class,
            'github.httpclientfactory' => \GrahamCampbell\GitHub\HttpClient\BuilderFactory::class,
            'hash' => \Illuminate\Hashing\HashManager::class,
            'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
            'log' => \Illuminate\Log\LogManager::class,
            'mail.manager' => \Illuminate\Mail\MailManager::class,
            'mailer' => \Illuminate\Mail\Mailer::class,
            'memcached.connector' => \Illuminate\Cache\MemcachedConnector::class,
            'migration.creator' => \Illuminate\Database\Migrations\MigrationCreator::class,
            'migration.repository' => \Illuminate\Database\Migrations\DatabaseMigrationRepository::class,
            'migrator' => \Illuminate\Database\Migrations\Migrator::class,
            'pipeline' => \Illuminate\Pipeline\Pipeline::class,
            'queue' => \Illuminate\Queue\QueueManager::class,
            'queue.connection' => \Illuminate\Queue\SyncQueue::class,
            'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
            'queue.listener' => \Illuminate\Queue\Listener::class,
            'queue.worker' => \Illuminate\Queue\Worker::class,
            'redirect' => \Illuminate\Routing\Redirector::class,
            'redis' => \Illuminate\Redis\RedisManager::class,
            'router' => \Illuminate\Routing\Router::class,
            'session' => \Illuminate\Session\SessionManager::class,
            'session.store' => \Illuminate\Session\Store::class,
            'settings' => \App\Setting::class,
            'translation.loader' => \Illuminate\Translation\FileLoader::class,
            'translator' => \Illuminate\Translation\Translator::class,
            'url' => \Illuminate\Routing\UrlGenerator::class,
            'validation.presence' => \Illuminate\Validation\DatabasePresenceVerifier::class,
            'view' => \Illuminate\View\Factory::class,
            'view.engine.resolver' => \Illuminate\View\Engines\EngineResolver::class,
            'view.finder' => \Illuminate\View\FileViewFinder::class,
        ]));
    override(\Illuminate\Contracts\Container\Container::get(0), map([
        '' => '@',
            'Illuminate\Bus\BatchRepository' => \Illuminate\Bus\DatabaseBatchRepository::class,
            'Illuminate\Contracts\Auth\Access\Gate' => \Illuminate\Auth\Access\Gate::class,
            'Illuminate\Contracts\Broadcasting\Broadcaster' => \Illuminate\Broadcasting\Broadcasters\LogBroadcaster::class,
            'Illuminate\Contracts\Console\Kernel' => \Illuminate\Foundation\Console\Kernel::class,
            'Illuminate\Contracts\Debug\ExceptionHandler' => \NunoMaduro\Collision\Adapters\Laravel\ExceptionHandler::class,
            'Illuminate\Contracts\Foundation\ExceptionRenderer' => \Spatie\LaravelIgnition\Renderers\IgnitionExceptionRenderer::class,
            'Illuminate\Contracts\Foundation\MaintenanceMode' => \Illuminate\Foundation\FileBasedMaintenanceMode::class,
            'Illuminate\Contracts\Pipeline\Hub' => \Illuminate\Pipeline\Hub::class,
            'Illuminate\Contracts\Queue\EntityResolver' => \Illuminate\Database\Eloquent\QueueEntityResolver::class,
            'Illuminate\Contracts\Routing\ResponseFactory' => \Illuminate\Routing\ResponseFactory::class,
            'Illuminate\Contracts\Validation\UncompromisedVerifier' => \Illuminate\Validation\NotPwnedVerifier::class,
            'Illuminate\Routing\Contracts\CallableDispatcher' => \Illuminate\Routing\CallableDispatcher::class,
            'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class,
            'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => \Spatie\ErrorSolutions\SolutionProviderRepository::class,
            'Spatie\Ignition\Contracts\ConfigManager' => \Spatie\Ignition\Config\FileConfigManager::class,
            'auth' => \Illuminate\Auth\AuthManager::class,
            'auth.driver' => \Illuminate\Auth\SessionGuard::class,
            'auth.password' => \Illuminate\Auth\Passwords\PasswordBrokerManager::class,
            'auth.password.broker' => \Illuminate\Auth\Passwords\PasswordBroker::class,
            'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
            'cache' => \Illuminate\Cache\CacheManager::class,
            'cache.psr6' => \Symfony\Component\Cache\Adapter\Psr16Adapter::class,
            'cache.store' => \Illuminate\Cache\Repository::class,
            'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
            'composer' => \Illuminate\Support\Composer::class,
            'cookie' => \Illuminate\Cookie\CookieJar::class,
            'custom-form' => \App\Services\CustomFormBuilder::class,
            'db' => \Illuminate\Database\DatabaseManager::class,
            'db.connection' => \Illuminate\Database\SQLiteConnection::class,
            'db.factory' => \Illuminate\Database\Connectors\ConnectionFactory::class,
            'db.schema' => \Illuminate\Database\Schema\SQLiteBuilder::class,
            'db.transactions' => \Illuminate\Database\DatabaseTransactionsManager::class,
            'encrypter' => \Illuminate\Encryption\Encrypter::class,
            'events' => \Illuminate\Events\Dispatcher::class,
            'files' => \Illuminate\Filesystem\Filesystem::class,
            'filesystem' => \Illuminate\Filesystem\FilesystemManager::class,
            'filesystem.cloud' => \Illuminate\Filesystem\AwsS3V3Adapter::class,
            'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class,
            'flare.logger' => \Monolog\Logger::class,
            'github' => \GrahamCampbell\GitHub\GitHubManager::class,
            'github.authfactory' => \GrahamCampbell\GitHub\Auth\AuthenticatorFactory::class,
            'github.cachefactory' => \GrahamCampbell\GitHub\Cache\ConnectionFactory::class,
            'github.connection' => \Github\Client::class,
            'github.factory' => \GrahamCampbell\GitHub\GitHubFactory::class,
            'github.httpclientfactory' => \GrahamCampbell\GitHub\HttpClient\BuilderFactory::class,
            'hash' => \Illuminate\Hashing\HashManager::class,
            'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
            'log' => \Illuminate\Log\LogManager::class,
            'mail.manager' => \Illuminate\Mail\MailManager::class,
            'mailer' => \Illuminate\Mail\Mailer::class,
            'memcached.connector' => \Illuminate\Cache\MemcachedConnector::class,
            'migration.creator' => \Illuminate\Database\Migrations\MigrationCreator::class,
            'migration.repository' => \Illuminate\Database\Migrations\DatabaseMigrationRepository::class,
            'migrator' => \Illuminate\Database\Migrations\Migrator::class,
            'pipeline' => \Illuminate\Pipeline\Pipeline::class,
            'queue' => \Illuminate\Queue\QueueManager::class,
            'queue.connection' => \Illuminate\Queue\SyncQueue::class,
            'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
            'queue.listener' => \Illuminate\Queue\Listener::class,
            'queue.worker' => \Illuminate\Queue\Worker::class,
            'redirect' => \Illuminate\Routing\Redirector::class,
            'redis' => \Illuminate\Redis\RedisManager::class,
            'router' => \Illuminate\Routing\Router::class,
            'session' => \Illuminate\Session\SessionManager::class,
            'session.store' => \Illuminate\Session\Store::class,
            'settings' => \App\Setting::class,
            'translation.loader' => \Illuminate\Translation\FileLoader::class,
            'translator' => \Illuminate\Translation\Translator::class,
            'url' => \Illuminate\Routing\UrlGenerator::class,
            'validation.presence' => \Illuminate\Validation\DatabasePresenceVerifier::class,
            'view' => \Illuminate\View\Factory::class,
            'view.engine.resolver' => \Illuminate\View\Engines\EngineResolver::class,
            'view.finder' => \Illuminate\View\FileViewFinder::class,
        ]));
    override(\Illuminate\Contracts\Container\Container::make(0), map([
        '' => '@',
            'Illuminate\Bus\BatchRepository' => \Illuminate\Bus\DatabaseBatchRepository::class,
            'Illuminate\Contracts\Auth\Access\Gate' => \Illuminate\Auth\Access\Gate::class,
            'Illuminate\Contracts\Broadcasting\Broadcaster' => \Illuminate\Broadcasting\Broadcasters\LogBroadcaster::class,
            'Illuminate\Contracts\Console\Kernel' => \Illuminate\Foundation\Console\Kernel::class,
            'Illuminate\Contracts\Debug\ExceptionHandler' => \NunoMaduro\Collision\Adapters\Laravel\ExceptionHandler::class,
            'Illuminate\Contracts\Foundation\ExceptionRenderer' => \Spatie\LaravelIgnition\Renderers\IgnitionExceptionRenderer::class,
            'Illuminate\Contracts\Foundation\MaintenanceMode' => \Illuminate\Foundation\FileBasedMaintenanceMode::class,
            'Illuminate\Contracts\Pipeline\Hub' => \Illuminate\Pipeline\Hub::class,
            'Illuminate\Contracts\Queue\EntityResolver' => \Illuminate\Database\Eloquent\QueueEntityResolver::class,
            'Illuminate\Contracts\Routing\ResponseFactory' => \Illuminate\Routing\ResponseFactory::class,
            'Illuminate\Contracts\Validation\UncompromisedVerifier' => \Illuminate\Validation\NotPwnedVerifier::class,
            'Illuminate\Routing\Contracts\CallableDispatcher' => \Illuminate\Routing\CallableDispatcher::class,
            'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class,
            'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => \Spatie\ErrorSolutions\SolutionProviderRepository::class,
            'Spatie\Ignition\Contracts\ConfigManager' => \Spatie\Ignition\Config\FileConfigManager::class,
            'auth' => \Illuminate\Auth\AuthManager::class,
            'auth.driver' => \Illuminate\Auth\SessionGuard::class,
            'auth.password' => \Illuminate\Auth\Passwords\PasswordBrokerManager::class,
            'auth.password.broker' => \Illuminate\Auth\Passwords\PasswordBroker::class,
            'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
            'cache' => \Illuminate\Cache\CacheManager::class,
            'cache.psr6' => \Symfony\Component\Cache\Adapter\Psr16Adapter::class,
            'cache.store' => \Illuminate\Cache\Repository::class,
            'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
            'composer' => \Illuminate\Support\Composer::class,
            'cookie' => \Illuminate\Cookie\CookieJar::class,
            'custom-form' => \App\Services\CustomFormBuilder::class,
            'db' => \Illuminate\Database\DatabaseManager::class,
            'db.connection' => \Illuminate\Database\SQLiteConnection::class,
            'db.factory' => \Illuminate\Database\Connectors\ConnectionFactory::class,
            'db.schema' => \Illuminate\Database\Schema\SQLiteBuilder::class,
            'db.transactions' => \Illuminate\Database\DatabaseTransactionsManager::class,
            'encrypter' => \Illuminate\Encryption\Encrypter::class,
            'events' => \Illuminate\Events\Dispatcher::class,
            'files' => \Illuminate\Filesystem\Filesystem::class,
            'filesystem' => \Illuminate\Filesystem\FilesystemManager::class,
            'filesystem.cloud' => \Illuminate\Filesystem\AwsS3V3Adapter::class,
            'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class,
            'flare.logger' => \Monolog\Logger::class,
            'github' => \GrahamCampbell\GitHub\GitHubManager::class,
            'github.authfactory' => \GrahamCampbell\GitHub\Auth\AuthenticatorFactory::class,
            'github.cachefactory' => \GrahamCampbell\GitHub\Cache\ConnectionFactory::class,
            'github.connection' => \Github\Client::class,
            'github.factory' => \GrahamCampbell\GitHub\GitHubFactory::class,
            'github.httpclientfactory' => \GrahamCampbell\GitHub\HttpClient\BuilderFactory::class,
            'hash' => \Illuminate\Hashing\HashManager::class,
            'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
            'log' => \Illuminate\Log\LogManager::class,
            'mail.manager' => \Illuminate\Mail\MailManager::class,
            'mailer' => \Illuminate\Mail\Mailer::class,
            'memcached.connector' => \Illuminate\Cache\MemcachedConnector::class,
            'migration.creator' => \Illuminate\Database\Migrations\MigrationCreator::class,
            'migration.repository' => \Illuminate\Database\Migrations\DatabaseMigrationRepository::class,
            'migrator' => \Illuminate\Database\Migrations\Migrator::class,
            'pipeline' => \Illuminate\Pipeline\Pipeline::class,
            'queue' => \Illuminate\Queue\QueueManager::class,
            'queue.connection' => \Illuminate\Queue\SyncQueue::class,
            'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
            'queue.listener' => \Illuminate\Queue\Listener::class,
            'queue.worker' => \Illuminate\Queue\Worker::class,
            'redirect' => \Illuminate\Routing\Redirector::class,
            'redis' => \Illuminate\Redis\RedisManager::class,
            'router' => \Illuminate\Routing\Router::class,
            'session' => \Illuminate\Session\SessionManager::class,
            'session.store' => \Illuminate\Session\Store::class,
            'settings' => \App\Setting::class,
            'translation.loader' => \Illuminate\Translation\FileLoader::class,
            'translator' => \Illuminate\Translation\Translator::class,
            'url' => \Illuminate\Routing\UrlGenerator::class,
            'validation.presence' => \Illuminate\Validation\DatabasePresenceVerifier::class,
            'view' => \Illuminate\View\Factory::class,
            'view.engine.resolver' => \Illuminate\View\Engines\EngineResolver::class,
            'view.finder' => \Illuminate\View\FileViewFinder::class,
        ]));
    override(\Illuminate\Contracts\Container\Container::makeWith(0), map([
        '' => '@',
            'Illuminate\Bus\BatchRepository' => \Illuminate\Bus\DatabaseBatchRepository::class,
            'Illuminate\Contracts\Auth\Access\Gate' => \Illuminate\Auth\Access\Gate::class,
            'Illuminate\Contracts\Broadcasting\Broadcaster' => \Illuminate\Broadcasting\Broadcasters\LogBroadcaster::class,
            'Illuminate\Contracts\Console\Kernel' => \Illuminate\Foundation\Console\Kernel::class,
            'Illuminate\Contracts\Debug\ExceptionHandler' => \NunoMaduro\Collision\Adapters\Laravel\ExceptionHandler::class,
            'Illuminate\Contracts\Foundation\ExceptionRenderer' => \Spatie\LaravelIgnition\Renderers\IgnitionExceptionRenderer::class,
            'Illuminate\Contracts\Foundation\MaintenanceMode' => \Illuminate\Foundation\FileBasedMaintenanceMode::class,
            'Illuminate\Contracts\Pipeline\Hub' => \Illuminate\Pipeline\Hub::class,
            'Illuminate\Contracts\Queue\EntityResolver' => \Illuminate\Database\Eloquent\QueueEntityResolver::class,
            'Illuminate\Contracts\Routing\ResponseFactory' => \Illuminate\Routing\ResponseFactory::class,
            'Illuminate\Contracts\Validation\UncompromisedVerifier' => \Illuminate\Validation\NotPwnedVerifier::class,
            'Illuminate\Routing\Contracts\CallableDispatcher' => \Illuminate\Routing\CallableDispatcher::class,
            'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class,
            'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => \Spatie\ErrorSolutions\SolutionProviderRepository::class,
            'Spatie\Ignition\Contracts\ConfigManager' => \Spatie\Ignition\Config\FileConfigManager::class,
            'auth' => \Illuminate\Auth\AuthManager::class,
            'auth.driver' => \Illuminate\Auth\SessionGuard::class,
            'auth.password' => \Illuminate\Auth\Passwords\PasswordBrokerManager::class,
            'auth.password.broker' => \Illuminate\Auth\Passwords\PasswordBroker::class,
            'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
            'cache' => \Illuminate\Cache\CacheManager::class,
            'cache.psr6' => \Symfony\Component\Cache\Adapter\Psr16Adapter::class,
            'cache.store' => \Illuminate\Cache\Repository::class,
            'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
            'composer' => \Illuminate\Support\Composer::class,
            'cookie' => \Illuminate\Cookie\CookieJar::class,
            'custom-form' => \App\Services\CustomFormBuilder::class,
            'db' => \Illuminate\Database\DatabaseManager::class,
            'db.connection' => \Illuminate\Database\SQLiteConnection::class,
            'db.factory' => \Illuminate\Database\Connectors\ConnectionFactory::class,
            'db.schema' => \Illuminate\Database\Schema\SQLiteBuilder::class,
            'db.transactions' => \Illuminate\Database\DatabaseTransactionsManager::class,
            'encrypter' => \Illuminate\Encryption\Encrypter::class,
            'events' => \Illuminate\Events\Dispatcher::class,
            'files' => \Illuminate\Filesystem\Filesystem::class,
            'filesystem' => \Illuminate\Filesystem\FilesystemManager::class,
            'filesystem.cloud' => \Illuminate\Filesystem\AwsS3V3Adapter::class,
            'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class,
            'flare.logger' => \Monolog\Logger::class,
            'github' => \GrahamCampbell\GitHub\GitHubManager::class,
            'github.authfactory' => \GrahamCampbell\GitHub\Auth\AuthenticatorFactory::class,
            'github.cachefactory' => \GrahamCampbell\GitHub\Cache\ConnectionFactory::class,
            'github.connection' => \Github\Client::class,
            'github.factory' => \GrahamCampbell\GitHub\GitHubFactory::class,
            'github.httpclientfactory' => \GrahamCampbell\GitHub\HttpClient\BuilderFactory::class,
            'hash' => \Illuminate\Hashing\HashManager::class,
            'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
            'log' => \Illuminate\Log\LogManager::class,
            'mail.manager' => \Illuminate\Mail\MailManager::class,
            'mailer' => \Illuminate\Mail\Mailer::class,
            'memcached.connector' => \Illuminate\Cache\MemcachedConnector::class,
            'migration.creator' => \Illuminate\Database\Migrations\MigrationCreator::class,
            'migration.repository' => \Illuminate\Database\Migrations\DatabaseMigrationRepository::class,
            'migrator' => \Illuminate\Database\Migrations\Migrator::class,
            'pipeline' => \Illuminate\Pipeline\Pipeline::class,
            'queue' => \Illuminate\Queue\QueueManager::class,
            'queue.connection' => \Illuminate\Queue\SyncQueue::class,
            'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
            'queue.listener' => \Illuminate\Queue\Listener::class,
            'queue.worker' => \Illuminate\Queue\Worker::class,
            'redirect' => \Illuminate\Routing\Redirector::class,
            'redis' => \Illuminate\Redis\RedisManager::class,
            'router' => \Illuminate\Routing\Router::class,
            'session' => \Illuminate\Session\SessionManager::class,
            'session.store' => \Illuminate\Session\Store::class,
            'settings' => \App\Setting::class,
            'translation.loader' => \Illuminate\Translation\FileLoader::class,
            'translator' => \Illuminate\Translation\Translator::class,
            'url' => \Illuminate\Routing\UrlGenerator::class,
            'validation.presence' => \Illuminate\Validation\DatabasePresenceVerifier::class,
            'view' => \Illuminate\View\Factory::class,
            'view.engine.resolver' => \Illuminate\View\Engines\EngineResolver::class,
            'view.finder' => \Illuminate\View\FileViewFinder::class,
        ]));
    override(\App::get(0), map([
        '' => '@',
            'Illuminate\Bus\BatchRepository' => \Illuminate\Bus\DatabaseBatchRepository::class,
            'Illuminate\Contracts\Auth\Access\Gate' => \Illuminate\Auth\Access\Gate::class,
            'Illuminate\Contracts\Broadcasting\Broadcaster' => \Illuminate\Broadcasting\Broadcasters\LogBroadcaster::class,
            'Illuminate\Contracts\Console\Kernel' => \Illuminate\Foundation\Console\Kernel::class,
            'Illuminate\Contracts\Debug\ExceptionHandler' => \NunoMaduro\Collision\Adapters\Laravel\ExceptionHandler::class,
            'Illuminate\Contracts\Foundation\ExceptionRenderer' => \Spatie\LaravelIgnition\Renderers\IgnitionExceptionRenderer::class,
            'Illuminate\Contracts\Foundation\MaintenanceMode' => \Illuminate\Foundation\FileBasedMaintenanceMode::class,
            'Illuminate\Contracts\Pipeline\Hub' => \Illuminate\Pipeline\Hub::class,
            'Illuminate\Contracts\Queue\EntityResolver' => \Illuminate\Database\Eloquent\QueueEntityResolver::class,
            'Illuminate\Contracts\Routing\ResponseFactory' => \Illuminate\Routing\ResponseFactory::class,
            'Illuminate\Contracts\Validation\UncompromisedVerifier' => \Illuminate\Validation\NotPwnedVerifier::class,
            'Illuminate\Routing\Contracts\CallableDispatcher' => \Illuminate\Routing\CallableDispatcher::class,
            'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class,
            'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => \Spatie\ErrorSolutions\SolutionProviderRepository::class,
            'Spatie\Ignition\Contracts\ConfigManager' => \Spatie\Ignition\Config\FileConfigManager::class,
            'auth' => \Illuminate\Auth\AuthManager::class,
            'auth.driver' => \Illuminate\Auth\SessionGuard::class,
            'auth.password' => \Illuminate\Auth\Passwords\PasswordBrokerManager::class,
            'auth.password.broker' => \Illuminate\Auth\Passwords\PasswordBroker::class,
            'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
            'cache' => \Illuminate\Cache\CacheManager::class,
            'cache.psr6' => \Symfony\Component\Cache\Adapter\Psr16Adapter::class,
            'cache.store' => \Illuminate\Cache\Repository::class,
            'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
            'composer' => \Illuminate\Support\Composer::class,
            'cookie' => \Illuminate\Cookie\CookieJar::class,
            'custom-form' => \App\Services\CustomFormBuilder::class,
            'db' => \Illuminate\Database\DatabaseManager::class,
            'db.connection' => \Illuminate\Database\SQLiteConnection::class,
            'db.factory' => \Illuminate\Database\Connectors\ConnectionFactory::class,
            'db.schema' => \Illuminate\Database\Schema\SQLiteBuilder::class,
            'db.transactions' => \Illuminate\Database\DatabaseTransactionsManager::class,
            'encrypter' => \Illuminate\Encryption\Encrypter::class,
            'events' => \Illuminate\Events\Dispatcher::class,
            'files' => \Illuminate\Filesystem\Filesystem::class,
            'filesystem' => \Illuminate\Filesystem\FilesystemManager::class,
            'filesystem.cloud' => \Illuminate\Filesystem\AwsS3V3Adapter::class,
            'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class,
            'flare.logger' => \Monolog\Logger::class,
            'github' => \GrahamCampbell\GitHub\GitHubManager::class,
            'github.authfactory' => \GrahamCampbell\GitHub\Auth\AuthenticatorFactory::class,
            'github.cachefactory' => \GrahamCampbell\GitHub\Cache\ConnectionFactory::class,
            'github.connection' => \Github\Client::class,
            'github.factory' => \GrahamCampbell\GitHub\GitHubFactory::class,
            'github.httpclientfactory' => \GrahamCampbell\GitHub\HttpClient\BuilderFactory::class,
            'hash' => \Illuminate\Hashing\HashManager::class,
            'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
            'log' => \Illuminate\Log\LogManager::class,
            'mail.manager' => \Illuminate\Mail\MailManager::class,
            'mailer' => \Illuminate\Mail\Mailer::class,
            'memcached.connector' => \Illuminate\Cache\MemcachedConnector::class,
            'migration.creator' => \Illuminate\Database\Migrations\MigrationCreator::class,
            'migration.repository' => \Illuminate\Database\Migrations\DatabaseMigrationRepository::class,
            'migrator' => \Illuminate\Database\Migrations\Migrator::class,
            'pipeline' => \Illuminate\Pipeline\Pipeline::class,
            'queue' => \Illuminate\Queue\QueueManager::class,
            'queue.connection' => \Illuminate\Queue\SyncQueue::class,
            'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
            'queue.listener' => \Illuminate\Queue\Listener::class,
            'queue.worker' => \Illuminate\Queue\Worker::class,
            'redirect' => \Illuminate\Routing\Redirector::class,
            'redis' => \Illuminate\Redis\RedisManager::class,
            'router' => \Illuminate\Routing\Router::class,
            'session' => \Illuminate\Session\SessionManager::class,
            'session.store' => \Illuminate\Session\Store::class,
            'settings' => \App\Setting::class,
            'translation.loader' => \Illuminate\Translation\FileLoader::class,
            'translator' => \Illuminate\Translation\Translator::class,
            'url' => \Illuminate\Routing\UrlGenerator::class,
            'validation.presence' => \Illuminate\Validation\DatabasePresenceVerifier::class,
            'view' => \Illuminate\View\Factory::class,
            'view.engine.resolver' => \Illuminate\View\Engines\EngineResolver::class,
            'view.finder' => \Illuminate\View\FileViewFinder::class,
        ]));
    override(\App::make(0), map([
        '' => '@',
            'Illuminate\Bus\BatchRepository' => \Illuminate\Bus\DatabaseBatchRepository::class,
            'Illuminate\Contracts\Auth\Access\Gate' => \Illuminate\Auth\Access\Gate::class,
            'Illuminate\Contracts\Broadcasting\Broadcaster' => \Illuminate\Broadcasting\Broadcasters\LogBroadcaster::class,
            'Illuminate\Contracts\Console\Kernel' => \Illuminate\Foundation\Console\Kernel::class,
            'Illuminate\Contracts\Debug\ExceptionHandler' => \NunoMaduro\Collision\Adapters\Laravel\ExceptionHandler::class,
            'Illuminate\Contracts\Foundation\ExceptionRenderer' => \Spatie\LaravelIgnition\Renderers\IgnitionExceptionRenderer::class,
            'Illuminate\Contracts\Foundation\MaintenanceMode' => \Illuminate\Foundation\FileBasedMaintenanceMode::class,
            'Illuminate\Contracts\Pipeline\Hub' => \Illuminate\Pipeline\Hub::class,
            'Illuminate\Contracts\Queue\EntityResolver' => \Illuminate\Database\Eloquent\QueueEntityResolver::class,
            'Illuminate\Contracts\Routing\ResponseFactory' => \Illuminate\Routing\ResponseFactory::class,
            'Illuminate\Contracts\Validation\UncompromisedVerifier' => \Illuminate\Validation\NotPwnedVerifier::class,
            'Illuminate\Routing\Contracts\CallableDispatcher' => \Illuminate\Routing\CallableDispatcher::class,
            'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class,
            'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => \Spatie\ErrorSolutions\SolutionProviderRepository::class,
            'Spatie\Ignition\Contracts\ConfigManager' => \Spatie\Ignition\Config\FileConfigManager::class,
            'auth' => \Illuminate\Auth\AuthManager::class,
            'auth.driver' => \Illuminate\Auth\SessionGuard::class,
            'auth.password' => \Illuminate\Auth\Passwords\PasswordBrokerManager::class,
            'auth.password.broker' => \Illuminate\Auth\Passwords\PasswordBroker::class,
            'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
            'cache' => \Illuminate\Cache\CacheManager::class,
            'cache.psr6' => \Symfony\Component\Cache\Adapter\Psr16Adapter::class,
            'cache.store' => \Illuminate\Cache\Repository::class,
            'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
            'composer' => \Illuminate\Support\Composer::class,
            'cookie' => \Illuminate\Cookie\CookieJar::class,
            'custom-form' => \App\Services\CustomFormBuilder::class,
            'db' => \Illuminate\Database\DatabaseManager::class,
            'db.connection' => \Illuminate\Database\SQLiteConnection::class,
            'db.factory' => \Illuminate\Database\Connectors\ConnectionFactory::class,
            'db.schema' => \Illuminate\Database\Schema\SQLiteBuilder::class,
            'db.transactions' => \Illuminate\Database\DatabaseTransactionsManager::class,
            'encrypter' => \Illuminate\Encryption\Encrypter::class,
            'events' => \Illuminate\Events\Dispatcher::class,
            'files' => \Illuminate\Filesystem\Filesystem::class,
            'filesystem' => \Illuminate\Filesystem\FilesystemManager::class,
            'filesystem.cloud' => \Illuminate\Filesystem\AwsS3V3Adapter::class,
            'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class,
            'flare.logger' => \Monolog\Logger::class,
            'github' => \GrahamCampbell\GitHub\GitHubManager::class,
            'github.authfactory' => \GrahamCampbell\GitHub\Auth\AuthenticatorFactory::class,
            'github.cachefactory' => \GrahamCampbell\GitHub\Cache\ConnectionFactory::class,
            'github.connection' => \Github\Client::class,
            'github.factory' => \GrahamCampbell\GitHub\GitHubFactory::class,
            'github.httpclientfactory' => \GrahamCampbell\GitHub\HttpClient\BuilderFactory::class,
            'hash' => \Illuminate\Hashing\HashManager::class,
            'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
            'log' => \Illuminate\Log\LogManager::class,
            'mail.manager' => \Illuminate\Mail\MailManager::class,
            'mailer' => \Illuminate\Mail\Mailer::class,
            'memcached.connector' => \Illuminate\Cache\MemcachedConnector::class,
            'migration.creator' => \Illuminate\Database\Migrations\MigrationCreator::class,
            'migration.repository' => \Illuminate\Database\Migrations\DatabaseMigrationRepository::class,
            'migrator' => \Illuminate\Database\Migrations\Migrator::class,
            'pipeline' => \Illuminate\Pipeline\Pipeline::class,
            'queue' => \Illuminate\Queue\QueueManager::class,
            'queue.connection' => \Illuminate\Queue\SyncQueue::class,
            'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
            'queue.listener' => \Illuminate\Queue\Listener::class,
            'queue.worker' => \Illuminate\Queue\Worker::class,
            'redirect' => \Illuminate\Routing\Redirector::class,
            'redis' => \Illuminate\Redis\RedisManager::class,
            'router' => \Illuminate\Routing\Router::class,
            'session' => \Illuminate\Session\SessionManager::class,
            'session.store' => \Illuminate\Session\Store::class,
            'settings' => \App\Setting::class,
            'translation.loader' => \Illuminate\Translation\FileLoader::class,
            'translator' => \Illuminate\Translation\Translator::class,
            'url' => \Illuminate\Routing\UrlGenerator::class,
            'validation.presence' => \Illuminate\Validation\DatabasePresenceVerifier::class,
            'view' => \Illuminate\View\Factory::class,
            'view.engine.resolver' => \Illuminate\View\Engines\EngineResolver::class,
            'view.finder' => \Illuminate\View\FileViewFinder::class,
        ]));
    override(\App::makeWith(0), map([
        '' => '@',
            'Illuminate\Bus\BatchRepository' => \Illuminate\Bus\DatabaseBatchRepository::class,
            'Illuminate\Contracts\Auth\Access\Gate' => \Illuminate\Auth\Access\Gate::class,
            'Illuminate\Contracts\Broadcasting\Broadcaster' => \Illuminate\Broadcasting\Broadcasters\LogBroadcaster::class,
            'Illuminate\Contracts\Console\Kernel' => \Illuminate\Foundation\Console\Kernel::class,
            'Illuminate\Contracts\Debug\ExceptionHandler' => \NunoMaduro\Collision\Adapters\Laravel\ExceptionHandler::class,
            'Illuminate\Contracts\Foundation\ExceptionRenderer' => \Spatie\LaravelIgnition\Renderers\IgnitionExceptionRenderer::class,
            'Illuminate\Contracts\Foundation\MaintenanceMode' => \Illuminate\Foundation\FileBasedMaintenanceMode::class,
            'Illuminate\Contracts\Pipeline\Hub' => \Illuminate\Pipeline\Hub::class,
            'Illuminate\Contracts\Queue\EntityResolver' => \Illuminate\Database\Eloquent\QueueEntityResolver::class,
            'Illuminate\Contracts\Routing\ResponseFactory' => \Illuminate\Routing\ResponseFactory::class,
            'Illuminate\Contracts\Validation\UncompromisedVerifier' => \Illuminate\Validation\NotPwnedVerifier::class,
            'Illuminate\Routing\Contracts\CallableDispatcher' => \Illuminate\Routing\CallableDispatcher::class,
            'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class,
            'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => \Spatie\ErrorSolutions\SolutionProviderRepository::class,
            'Spatie\Ignition\Contracts\ConfigManager' => \Spatie\Ignition\Config\FileConfigManager::class,
            'auth' => \Illuminate\Auth\AuthManager::class,
            'auth.driver' => \Illuminate\Auth\SessionGuard::class,
            'auth.password' => \Illuminate\Auth\Passwords\PasswordBrokerManager::class,
            'auth.password.broker' => \Illuminate\Auth\Passwords\PasswordBroker::class,
            'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
            'cache' => \Illuminate\Cache\CacheManager::class,
            'cache.psr6' => \Symfony\Component\Cache\Adapter\Psr16Adapter::class,
            'cache.store' => \Illuminate\Cache\Repository::class,
            'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
            'composer' => \Illuminate\Support\Composer::class,
            'cookie' => \Illuminate\Cookie\CookieJar::class,
            'custom-form' => \App\Services\CustomFormBuilder::class,
            'db' => \Illuminate\Database\DatabaseManager::class,
            'db.connection' => \Illuminate\Database\SQLiteConnection::class,
            'db.factory' => \Illuminate\Database\Connectors\ConnectionFactory::class,
            'db.schema' => \Illuminate\Database\Schema\SQLiteBuilder::class,
            'db.transactions' => \Illuminate\Database\DatabaseTransactionsManager::class,
            'encrypter' => \Illuminate\Encryption\Encrypter::class,
            'events' => \Illuminate\Events\Dispatcher::class,
            'files' => \Illuminate\Filesystem\Filesystem::class,
            'filesystem' => \Illuminate\Filesystem\FilesystemManager::class,
            'filesystem.cloud' => \Illuminate\Filesystem\AwsS3V3Adapter::class,
            'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class,
            'flare.logger' => \Monolog\Logger::class,
            'github' => \GrahamCampbell\GitHub\GitHubManager::class,
            'github.authfactory' => \GrahamCampbell\GitHub\Auth\AuthenticatorFactory::class,
            'github.cachefactory' => \GrahamCampbell\GitHub\Cache\ConnectionFactory::class,
            'github.connection' => \Github\Client::class,
            'github.factory' => \GrahamCampbell\GitHub\GitHubFactory::class,
            'github.httpclientfactory' => \GrahamCampbell\GitHub\HttpClient\BuilderFactory::class,
            'hash' => \Illuminate\Hashing\HashManager::class,
            'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
            'log' => \Illuminate\Log\LogManager::class,
            'mail.manager' => \Illuminate\Mail\MailManager::class,
            'mailer' => \Illuminate\Mail\Mailer::class,
            'memcached.connector' => \Illuminate\Cache\MemcachedConnector::class,
            'migration.creator' => \Illuminate\Database\Migrations\MigrationCreator::class,
            'migration.repository' => \Illuminate\Database\Migrations\DatabaseMigrationRepository::class,
            'migrator' => \Illuminate\Database\Migrations\Migrator::class,
            'pipeline' => \Illuminate\Pipeline\Pipeline::class,
            'queue' => \Illuminate\Queue\QueueManager::class,
            'queue.connection' => \Illuminate\Queue\SyncQueue::class,
            'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
            'queue.listener' => \Illuminate\Queue\Listener::class,
            'queue.worker' => \Illuminate\Queue\Worker::class,
            'redirect' => \Illuminate\Routing\Redirector::class,
            'redis' => \Illuminate\Redis\RedisManager::class,
            'router' => \Illuminate\Routing\Router::class,
            'session' => \Illuminate\Session\SessionManager::class,
            'session.store' => \Illuminate\Session\Store::class,
            'settings' => \App\Setting::class,
            'translation.loader' => \Illuminate\Translation\FileLoader::class,
            'translator' => \Illuminate\Translation\Translator::class,
            'url' => \Illuminate\Routing\UrlGenerator::class,
            'validation.presence' => \Illuminate\Validation\DatabasePresenceVerifier::class,
            'view' => \Illuminate\View\Factory::class,
            'view.engine.resolver' => \Illuminate\View\Engines\EngineResolver::class,
            'view.finder' => \Illuminate\View\FileViewFinder::class,
        ]));
    override(\app(0), map([
        '' => '@',
            'Illuminate\Bus\BatchRepository' => \Illuminate\Bus\DatabaseBatchRepository::class,
            'Illuminate\Contracts\Auth\Access\Gate' => \Illuminate\Auth\Access\Gate::class,
            'Illuminate\Contracts\Broadcasting\Broadcaster' => \Illuminate\Broadcasting\Broadcasters\LogBroadcaster::class,
            'Illuminate\Contracts\Console\Kernel' => \Illuminate\Foundation\Console\Kernel::class,
            'Illuminate\Contracts\Debug\ExceptionHandler' => \NunoMaduro\Collision\Adapters\Laravel\ExceptionHandler::class,
            'Illuminate\Contracts\Foundation\ExceptionRenderer' => \Spatie\LaravelIgnition\Renderers\IgnitionExceptionRenderer::class,
            'Illuminate\Contracts\Foundation\MaintenanceMode' => \Illuminate\Foundation\FileBasedMaintenanceMode::class,
            'Illuminate\Contracts\Pipeline\Hub' => \Illuminate\Pipeline\Hub::class,
            'Illuminate\Contracts\Queue\EntityResolver' => \Illuminate\Database\Eloquent\QueueEntityResolver::class,
            'Illuminate\Contracts\Routing\ResponseFactory' => \Illuminate\Routing\ResponseFactory::class,
            'Illuminate\Contracts\Validation\UncompromisedVerifier' => \Illuminate\Validation\NotPwnedVerifier::class,
            'Illuminate\Routing\Contracts\CallableDispatcher' => \Illuminate\Routing\CallableDispatcher::class,
            'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class,
            'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => \Spatie\ErrorSolutions\SolutionProviderRepository::class,
            'Spatie\Ignition\Contracts\ConfigManager' => \Spatie\Ignition\Config\FileConfigManager::class,
            'auth' => \Illuminate\Auth\AuthManager::class,
            'auth.driver' => \Illuminate\Auth\SessionGuard::class,
            'auth.password' => \Illuminate\Auth\Passwords\PasswordBrokerManager::class,
            'auth.password.broker' => \Illuminate\Auth\Passwords\PasswordBroker::class,
            'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
            'cache' => \Illuminate\Cache\CacheManager::class,
            'cache.psr6' => \Symfony\Component\Cache\Adapter\Psr16Adapter::class,
            'cache.store' => \Illuminate\Cache\Repository::class,
            'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
            'composer' => \Illuminate\Support\Composer::class,
            'cookie' => \Illuminate\Cookie\CookieJar::class,
            'custom-form' => \App\Services\CustomFormBuilder::class,
            'db' => \Illuminate\Database\DatabaseManager::class,
            'db.connection' => \Illuminate\Database\SQLiteConnection::class,
            'db.factory' => \Illuminate\Database\Connectors\ConnectionFactory::class,
            'db.schema' => \Illuminate\Database\Schema\SQLiteBuilder::class,
            'db.transactions' => \Illuminate\Database\DatabaseTransactionsManager::class,
            'encrypter' => \Illuminate\Encryption\Encrypter::class,
            'events' => \Illuminate\Events\Dispatcher::class,
            'files' => \Illuminate\Filesystem\Filesystem::class,
            'filesystem' => \Illuminate\Filesystem\FilesystemManager::class,
            'filesystem.cloud' => \Illuminate\Filesystem\AwsS3V3Adapter::class,
            'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class,
            'flare.logger' => \Monolog\Logger::class,
            'github' => \GrahamCampbell\GitHub\GitHubManager::class,
            'github.authfactory' => \GrahamCampbell\GitHub\Auth\AuthenticatorFactory::class,
            'github.cachefactory' => \GrahamCampbell\GitHub\Cache\ConnectionFactory::class,
            'github.connection' => \Github\Client::class,
            'github.factory' => \GrahamCampbell\GitHub\GitHubFactory::class,
            'github.httpclientfactory' => \GrahamCampbell\GitHub\HttpClient\BuilderFactory::class,
            'hash' => \Illuminate\Hashing\HashManager::class,
            'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
            'log' => \Illuminate\Log\LogManager::class,
            'mail.manager' => \Illuminate\Mail\MailManager::class,
            'mailer' => \Illuminate\Mail\Mailer::class,
            'memcached.connector' => \Illuminate\Cache\MemcachedConnector::class,
            'migration.creator' => \Illuminate\Database\Migrations\MigrationCreator::class,
            'migration.repository' => \Illuminate\Database\Migrations\DatabaseMigrationRepository::class,
            'migrator' => \Illuminate\Database\Migrations\Migrator::class,
            'pipeline' => \Illuminate\Pipeline\Pipeline::class,
            'queue' => \Illuminate\Queue\QueueManager::class,
            'queue.connection' => \Illuminate\Queue\SyncQueue::class,
            'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
            'queue.listener' => \Illuminate\Queue\Listener::class,
            'queue.worker' => \Illuminate\Queue\Worker::class,
            'redirect' => \Illuminate\Routing\Redirector::class,
            'redis' => \Illuminate\Redis\RedisManager::class,
            'router' => \Illuminate\Routing\Router::class,
            'session' => \Illuminate\Session\SessionManager::class,
            'session.store' => \Illuminate\Session\Store::class,
            'settings' => \App\Setting::class,
            'translation.loader' => \Illuminate\Translation\FileLoader::class,
            'translator' => \Illuminate\Translation\Translator::class,
            'url' => \Illuminate\Routing\UrlGenerator::class,
            'validation.presence' => \Illuminate\Validation\DatabasePresenceVerifier::class,
            'view' => \Illuminate\View\Factory::class,
            'view.engine.resolver' => \Illuminate\View\Engines\EngineResolver::class,
            'view.finder' => \Illuminate\View\FileViewFinder::class,
        ]));
    override(\resolve(0), map([
        '' => '@',
            'Illuminate\Bus\BatchRepository' => \Illuminate\Bus\DatabaseBatchRepository::class,
            'Illuminate\Contracts\Auth\Access\Gate' => \Illuminate\Auth\Access\Gate::class,
            'Illuminate\Contracts\Broadcasting\Broadcaster' => \Illuminate\Broadcasting\Broadcasters\LogBroadcaster::class,
            'Illuminate\Contracts\Console\Kernel' => \Illuminate\Foundation\Console\Kernel::class,
            'Illuminate\Contracts\Debug\ExceptionHandler' => \NunoMaduro\Collision\Adapters\Laravel\ExceptionHandler::class,
            'Illuminate\Contracts\Foundation\ExceptionRenderer' => \Spatie\LaravelIgnition\Renderers\IgnitionExceptionRenderer::class,
            'Illuminate\Contracts\Foundation\MaintenanceMode' => \Illuminate\Foundation\FileBasedMaintenanceMode::class,
            'Illuminate\Contracts\Pipeline\Hub' => \Illuminate\Pipeline\Hub::class,
            'Illuminate\Contracts\Queue\EntityResolver' => \Illuminate\Database\Eloquent\QueueEntityResolver::class,
            'Illuminate\Contracts\Routing\ResponseFactory' => \Illuminate\Routing\ResponseFactory::class,
            'Illuminate\Contracts\Validation\UncompromisedVerifier' => \Illuminate\Validation\NotPwnedVerifier::class,
            'Illuminate\Routing\Contracts\CallableDispatcher' => \Illuminate\Routing\CallableDispatcher::class,
            'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class,
            'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => \Spatie\ErrorSolutions\SolutionProviderRepository::class,
            'Spatie\Ignition\Contracts\ConfigManager' => \Spatie\Ignition\Config\FileConfigManager::class,
            'auth' => \Illuminate\Auth\AuthManager::class,
            'auth.driver' => \Illuminate\Auth\SessionGuard::class,
            'auth.password' => \Illuminate\Auth\Passwords\PasswordBrokerManager::class,
            'auth.password.broker' => \Illuminate\Auth\Passwords\PasswordBroker::class,
            'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
            'cache' => \Illuminate\Cache\CacheManager::class,
            'cache.psr6' => \Symfony\Component\Cache\Adapter\Psr16Adapter::class,
            'cache.store' => \Illuminate\Cache\Repository::class,
            'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
            'composer' => \Illuminate\Support\Composer::class,
            'cookie' => \Illuminate\Cookie\CookieJar::class,
            'custom-form' => \App\Services\CustomFormBuilder::class,
            'db' => \Illuminate\Database\DatabaseManager::class,
            'db.connection' => \Illuminate\Database\SQLiteConnection::class,
            'db.factory' => \Illuminate\Database\Connectors\ConnectionFactory::class,
            'db.schema' => \Illuminate\Database\Schema\SQLiteBuilder::class,
            'db.transactions' => \Illuminate\Database\DatabaseTransactionsManager::class,
            'encrypter' => \Illuminate\Encryption\Encrypter::class,
            'events' => \Illuminate\Events\Dispatcher::class,
            'files' => \Illuminate\Filesystem\Filesystem::class,
            'filesystem' => \Illuminate\Filesystem\FilesystemManager::class,
            'filesystem.cloud' => \Illuminate\Filesystem\AwsS3V3Adapter::class,
            'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class,
            'flare.logger' => \Monolog\Logger::class,
            'github' => \GrahamCampbell\GitHub\GitHubManager::class,
            'github.authfactory' => \GrahamCampbell\GitHub\Auth\AuthenticatorFactory::class,
            'github.cachefactory' => \GrahamCampbell\GitHub\Cache\ConnectionFactory::class,
            'github.connection' => \Github\Client::class,
            'github.factory' => \GrahamCampbell\GitHub\GitHubFactory::class,
            'github.httpclientfactory' => \GrahamCampbell\GitHub\HttpClient\BuilderFactory::class,
            'hash' => \Illuminate\Hashing\HashManager::class,
            'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
            'log' => \Illuminate\Log\LogManager::class,
            'mail.manager' => \Illuminate\Mail\MailManager::class,
            'mailer' => \Illuminate\Mail\Mailer::class,
            'memcached.connector' => \Illuminate\Cache\MemcachedConnector::class,
            'migration.creator' => \Illuminate\Database\Migrations\MigrationCreator::class,
            'migration.repository' => \Illuminate\Database\Migrations\DatabaseMigrationRepository::class,
            'migrator' => \Illuminate\Database\Migrations\Migrator::class,
            'pipeline' => \Illuminate\Pipeline\Pipeline::class,
            'queue' => \Illuminate\Queue\QueueManager::class,
            'queue.connection' => \Illuminate\Queue\SyncQueue::class,
            'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
            'queue.listener' => \Illuminate\Queue\Listener::class,
            'queue.worker' => \Illuminate\Queue\Worker::class,
            'redirect' => \Illuminate\Routing\Redirector::class,
            'redis' => \Illuminate\Redis\RedisManager::class,
            'router' => \Illuminate\Routing\Router::class,
            'session' => \Illuminate\Session\SessionManager::class,
            'session.store' => \Illuminate\Session\Store::class,
            'settings' => \App\Setting::class,
            'translation.loader' => \Illuminate\Translation\FileLoader::class,
            'translator' => \Illuminate\Translation\Translator::class,
            'url' => \Illuminate\Routing\UrlGenerator::class,
            'validation.presence' => \Illuminate\Validation\DatabasePresenceVerifier::class,
            'view' => \Illuminate\View\Factory::class,
            'view.engine.resolver' => \Illuminate\View\Engines\EngineResolver::class,
            'view.finder' => \Illuminate\View\FileViewFinder::class,
        ]));
    override(\Psr\Container\ContainerInterface::get(0), map([
        '' => '@',
            'Illuminate\Bus\BatchRepository' => \Illuminate\Bus\DatabaseBatchRepository::class,
            'Illuminate\Contracts\Auth\Access\Gate' => \Illuminate\Auth\Access\Gate::class,
            'Illuminate\Contracts\Broadcasting\Broadcaster' => \Illuminate\Broadcasting\Broadcasters\LogBroadcaster::class,
            'Illuminate\Contracts\Console\Kernel' => \Illuminate\Foundation\Console\Kernel::class,
            'Illuminate\Contracts\Debug\ExceptionHandler' => \NunoMaduro\Collision\Adapters\Laravel\ExceptionHandler::class,
            'Illuminate\Contracts\Foundation\ExceptionRenderer' => \Spatie\LaravelIgnition\Renderers\IgnitionExceptionRenderer::class,
            'Illuminate\Contracts\Foundation\MaintenanceMode' => \Illuminate\Foundation\FileBasedMaintenanceMode::class,
            'Illuminate\Contracts\Pipeline\Hub' => \Illuminate\Pipeline\Hub::class,
            'Illuminate\Contracts\Queue\EntityResolver' => \Illuminate\Database\Eloquent\QueueEntityResolver::class,
            'Illuminate\Contracts\Routing\ResponseFactory' => \Illuminate\Routing\ResponseFactory::class,
            'Illuminate\Contracts\Validation\UncompromisedVerifier' => \Illuminate\Validation\NotPwnedVerifier::class,
            'Illuminate\Routing\Contracts\CallableDispatcher' => \Illuminate\Routing\CallableDispatcher::class,
            'Illuminate\Routing\Contracts\ControllerDispatcher' => \Illuminate\Routing\ControllerDispatcher::class,
            'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => \Spatie\ErrorSolutions\SolutionProviderRepository::class,
            'Spatie\Ignition\Contracts\ConfigManager' => \Spatie\Ignition\Config\FileConfigManager::class,
            'auth' => \Illuminate\Auth\AuthManager::class,
            'auth.driver' => \Illuminate\Auth\SessionGuard::class,
            'auth.password' => \Illuminate\Auth\Passwords\PasswordBrokerManager::class,
            'auth.password.broker' => \Illuminate\Auth\Passwords\PasswordBroker::class,
            'blade.compiler' => \Illuminate\View\Compilers\BladeCompiler::class,
            'cache' => \Illuminate\Cache\CacheManager::class,
            'cache.psr6' => \Symfony\Component\Cache\Adapter\Psr16Adapter::class,
            'cache.store' => \Illuminate\Cache\Repository::class,
            'command.tinker' => \Laravel\Tinker\Console\TinkerCommand::class,
            'composer' => \Illuminate\Support\Composer::class,
            'cookie' => \Illuminate\Cookie\CookieJar::class,
            'custom-form' => \App\Services\CustomFormBuilder::class,
            'db' => \Illuminate\Database\DatabaseManager::class,
            'db.connection' => \Illuminate\Database\SQLiteConnection::class,
            'db.factory' => \Illuminate\Database\Connectors\ConnectionFactory::class,
            'db.schema' => \Illuminate\Database\Schema\SQLiteBuilder::class,
            'db.transactions' => \Illuminate\Database\DatabaseTransactionsManager::class,
            'encrypter' => \Illuminate\Encryption\Encrypter::class,
            'events' => \Illuminate\Events\Dispatcher::class,
            'files' => \Illuminate\Filesystem\Filesystem::class,
            'filesystem' => \Illuminate\Filesystem\FilesystemManager::class,
            'filesystem.cloud' => \Illuminate\Filesystem\AwsS3V3Adapter::class,
            'filesystem.disk' => \Illuminate\Filesystem\LocalFilesystemAdapter::class,
            'flare.logger' => \Monolog\Logger::class,
            'github' => \GrahamCampbell\GitHub\GitHubManager::class,
            'github.authfactory' => \GrahamCampbell\GitHub\Auth\AuthenticatorFactory::class,
            'github.cachefactory' => \GrahamCampbell\GitHub\Cache\ConnectionFactory::class,
            'github.connection' => \Github\Client::class,
            'github.factory' => \GrahamCampbell\GitHub\GitHubFactory::class,
            'github.httpclientfactory' => \GrahamCampbell\GitHub\HttpClient\BuilderFactory::class,
            'hash' => \Illuminate\Hashing\HashManager::class,
            'hash.driver' => \Illuminate\Hashing\BcryptHasher::class,
            'log' => \Illuminate\Log\LogManager::class,
            'mail.manager' => \Illuminate\Mail\MailManager::class,
            'mailer' => \Illuminate\Mail\Mailer::class,
            'memcached.connector' => \Illuminate\Cache\MemcachedConnector::class,
            'migration.creator' => \Illuminate\Database\Migrations\MigrationCreator::class,
            'migration.repository' => \Illuminate\Database\Migrations\DatabaseMigrationRepository::class,
            'migrator' => \Illuminate\Database\Migrations\Migrator::class,
            'pipeline' => \Illuminate\Pipeline\Pipeline::class,
            'queue' => \Illuminate\Queue\QueueManager::class,
            'queue.connection' => \Illuminate\Queue\SyncQueue::class,
            'queue.failer' => \Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider::class,
            'queue.listener' => \Illuminate\Queue\Listener::class,
            'queue.worker' => \Illuminate\Queue\Worker::class,
            'redirect' => \Illuminate\Routing\Redirector::class,
            'redis' => \Illuminate\Redis\RedisManager::class,
            'router' => \Illuminate\Routing\Router::class,
            'session' => \Illuminate\Session\SessionManager::class,
            'session.store' => \Illuminate\Session\Store::class,
            'settings' => \App\Setting::class,
            'translation.loader' => \Illuminate\Translation\FileLoader::class,
            'translator' => \Illuminate\Translation\Translator::class,
            'url' => \Illuminate\Routing\UrlGenerator::class,
            'validation.presence' => \Illuminate\Validation\DatabasePresenceVerifier::class,
            'view' => \Illuminate\View\Factory::class,
            'view.engine.resolver' => \Illuminate\View\Engines\EngineResolver::class,
            'view.finder' => \Illuminate\View\FileViewFinder::class,
        ]));

    override(\auth()->user(), map([
        '' => \App\Models\User::class,
    ]));
    override(\Illuminate\Contracts\Auth\Guard::user(), map([
        '' => \App\Models\User::class,
    ]));
    override(\Illuminate\Support\Facades\Auth::user(), map([
        '' => \App\Models\User::class,
    ]));
    override(\request()->user(), map([
        '' => \App\Models\User::class,
    ]));
    override(\Illuminate\Http\Request::user(), map([
        '' => \App\Models\User::class,
    ]));
    override(\Illuminate\Support\Facades\Request::user(), map([
        '' => \App\Models\User::class,
    ]));

    override(\config(), map([
            'app.name' => 'string',
            'app.env' => 'string',
            'app.debug' => 'boolean',
            'app.url' => 'string',
            'app.frontend_url' => 'string',
            'app.asset_url' => 'NULL',
            'app.timezone' => 'string',
            'app.locale' => 'string',
            'app.fallback_locale' => 'string',
            'app.faker_locale' => 'string',
            'app.cipher' => 'string',
            'app.key' => 'string',
            'app.previous_keys' => 'array',
            'app.maintenance.driver' => 'string',
            'app.maintenance.store' => 'string',
            'app.providers' => 'array',
            'app.aliases.App' => 'string',
            'app.aliases.Arr' => 'string',
            'app.aliases.Artisan' => 'string',
            'app.aliases.Auth' => 'string',
            'app.aliases.Blade' => 'string',
            'app.aliases.Broadcast' => 'string',
            'app.aliases.Bus' => 'string',
            'app.aliases.Cache' => 'string',
            'app.aliases.Concurrency' => 'string',
            'app.aliases.Config' => 'string',
            'app.aliases.Context' => 'string',
            'app.aliases.Cookie' => 'string',
            'app.aliases.Crypt' => 'string',
            'app.aliases.Date' => 'string',
            'app.aliases.DB' => 'string',
            'app.aliases.Eloquent' => 'string',
            'app.aliases.Event' => 'string',
            'app.aliases.File' => 'string',
            'app.aliases.Gate' => 'string',
            'app.aliases.Hash' => 'string',
            'app.aliases.Http' => 'string',
            'app.aliases.Js' => 'string',
            'app.aliases.Lang' => 'string',
            'app.aliases.Log' => 'string',
            'app.aliases.Mail' => 'string',
            'app.aliases.Notification' => 'string',
            'app.aliases.Number' => 'string',
            'app.aliases.Password' => 'string',
            'app.aliases.Process' => 'string',
            'app.aliases.Queue' => 'string',
            'app.aliases.RateLimiter' => 'string',
            'app.aliases.Redirect' => 'string',
            'app.aliases.Request' => 'string',
            'app.aliases.Response' => 'string',
            'app.aliases.Route' => 'string',
            'app.aliases.Schedule' => 'string',
            'app.aliases.Schema' => 'string',
            'app.aliases.Session' => 'string',
            'app.aliases.Storage' => 'string',
            'app.aliases.Str' => 'string',
            'app.aliases.URL' => 'string',
            'app.aliases.Uri' => 'string',
            'app.aliases.Validator' => 'string',
            'app.aliases.View' => 'string',
            'app.aliases.Vite' => 'string',
            'app.aliases.EnhancedApps' => 'string',
            'app.aliases.Form' => 'string',
            'app.aliases.Redis' => 'string',
            'app.aliases.SupportedApps' => 'string',
            'app.aliases.Yaml' => 'string',
            'app.version' => 'string',
            'app.appsource' => 'string',
            'app.auth_roles_enable' => 'boolean',
            'app.auth_roles_header' => 'string',
            'app.auth_roles_http_header' => 'string',
            'app.auth_roles_admin' => 'string',
            'app.auth_roles_delimiter' => 'string',
            'auth.defaults.guard' => 'string',
            'auth.defaults.passwords' => 'string',
            'auth.guards.web.driver' => 'string',
            'auth.guards.web.provider' => 'string',
            'auth.guards.api.driver' => 'string',
            'auth.guards.api.provider' => 'string',
            'auth.guards.api.hash' => 'boolean',
            'auth.providers.users.driver' => 'string',
            'auth.providers.users.model' => 'string',
            'auth.passwords.users.provider' => 'string',
            'auth.passwords.users.table' => 'string',
            'auth.passwords.users.expire' => 'integer',
            'auth.passwords.users.throttle' => 'integer',
            'auth.password_timeout' => 'integer',
            'database.default' => 'string',
            'database.connections.sqlite.driver' => 'string',
            'database.connections.sqlite.database' => 'string',
            'database.connections.sqlite.prefix' => 'string',
            'database.connections.sqlite.foreign_key_constraints' => 'boolean',
            'database.connections.mysql.driver' => 'string',
            'database.connections.mysql.url' => 'NULL',
            'database.connections.mysql.host' => 'string',
            'database.connections.mysql.port' => 'string',
            'database.connections.mysql.database' => 'string',
            'database.connections.mysql.username' => 'string',
            'database.connections.mysql.password' => 'string',
            'database.connections.mysql.unix_socket' => 'string',
            'database.connections.mysql.charset' => 'string',
            'database.connections.mysql.collation' => 'string',
            'database.connections.mysql.prefix' => 'string',
            'database.connections.mysql.prefix_indexes' => 'boolean',
            'database.connections.mysql.strict' => 'boolean',
            'database.connections.mysql.engine' => 'NULL',
            'database.connections.mysql.options' => 'array',
            'database.connections.mariadb.driver' => 'string',
            'database.connections.mariadb.url' => 'NULL',
            'database.connections.mariadb.host' => 'string',
            'database.connections.mariadb.port' => 'string',
            'database.connections.mariadb.database' => 'string',
            'database.connections.mariadb.username' => 'string',
            'database.connections.mariadb.password' => 'string',
            'database.connections.mariadb.unix_socket' => 'string',
            'database.connections.mariadb.charset' => 'string',
            'database.connections.mariadb.collation' => 'string',
            'database.connections.mariadb.prefix' => 'string',
            'database.connections.mariadb.prefix_indexes' => 'boolean',
            'database.connections.mariadb.strict' => 'boolean',
            'database.connections.mariadb.engine' => 'NULL',
            'database.connections.mariadb.options' => 'array',
            'database.connections.pgsql.driver' => 'string',
            'database.connections.pgsql.url' => 'NULL',
            'database.connections.pgsql.host' => 'string',
            'database.connections.pgsql.port' => 'string',
            'database.connections.pgsql.database' => 'string',
            'database.connections.pgsql.username' => 'string',
            'database.connections.pgsql.password' => 'string',
            'database.connections.pgsql.charset' => 'string',
            'database.connections.pgsql.prefix' => 'string',
            'database.connections.pgsql.prefix_indexes' => 'boolean',
            'database.connections.pgsql.search_path' => 'string',
            'database.connections.pgsql.sslmode' => 'string',
            'database.connections.sqlsrv.driver' => 'string',
            'database.connections.sqlsrv.url' => 'NULL',
            'database.connections.sqlsrv.host' => 'string',
            'database.connections.sqlsrv.port' => 'string',
            'database.connections.sqlsrv.database' => 'string',
            'database.connections.sqlsrv.username' => 'string',
            'database.connections.sqlsrv.password' => 'string',
            'database.connections.sqlsrv.charset' => 'string',
            'database.connections.sqlsrv.prefix' => 'string',
            'database.connections.sqlsrv.prefix_indexes' => 'boolean',
            'database.migrations.table' => 'string',
            'database.migrations.update_date_on_publish' => 'boolean',
            'database.redis.client' => 'string',
            'database.redis.options.cluster' => 'string',
            'database.redis.options.prefix' => 'string',
            'database.redis.options.persistent' => 'boolean',
            'database.redis.default.url' => 'NULL',
            'database.redis.default.host' => 'string',
            'database.redis.default.username' => 'NULL',
            'database.redis.default.password' => 'NULL',
            'database.redis.default.port' => 'string',
            'database.redis.default.database' => 'string',
            'database.redis.cache.url' => 'NULL',
            'database.redis.cache.host' => 'string',
            'database.redis.cache.username' => 'NULL',
            'database.redis.cache.password' => 'NULL',
            'database.redis.cache.port' => 'string',
            'database.redis.cache.database' => 'string',
            'filesystems.default' => 'string',
            'filesystems.disks.local.driver' => 'string',
            'filesystems.disks.local.root' => 'string',
            'filesystems.disks.local.throw' => 'boolean',
            'filesystems.disks.public.driver' => 'string',
            'filesystems.disks.public.root' => 'string',
            'filesystems.disks.public.url' => 'string',
            'filesystems.disks.public.visibility' => 'string',
            'filesystems.disks.public.throw' => 'boolean',
            'filesystems.disks.public.report' => 'boolean',
            'filesystems.disks.s3.driver' => 'string',
            'filesystems.disks.s3.key' => 'string',
            'filesystems.disks.s3.secret' => 'string',
            'filesystems.disks.s3.region' => 'string',
            'filesystems.disks.s3.bucket' => 'string',
            'filesystems.disks.s3.url' => 'NULL',
            'filesystems.disks.s3.endpoint' => 'NULL',
            'filesystems.disks.s3.use_path_style_endpoint' => 'boolean',
            'filesystems.disks.s3.throw' => 'boolean',
            'filesystems.disks.s3.report' => 'boolean',
            'filesystems.links./Users/chris/dev/Heimdall/public/storage' => 'string',
            'filesystems.cloud' => 'string',
            'github.default' => 'string',
            'github.connections.main.token' => 'string',
            'github.connections.main.method' => 'string',
            'github.connections.app.clientId' => 'string',
            'github.connections.app.clientSecret' => 'string',
            'github.connections.app.method' => 'string',
            'github.connections.jwt.token' => 'string',
            'github.connections.jwt.method' => 'string',
            'github.connections.other.username' => 'string',
            'github.connections.other.password' => 'string',
            'github.connections.other.method' => 'string',
            'github.connections.none.method' => 'string',
            'github.cache.main.driver' => 'string',
            'github.cache.main.connector' => 'NULL',
            'github.cache.bar.driver' => 'string',
            'github.cache.bar.connector' => 'string',
            'mail.default' => 'string',
            'mail.mailers.smtp.transport' => 'string',
            'mail.mailers.smtp.scheme' => 'NULL',
            'mail.mailers.smtp.url' => 'NULL',
            'mail.mailers.smtp.host' => 'string',
            'mail.mailers.smtp.port' => 'string',
            'mail.mailers.smtp.username' => 'NULL',
            'mail.mailers.smtp.password' => 'NULL',
            'mail.mailers.smtp.timeout' => 'NULL',
            'mail.mailers.smtp.local_domain' => 'string',
            'mail.mailers.ses.transport' => 'string',
            'mail.mailers.postmark.transport' => 'string',
            'mail.mailers.resend.transport' => 'string',
            'mail.mailers.sendmail.transport' => 'string',
            'mail.mailers.sendmail.path' => 'string',
            'mail.mailers.log.transport' => 'string',
            'mail.mailers.log.channel' => 'NULL',
            'mail.mailers.array.transport' => 'string',
            'mail.mailers.failover.transport' => 'string',
            'mail.mailers.failover.mailers' => 'array',
            'mail.mailers.roundrobin.transport' => 'string',
            'mail.mailers.roundrobin.mailers' => 'array',
            'mail.mailers.mailgun.transport' => 'string',
            'mail.from.address' => 'NULL',
            'mail.from.name' => 'string',
            'mail.markdown.theme' => 'string',
            'mail.markdown.paths' => 'array',
            'services.postmark.token' => 'NULL',
            'services.ses.key' => 'string',
            'services.ses.secret' => 'string',
            'services.ses.region' => 'string',
            'services.resend.key' => 'NULL',
            'services.slack.notifications.bot_user_oauth_token' => 'NULL',
            'services.slack.notifications.channel' => 'NULL',
            'services.mailgun.domain' => 'NULL',
            'services.mailgun.secret' => 'NULL',
            'services.mailgun.endpoint' => 'string',
            'services.mailgun.scheme' => 'string',
            'hashing.driver' => 'string',
            'hashing.bcrypt.rounds' => 'string',
            'hashing.bcrypt.verify' => 'boolean',
            'hashing.argon.memory' => 'integer',
            'hashing.argon.threads' => 'integer',
            'hashing.argon.time' => 'integer',
            'hashing.argon.verify' => 'boolean',
            'hashing.rehash_on_login' => 'boolean',
            'cache.default' => 'string',
            'cache.stores.array.driver' => 'string',
            'cache.stores.array.serialize' => 'boolean',
            'cache.stores.database.driver' => 'string',
            'cache.stores.database.connection' => 'NULL',
            'cache.stores.database.table' => 'string',
            'cache.stores.database.lock_connection' => 'NULL',
            'cache.stores.database.lock_table' => 'NULL',
            'cache.stores.file.driver' => 'string',
            'cache.stores.file.path' => 'string',
            'cache.stores.file.lock_path' => 'string',
            'cache.stores.memcached.driver' => 'string',
            'cache.stores.memcached.persistent_id' => 'NULL',
            'cache.stores.memcached.sasl' => 'array',
            'cache.stores.memcached.options' => 'array',
            'cache.stores.memcached.servers.0.host' => 'string',
            'cache.stores.memcached.servers.0.port' => 'integer',
            'cache.stores.memcached.servers.0.weight' => 'integer',
            'cache.stores.redis.driver' => 'string',
            'cache.stores.redis.connection' => 'string',
            'cache.stores.redis.lock_connection' => 'string',
            'cache.stores.dynamodb.driver' => 'string',
            'cache.stores.dynamodb.key' => 'string',
            'cache.stores.dynamodb.secret' => 'string',
            'cache.stores.dynamodb.region' => 'string',
            'cache.stores.dynamodb.table' => 'string',
            'cache.stores.dynamodb.endpoint' => 'NULL',
            'cache.stores.octane.driver' => 'string',
            'cache.prefix' => 'string',
            'session.driver' => 'string',
            'session.lifetime' => 'integer',
            'session.expire_on_close' => 'boolean',
            'session.encrypt' => 'boolean',
            'session.files' => 'string',
            'session.connection' => 'NULL',
            'session.table' => 'string',
            'session.store' => 'NULL',
            'session.lottery' => 'array',
            'session.cookie' => 'string',
            'session.path' => 'string',
            'session.domain' => 'NULL',
            'session.secure' => 'NULL',
            'session.http_only' => 'boolean',
            'session.same_site' => 'string',
            'session.partitioned' => 'boolean',
            'concurrency.default' => 'string',
            'queue.default' => 'string',
            'queue.connections.sync.driver' => 'string',
            'queue.connections.database.driver' => 'string',
            'queue.connections.database.connection' => 'NULL',
            'queue.connections.database.table' => 'string',
            'queue.connections.database.queue' => 'string',
            'queue.connections.database.retry_after' => 'integer',
            'queue.connections.database.after_commit' => 'boolean',
            'queue.connections.beanstalkd.driver' => 'string',
            'queue.connections.beanstalkd.host' => 'string',
            'queue.connections.beanstalkd.queue' => 'string',
            'queue.connections.beanstalkd.retry_after' => 'integer',
            'queue.connections.beanstalkd.block_for' => 'integer',
            'queue.connections.beanstalkd.after_commit' => 'boolean',
            'queue.connections.sqs.driver' => 'string',
            'queue.connections.sqs.key' => 'string',
            'queue.connections.sqs.secret' => 'string',
            'queue.connections.sqs.prefix' => 'string',
            'queue.connections.sqs.queue' => 'string',
            'queue.connections.sqs.suffix' => 'NULL',
            'queue.connections.sqs.region' => 'string',
            'queue.connections.sqs.after_commit' => 'boolean',
            'queue.connections.redis.driver' => 'string',
            'queue.connections.redis.connection' => 'string',
            'queue.connections.redis.queue' => 'string',
            'queue.connections.redis.retry_after' => 'integer',
            'queue.connections.redis.block_for' => 'NULL',
            'queue.connections.redis.after_commit' => 'boolean',
            'queue.batching.database' => 'string',
            'queue.batching.table' => 'string',
            'queue.failed.driver' => 'string',
            'queue.failed.database' => 'string',
            'queue.failed.table' => 'string',
            'broadcasting.default' => 'string',
            'broadcasting.connections.reverb.driver' => 'string',
            'broadcasting.connections.reverb.key' => 'NULL',
            'broadcasting.connections.reverb.secret' => 'NULL',
            'broadcasting.connections.reverb.app_id' => 'NULL',
            'broadcasting.connections.reverb.options.host' => 'NULL',
            'broadcasting.connections.reverb.options.port' => 'integer',
            'broadcasting.connections.reverb.options.scheme' => 'string',
            'broadcasting.connections.reverb.options.useTLS' => 'boolean',
            'broadcasting.connections.reverb.client_options' => 'array',
            'broadcasting.connections.pusher.driver' => 'string',
            'broadcasting.connections.pusher.key' => 'string',
            'broadcasting.connections.pusher.secret' => 'string',
            'broadcasting.connections.pusher.app_id' => 'string',
            'broadcasting.connections.pusher.options.cluster' => 'string',
            'broadcasting.connections.pusher.options.host' => 'string',
            'broadcasting.connections.pusher.options.port' => 'integer',
            'broadcasting.connections.pusher.options.scheme' => 'string',
            'broadcasting.connections.pusher.options.encrypted' => 'boolean',
            'broadcasting.connections.pusher.options.useTLS' => 'boolean',
            'broadcasting.connections.pusher.client_options' => 'array',
            'broadcasting.connections.ably.driver' => 'string',
            'broadcasting.connections.ably.key' => 'NULL',
            'broadcasting.connections.log.driver' => 'string',
            'broadcasting.connections.null.driver' => 'string',
            'view.paths' => 'array',
            'view.compiled' => 'string',
            'cors.paths' => 'array',
            'cors.allowed_methods' => 'array',
            'cors.allowed_origins' => 'array',
            'cors.allowed_origins_patterns' => 'array',
            'cors.allowed_headers' => 'array',
            'cors.exposed_headers' => 'array',
            'cors.max_age' => 'integer',
            'cors.supports_credentials' => 'boolean',
            'logging.default' => 'string',
            'logging.deprecations.channel' => 'string',
            'logging.deprecations.trace' => 'boolean',
            'logging.channels.stack.driver' => 'string',
            'logging.channels.stack.channels' => 'array',
            'logging.channels.stack.ignore_exceptions' => 'boolean',
            'logging.channels.single.driver' => 'string',
            'logging.channels.single.path' => 'string',
            'logging.channels.single.level' => 'string',
            'logging.channels.single.replace_placeholders' => 'boolean',
            'logging.channels.daily.driver' => 'string',
            'logging.channels.daily.path' => 'string',
            'logging.channels.daily.level' => 'string',
            'logging.channels.daily.days' => 'integer',
            'logging.channels.daily.replace_placeholders' => 'boolean',
            'logging.channels.slack.driver' => 'string',
            'logging.channels.slack.url' => 'NULL',
            'logging.channels.slack.username' => 'string',
            'logging.channels.slack.emoji' => 'string',
            'logging.channels.slack.level' => 'string',
            'logging.channels.slack.replace_placeholders' => 'boolean',
            'logging.channels.papertrail.driver' => 'string',
            'logging.channels.papertrail.level' => 'string',
            'logging.channels.papertrail.handler' => 'string',
            'logging.channels.papertrail.handler_with.host' => 'NULL',
            'logging.channels.papertrail.handler_with.port' => 'NULL',
            'logging.channels.papertrail.handler_with.connectionString' => 'string',
            'logging.channels.papertrail.processors' => 'array',
            'logging.channels.stderr.driver' => 'string',
            'logging.channels.stderr.level' => 'string',
            'logging.channels.stderr.handler' => 'string',
            'logging.channels.stderr.formatter' => 'NULL',
            'logging.channels.stderr.with.stream' => 'string',
            'logging.channels.stderr.processors' => 'array',
            'logging.channels.syslog.driver' => 'string',
            'logging.channels.syslog.level' => 'string',
            'logging.channels.syslog.facility' => 'integer',
            'logging.channels.syslog.replace_placeholders' => 'boolean',
            'logging.channels.errorlog.driver' => 'string',
            'logging.channels.errorlog.level' => 'string',
            'logging.channels.errorlog.replace_placeholders' => 'boolean',
            'logging.channels.null.driver' => 'string',
            'logging.channels.null.handler' => 'string',
            'logging.channels.emergency.path' => 'string',
            'flare.key' => 'NULL',
            'flare.flare_middleware' => 'array',
            'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddLogs.maximum_number_of_collected_logs' => 'integer',
            'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddQueries.maximum_number_of_collected_queries' => 'integer',
            'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddQueries.report_query_bindings' => 'boolean',
            'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddJobs.max_chained_job_reporting_depth' => 'integer',
            'flare.flare_middleware.Spatie\FlareClient\FlareMiddleware\CensorRequestBodyFields.censor_fields' => 'array',
            'flare.flare_middleware.Spatie\FlareClient\FlareMiddleware\CensorRequestHeaders.headers' => 'array',
            'flare.send_logs_as_events' => 'boolean',
            'ignition.editor' => 'string',
            'ignition.theme' => 'string',
            'ignition.enable_share_button' => 'boolean',
            'ignition.register_commands' => 'boolean',
            'ignition.solution_providers' => 'array',
            'ignition.ignored_solution_providers' => 'array',
            'ignition.enable_runnable_solutions' => 'NULL',
            'ignition.remote_sites_path' => 'string',
            'ignition.local_sites_path' => 'string',
            'ignition.housekeeping_endpoint_prefix' => 'string',
            'ignition.settings_file_path' => 'string',
            'ignition.recorders' => 'array',
            'ignition.open_ai_key' => 'NULL',
            'ignition.with_stack_frame_arguments' => 'boolean',
            'ignition.argument_reducers' => 'array',
            'ide-helper.filename' => 'string',
            'ide-helper.models_filename' => 'string',
            'ide-helper.meta_filename' => 'string',
            'ide-helper.include_fluent' => 'boolean',
            'ide-helper.include_factory_builders' => 'boolean',
            'ide-helper.write_model_magic_where' => 'boolean',
            'ide-helper.write_model_external_builder_methods' => 'boolean',
            'ide-helper.write_model_relation_count_properties' => 'boolean',
            'ide-helper.write_eloquent_model_mixins' => 'boolean',
            'ide-helper.include_helpers' => 'boolean',
            'ide-helper.helper_files' => 'array',
            'ide-helper.model_locations' => 'array',
            'ide-helper.ignored_models' => 'array',
            'ide-helper.model_hooks' => 'array',
            'ide-helper.extra.Eloquent' => 'array',
            'ide-helper.extra.Session' => 'array',
            'ide-helper.magic' => 'array',
            'ide-helper.interfaces' => 'array',
            'ide-helper.model_camel_case_properties' => 'boolean',
            'ide-helper.type_overrides.integer' => 'string',
            'ide-helper.type_overrides.boolean' => 'string',
            'ide-helper.include_class_docblocks' => 'boolean',
            'ide-helper.force_fqn' => 'boolean',
            'ide-helper.use_generics_annotations' => 'boolean',
            'ide-helper.additional_relation_types' => 'array',
            'ide-helper.additional_relation_return_types' => 'array',
            'ide-helper.enforce_nullable_relationships' => 'boolean',
            'ide-helper.post_migrate' => 'array',
            'ide-helper.macroable_traits' => 'array',
            'tinker.commands' => 'array',
            'tinker.alias' => 'array',
            'tinker.dont_alias' => 'array',
        ]));
    override(\Illuminate\Config\Repository::get(), map([
            'app.name' => 'string',
            'app.env' => 'string',
            'app.debug' => 'boolean',
            'app.url' => 'string',
            'app.frontend_url' => 'string',
            'app.asset_url' => 'NULL',
            'app.timezone' => 'string',
            'app.locale' => 'string',
            'app.fallback_locale' => 'string',
            'app.faker_locale' => 'string',
            'app.cipher' => 'string',
            'app.key' => 'string',
            'app.previous_keys' => 'array',
            'app.maintenance.driver' => 'string',
            'app.maintenance.store' => 'string',
            'app.providers' => 'array',
            'app.aliases.App' => 'string',
            'app.aliases.Arr' => 'string',
            'app.aliases.Artisan' => 'string',
            'app.aliases.Auth' => 'string',
            'app.aliases.Blade' => 'string',
            'app.aliases.Broadcast' => 'string',
            'app.aliases.Bus' => 'string',
            'app.aliases.Cache' => 'string',
            'app.aliases.Concurrency' => 'string',
            'app.aliases.Config' => 'string',
            'app.aliases.Context' => 'string',
            'app.aliases.Cookie' => 'string',
            'app.aliases.Crypt' => 'string',
            'app.aliases.Date' => 'string',
            'app.aliases.DB' => 'string',
            'app.aliases.Eloquent' => 'string',
            'app.aliases.Event' => 'string',
            'app.aliases.File' => 'string',
            'app.aliases.Gate' => 'string',
            'app.aliases.Hash' => 'string',
            'app.aliases.Http' => 'string',
            'app.aliases.Js' => 'string',
            'app.aliases.Lang' => 'string',
            'app.aliases.Log' => 'string',
            'app.aliases.Mail' => 'string',
            'app.aliases.Notification' => 'string',
            'app.aliases.Number' => 'string',
            'app.aliases.Password' => 'string',
            'app.aliases.Process' => 'string',
            'app.aliases.Queue' => 'string',
            'app.aliases.RateLimiter' => 'string',
            'app.aliases.Redirect' => 'string',
            'app.aliases.Request' => 'string',
            'app.aliases.Response' => 'string',
            'app.aliases.Route' => 'string',
            'app.aliases.Schedule' => 'string',
            'app.aliases.Schema' => 'string',
            'app.aliases.Session' => 'string',
            'app.aliases.Storage' => 'string',
            'app.aliases.Str' => 'string',
            'app.aliases.URL' => 'string',
            'app.aliases.Uri' => 'string',
            'app.aliases.Validator' => 'string',
            'app.aliases.View' => 'string',
            'app.aliases.Vite' => 'string',
            'app.aliases.EnhancedApps' => 'string',
            'app.aliases.Form' => 'string',
            'app.aliases.Redis' => 'string',
            'app.aliases.SupportedApps' => 'string',
            'app.aliases.Yaml' => 'string',
            'app.version' => 'string',
            'app.appsource' => 'string',
            'app.auth_roles_enable' => 'boolean',
            'app.auth_roles_header' => 'string',
            'app.auth_roles_http_header' => 'string',
            'app.auth_roles_admin' => 'string',
            'app.auth_roles_delimiter' => 'string',
            'auth.defaults.guard' => 'string',
            'auth.defaults.passwords' => 'string',
            'auth.guards.web.driver' => 'string',
            'auth.guards.web.provider' => 'string',
            'auth.guards.api.driver' => 'string',
            'auth.guards.api.provider' => 'string',
            'auth.guards.api.hash' => 'boolean',
            'auth.providers.users.driver' => 'string',
            'auth.providers.users.model' => 'string',
            'auth.passwords.users.provider' => 'string',
            'auth.passwords.users.table' => 'string',
            'auth.passwords.users.expire' => 'integer',
            'auth.passwords.users.throttle' => 'integer',
            'auth.password_timeout' => 'integer',
            'database.default' => 'string',
            'database.connections.sqlite.driver' => 'string',
            'database.connections.sqlite.database' => 'string',
            'database.connections.sqlite.prefix' => 'string',
            'database.connections.sqlite.foreign_key_constraints' => 'boolean',
            'database.connections.mysql.driver' => 'string',
            'database.connections.mysql.url' => 'NULL',
            'database.connections.mysql.host' => 'string',
            'database.connections.mysql.port' => 'string',
            'database.connections.mysql.database' => 'string',
            'database.connections.mysql.username' => 'string',
            'database.connections.mysql.password' => 'string',
            'database.connections.mysql.unix_socket' => 'string',
            'database.connections.mysql.charset' => 'string',
            'database.connections.mysql.collation' => 'string',
            'database.connections.mysql.prefix' => 'string',
            'database.connections.mysql.prefix_indexes' => 'boolean',
            'database.connections.mysql.strict' => 'boolean',
            'database.connections.mysql.engine' => 'NULL',
            'database.connections.mysql.options' => 'array',
            'database.connections.mariadb.driver' => 'string',
            'database.connections.mariadb.url' => 'NULL',
            'database.connections.mariadb.host' => 'string',
            'database.connections.mariadb.port' => 'string',
            'database.connections.mariadb.database' => 'string',
            'database.connections.mariadb.username' => 'string',
            'database.connections.mariadb.password' => 'string',
            'database.connections.mariadb.unix_socket' => 'string',
            'database.connections.mariadb.charset' => 'string',
            'database.connections.mariadb.collation' => 'string',
            'database.connections.mariadb.prefix' => 'string',
            'database.connections.mariadb.prefix_indexes' => 'boolean',
            'database.connections.mariadb.strict' => 'boolean',
            'database.connections.mariadb.engine' => 'NULL',
            'database.connections.mariadb.options' => 'array',
            'database.connections.pgsql.driver' => 'string',
            'database.connections.pgsql.url' => 'NULL',
            'database.connections.pgsql.host' => 'string',
            'database.connections.pgsql.port' => 'string',
            'database.connections.pgsql.database' => 'string',
            'database.connections.pgsql.username' => 'string',
            'database.connections.pgsql.password' => 'string',
            'database.connections.pgsql.charset' => 'string',
            'database.connections.pgsql.prefix' => 'string',
            'database.connections.pgsql.prefix_indexes' => 'boolean',
            'database.connections.pgsql.search_path' => 'string',
            'database.connections.pgsql.sslmode' => 'string',
            'database.connections.sqlsrv.driver' => 'string',
            'database.connections.sqlsrv.url' => 'NULL',
            'database.connections.sqlsrv.host' => 'string',
            'database.connections.sqlsrv.port' => 'string',
            'database.connections.sqlsrv.database' => 'string',
            'database.connections.sqlsrv.username' => 'string',
            'database.connections.sqlsrv.password' => 'string',
            'database.connections.sqlsrv.charset' => 'string',
            'database.connections.sqlsrv.prefix' => 'string',
            'database.connections.sqlsrv.prefix_indexes' => 'boolean',
            'database.migrations.table' => 'string',
            'database.migrations.update_date_on_publish' => 'boolean',
            'database.redis.client' => 'string',
            'database.redis.options.cluster' => 'string',
            'database.redis.options.prefix' => 'string',
            'database.redis.options.persistent' => 'boolean',
            'database.redis.default.url' => 'NULL',
            'database.redis.default.host' => 'string',
            'database.redis.default.username' => 'NULL',
            'database.redis.default.password' => 'NULL',
            'database.redis.default.port' => 'string',
            'database.redis.default.database' => 'string',
            'database.redis.cache.url' => 'NULL',
            'database.redis.cache.host' => 'string',
            'database.redis.cache.username' => 'NULL',
            'database.redis.cache.password' => 'NULL',
            'database.redis.cache.port' => 'string',
            'database.redis.cache.database' => 'string',
            'filesystems.default' => 'string',
            'filesystems.disks.local.driver' => 'string',
            'filesystems.disks.local.root' => 'string',
            'filesystems.disks.local.throw' => 'boolean',
            'filesystems.disks.public.driver' => 'string',
            'filesystems.disks.public.root' => 'string',
            'filesystems.disks.public.url' => 'string',
            'filesystems.disks.public.visibility' => 'string',
            'filesystems.disks.public.throw' => 'boolean',
            'filesystems.disks.public.report' => 'boolean',
            'filesystems.disks.s3.driver' => 'string',
            'filesystems.disks.s3.key' => 'string',
            'filesystems.disks.s3.secret' => 'string',
            'filesystems.disks.s3.region' => 'string',
            'filesystems.disks.s3.bucket' => 'string',
            'filesystems.disks.s3.url' => 'NULL',
            'filesystems.disks.s3.endpoint' => 'NULL',
            'filesystems.disks.s3.use_path_style_endpoint' => 'boolean',
            'filesystems.disks.s3.throw' => 'boolean',
            'filesystems.disks.s3.report' => 'boolean',
            'filesystems.links./Users/chris/dev/Heimdall/public/storage' => 'string',
            'filesystems.cloud' => 'string',
            'github.default' => 'string',
            'github.connections.main.token' => 'string',
            'github.connections.main.method' => 'string',
            'github.connections.app.clientId' => 'string',
            'github.connections.app.clientSecret' => 'string',
            'github.connections.app.method' => 'string',
            'github.connections.jwt.token' => 'string',
            'github.connections.jwt.method' => 'string',
            'github.connections.other.username' => 'string',
            'github.connections.other.password' => 'string',
            'github.connections.other.method' => 'string',
            'github.connections.none.method' => 'string',
            'github.cache.main.driver' => 'string',
            'github.cache.main.connector' => 'NULL',
            'github.cache.bar.driver' => 'string',
            'github.cache.bar.connector' => 'string',
            'mail.default' => 'string',
            'mail.mailers.smtp.transport' => 'string',
            'mail.mailers.smtp.scheme' => 'NULL',
            'mail.mailers.smtp.url' => 'NULL',
            'mail.mailers.smtp.host' => 'string',
            'mail.mailers.smtp.port' => 'string',
            'mail.mailers.smtp.username' => 'NULL',
            'mail.mailers.smtp.password' => 'NULL',
            'mail.mailers.smtp.timeout' => 'NULL',
            'mail.mailers.smtp.local_domain' => 'string',
            'mail.mailers.ses.transport' => 'string',
            'mail.mailers.postmark.transport' => 'string',
            'mail.mailers.resend.transport' => 'string',
            'mail.mailers.sendmail.transport' => 'string',
            'mail.mailers.sendmail.path' => 'string',
            'mail.mailers.log.transport' => 'string',
            'mail.mailers.log.channel' => 'NULL',
            'mail.mailers.array.transport' => 'string',
            'mail.mailers.failover.transport' => 'string',
            'mail.mailers.failover.mailers' => 'array',
            'mail.mailers.roundrobin.transport' => 'string',
            'mail.mailers.roundrobin.mailers' => 'array',
            'mail.mailers.mailgun.transport' => 'string',
            'mail.from.address' => 'NULL',
            'mail.from.name' => 'string',
            'mail.markdown.theme' => 'string',
            'mail.markdown.paths' => 'array',
            'services.postmark.token' => 'NULL',
            'services.ses.key' => 'string',
            'services.ses.secret' => 'string',
            'services.ses.region' => 'string',
            'services.resend.key' => 'NULL',
            'services.slack.notifications.bot_user_oauth_token' => 'NULL',
            'services.slack.notifications.channel' => 'NULL',
            'services.mailgun.domain' => 'NULL',
            'services.mailgun.secret' => 'NULL',
            'services.mailgun.endpoint' => 'string',
            'services.mailgun.scheme' => 'string',
            'hashing.driver' => 'string',
            'hashing.bcrypt.rounds' => 'string',
            'hashing.bcrypt.verify' => 'boolean',
            'hashing.argon.memory' => 'integer',
            'hashing.argon.threads' => 'integer',
            'hashing.argon.time' => 'integer',
            'hashing.argon.verify' => 'boolean',
            'hashing.rehash_on_login' => 'boolean',
            'cache.default' => 'string',
            'cache.stores.array.driver' => 'string',
            'cache.stores.array.serialize' => 'boolean',
            'cache.stores.database.driver' => 'string',
            'cache.stores.database.connection' => 'NULL',
            'cache.stores.database.table' => 'string',
            'cache.stores.database.lock_connection' => 'NULL',
            'cache.stores.database.lock_table' => 'NULL',
            'cache.stores.file.driver' => 'string',
            'cache.stores.file.path' => 'string',
            'cache.stores.file.lock_path' => 'string',
            'cache.stores.memcached.driver' => 'string',
            'cache.stores.memcached.persistent_id' => 'NULL',
            'cache.stores.memcached.sasl' => 'array',
            'cache.stores.memcached.options' => 'array',
            'cache.stores.memcached.servers.0.host' => 'string',
            'cache.stores.memcached.servers.0.port' => 'integer',
            'cache.stores.memcached.servers.0.weight' => 'integer',
            'cache.stores.redis.driver' => 'string',
            'cache.stores.redis.connection' => 'string',
            'cache.stores.redis.lock_connection' => 'string',
            'cache.stores.dynamodb.driver' => 'string',
            'cache.stores.dynamodb.key' => 'string',
            'cache.stores.dynamodb.secret' => 'string',
            'cache.stores.dynamodb.region' => 'string',
            'cache.stores.dynamodb.table' => 'string',
            'cache.stores.dynamodb.endpoint' => 'NULL',
            'cache.stores.octane.driver' => 'string',
            'cache.prefix' => 'string',
            'session.driver' => 'string',
            'session.lifetime' => 'integer',
            'session.expire_on_close' => 'boolean',
            'session.encrypt' => 'boolean',
            'session.files' => 'string',
            'session.connection' => 'NULL',
            'session.table' => 'string',
            'session.store' => 'NULL',
            'session.lottery' => 'array',
            'session.cookie' => 'string',
            'session.path' => 'string',
            'session.domain' => 'NULL',
            'session.secure' => 'NULL',
            'session.http_only' => 'boolean',
            'session.same_site' => 'string',
            'session.partitioned' => 'boolean',
            'concurrency.default' => 'string',
            'queue.default' => 'string',
            'queue.connections.sync.driver' => 'string',
            'queue.connections.database.driver' => 'string',
            'queue.connections.database.connection' => 'NULL',
            'queue.connections.database.table' => 'string',
            'queue.connections.database.queue' => 'string',
            'queue.connections.database.retry_after' => 'integer',
            'queue.connections.database.after_commit' => 'boolean',
            'queue.connections.beanstalkd.driver' => 'string',
            'queue.connections.beanstalkd.host' => 'string',
            'queue.connections.beanstalkd.queue' => 'string',
            'queue.connections.beanstalkd.retry_after' => 'integer',
            'queue.connections.beanstalkd.block_for' => 'integer',
            'queue.connections.beanstalkd.after_commit' => 'boolean',
            'queue.connections.sqs.driver' => 'string',
            'queue.connections.sqs.key' => 'string',
            'queue.connections.sqs.secret' => 'string',
            'queue.connections.sqs.prefix' => 'string',
            'queue.connections.sqs.queue' => 'string',
            'queue.connections.sqs.suffix' => 'NULL',
            'queue.connections.sqs.region' => 'string',
            'queue.connections.sqs.after_commit' => 'boolean',
            'queue.connections.redis.driver' => 'string',
            'queue.connections.redis.connection' => 'string',
            'queue.connections.redis.queue' => 'string',
            'queue.connections.redis.retry_after' => 'integer',
            'queue.connections.redis.block_for' => 'NULL',
            'queue.connections.redis.after_commit' => 'boolean',
            'queue.batching.database' => 'string',
            'queue.batching.table' => 'string',
            'queue.failed.driver' => 'string',
            'queue.failed.database' => 'string',
            'queue.failed.table' => 'string',
            'broadcasting.default' => 'string',
            'broadcasting.connections.reverb.driver' => 'string',
            'broadcasting.connections.reverb.key' => 'NULL',
            'broadcasting.connections.reverb.secret' => 'NULL',
            'broadcasting.connections.reverb.app_id' => 'NULL',
            'broadcasting.connections.reverb.options.host' => 'NULL',
            'broadcasting.connections.reverb.options.port' => 'integer',
            'broadcasting.connections.reverb.options.scheme' => 'string',
            'broadcasting.connections.reverb.options.useTLS' => 'boolean',
            'broadcasting.connections.reverb.client_options' => 'array',
            'broadcasting.connections.pusher.driver' => 'string',
            'broadcasting.connections.pusher.key' => 'string',
            'broadcasting.connections.pusher.secret' => 'string',
            'broadcasting.connections.pusher.app_id' => 'string',
            'broadcasting.connections.pusher.options.cluster' => 'string',
            'broadcasting.connections.pusher.options.host' => 'string',
            'broadcasting.connections.pusher.options.port' => 'integer',
            'broadcasting.connections.pusher.options.scheme' => 'string',
            'broadcasting.connections.pusher.options.encrypted' => 'boolean',
            'broadcasting.connections.pusher.options.useTLS' => 'boolean',
            'broadcasting.connections.pusher.client_options' => 'array',
            'broadcasting.connections.ably.driver' => 'string',
            'broadcasting.connections.ably.key' => 'NULL',
            'broadcasting.connections.log.driver' => 'string',
            'broadcasting.connections.null.driver' => 'string',
            'view.paths' => 'array',
            'view.compiled' => 'string',
            'cors.paths' => 'array',
            'cors.allowed_methods' => 'array',
            'cors.allowed_origins' => 'array',
            'cors.allowed_origins_patterns' => 'array',
            'cors.allowed_headers' => 'array',
            'cors.exposed_headers' => 'array',
            'cors.max_age' => 'integer',
            'cors.supports_credentials' => 'boolean',
            'logging.default' => 'string',
            'logging.deprecations.channel' => 'string',
            'logging.deprecations.trace' => 'boolean',
            'logging.channels.stack.driver' => 'string',
            'logging.channels.stack.channels' => 'array',
            'logging.channels.stack.ignore_exceptions' => 'boolean',
            'logging.channels.single.driver' => 'string',
            'logging.channels.single.path' => 'string',
            'logging.channels.single.level' => 'string',
            'logging.channels.single.replace_placeholders' => 'boolean',
            'logging.channels.daily.driver' => 'string',
            'logging.channels.daily.path' => 'string',
            'logging.channels.daily.level' => 'string',
            'logging.channels.daily.days' => 'integer',
            'logging.channels.daily.replace_placeholders' => 'boolean',
            'logging.channels.slack.driver' => 'string',
            'logging.channels.slack.url' => 'NULL',
            'logging.channels.slack.username' => 'string',
            'logging.channels.slack.emoji' => 'string',
            'logging.channels.slack.level' => 'string',
            'logging.channels.slack.replace_placeholders' => 'boolean',
            'logging.channels.papertrail.driver' => 'string',
            'logging.channels.papertrail.level' => 'string',
            'logging.channels.papertrail.handler' => 'string',
            'logging.channels.papertrail.handler_with.host' => 'NULL',
            'logging.channels.papertrail.handler_with.port' => 'NULL',
            'logging.channels.papertrail.handler_with.connectionString' => 'string',
            'logging.channels.papertrail.processors' => 'array',
            'logging.channels.stderr.driver' => 'string',
            'logging.channels.stderr.level' => 'string',
            'logging.channels.stderr.handler' => 'string',
            'logging.channels.stderr.formatter' => 'NULL',
            'logging.channels.stderr.with.stream' => 'string',
            'logging.channels.stderr.processors' => 'array',
            'logging.channels.syslog.driver' => 'string',
            'logging.channels.syslog.level' => 'string',
            'logging.channels.syslog.facility' => 'integer',
            'logging.channels.syslog.replace_placeholders' => 'boolean',
            'logging.channels.errorlog.driver' => 'string',
            'logging.channels.errorlog.level' => 'string',
            'logging.channels.errorlog.replace_placeholders' => 'boolean',
            'logging.channels.null.driver' => 'string',
            'logging.channels.null.handler' => 'string',
            'logging.channels.emergency.path' => 'string',
            'flare.key' => 'NULL',
            'flare.flare_middleware' => 'array',
            'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddLogs.maximum_number_of_collected_logs' => 'integer',
            'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddQueries.maximum_number_of_collected_queries' => 'integer',
            'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddQueries.report_query_bindings' => 'boolean',
            'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddJobs.max_chained_job_reporting_depth' => 'integer',
            'flare.flare_middleware.Spatie\FlareClient\FlareMiddleware\CensorRequestBodyFields.censor_fields' => 'array',
            'flare.flare_middleware.Spatie\FlareClient\FlareMiddleware\CensorRequestHeaders.headers' => 'array',
            'flare.send_logs_as_events' => 'boolean',
            'ignition.editor' => 'string',
            'ignition.theme' => 'string',
            'ignition.enable_share_button' => 'boolean',
            'ignition.register_commands' => 'boolean',
            'ignition.solution_providers' => 'array',
            'ignition.ignored_solution_providers' => 'array',
            'ignition.enable_runnable_solutions' => 'NULL',
            'ignition.remote_sites_path' => 'string',
            'ignition.local_sites_path' => 'string',
            'ignition.housekeeping_endpoint_prefix' => 'string',
            'ignition.settings_file_path' => 'string',
            'ignition.recorders' => 'array',
            'ignition.open_ai_key' => 'NULL',
            'ignition.with_stack_frame_arguments' => 'boolean',
            'ignition.argument_reducers' => 'array',
            'ide-helper.filename' => 'string',
            'ide-helper.models_filename' => 'string',
            'ide-helper.meta_filename' => 'string',
            'ide-helper.include_fluent' => 'boolean',
            'ide-helper.include_factory_builders' => 'boolean',
            'ide-helper.write_model_magic_where' => 'boolean',
            'ide-helper.write_model_external_builder_methods' => 'boolean',
            'ide-helper.write_model_relation_count_properties' => 'boolean',
            'ide-helper.write_eloquent_model_mixins' => 'boolean',
            'ide-helper.include_helpers' => 'boolean',
            'ide-helper.helper_files' => 'array',
            'ide-helper.model_locations' => 'array',
            'ide-helper.ignored_models' => 'array',
            'ide-helper.model_hooks' => 'array',
            'ide-helper.extra.Eloquent' => 'array',
            'ide-helper.extra.Session' => 'array',
            'ide-helper.magic' => 'array',
            'ide-helper.interfaces' => 'array',
            'ide-helper.model_camel_case_properties' => 'boolean',
            'ide-helper.type_overrides.integer' => 'string',
            'ide-helper.type_overrides.boolean' => 'string',
            'ide-helper.include_class_docblocks' => 'boolean',
            'ide-helper.force_fqn' => 'boolean',
            'ide-helper.use_generics_annotations' => 'boolean',
            'ide-helper.additional_relation_types' => 'array',
            'ide-helper.additional_relation_return_types' => 'array',
            'ide-helper.enforce_nullable_relationships' => 'boolean',
            'ide-helper.post_migrate' => 'array',
            'ide-helper.macroable_traits' => 'array',
            'tinker.commands' => 'array',
            'tinker.alias' => 'array',
            'tinker.dont_alias' => 'array',
        ]));
    override(\Illuminate\Support\Facades\Config::get(), map([
            'app.name' => 'string',
            'app.env' => 'string',
            'app.debug' => 'boolean',
            'app.url' => 'string',
            'app.frontend_url' => 'string',
            'app.asset_url' => 'NULL',
            'app.timezone' => 'string',
            'app.locale' => 'string',
            'app.fallback_locale' => 'string',
            'app.faker_locale' => 'string',
            'app.cipher' => 'string',
            'app.key' => 'string',
            'app.previous_keys' => 'array',
            'app.maintenance.driver' => 'string',
            'app.maintenance.store' => 'string',
            'app.providers' => 'array',
            'app.aliases.App' => 'string',
            'app.aliases.Arr' => 'string',
            'app.aliases.Artisan' => 'string',
            'app.aliases.Auth' => 'string',
            'app.aliases.Blade' => 'string',
            'app.aliases.Broadcast' => 'string',
            'app.aliases.Bus' => 'string',
            'app.aliases.Cache' => 'string',
            'app.aliases.Concurrency' => 'string',
            'app.aliases.Config' => 'string',
            'app.aliases.Context' => 'string',
            'app.aliases.Cookie' => 'string',
            'app.aliases.Crypt' => 'string',
            'app.aliases.Date' => 'string',
            'app.aliases.DB' => 'string',
            'app.aliases.Eloquent' => 'string',
            'app.aliases.Event' => 'string',
            'app.aliases.File' => 'string',
            'app.aliases.Gate' => 'string',
            'app.aliases.Hash' => 'string',
            'app.aliases.Http' => 'string',
            'app.aliases.Js' => 'string',
            'app.aliases.Lang' => 'string',
            'app.aliases.Log' => 'string',
            'app.aliases.Mail' => 'string',
            'app.aliases.Notification' => 'string',
            'app.aliases.Number' => 'string',
            'app.aliases.Password' => 'string',
            'app.aliases.Process' => 'string',
            'app.aliases.Queue' => 'string',
            'app.aliases.RateLimiter' => 'string',
            'app.aliases.Redirect' => 'string',
            'app.aliases.Request' => 'string',
            'app.aliases.Response' => 'string',
            'app.aliases.Route' => 'string',
            'app.aliases.Schedule' => 'string',
            'app.aliases.Schema' => 'string',
            'app.aliases.Session' => 'string',
            'app.aliases.Storage' => 'string',
            'app.aliases.Str' => 'string',
            'app.aliases.URL' => 'string',
            'app.aliases.Uri' => 'string',
            'app.aliases.Validator' => 'string',
            'app.aliases.View' => 'string',
            'app.aliases.Vite' => 'string',
            'app.aliases.EnhancedApps' => 'string',
            'app.aliases.Form' => 'string',
            'app.aliases.Redis' => 'string',
            'app.aliases.SupportedApps' => 'string',
            'app.aliases.Yaml' => 'string',
            'app.version' => 'string',
            'app.appsource' => 'string',
            'app.auth_roles_enable' => 'boolean',
            'app.auth_roles_header' => 'string',
            'app.auth_roles_http_header' => 'string',
            'app.auth_roles_admin' => 'string',
            'app.auth_roles_delimiter' => 'string',
            'auth.defaults.guard' => 'string',
            'auth.defaults.passwords' => 'string',
            'auth.guards.web.driver' => 'string',
            'auth.guards.web.provider' => 'string',
            'auth.guards.api.driver' => 'string',
            'auth.guards.api.provider' => 'string',
            'auth.guards.api.hash' => 'boolean',
            'auth.providers.users.driver' => 'string',
            'auth.providers.users.model' => 'string',
            'auth.passwords.users.provider' => 'string',
            'auth.passwords.users.table' => 'string',
            'auth.passwords.users.expire' => 'integer',
            'auth.passwords.users.throttle' => 'integer',
            'auth.password_timeout' => 'integer',
            'database.default' => 'string',
            'database.connections.sqlite.driver' => 'string',
            'database.connections.sqlite.database' => 'string',
            'database.connections.sqlite.prefix' => 'string',
            'database.connections.sqlite.foreign_key_constraints' => 'boolean',
            'database.connections.mysql.driver' => 'string',
            'database.connections.mysql.url' => 'NULL',
            'database.connections.mysql.host' => 'string',
            'database.connections.mysql.port' => 'string',
            'database.connections.mysql.database' => 'string',
            'database.connections.mysql.username' => 'string',
            'database.connections.mysql.password' => 'string',
            'database.connections.mysql.unix_socket' => 'string',
            'database.connections.mysql.charset' => 'string',
            'database.connections.mysql.collation' => 'string',
            'database.connections.mysql.prefix' => 'string',
            'database.connections.mysql.prefix_indexes' => 'boolean',
            'database.connections.mysql.strict' => 'boolean',
            'database.connections.mysql.engine' => 'NULL',
            'database.connections.mysql.options' => 'array',
            'database.connections.mariadb.driver' => 'string',
            'database.connections.mariadb.url' => 'NULL',
            'database.connections.mariadb.host' => 'string',
            'database.connections.mariadb.port' => 'string',
            'database.connections.mariadb.database' => 'string',
            'database.connections.mariadb.username' => 'string',
            'database.connections.mariadb.password' => 'string',
            'database.connections.mariadb.unix_socket' => 'string',
            'database.connections.mariadb.charset' => 'string',
            'database.connections.mariadb.collation' => 'string',
            'database.connections.mariadb.prefix' => 'string',
            'database.connections.mariadb.prefix_indexes' => 'boolean',
            'database.connections.mariadb.strict' => 'boolean',
            'database.connections.mariadb.engine' => 'NULL',
            'database.connections.mariadb.options' => 'array',
            'database.connections.pgsql.driver' => 'string',
            'database.connections.pgsql.url' => 'NULL',
            'database.connections.pgsql.host' => 'string',
            'database.connections.pgsql.port' => 'string',
            'database.connections.pgsql.database' => 'string',
            'database.connections.pgsql.username' => 'string',
            'database.connections.pgsql.password' => 'string',
            'database.connections.pgsql.charset' => 'string',
            'database.connections.pgsql.prefix' => 'string',
            'database.connections.pgsql.prefix_indexes' => 'boolean',
            'database.connections.pgsql.search_path' => 'string',
            'database.connections.pgsql.sslmode' => 'string',
            'database.connections.sqlsrv.driver' => 'string',
            'database.connections.sqlsrv.url' => 'NULL',
            'database.connections.sqlsrv.host' => 'string',
            'database.connections.sqlsrv.port' => 'string',
            'database.connections.sqlsrv.database' => 'string',
            'database.connections.sqlsrv.username' => 'string',
            'database.connections.sqlsrv.password' => 'string',
            'database.connections.sqlsrv.charset' => 'string',
            'database.connections.sqlsrv.prefix' => 'string',
            'database.connections.sqlsrv.prefix_indexes' => 'boolean',
            'database.migrations.table' => 'string',
            'database.migrations.update_date_on_publish' => 'boolean',
            'database.redis.client' => 'string',
            'database.redis.options.cluster' => 'string',
            'database.redis.options.prefix' => 'string',
            'database.redis.options.persistent' => 'boolean',
            'database.redis.default.url' => 'NULL',
            'database.redis.default.host' => 'string',
            'database.redis.default.username' => 'NULL',
            'database.redis.default.password' => 'NULL',
            'database.redis.default.port' => 'string',
            'database.redis.default.database' => 'string',
            'database.redis.cache.url' => 'NULL',
            'database.redis.cache.host' => 'string',
            'database.redis.cache.username' => 'NULL',
            'database.redis.cache.password' => 'NULL',
            'database.redis.cache.port' => 'string',
            'database.redis.cache.database' => 'string',
            'filesystems.default' => 'string',
            'filesystems.disks.local.driver' => 'string',
            'filesystems.disks.local.root' => 'string',
            'filesystems.disks.local.throw' => 'boolean',
            'filesystems.disks.public.driver' => 'string',
            'filesystems.disks.public.root' => 'string',
            'filesystems.disks.public.url' => 'string',
            'filesystems.disks.public.visibility' => 'string',
            'filesystems.disks.public.throw' => 'boolean',
            'filesystems.disks.public.report' => 'boolean',
            'filesystems.disks.s3.driver' => 'string',
            'filesystems.disks.s3.key' => 'string',
            'filesystems.disks.s3.secret' => 'string',
            'filesystems.disks.s3.region' => 'string',
            'filesystems.disks.s3.bucket' => 'string',
            'filesystems.disks.s3.url' => 'NULL',
            'filesystems.disks.s3.endpoint' => 'NULL',
            'filesystems.disks.s3.use_path_style_endpoint' => 'boolean',
            'filesystems.disks.s3.throw' => 'boolean',
            'filesystems.disks.s3.report' => 'boolean',
            'filesystems.links./Users/chris/dev/Heimdall/public/storage' => 'string',
            'filesystems.cloud' => 'string',
            'github.default' => 'string',
            'github.connections.main.token' => 'string',
            'github.connections.main.method' => 'string',
            'github.connections.app.clientId' => 'string',
            'github.connections.app.clientSecret' => 'string',
            'github.connections.app.method' => 'string',
            'github.connections.jwt.token' => 'string',
            'github.connections.jwt.method' => 'string',
            'github.connections.other.username' => 'string',
            'github.connections.other.password' => 'string',
            'github.connections.other.method' => 'string',
            'github.connections.none.method' => 'string',
            'github.cache.main.driver' => 'string',
            'github.cache.main.connector' => 'NULL',
            'github.cache.bar.driver' => 'string',
            'github.cache.bar.connector' => 'string',
            'mail.default' => 'string',
            'mail.mailers.smtp.transport' => 'string',
            'mail.mailers.smtp.scheme' => 'NULL',
            'mail.mailers.smtp.url' => 'NULL',
            'mail.mailers.smtp.host' => 'string',
            'mail.mailers.smtp.port' => 'string',
            'mail.mailers.smtp.username' => 'NULL',
            'mail.mailers.smtp.password' => 'NULL',
            'mail.mailers.smtp.timeout' => 'NULL',
            'mail.mailers.smtp.local_domain' => 'string',
            'mail.mailers.ses.transport' => 'string',
            'mail.mailers.postmark.transport' => 'string',
            'mail.mailers.resend.transport' => 'string',
            'mail.mailers.sendmail.transport' => 'string',
            'mail.mailers.sendmail.path' => 'string',
            'mail.mailers.log.transport' => 'string',
            'mail.mailers.log.channel' => 'NULL',
            'mail.mailers.array.transport' => 'string',
            'mail.mailers.failover.transport' => 'string',
            'mail.mailers.failover.mailers' => 'array',
            'mail.mailers.roundrobin.transport' => 'string',
            'mail.mailers.roundrobin.mailers' => 'array',
            'mail.mailers.mailgun.transport' => 'string',
            'mail.from.address' => 'NULL',
            'mail.from.name' => 'string',
            'mail.markdown.theme' => 'string',
            'mail.markdown.paths' => 'array',
            'services.postmark.token' => 'NULL',
            'services.ses.key' => 'string',
            'services.ses.secret' => 'string',
            'services.ses.region' => 'string',
            'services.resend.key' => 'NULL',
            'services.slack.notifications.bot_user_oauth_token' => 'NULL',
            'services.slack.notifications.channel' => 'NULL',
            'services.mailgun.domain' => 'NULL',
            'services.mailgun.secret' => 'NULL',
            'services.mailgun.endpoint' => 'string',
            'services.mailgun.scheme' => 'string',
            'hashing.driver' => 'string',
            'hashing.bcrypt.rounds' => 'string',
            'hashing.bcrypt.verify' => 'boolean',
            'hashing.argon.memory' => 'integer',
            'hashing.argon.threads' => 'integer',
            'hashing.argon.time' => 'integer',
            'hashing.argon.verify' => 'boolean',
            'hashing.rehash_on_login' => 'boolean',
            'cache.default' => 'string',
            'cache.stores.array.driver' => 'string',
            'cache.stores.array.serialize' => 'boolean',
            'cache.stores.database.driver' => 'string',
            'cache.stores.database.connection' => 'NULL',
            'cache.stores.database.table' => 'string',
            'cache.stores.database.lock_connection' => 'NULL',
            'cache.stores.database.lock_table' => 'NULL',
            'cache.stores.file.driver' => 'string',
            'cache.stores.file.path' => 'string',
            'cache.stores.file.lock_path' => 'string',
            'cache.stores.memcached.driver' => 'string',
            'cache.stores.memcached.persistent_id' => 'NULL',
            'cache.stores.memcached.sasl' => 'array',
            'cache.stores.memcached.options' => 'array',
            'cache.stores.memcached.servers.0.host' => 'string',
            'cache.stores.memcached.servers.0.port' => 'integer',
            'cache.stores.memcached.servers.0.weight' => 'integer',
            'cache.stores.redis.driver' => 'string',
            'cache.stores.redis.connection' => 'string',
            'cache.stores.redis.lock_connection' => 'string',
            'cache.stores.dynamodb.driver' => 'string',
            'cache.stores.dynamodb.key' => 'string',
            'cache.stores.dynamodb.secret' => 'string',
            'cache.stores.dynamodb.region' => 'string',
            'cache.stores.dynamodb.table' => 'string',
            'cache.stores.dynamodb.endpoint' => 'NULL',
            'cache.stores.octane.driver' => 'string',
            'cache.prefix' => 'string',
            'session.driver' => 'string',
            'session.lifetime' => 'integer',
            'session.expire_on_close' => 'boolean',
            'session.encrypt' => 'boolean',
            'session.files' => 'string',
            'session.connection' => 'NULL',
            'session.table' => 'string',
            'session.store' => 'NULL',
            'session.lottery' => 'array',
            'session.cookie' => 'string',
            'session.path' => 'string',
            'session.domain' => 'NULL',
            'session.secure' => 'NULL',
            'session.http_only' => 'boolean',
            'session.same_site' => 'string',
            'session.partitioned' => 'boolean',
            'concurrency.default' => 'string',
            'queue.default' => 'string',
            'queue.connections.sync.driver' => 'string',
            'queue.connections.database.driver' => 'string',
            'queue.connections.database.connection' => 'NULL',
            'queue.connections.database.table' => 'string',
            'queue.connections.database.queue' => 'string',
            'queue.connections.database.retry_after' => 'integer',
            'queue.connections.database.after_commit' => 'boolean',
            'queue.connections.beanstalkd.driver' => 'string',
            'queue.connections.beanstalkd.host' => 'string',
            'queue.connections.beanstalkd.queue' => 'string',
            'queue.connections.beanstalkd.retry_after' => 'integer',
            'queue.connections.beanstalkd.block_for' => 'integer',
            'queue.connections.beanstalkd.after_commit' => 'boolean',
            'queue.connections.sqs.driver' => 'string',
            'queue.connections.sqs.key' => 'string',
            'queue.connections.sqs.secret' => 'string',
            'queue.connections.sqs.prefix' => 'string',
            'queue.connections.sqs.queue' => 'string',
            'queue.connections.sqs.suffix' => 'NULL',
            'queue.connections.sqs.region' => 'string',
            'queue.connections.sqs.after_commit' => 'boolean',
            'queue.connections.redis.driver' => 'string',
            'queue.connections.redis.connection' => 'string',
            'queue.connections.redis.queue' => 'string',
            'queue.connections.redis.retry_after' => 'integer',
            'queue.connections.redis.block_for' => 'NULL',
            'queue.connections.redis.after_commit' => 'boolean',
            'queue.batching.database' => 'string',
            'queue.batching.table' => 'string',
            'queue.failed.driver' => 'string',
            'queue.failed.database' => 'string',
            'queue.failed.table' => 'string',
            'broadcasting.default' => 'string',
            'broadcasting.connections.reverb.driver' => 'string',
            'broadcasting.connections.reverb.key' => 'NULL',
            'broadcasting.connections.reverb.secret' => 'NULL',
            'broadcasting.connections.reverb.app_id' => 'NULL',
            'broadcasting.connections.reverb.options.host' => 'NULL',
            'broadcasting.connections.reverb.options.port' => 'integer',
            'broadcasting.connections.reverb.options.scheme' => 'string',
            'broadcasting.connections.reverb.options.useTLS' => 'boolean',
            'broadcasting.connections.reverb.client_options' => 'array',
            'broadcasting.connections.pusher.driver' => 'string',
            'broadcasting.connections.pusher.key' => 'string',
            'broadcasting.connections.pusher.secret' => 'string',
            'broadcasting.connections.pusher.app_id' => 'string',
            'broadcasting.connections.pusher.options.cluster' => 'string',
            'broadcasting.connections.pusher.options.host' => 'string',
            'broadcasting.connections.pusher.options.port' => 'integer',
            'broadcasting.connections.pusher.options.scheme' => 'string',
            'broadcasting.connections.pusher.options.encrypted' => 'boolean',
            'broadcasting.connections.pusher.options.useTLS' => 'boolean',
            'broadcasting.connections.pusher.client_options' => 'array',
            'broadcasting.connections.ably.driver' => 'string',
            'broadcasting.connections.ably.key' => 'NULL',
            'broadcasting.connections.log.driver' => 'string',
            'broadcasting.connections.null.driver' => 'string',
            'view.paths' => 'array',
            'view.compiled' => 'string',
            'cors.paths' => 'array',
            'cors.allowed_methods' => 'array',
            'cors.allowed_origins' => 'array',
            'cors.allowed_origins_patterns' => 'array',
            'cors.allowed_headers' => 'array',
            'cors.exposed_headers' => 'array',
            'cors.max_age' => 'integer',
            'cors.supports_credentials' => 'boolean',
            'logging.default' => 'string',
            'logging.deprecations.channel' => 'string',
            'logging.deprecations.trace' => 'boolean',
            'logging.channels.stack.driver' => 'string',
            'logging.channels.stack.channels' => 'array',
            'logging.channels.stack.ignore_exceptions' => 'boolean',
            'logging.channels.single.driver' => 'string',
            'logging.channels.single.path' => 'string',
            'logging.channels.single.level' => 'string',
            'logging.channels.single.replace_placeholders' => 'boolean',
            'logging.channels.daily.driver' => 'string',
            'logging.channels.daily.path' => 'string',
            'logging.channels.daily.level' => 'string',
            'logging.channels.daily.days' => 'integer',
            'logging.channels.daily.replace_placeholders' => 'boolean',
            'logging.channels.slack.driver' => 'string',
            'logging.channels.slack.url' => 'NULL',
            'logging.channels.slack.username' => 'string',
            'logging.channels.slack.emoji' => 'string',
            'logging.channels.slack.level' => 'string',
            'logging.channels.slack.replace_placeholders' => 'boolean',
            'logging.channels.papertrail.driver' => 'string',
            'logging.channels.papertrail.level' => 'string',
            'logging.channels.papertrail.handler' => 'string',
            'logging.channels.papertrail.handler_with.host' => 'NULL',
            'logging.channels.papertrail.handler_with.port' => 'NULL',
            'logging.channels.papertrail.handler_with.connectionString' => 'string',
            'logging.channels.papertrail.processors' => 'array',
            'logging.channels.stderr.driver' => 'string',
            'logging.channels.stderr.level' => 'string',
            'logging.channels.stderr.handler' => 'string',
            'logging.channels.stderr.formatter' => 'NULL',
            'logging.channels.stderr.with.stream' => 'string',
            'logging.channels.stderr.processors' => 'array',
            'logging.channels.syslog.driver' => 'string',
            'logging.channels.syslog.level' => 'string',
            'logging.channels.syslog.facility' => 'integer',
            'logging.channels.syslog.replace_placeholders' => 'boolean',
            'logging.channels.errorlog.driver' => 'string',
            'logging.channels.errorlog.level' => 'string',
            'logging.channels.errorlog.replace_placeholders' => 'boolean',
            'logging.channels.null.driver' => 'string',
            'logging.channels.null.handler' => 'string',
            'logging.channels.emergency.path' => 'string',
            'flare.key' => 'NULL',
            'flare.flare_middleware' => 'array',
            'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddLogs.maximum_number_of_collected_logs' => 'integer',
            'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddQueries.maximum_number_of_collected_queries' => 'integer',
            'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddQueries.report_query_bindings' => 'boolean',
            'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddJobs.max_chained_job_reporting_depth' => 'integer',
            'flare.flare_middleware.Spatie\FlareClient\FlareMiddleware\CensorRequestBodyFields.censor_fields' => 'array',
            'flare.flare_middleware.Spatie\FlareClient\FlareMiddleware\CensorRequestHeaders.headers' => 'array',
            'flare.send_logs_as_events' => 'boolean',
            'ignition.editor' => 'string',
            'ignition.theme' => 'string',
            'ignition.enable_share_button' => 'boolean',
            'ignition.register_commands' => 'boolean',
            'ignition.solution_providers' => 'array',
            'ignition.ignored_solution_providers' => 'array',
            'ignition.enable_runnable_solutions' => 'NULL',
            'ignition.remote_sites_path' => 'string',
            'ignition.local_sites_path' => 'string',
            'ignition.housekeeping_endpoint_prefix' => 'string',
            'ignition.settings_file_path' => 'string',
            'ignition.recorders' => 'array',
            'ignition.open_ai_key' => 'NULL',
            'ignition.with_stack_frame_arguments' => 'boolean',
            'ignition.argument_reducers' => 'array',
            'ide-helper.filename' => 'string',
            'ide-helper.models_filename' => 'string',
            'ide-helper.meta_filename' => 'string',
            'ide-helper.include_fluent' => 'boolean',
            'ide-helper.include_factory_builders' => 'boolean',
            'ide-helper.write_model_magic_where' => 'boolean',
            'ide-helper.write_model_external_builder_methods' => 'boolean',
            'ide-helper.write_model_relation_count_properties' => 'boolean',
            'ide-helper.write_eloquent_model_mixins' => 'boolean',
            'ide-helper.include_helpers' => 'boolean',
            'ide-helper.helper_files' => 'array',
            'ide-helper.model_locations' => 'array',
            'ide-helper.ignored_models' => 'array',
            'ide-helper.model_hooks' => 'array',
            'ide-helper.extra.Eloquent' => 'array',
            'ide-helper.extra.Session' => 'array',
            'ide-helper.magic' => 'array',
            'ide-helper.interfaces' => 'array',
            'ide-helper.model_camel_case_properties' => 'boolean',
            'ide-helper.type_overrides.integer' => 'string',
            'ide-helper.type_overrides.boolean' => 'string',
            'ide-helper.include_class_docblocks' => 'boolean',
            'ide-helper.force_fqn' => 'boolean',
            'ide-helper.use_generics_annotations' => 'boolean',
            'ide-helper.additional_relation_types' => 'array',
            'ide-helper.additional_relation_return_types' => 'array',
            'ide-helper.enforce_nullable_relationships' => 'boolean',
            'ide-helper.post_migrate' => 'array',
            'ide-helper.macroable_traits' => 'array',
            'tinker.commands' => 'array',
            'tinker.alias' => 'array',
            'tinker.dont_alias' => 'array',
        ]));


    override(\Illuminate\Foundation\Testing\Concerns\InteractsWithContainer::mock(0), map(["" => "@&\Mockery\MockInterface"]));
    override(\Illuminate\Foundation\Testing\Concerns\InteractsWithContainer::partialMock(0), map(["" => "@&\Mockery\MockInterface"]));
    override(\Illuminate\Foundation\Testing\Concerns\InteractsWithContainer::instance(0), type(1));
    override(\Illuminate\Foundation\Testing\Concerns\InteractsWithContainer::spy(0), map(["" => "@&\Mockery\MockInterface"]));
    override(\Illuminate\Support\Arr::add(0), type(0));
    override(\Illuminate\Support\Arr::except(0), type(0));
    override(\Illuminate\Support\Arr::first(0), elementType(0));
    override(\Illuminate\Support\Arr::last(0), elementType(0));
    override(\Illuminate\Support\Arr::get(0), elementType(0));
    override(\Illuminate\Support\Arr::only(0), type(0));
    override(\Illuminate\Support\Arr::prepend(0), type(0));
    override(\Illuminate\Support\Arr::pull(0), elementType(0));
    override(\Illuminate\Support\Arr::set(0), type(0));
    override(\Illuminate\Support\Arr::shuffle(0), type(0));
    override(\Illuminate\Support\Arr::sort(0), type(0));
    override(\Illuminate\Support\Arr::sortRecursive(0), type(0));
    override(\Illuminate\Support\Arr::where(0), type(0));
    override(\array_add(0), type(0));
    override(\array_except(0), type(0));
    override(\array_first(0), elementType(0));
    override(\array_last(0), elementType(0));
    override(\array_get(0), elementType(0));
    override(\array_only(0), type(0));
    override(\array_prepend(0), type(0));
    override(\array_pull(0), elementType(0));
    override(\array_set(0), type(0));
    override(\array_sort(0), type(0));
    override(\array_sort_recursive(0), type(0));
    override(\array_where(0), type(0));
    override(\head(0), elementType(0));
    override(\last(0), elementType(0));
    override(\with(0), type(0));
    override(\tap(0), type(0));
    override(\optional(0), type(0));

            registerArgumentsSet('auth', );
        registerArgumentsSet('configs', 
'app.name','app.env','app.debug','app.url','app.frontend_url',
'app.asset_url','app.timezone','app.locale','app.fallback_locale','app.faker_locale',
'app.cipher','app.key','app.previous_keys','app.maintenance.driver','app.maintenance.store',
'app.providers','app.aliases.App','app.aliases.Arr','app.aliases.Artisan','app.aliases.Auth',
'app.aliases.Blade','app.aliases.Broadcast','app.aliases.Bus','app.aliases.Cache','app.aliases.Concurrency',
'app.aliases.Config','app.aliases.Context','app.aliases.Cookie','app.aliases.Crypt','app.aliases.Date',
'app.aliases.DB','app.aliases.Eloquent','app.aliases.Event','app.aliases.File','app.aliases.Gate',
'app.aliases.Hash','app.aliases.Http','app.aliases.Js','app.aliases.Lang','app.aliases.Log',
'app.aliases.Mail','app.aliases.Notification','app.aliases.Number','app.aliases.Password','app.aliases.Process',
'app.aliases.Queue','app.aliases.RateLimiter','app.aliases.Redirect','app.aliases.Request','app.aliases.Response',
'app.aliases.Route','app.aliases.Schedule','app.aliases.Schema','app.aliases.Session','app.aliases.Storage',
'app.aliases.Str','app.aliases.URL','app.aliases.Uri','app.aliases.Validator','app.aliases.View',
'app.aliases.Vite','app.aliases.EnhancedApps','app.aliases.Form','app.aliases.Redis','app.aliases.SupportedApps',
'app.aliases.Yaml','app.version','app.appsource','app.auth_roles_enable','app.auth_roles_header',
'app.auth_roles_http_header','app.auth_roles_admin','app.auth_roles_delimiter','auth.defaults.guard','auth.defaults.passwords',
'auth.guards.web.driver','auth.guards.web.provider','auth.guards.api.driver','auth.guards.api.provider','auth.guards.api.hash',
'auth.providers.users.driver','auth.providers.users.model','auth.passwords.users.provider','auth.passwords.users.table','auth.passwords.users.expire',
'auth.passwords.users.throttle','auth.password_timeout','database.default','database.connections.sqlite.driver','database.connections.sqlite.database',
'database.connections.sqlite.prefix','database.connections.sqlite.foreign_key_constraints','database.connections.mysql.driver','database.connections.mysql.url','database.connections.mysql.host',
'database.connections.mysql.port','database.connections.mysql.database','database.connections.mysql.username','database.connections.mysql.password','database.connections.mysql.unix_socket',
'database.connections.mysql.charset','database.connections.mysql.collation','database.connections.mysql.prefix','database.connections.mysql.prefix_indexes','database.connections.mysql.strict',
'database.connections.mysql.engine','database.connections.mysql.options','database.connections.mariadb.driver','database.connections.mariadb.url','database.connections.mariadb.host',
'database.connections.mariadb.port','database.connections.mariadb.database','database.connections.mariadb.username','database.connections.mariadb.password','database.connections.mariadb.unix_socket',
'database.connections.mariadb.charset','database.connections.mariadb.collation','database.connections.mariadb.prefix','database.connections.mariadb.prefix_indexes','database.connections.mariadb.strict',
'database.connections.mariadb.engine','database.connections.mariadb.options','database.connections.pgsql.driver','database.connections.pgsql.url','database.connections.pgsql.host',
'database.connections.pgsql.port','database.connections.pgsql.database','database.connections.pgsql.username','database.connections.pgsql.password','database.connections.pgsql.charset',
'database.connections.pgsql.prefix','database.connections.pgsql.prefix_indexes','database.connections.pgsql.search_path','database.connections.pgsql.sslmode','database.connections.sqlsrv.driver',
'database.connections.sqlsrv.url','database.connections.sqlsrv.host','database.connections.sqlsrv.port','database.connections.sqlsrv.database','database.connections.sqlsrv.username',
'database.connections.sqlsrv.password','database.connections.sqlsrv.charset','database.connections.sqlsrv.prefix','database.connections.sqlsrv.prefix_indexes','database.migrations.table',
'database.migrations.update_date_on_publish','database.redis.client','database.redis.options.cluster','database.redis.options.prefix','database.redis.options.persistent',
'database.redis.default.url','database.redis.default.host','database.redis.default.username','database.redis.default.password','database.redis.default.port',
'database.redis.default.database','database.redis.cache.url','database.redis.cache.host','database.redis.cache.username','database.redis.cache.password',
'database.redis.cache.port','database.redis.cache.database','filesystems.default','filesystems.disks.local.driver','filesystems.disks.local.root',
'filesystems.disks.local.throw','filesystems.disks.public.driver','filesystems.disks.public.root','filesystems.disks.public.url','filesystems.disks.public.visibility',
'filesystems.disks.public.throw','filesystems.disks.public.report','filesystems.disks.s3.driver','filesystems.disks.s3.key','filesystems.disks.s3.secret',
'filesystems.disks.s3.region','filesystems.disks.s3.bucket','filesystems.disks.s3.url','filesystems.disks.s3.endpoint','filesystems.disks.s3.use_path_style_endpoint',
'filesystems.disks.s3.throw','filesystems.disks.s3.report','filesystems.links./Users/chris/dev/Heimdall/public/storage','filesystems.cloud','github.default',
'github.connections.main.token','github.connections.main.method','github.connections.app.clientId','github.connections.app.clientSecret','github.connections.app.method',
'github.connections.jwt.token','github.connections.jwt.method','github.connections.other.username','github.connections.other.password','github.connections.other.method',
'github.connections.none.method','github.cache.main.driver','github.cache.main.connector','github.cache.bar.driver','github.cache.bar.connector',
'mail.default','mail.mailers.smtp.transport','mail.mailers.smtp.scheme','mail.mailers.smtp.url','mail.mailers.smtp.host',
'mail.mailers.smtp.port','mail.mailers.smtp.username','mail.mailers.smtp.password','mail.mailers.smtp.timeout','mail.mailers.smtp.local_domain',
'mail.mailers.ses.transport','mail.mailers.postmark.transport','mail.mailers.resend.transport','mail.mailers.sendmail.transport','mail.mailers.sendmail.path',
'mail.mailers.log.transport','mail.mailers.log.channel','mail.mailers.array.transport','mail.mailers.failover.transport','mail.mailers.failover.mailers',
'mail.mailers.roundrobin.transport','mail.mailers.roundrobin.mailers','mail.mailers.mailgun.transport','mail.from.address','mail.from.name',
'mail.markdown.theme','mail.markdown.paths','services.postmark.token','services.ses.key','services.ses.secret',
'services.ses.region','services.resend.key','services.slack.notifications.bot_user_oauth_token','services.slack.notifications.channel','services.mailgun.domain',
'services.mailgun.secret','services.mailgun.endpoint','services.mailgun.scheme','hashing.driver','hashing.bcrypt.rounds',
'hashing.bcrypt.verify','hashing.argon.memory','hashing.argon.threads','hashing.argon.time','hashing.argon.verify',
'hashing.rehash_on_login','cache.default','cache.stores.array.driver','cache.stores.array.serialize','cache.stores.database.driver',
'cache.stores.database.connection','cache.stores.database.table','cache.stores.database.lock_connection','cache.stores.database.lock_table','cache.stores.file.driver',
'cache.stores.file.path','cache.stores.file.lock_path','cache.stores.memcached.driver','cache.stores.memcached.persistent_id','cache.stores.memcached.sasl',
'cache.stores.memcached.options','cache.stores.memcached.servers.0.host','cache.stores.memcached.servers.0.port','cache.stores.memcached.servers.0.weight','cache.stores.redis.driver',
'cache.stores.redis.connection','cache.stores.redis.lock_connection','cache.stores.dynamodb.driver','cache.stores.dynamodb.key','cache.stores.dynamodb.secret',
'cache.stores.dynamodb.region','cache.stores.dynamodb.table','cache.stores.dynamodb.endpoint','cache.stores.octane.driver','cache.prefix',
'session.driver','session.lifetime','session.expire_on_close','session.encrypt','session.files',
'session.connection','session.table','session.store','session.lottery','session.cookie',
'session.path','session.domain','session.secure','session.http_only','session.same_site',
'session.partitioned','concurrency.default','queue.default','queue.connections.sync.driver','queue.connections.database.driver',
'queue.connections.database.connection','queue.connections.database.table','queue.connections.database.queue','queue.connections.database.retry_after','queue.connections.database.after_commit',
'queue.connections.beanstalkd.driver','queue.connections.beanstalkd.host','queue.connections.beanstalkd.queue','queue.connections.beanstalkd.retry_after','queue.connections.beanstalkd.block_for',
'queue.connections.beanstalkd.after_commit','queue.connections.sqs.driver','queue.connections.sqs.key','queue.connections.sqs.secret','queue.connections.sqs.prefix',
'queue.connections.sqs.queue','queue.connections.sqs.suffix','queue.connections.sqs.region','queue.connections.sqs.after_commit','queue.connections.redis.driver',
'queue.connections.redis.connection','queue.connections.redis.queue','queue.connections.redis.retry_after','queue.connections.redis.block_for','queue.connections.redis.after_commit',
'queue.batching.database','queue.batching.table','queue.failed.driver','queue.failed.database','queue.failed.table',
'broadcasting.default','broadcasting.connections.reverb.driver','broadcasting.connections.reverb.key','broadcasting.connections.reverb.secret','broadcasting.connections.reverb.app_id',
'broadcasting.connections.reverb.options.host','broadcasting.connections.reverb.options.port','broadcasting.connections.reverb.options.scheme','broadcasting.connections.reverb.options.useTLS','broadcasting.connections.reverb.client_options',
'broadcasting.connections.pusher.driver','broadcasting.connections.pusher.key','broadcasting.connections.pusher.secret','broadcasting.connections.pusher.app_id','broadcasting.connections.pusher.options.cluster',
'broadcasting.connections.pusher.options.host','broadcasting.connections.pusher.options.port','broadcasting.connections.pusher.options.scheme','broadcasting.connections.pusher.options.encrypted','broadcasting.connections.pusher.options.useTLS',
'broadcasting.connections.pusher.client_options','broadcasting.connections.ably.driver','broadcasting.connections.ably.key','broadcasting.connections.log.driver','broadcasting.connections.null.driver',
'view.paths','view.compiled','cors.paths','cors.allowed_methods','cors.allowed_origins',
'cors.allowed_origins_patterns','cors.allowed_headers','cors.exposed_headers','cors.max_age','cors.supports_credentials',
'logging.default','logging.deprecations.channel','logging.deprecations.trace','logging.channels.stack.driver','logging.channels.stack.channels',
'logging.channels.stack.ignore_exceptions','logging.channels.single.driver','logging.channels.single.path','logging.channels.single.level','logging.channels.single.replace_placeholders',
'logging.channels.daily.driver','logging.channels.daily.path','logging.channels.daily.level','logging.channels.daily.days','logging.channels.daily.replace_placeholders',
'logging.channels.slack.driver','logging.channels.slack.url','logging.channels.slack.username','logging.channels.slack.emoji','logging.channels.slack.level',
'logging.channels.slack.replace_placeholders','logging.channels.papertrail.driver','logging.channels.papertrail.level','logging.channels.papertrail.handler','logging.channels.papertrail.handler_with.host',
'logging.channels.papertrail.handler_with.port','logging.channels.papertrail.handler_with.connectionString','logging.channels.papertrail.processors','logging.channels.stderr.driver','logging.channels.stderr.level',
'logging.channels.stderr.handler','logging.channels.stderr.formatter','logging.channels.stderr.with.stream','logging.channels.stderr.processors','logging.channels.syslog.driver',
'logging.channels.syslog.level','logging.channels.syslog.facility','logging.channels.syslog.replace_placeholders','logging.channels.errorlog.driver','logging.channels.errorlog.level',
'logging.channels.errorlog.replace_placeholders','logging.channels.null.driver','logging.channels.null.handler','logging.channels.emergency.path','flare.key',
'flare.flare_middleware','flare.flare_middleware.Spatie\\LaravelIgnition\\FlareMiddleware\\AddLogs.maximum_number_of_collected_logs','flare.flare_middleware.Spatie\\LaravelIgnition\\FlareMiddleware\\AddQueries.maximum_number_of_collected_queries','flare.flare_middleware.Spatie\\LaravelIgnition\\FlareMiddleware\\AddQueries.report_query_bindings','flare.flare_middleware.Spatie\\LaravelIgnition\\FlareMiddleware\\AddJobs.max_chained_job_reporting_depth',
'flare.flare_middleware.Spatie\\FlareClient\\FlareMiddleware\\CensorRequestBodyFields.censor_fields','flare.flare_middleware.Spatie\\FlareClient\\FlareMiddleware\\CensorRequestHeaders.headers','flare.send_logs_as_events','ignition.editor','ignition.theme',
'ignition.enable_share_button','ignition.register_commands','ignition.solution_providers','ignition.ignored_solution_providers','ignition.enable_runnable_solutions',
'ignition.remote_sites_path','ignition.local_sites_path','ignition.housekeeping_endpoint_prefix','ignition.settings_file_path','ignition.recorders',
'ignition.open_ai_key','ignition.with_stack_frame_arguments','ignition.argument_reducers','ide-helper.filename','ide-helper.models_filename',
'ide-helper.meta_filename','ide-helper.include_fluent','ide-helper.include_factory_builders','ide-helper.write_model_magic_where','ide-helper.write_model_external_builder_methods',
'ide-helper.write_model_relation_count_properties','ide-helper.write_eloquent_model_mixins','ide-helper.include_helpers','ide-helper.helper_files','ide-helper.model_locations',
'ide-helper.ignored_models','ide-helper.model_hooks','ide-helper.extra.Eloquent','ide-helper.extra.Session','ide-helper.magic',
'ide-helper.interfaces','ide-helper.model_camel_case_properties','ide-helper.type_overrides.integer','ide-helper.type_overrides.boolean','ide-helper.include_class_docblocks',
'ide-helper.force_fqn','ide-helper.use_generics_annotations','ide-helper.additional_relation_types','ide-helper.additional_relation_return_types','ide-helper.enforce_nullable_relationships',
'ide-helper.post_migrate','ide-helper.macroable_traits','tinker.commands','tinker.alias','tinker.dont_alias',);
        registerArgumentsSet('middleware', 
'web','api',);
        registerArgumentsSet('routes', 
'ignition.healthCheck','ignition.executeSolution','ignition.updateConfig','user.set',
'user.select','user.autologin','dash','applist','single',
'tags.index','tags.create','tags.store','tags.show','tags.edit',
'tags.update','tags.destroy','tags.show','tags.add','tags.restore',
'lookup','items.index','items.create','items.store','items.show',
'items.edit','items.update','items.destroy','items.pin','items.restore',
'items.unpin','items.pintoggle','items.order','appload','test_config',
'get_stats','search','titlecolour','users.index',
'users.create','users.store','users.show','users.edit','users.update',
'users.destroy','settings.index','settings.edit','settings.clear','settings.',
'login','logout','password.request','password.email',
'password.reset','password.update','home','item.index','item.create',
'item.store','item.show','item.edit','item.update','item.destroy',
'items.import','health',);
        registerArgumentsSet('views', 
'SupportedApps::Nzbget.config','SupportedApps::Nzbget.livestats','SupportedApps::SABnzbd.config','SupportedApps::SABnzbd.livestats','add',
'auth.login','auth.passwords.email','auth.passwords.reset','auth.register','home',
'item','items.create','items.edit','items.enable','items.form',
'items.import','items.list','items.preview','items.scripts','items.trash',
'layouts.app','layouts.users','partials.search','partials.taglist','settings.edit',
'settings.form','settings.list','sortable','tags.create','tags.edit',
'tags.form','tags.list','tags.scripts','tags.trash','users.create',
'users.edit','users.form','users.index','users.scripts','users.trash',
'userselect','welcome','laravel-exceptions::401','laravel-exceptions::402','laravel-exceptions::403',
'laravel-exceptions::404','laravel-exceptions::419','laravel-exceptions::429','laravel-exceptions::500','laravel-exceptions::503',
'laravel-exceptions::layout','laravel-exceptions::minimal','notifications::email','pagination::bootstrap-4','pagination::bootstrap-5',
'pagination::default','pagination::semantic-ui','pagination::simple-bootstrap-4','pagination::simple-bootstrap-5','pagination::simple-default',
'pagination::simple-tailwind','pagination::tailwind',);
        registerArgumentsSet('translations', 
'auth.failed','auth.password','auth.throttle','pagination.previous','pagination.next',
'passwords.reset','passwords.sent','passwords.throttled','passwords.token','passwords.user',
'passwords.password','validation.accepted','validation.accepted_if','validation.active_url','validation.after',
'validation.after_or_equal','validation.alpha','validation.alpha_dash','validation.alpha_num','validation.array',
'validation.ascii','validation.before','validation.before_or_equal','validation.between.array','validation.between.file',
'validation.between.numeric','validation.between.string','validation.boolean','validation.can','validation.confirmed',
'validation.contains','validation.current_password','validation.date','validation.date_equals','validation.date_format',
'validation.decimal','validation.declined','validation.declined_if','validation.different','validation.digits',
'validation.digits_between','validation.dimensions','validation.distinct','validation.doesnt_end_with','validation.doesnt_start_with',
'validation.email','validation.ends_with','validation.enum','validation.exists','validation.extensions',
'validation.file','validation.filled','validation.gt.array','validation.gt.file','validation.gt.numeric',
'validation.gt.string','validation.gte.array','validation.gte.file','validation.gte.numeric','validation.gte.string',
'validation.hex_color','validation.image','validation.in','validation.in_array','validation.integer',
'validation.ip','validation.ipv4','validation.ipv6','validation.json','validation.list',
'validation.lowercase','validation.lt.array','validation.lt.file','validation.lt.numeric','validation.lt.string',
'validation.lte.array','validation.lte.file','validation.lte.numeric','validation.lte.string','validation.mac_address',
'validation.max.array','validation.max.file','validation.max.numeric','validation.max.string','validation.max_digits',
'validation.mimes','validation.mimetypes','validation.min.array','validation.min.file','validation.min.numeric',
'validation.min.string','validation.min_digits','validation.missing','validation.missing_if','validation.missing_unless',
'validation.missing_with','validation.missing_with_all','validation.multiple_of','validation.not_in','validation.not_regex',
'validation.numeric','validation.password.letters','validation.password.mixed','validation.password.numbers','validation.password.symbols',
'validation.password.uncompromised','validation.present','validation.present_if','validation.present_unless','validation.present_with',
'validation.present_with_all','validation.prohibited','validation.prohibited_if','validation.prohibited_if_accepted','validation.prohibited_if_declined',
'validation.prohibited_unless','validation.prohibits','validation.regex','validation.required','validation.required_array_keys',
'validation.required_if','validation.required_if_accepted','validation.required_if_declined','validation.required_unless','validation.required_with',
'validation.required_with_all','validation.required_without','validation.required_without_all','validation.same','validation.size.array',
'validation.size.file','validation.size.numeric','validation.size.string','validation.starts_with','validation.string',
'validation.timezone','validation.unique','validation.uploaded','validation.uppercase','validation.url',
'validation.ulid','validation.uuid','validation.custom.attribute-name.rule-name','app.settings.system','app.settings.appearance',
'app.settings.miscellaneous','app.settings.support','app.settings.donate','app.settings.version','app.settings.background_image',
'app.settings.trianglify','app.settings.trianglify_seed','app.settings.window_target','app.settings.window_target.current','app.settings.window_target.one',
'app.settings.window_target.new','app.settings.homepage_search','app.settings.search_provider','app.settings.language','app.settings.reset',
'app.settings.remove','app.settings.search','app.settings.no_items','app.settings.advanced','app.settings.custom_css',
'app.settings.custom_js','app.settings.label','app.settings.value','app.settings.edit','app.settings.view',
'app.options.none','app.options.google','app.options.ddg','app.options.bing','app.options.qwant',
'app.options.startpage','app.options.yes','app.options.no','app.options.nzbhydra','app.options.jackett',
'app.buttons.save','app.buttons.cancel','app.buttons.add','app.buttons.upload','app.buttons.downloadapps',
'app.dashboard','app.dashboard.reorder','app.dashboard.settings','app.dash.pin_item','app.dash.no_apps',
'app.dash.link1','app.dash.link2','app.dash.pinned_items','app.apps.app_list','app.apps.view_trash',
'app.apps.add_application','app.apps.application_name','app.apps.colour','app.apps.icon','app.app.import',
'app.apps.pinned','app.apps.title','app.apps.hex','app.apps.username','app.apps.password',
'app.apps.config','app.apps.apikey','app.apps.enable','app.apps.tag_list','app.apps.add_tag',
'app.apps.tag_name','app.apps.tags','app.apps.override','app.apps.preview','app.apps.apptype',
'app.apps.website','app.apps.description','app.apps.only_admin_account','app.apps.autologin_url','app.apps.show_deleted',
'app.user.user_list','app.user.add_user','app.user.username','app.user.avatar','app.user.email',
'app.user.password_confirm','app.user.secure_front','app.user.autologin','app.url','app.title',
'app.delete','app.optional','app.restore','app.export','app.import',
'app.alert.success.item_created','app.alert.success.item_updated','app.alert.success.item_deleted','app.alert.success.item_restored','app.alert.success.tag_created',
'app.alert.success.tag_updated','app.alert.success.tag_deleted','app.alert.success.tag_restored','app.alert.success.updating','app.alert.success.setting_updated',
'app.alert.error.not_exist','app.alert.success.user_created','app.alert.success.user_updated','app.alert.success.user_deleted','app.alert.success.user_restored',
'app.role','app.unauthorized_for_form','app.disabled_feature','app.settings.treat_tags_as','app.settings.folders',
'app.settings.tags','app.settings.categories','app.alert.error.file_too_big','app.alert.error.file_not_stored','app.apps.import',
'app.options.baidu',);
        registerArgumentsSet('env', 
'APP_NAME','APP_ENV','APP_KEY','APP_DEBUG','APP_URL',
'APP_LOCALE','APP_FALLBACK_LOCALE','APP_FAKER_LOCALE','APP_MAINTENANCE_DRIVER','APP_MAINTENANCE_STORE',
'BCRYPT_ROUNDS','LOG_CHANNEL','LOG_STACK','DB_CONNECTION','DB_DATABASE',
'BROADCAST_CONNECTION','CACHE_STORE','QUEUE_CONNECTION','SESSION_DRIVER','SESSION_LIFETIME',
'SESSION_ENCRYPT','SESSION_PATH','SESSION_DOMAIN','QUEUE_DRIVER','REDIS_HOST',
'REDIS_PASSWORD','REDIS_PORT','MAIL_MAILER','MAIL_HOST','MAIL_PORT',
'MAIL_USERNAME','MAIL_PASSWORD','MAIL_ENCRYPTION','MAIL_FROM_ADDRESS','MAIL_FROM_NAME',
'AWS_ACCESS_KEY_ID','AWS_SECRET_ACCESS_KEY','AWS_DEFAULT_REGION','AWS_BUCKET','PUSHER_APP_ID',
'PUSHER_APP_KEY','PUSHER_APP_SECRET','PUSHER_APP_CLUSTER','MIX_PUSHER_APP_KEY','MIX_PUSHER_APP_CLUSTER',
'AUTH_ROLES_ENABLE','AUTH_ROLES_HEADER','AUTH_ROLES_HTTP_HEADER','AUTH_ROLES_ADMIN','AUTH_ROLES_DELIMITER',);
        
                expectedArguments(\Illuminate\Support\Facades\Gate::has(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Support\Facades\Gate::allows(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Support\Facades\Gate::denies(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Support\Facades\Gate::check(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Support\Facades\Gate::any(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Support\Facades\Gate::none(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Support\Facades\Gate::authorize(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Support\Facades\Gate::inspect(), 0, argumentsSet('auth'));
                expectedArguments(\Illuminate\Support\Facades\Route::can(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Support\Facades\Route::cannot(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Support\Facades\Route::cant(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Support\Facades\Auth::can(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Support\Facades\Auth::cannot(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Support\Facades\Auth::cant(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Foundation\Auth\Access\Authorizable::can(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Foundation\Auth\Access\Authorizable::cannot(), 0, argumentsSet('auth'));
    expectedArguments(\Illuminate\Foundation\Auth\Access\Authorizable::cant(), 0, argumentsSet('auth'));
                expectedArguments(\Illuminate\Contracts\Auth\Access\Authorizable::can(), 0, argumentsSet('auth'));
                expectedArguments(\Illuminate\Config\Repository::getMany(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Config\Repository::set(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Config\Repository::string(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Config\Repository::integer(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Config\Repository::boolean(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Config\Repository::float(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Config\Repository::array(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Config\Repository::prepend(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Config\Repository::push(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Support\Facades\Config::getMany(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Support\Facades\Config::set(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Support\Facades\Config::string(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Support\Facades\Config::integer(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Support\Facades\Config::boolean(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Support\Facades\Config::float(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Support\Facades\Config::array(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Support\Facades\Config::prepend(), 0, argumentsSet('configs'));
    expectedArguments(\Illuminate\Support\Facades\Config::push(), 0, argumentsSet('configs'));
                expectedArguments(\Illuminate\Support\Facades\Route::middleware(), 0, argumentsSet('middleware'));
    expectedArguments(\Illuminate\Support\Facades\Route::withoutMiddleware(), 0, argumentsSet('middleware'));
    expectedArguments(\Illuminate\Routing\Router::middleware(), 0, argumentsSet('middleware'));
    expectedArguments(\Illuminate\Routing\Router::withoutMiddleware(), 0, argumentsSet('middleware'));
                expectedArguments(\route(), 0, argumentsSet('routes'));
    expectedArguments(\to_route(), 0, argumentsSet('routes'));
    expectedArguments(\signedRoute(), 0, argumentsSet('routes'));
                expectedArguments(\Illuminate\Support\Facades\Redirect::route(), 0, argumentsSet('routes'));
    expectedArguments(\Illuminate\Support\Facades\Redirect::signedRoute(), 0, argumentsSet('routes'));
    expectedArguments(\Illuminate\Support\Facades\Redirect::temporarySignedRoute(), 0, argumentsSet('routes'));
    expectedArguments(\Illuminate\Support\Facades\URL::route(), 0, argumentsSet('routes'));
    expectedArguments(\Illuminate\Support\Facades\URL::signedRoute(), 0, argumentsSet('routes'));
    expectedArguments(\Illuminate\Support\Facades\URL::temporarySignedRoute(), 0, argumentsSet('routes'));
    expectedArguments(\Illuminate\Routing\Redirector::route(), 0, argumentsSet('routes'));
    expectedArguments(\Illuminate\Routing\Redirector::signedRoute(), 0, argumentsSet('routes'));
    expectedArguments(\Illuminate\Routing\Redirector::temporarySignedRoute(), 0, argumentsSet('routes'));
    expectedArguments(\Illuminate\Routing\UrlGenerator::route(), 0, argumentsSet('routes'));
    expectedArguments(\Illuminate\Routing\UrlGenerator::signedRoute(), 0, argumentsSet('routes'));
    expectedArguments(\Illuminate\Routing\UrlGenerator::temporarySignedRoute(), 0, argumentsSet('routes'));
                expectedArguments(\view(), 0, argumentsSet('views'));
                expectedArguments(\Illuminate\Support\Facades\View::make(), 0, argumentsSet('views'));
    expectedArguments(\Illuminate\View\Factory::make(), 0, argumentsSet('views'));
                expectedArguments(\__(), 0, argumentsSet('translations'));
    expectedArguments(\trans(), 0, argumentsSet('translations'));
                expectedArguments(\Illuminate\Contracts\Translation\Translator::get(), 0, argumentsSet('translations'));
                expectedArguments(\env(), 0, argumentsSet('env'));
                expectedArguments(\Illuminate\Support\Env::get(), 0, argumentsSet('env'));
            
}


================================================
FILE: .vscode/launch.json
================================================
{
    "version": "0.2.0",
    "configurations": [
      {
        "name": "Listen for Xdebug",
        "type": "php",
        "request": "launch",
        "port": 9003,
        "pathMappings": {
          "/var/www/html": "${workspaceFolder}"
        }
      }
    ]
  }
  

================================================
FILE: .vscode/tasks.json
================================================
{
    "version": "2.0.0",
    "tasks": [
      {
        "label": "Start Docker Compose",
        "type": "shell",
        "command": "docker-compose up --build",
        "group": {
          "kind": "build",
          "isDefault": true
        },
        "problemMatcher": []
      }
    ]
  }
  

================================================
FILE: CHANGELOG.md
================================================
# Release Notes

## v1.4.0 (2018-02-18)

### Added
- Tag(folder) support
- Image preview for uploading icons
- A load of supported apps, full list of apps https://github.com/linuxserver/Heimdall/projects/1

### Changed
- Edited vendor/laravelcollective/html/src/FormBuilder.php to allow relative links #3369de9
- Changed links to use relative links for reverse proxy support
- Links open in new tab

### Fixed
- adds all the fixes in the 1.3.x point releases and on master

## v1.3.0 (2018-02-09)

### Added
- guzzlehttp/guzzle as a dependency
- Variable polling, so interval is increased when an app is idle and decreased when it's active
- Turkish language translation
- Added Sabnzbd enhanced application

### Changed
- Updated composer dependencies
- Added live stats to Nzbget supported application  
- Changed Pihole to an enhanced application
- Changed NZBGet to an enhanced application

### Fixed
- Fixed autocomplete being hard to see
- Fixed checkboxes not working on edge


## v1.2.0 (2018-02-07)

### Added
- Translation support
- Initial "Supported" application support
- Finnish translation
- Swedish translation
- German translation
- French translation
- Spanish translation
- Duplicati supported application
- Emby supported application
- Nzbget supported application
- Pfsense supported application
- Pihole supported application
- Plex supported application
- Portainer supported application
- Unifi supported application

### Changed
- button layout and behaviour

### Fixed
- Bottom of button too short in some browsers
- Icon not loading back in when required fields not filled in


## v1.1.0 (2018-02-05)

### Added
- Ability to change background
- Settings section
- Update procedure
- Google/DuckDuckGo/Bing search from homepage
- Added edit button to tile page

### Changed
- Icon used to put tiles into config mode


================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2018 Chris Hunt

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


================================================
FILE: _config.yml
================================================
theme: jekyll-theme-tactile

================================================
FILE: _ide_helper.php
================================================
<?php
/* @noinspection ALL */
// @formatter:off
// phpcs:ignoreFile

/**
 * A helper file for Laravel, to provide autocomplete information to your IDE
 * Generated for Laravel 11.45.1.
 *
 * This file should not be included in your code, only analyzed by your IDE!
 *
 * @author Barry vd. Heuvel <barryvdh@gmail.com>
 * @see https://github.com/barryvdh/laravel-ide-helper
 */
namespace Illuminate\Support\Facades {
    /**
     * 
     *
     * @see \Illuminate\Foundation\Application
     */
    class App {
        /**
         * Begin configuring a new Laravel application instance.
         *
         * @param string|null $basePath
         * @return \Illuminate\Foundation\Configuration\ApplicationBuilder 
         * @static 
         */
        public static function configure($basePath = null)
        {
            return \Illuminate\Foundation\Application::configure($basePath);
        }

        /**
         * Infer the application's base directory from the environment.
         *
         * @return string 
         * @static 
         */
        public static function inferBasePath()
        {
            return \Illuminate\Foundation\Application::inferBasePath();
        }

        /**
         * Get the version number of the application.
         *
         * @return string 
         * @static 
         */
        public static function version()
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->version();
        }

        /**
         * Run the given array of bootstrap classes.
         *
         * @param string[] $bootstrappers
         * @return void 
         * @static 
         */
        public static function bootstrapWith($bootstrappers)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            $instance->bootstrapWith($bootstrappers);
        }

        /**
         * Register a callback to run after loading the environment.
         *
         * @param \Closure $callback
         * @return void 
         * @static 
         */
        public static function afterLoadingEnvironment($callback)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            $instance->afterLoadingEnvironment($callback);
        }

        /**
         * Register a callback to run before a bootstrapper.
         *
         * @param string $bootstrapper
         * @param \Closure $callback
         * @return void 
         * @static 
         */
        public static function beforeBootstrapping($bootstrapper, $callback)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            $instance->beforeBootstrapping($bootstrapper, $callback);
        }

        /**
         * Register a callback to run after a bootstrapper.
         *
         * @param string $bootstrapper
         * @param \Closure $callback
         * @return void 
         * @static 
         */
        public static function afterBootstrapping($bootstrapper, $callback)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            $instance->afterBootstrapping($bootstrapper, $callback);
        }

        /**
         * Determine if the application has been bootstrapped before.
         *
         * @return bool 
         * @static 
         */
        public static function hasBeenBootstrapped()
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->hasBeenBootstrapped();
        }

        /**
         * Set the base path for the application.
         *
         * @param string $basePath
         * @return \Illuminate\Foundation\Application 
         * @static 
         */
        public static function setBasePath($basePath)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->setBasePath($basePath);
        }

        /**
         * Get the path to the application "app" directory.
         *
         * @param string $path
         * @return string 
         * @static 
         */
        public static function path($path = '')
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->path($path);
        }

        /**
         * Set the application directory.
         *
         * @param string $path
         * @return \Illuminate\Foundation\Application 
         * @static 
         */
        public static function useAppPath($path)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->useAppPath($path);
        }

        /**
         * Get the base path of the Laravel installation.
         *
         * @param string $path
         * @return string 
         * @static 
         */
        public static function basePath($path = '')
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->basePath($path);
        }

        /**
         * Get the path to the bootstrap directory.
         *
         * @param string $path
         * @return string 
         * @static 
         */
        public static function bootstrapPath($path = '')
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->bootstrapPath($path);
        }

        /**
         * Get the path to the service provider list in the bootstrap directory.
         *
         * @return string 
         * @static 
         */
        public static function getBootstrapProvidersPath()
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->getBootstrapProvidersPath();
        }

        /**
         * Set the bootstrap file directory.
         *
         * @param string $path
         * @return \Illuminate\Foundation\Application 
         * @static 
         */
        public static function useBootstrapPath($path)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->useBootstrapPath($path);
        }

        /**
         * Get the path to the application configuration files.
         *
         * @param string $path
         * @return string 
         * @static 
         */
        public static function configPath($path = '')
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->configPath($path);
        }

        /**
         * Set the configuration directory.
         *
         * @param string $path
         * @return \Illuminate\Foundation\Application 
         * @static 
         */
        public static function useConfigPath($path)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->useConfigPath($path);
        }

        /**
         * Get the path to the database directory.
         *
         * @param string $path
         * @return string 
         * @static 
         */
        public static function databasePath($path = '')
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->databasePath($path);
        }

        /**
         * Set the database directory.
         *
         * @param string $path
         * @return \Illuminate\Foundation\Application 
         * @static 
         */
        public static function useDatabasePath($path)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->useDatabasePath($path);
        }

        /**
         * Get the path to the language files.
         *
         * @param string $path
         * @return string 
         * @static 
         */
        public static function langPath($path = '')
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->langPath($path);
        }

        /**
         * Set the language file directory.
         *
         * @param string $path
         * @return \Illuminate\Foundation\Application 
         * @static 
         */
        public static function useLangPath($path)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->useLangPath($path);
        }

        /**
         * Get the path to the public / web directory.
         *
         * @param string $path
         * @return string 
         * @static 
         */
        public static function publicPath($path = '')
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->publicPath($path);
        }

        /**
         * Set the public / web directory.
         *
         * @param string $path
         * @return \Illuminate\Foundation\Application 
         * @static 
         */
        public static function usePublicPath($path)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->usePublicPath($path);
        }

        /**
         * Get the path to the storage directory.
         *
         * @param string $path
         * @return string 
         * @static 
         */
        public static function storagePath($path = '')
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->storagePath($path);
        }

        /**
         * Set the storage directory.
         *
         * @param string $path
         * @return \Illuminate\Foundation\Application 
         * @static 
         */
        public static function useStoragePath($path)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->useStoragePath($path);
        }

        /**
         * Get the path to the resources directory.
         *
         * @param string $path
         * @return string 
         * @static 
         */
        public static function resourcePath($path = '')
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->resourcePath($path);
        }

        /**
         * Get the path to the views directory.
         * 
         * This method returns the first configured path in the array of view paths.
         *
         * @param string $path
         * @return string 
         * @static 
         */
        public static function viewPath($path = '')
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->viewPath($path);
        }

        /**
         * Join the given paths together.
         *
         * @param string $basePath
         * @param string $path
         * @return string 
         * @static 
         */
        public static function joinPaths($basePath, $path = '')
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->joinPaths($basePath, $path);
        }

        /**
         * Get the path to the environment file directory.
         *
         * @return string 
         * @static 
         */
        public static function environmentPath()
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->environmentPath();
        }

        /**
         * Set the directory for the environment file.
         *
         * @param string $path
         * @return \Illuminate\Foundation\Application 
         * @static 
         */
        public static function useEnvironmentPath($path)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->useEnvironmentPath($path);
        }

        /**
         * Set the environment file to be loaded during bootstrapping.
         *
         * @param string $file
         * @return \Illuminate\Foundation\Application 
         * @static 
         */
        public static function loadEnvironmentFrom($file)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->loadEnvironmentFrom($file);
        }

        /**
         * Get the environment file the application is using.
         *
         * @return string 
         * @static 
         */
        public static function environmentFile()
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->environmentFile();
        }

        /**
         * Get the fully qualified path to the environment file.
         *
         * @return string 
         * @static 
         */
        public static function environmentFilePath()
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->environmentFilePath();
        }

        /**
         * Get or check the current application environment.
         *
         * @param string|array $environments
         * @return string|bool 
         * @static 
         */
        public static function environment(...$environments)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->environment(...$environments);
        }

        /**
         * Determine if the application is in the local environment.
         *
         * @return bool 
         * @static 
         */
        public static function isLocal()
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->isLocal();
        }

        /**
         * Determine if the application is in the production environment.
         *
         * @return bool 
         * @static 
         */
        public static function isProduction()
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->isProduction();
        }

        /**
         * Detect the application's current environment.
         *
         * @param \Closure $callback
         * @return string 
         * @static 
         */
        public static function detectEnvironment($callback)
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->detectEnvironment($callback);
        }

        /**
         * Determine if the application is running in the console.
         *
         * @return bool 
         * @static 
         */
        public static function runningInConsole()
        {
            /** @var \Illuminate\Foundation\Application $instance */
            return $instance->runningInConsole();
        }

        /**
         * Determine if the application is running any of the given console commands.
     
Download .txt
Showing preview only (822K chars total). Download the full file or copy to clipboard to get everything.
gitextract_mms3jl0v/

├── .eslintignore
├── .eslintrc
├── .gitattributes
├── .github/
│   └── workflows/
│       ├── call_issue_pr_tracker.yml
│       ├── call_issues_cron.yml
│       └── ci.yml
├── .gitignore
├── .phpstorm.meta.php
├── .vscode/
│   ├── launch.json
│   └── tasks.json
├── CHANGELOG.md
├── LICENSE
├── _config.yml
├── _ide_helper.php
├── app/
│   ├── Application.php
│   ├── Console/
│   │   └── Commands/
│   │       └── RegisterApp.php
│   ├── EnhancedApps.php
│   ├── Facades/
│   │   └── Form.php
│   ├── Helper.php
│   ├── Http/
│   │   ├── Controllers/
│   │   │   ├── Auth/
│   │   │   │   ├── ForgotPasswordController.php
│   │   │   │   ├── LoginController.php
│   │   │   │   ├── RegisterController.php
│   │   │   │   └── ResetPasswordController.php
│   │   │   ├── Controller.php
│   │   │   ├── HealthController.php
│   │   │   ├── HomeController.php
│   │   │   ├── ImportController.php
│   │   │   ├── ItemController.php
│   │   │   ├── ItemRestController.php
│   │   │   ├── SearchController.php
│   │   │   ├── SettingsController.php
│   │   │   ├── TagController.php
│   │   │   └── UserController.php
│   │   └── Middleware/
│   │       ├── CheckAllowed.php
│   │       ├── RedirectIfAuthenticated.php
│   │       └── TrustProxies.php
│   ├── Item.php
│   ├── ItemTag.php
│   ├── Jobs/
│   │   ├── ProcessApps.php
│   │   └── UpdateApps.php
│   ├── Providers/
│   │   ├── AppServiceProvider.php
│   │   └── RouteServiceProvider.php
│   ├── Search.php
│   ├── SearchInterface.php
│   ├── Services/
│   │   └── CustomFormBuilder.php
│   ├── Setting.php
│   ├── SettingGroup.php
│   ├── SettingUser.php
│   ├── SupportedApps.php
│   └── User.php
├── artisan
├── bootstrap/
│   ├── app.php
│   ├── cache/
│   │   └── .gitignore
│   └── providers.php
├── composer.json
├── config/
│   ├── .gitkeep
│   ├── app.php
│   ├── auth.php
│   ├── database.php
│   ├── filesystems.php
│   ├── github.php
│   ├── mail.php
│   └── services.php
├── css/
│   └── app.css
├── database/
│   ├── .gitignore
│   ├── factories/
│   │   ├── ItemFactory.php
│   │   ├── ItemTagFactory.php
│   │   └── UserFactory.php
│   ├── migrations/
│   │   ├── 2018_01_27_155922_create_items_table.php
│   │   ├── 2018_02_04_185524_create_settings_table.php
│   │   ├── 2018_02_04_185802_create_setting_groups_table.php
│   │   ├── 2018_02_16_175830_add_columns_to_items_for_groups.php
│   │   ├── 2018_02_16_193703_item_tag.php
│   │   ├── 2018_10_12_122907_create_users_table.php
│   │   ├── 2018_10_12_123036_create_password_resets_table.php
│   │   ├── 2018_10_12_131222_add_user_id_to_items_table.php
│   │   ├── 2018_10_12_140451_create_setting_user_pivot_table.php
│   │   ├── 2018_10_18_110905_create_applications_table.php
│   │   ├── 2018_10_23_132008_add_class_to_items_table.php
│   │   ├── 2018_10_31_191604_create_jobs_table.php
│   │   ├── 2018_11_06_112434_create_failed_jobs_table.php
│   │   ├── 2022_03_15_140911_add_appid_to_items.php
│   │   ├── 2022_03_16_093044_add_class_to_application.php
│   │   ├── 2022_03_16_181343_add_app_description_to_items.php
│   │   ├── 2023_01_27_121000_add_role_to_item.php
│   │   ├── 2024_02_16_000000_rename_password_resets_table.php
│   │   └── 2025_07_17_134226_create_cache_table.php
│   └── seeders/
│       ├── DatabaseSeeder.php
│       ├── SettingsSeeder.php
│       └── UsersSeeder.php
├── docker/
│   ├── docker-compose.yml
│   ├── nginx/
│   │   ├── Dockerfile
│   │   └── default.conf
│   └── php/
│       └── Dockerfile
├── lang/
│   ├── br/
│   │   └── app.php
│   ├── cs/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── da/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── de/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── el/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── en/
│   │   ├── app.php
│   │   └── passwords.php
│   ├── es/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── fi/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── fr/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── hu/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── it/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── jp/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── ko/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── lmo/
│   │   └── app.php
│   ├── nl/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── no/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── pl/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── pt/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── rs/
│   │   └── app.php
│   ├── ru/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── sl/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── sv/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   └── passwords.php
│   ├── tr/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── uk/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   ├── zh/
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   └── zh_TW/
│       ├── app.php
│       ├── auth.php
│       ├── pagination.php
│       └── passwords.php
├── mix-manifest.json
├── package.json
├── phpcs.xml
├── phpunit.xml
├── public/
│   ├── .htaccess
│   ├── browserconfig.xml
│   ├── css/
│   │   └── app.css
│   ├── index.php
│   ├── js/
│   │   ├── app.js
│   │   ├── fontawesome.js
│   │   └── trianglify.js
│   ├── manifest.json
│   ├── mix-manifest.json
│   └── robots.txt
├── readme.md
├── resources/
│   ├── assets/
│   │   ├── js/
│   │   │   ├── app.js
│   │   │   ├── bootstrap.js
│   │   │   ├── components/
│   │   │   │   └── ExampleComponent.vue
│   │   │   ├── huebee.js
│   │   │   ├── itemExport.js
│   │   │   ├── itemImport.js
│   │   │   ├── keyBindings.js
│   │   │   └── liveStatRefresh.js
│   │   └── sass/
│   │       ├── _app.scss
│   │       ├── _huebee.scss
│   │       ├── _normalise.scss
│   │       ├── _rune.scss
│   │       ├── _select2.scss
│   │       ├── _variables.scss
│   │       └── app.scss
│   └── views/
│       ├── add.blade.php
│       ├── auth/
│       │   ├── login.blade.php
│       │   ├── passwords/
│       │   │   ├── email.blade.php
│       │   │   └── reset.blade.php
│       │   └── register.blade.php
│       ├── home.blade.php
│       ├── item.blade.php
│       ├── items/
│       │   ├── create.blade.php
│       │   ├── edit.blade.php
│       │   ├── enable.blade.php
│       │   ├── form.blade.php
│       │   ├── import.blade.php
│       │   ├── list.blade.php
│       │   ├── preview.blade.php
│       │   ├── scripts.blade.php
│       │   └── trash.blade.php
│       ├── layouts/
│       │   ├── app.blade.php
│       │   └── users.blade.php
│       ├── partials/
│       │   ├── search.blade.php
│       │   └── taglist.blade.php
│       ├── settings/
│       │   ├── edit.blade.php
│       │   ├── form.blade.php
│       │   └── list.blade.php
│       ├── sortable.blade.php
│       ├── tags/
│       │   ├── create.blade.php
│       │   ├── edit.blade.php
│       │   ├── form.blade.php
│       │   ├── list.blade.php
│       │   ├── scripts.blade.php
│       │   └── trash.blade.php
│       ├── users/
│       │   ├── create.blade.php
│       │   ├── edit.blade.php
│       │   ├── form.blade.php
│       │   ├── index.blade.php
│       │   ├── scripts.blade.php
│       │   └── trash.blade.php
│       ├── userselect.blade.php
│       └── welcome.blade.php
├── routes/
│   ├── api.php
│   ├── channels.php
│   ├── console.php
│   └── web.php
├── storage/
│   ├── app/
│   │   ├── .gitignore
│   │   ├── public/
│   │   │   └── .gitignore
│   │   ├── searchproviders.yaml
│   │   └── supportedapps.json
│   ├── framework/
│   │   ├── .gitignore
│   │   ├── cache/
│   │   │   └── .gitignore
│   │   ├── sessions/
│   │   │   └── .gitignore
│   │   ├── testing/
│   │   │   └── .gitignore
│   │   └── views/
│   │       └── .gitignore
│   └── logs/
│       └── .gitignore
├── tests/
│   ├── Feature/
│   │   ├── DashTest.php
│   │   ├── ImportTest.php
│   │   ├── ItemCreateTest.php
│   │   ├── ItemDeleteTest.php
│   │   ├── ItemExportTest.php
│   │   ├── ItemListTest.php
│   │   ├── SVGSanitizerTest.php
│   │   ├── SearchTest.php
│   │   ├── SettingsTest.php
│   │   ├── TagListTest.php
│   │   ├── UserEditTest.php
│   │   └── UserListTest.php
│   ├── TestCase.php
│   └── Unit/
│       ├── database/
│       │   └── seeders/
│       │       └── SettingsSeederTest.php
│       ├── helpers/
│       │   ├── IsImageTest.php
│       │   └── SlugTest.php
│       └── lang/
│           └── LangTest.php
├── vendor/
│   ├── autoload.php
│   ├── aws/
│   │   ├── aws-crt-php/
│   │   │   ├── CODE_OF_CONDUCT.md
│   │   │   ├── LICENSE
│   │   │   ├── NOTICE
│   │   │   ├── README.md
│   │   │   ├── composer.json
│   │   │   ├── format-check.py
│   │   │   └── src/
│   │   │       └── AWS/
│   │   │           └── CRT/
│   │   │               ├── Auth/
│   │   │               │   ├── AwsCredentials.php
│   │   │               │   ├── CredentialsProvider.php
│   │   │               │   ├── Signable.php
│   │   │               │   ├── SignatureType.php
│   │   │               │   ├── SignedBodyHeaderType.php
│   │   │               │   ├── Signing.php
│   │   │               │   ├── SigningAlgorithm.php
│   │   │               │   ├── SigningConfigAWS.php
│   │   │               │   ├── SigningResult.php
│   │   │               │   └── StaticCredentialsProvider.php
│   │   │               ├── CRT.php
│   │   │               ├── HTTP/
│   │   │               │   ├── Headers.php
│   │   │               │   ├── Message.php
│   │   │               │   ├── Request.php
│   │   │               │   └── Response.php
│   │   │               ├── IO/
│   │   │               │   ├── EventLoopGroup.php
│   │   │               │   └── InputStream.php
│   │   │               ├── Internal/
│   │   │               │   ├── Encoding.php
│   │   │               │   └── Extension.php
│   │   │               ├── Log.php
│   │   │               ├── NativeResource.php
│   │   │               └── Options.php
│   │   └── aws-sdk-php/
│   │       ├── CODE_OF_CONDUCT.md
│   │       ├── CRT_INSTRUCTIONS.md
│   │       ├── LICENSE
│   │       ├── NOTICE
│   │       ├── THIRD-PARTY-LICENSES
│   │       ├── composer.json
│   │       └── src/
│   │           ├── ACMPCA/
│   │           │   ├── ACMPCAClient.php
│   │           │   └── Exception/
│   │           │       └── ACMPCAException.php
│   │           ├── AIOps/
│   │           │   ├── AIOpsClient.php
│   │           │   └── Exception/
│   │           │       └── AIOpsException.php
│   │           ├── ARCZonalShift/
│   │           │   ├── ARCZonalShiftClient.php
│   │           │   └── Exception/
│   │           │       └── ARCZonalShiftException.php
│   │           ├── AbstractConfigurationProvider.php
│   │           ├── AccessAnalyzer/
│   │           │   ├── AccessAnalyzerClient.php
│   │           │   └── Exception/
│   │           │       └── AccessAnalyzerException.php
│   │           ├── Account/
│   │           │   ├── AccountClient.php
│   │           │   └── Exception/
│   │           │       └── AccountException.php
│   │           ├── Acm/
│   │           │   ├── AcmClient.php
│   │           │   └── Exception/
│   │           │       └── AcmException.php
│   │           ├── Amplify/
│   │           │   ├── AmplifyClient.php
│   │           │   └── Exception/
│   │           │       └── AmplifyException.php
│   │           ├── AmplifyBackend/
│   │           │   ├── AmplifyBackendClient.php
│   │           │   └── Exception/
│   │           │       └── AmplifyBackendException.php
│   │           ├── AmplifyUIBuilder/
│   │           │   ├── AmplifyUIBuilderClient.php
│   │           │   └── Exception/
│   │           │       └── AmplifyUIBuilderException.php
│   │           ├── Api/
│   │           │   ├── AbstractModel.php
│   │           │   ├── ApiProvider.php
│   │           │   ├── DateTimeResult.php
│   │           │   ├── DocModel.php
│   │           │   ├── ErrorParser/
│   │           │   │   ├── AbstractErrorParser.php
│   │           │   │   ├── JsonParserTrait.php
│   │           │   │   ├── JsonRpcErrorParser.php
│   │           │   │   ├── RestJsonErrorParser.php
│   │           │   │   └── XmlErrorParser.php
│   │           │   ├── ListShape.php
│   │           │   ├── MapShape.php
│   │           │   ├── Operation.php
│   │           │   ├── Parser/
│   │           │   │   ├── AbstractParser.php
│   │           │   │   ├── AbstractRestParser.php
│   │           │   │   ├── Crc32ValidatingParser.php
│   │           │   │   ├── DecodingEventStreamIterator.php
│   │           │   │   ├── EventParsingIterator.php
│   │           │   │   ├── Exception/
│   │           │   │   │   └── ParserException.php
│   │           │   │   ├── JsonParser.php
│   │           │   │   ├── JsonRpcParser.php
│   │           │   │   ├── MetadataParserTrait.php
│   │           │   │   ├── NonSeekableStreamDecodingEventStreamIterator.php
│   │           │   │   ├── PayloadParserTrait.php
│   │           │   │   ├── QueryParser.php
│   │           │   │   ├── RestJsonParser.php
│   │           │   │   ├── RestXmlParser.php
│   │           │   │   └── XmlParser.php
│   │           │   ├── Serializer/
│   │           │   │   ├── Ec2ParamBuilder.php
│   │           │   │   ├── JsonBody.php
│   │           │   │   ├── JsonRpcSerializer.php
│   │           │   │   ├── QueryParamBuilder.php
│   │           │   │   ├── QuerySerializer.php
│   │           │   │   ├── RestJsonSerializer.php
│   │           │   │   ├── RestSerializer.php
│   │           │   │   ├── RestXmlSerializer.php
│   │           │   │   └── XmlBody.php
│   │           │   ├── Service.php
│   │           │   ├── Shape.php
│   │           │   ├── ShapeMap.php
│   │           │   ├── StructureShape.php
│   │           │   ├── SupportedProtocols.php
│   │           │   ├── TimestampShape.php
│   │           │   └── Validator.php
│   │           ├── ApiGateway/
│   │           │   ├── ApiGatewayClient.php
│   │           │   └── Exception/
│   │           │       └── ApiGatewayException.php
│   │           ├── ApiGatewayManagementApi/
│   │           │   ├── ApiGatewayManagementApiClient.php
│   │           │   └── Exception/
│   │           │       └── ApiGatewayManagementApiException.php
│   │           ├── ApiGatewayV2/
│   │           │   ├── ApiGatewayV2Client.php
│   │           │   └── Exception/
│   │           │       └── ApiGatewayV2Exception.php
│   │           ├── AppConfig/
│   │           │   ├── AppConfigClient.php
│   │           │   └── Exception/
│   │           │       └── AppConfigException.php
│   │           ├── AppConfigData/
│   │           │   ├── AppConfigDataClient.php
│   │           │   └── Exception/
│   │           │       └── AppConfigDataException.php
│   │           ├── AppFabric/
│   │           │   ├── AppFabricClient.php
│   │           │   └── Exception/
│   │           │       └── AppFabricException.php
│   │           ├── AppIntegrationsService/
│   │           │   ├── AppIntegrationsServiceClient.php
│   │           │   └── Exception/
│   │           │       └── AppIntegrationsServiceException.php
│   │           ├── AppMesh/
│   │           │   ├── AppMeshClient.php
│   │           │   └── Exception/
│   │           │       └── AppMeshException.php
│   │           ├── AppRegistry/
│   │           │   ├── AppRegistryClient.php
│   │           │   └── Exception/
│   │           │       └── AppRegistryException.php
│   │           ├── AppRunner/
│   │           │   ├── AppRunnerClient.php
│   │           │   └── Exception/
│   │           │       └── AppRunnerException.php
│   │           ├── AppSync/
│   │           │   ├── AppSyncClient.php
│   │           │   └── Exception/
│   │           │       └── AppSyncException.php
│   │           ├── AppTest/
│   │           │   ├── AppTestClient.php
│   │           │   └── Exception/
│   │           │       └── AppTestException.php
│   │           ├── Appflow/
│   │           │   ├── AppflowClient.php
│   │           │   └── Exception/
│   │           │       └── AppflowException.php
│   │           ├── ApplicationAutoScaling/
│   │           │   ├── ApplicationAutoScalingClient.php
│   │           │   └── Exception/
│   │           │       └── ApplicationAutoScalingException.php
│   │           ├── ApplicationCostProfiler/
│   │           │   ├── ApplicationCostProfilerClient.php
│   │           │   └── Exception/
│   │           │       └── ApplicationCostProfilerException.php
│   │           ├── ApplicationDiscoveryService/
│   │           │   ├── ApplicationDiscoveryServiceClient.php
│   │           │   └── Exception/
│   │           │       └── ApplicationDiscoveryServiceException.php
│   │           ├── ApplicationInsights/
│   │           │   ├── ApplicationInsightsClient.php
│   │           │   └── Exception/
│   │           │       └── ApplicationInsightsException.php
│   │           ├── ApplicationSignals/
│   │           │   ├── ApplicationSignalsClient.php
│   │           │   └── Exception/
│   │           │       └── ApplicationSignalsException.php
│   │           ├── Appstream/
│   │           │   ├── AppstreamClient.php
│   │           │   └── Exception/
│   │           │       └── AppstreamException.php
│   │           ├── Arn/
│   │           │   ├── AccessPointArn.php
│   │           │   ├── AccessPointArnInterface.php
│   │           │   ├── Arn.php
│   │           │   ├── ArnInterface.php
│   │           │   ├── ArnParser.php
│   │           │   ├── Exception/
│   │           │   │   └── InvalidArnException.php
│   │           │   ├── ObjectLambdaAccessPointArn.php
│   │           │   ├── ResourceTypeAndIdTrait.php
│   │           │   └── S3/
│   │           │       ├── AccessPointArn.php
│   │           │       ├── BucketArnInterface.php
│   │           │       ├── MultiRegionAccessPointArn.php
│   │           │       ├── OutpostsAccessPointArn.php
│   │           │       ├── OutpostsArnInterface.php
│   │           │       └── OutpostsBucketArn.php
│   │           ├── Artifact/
│   │           │   ├── ArtifactClient.php
│   │           │   └── Exception/
│   │           │       └── ArtifactException.php
│   │           ├── Athena/
│   │           │   ├── AthenaClient.php
│   │           │   └── Exception/
│   │           │       └── AthenaException.php
│   │           ├── AuditManager/
│   │           │   ├── AuditManagerClient.php
│   │           │   └── Exception/
│   │           │       └── AuditManagerException.php
│   │           ├── AugmentedAIRuntime/
│   │           │   ├── AugmentedAIRuntimeClient.php
│   │           │   └── Exception/
│   │           │       └── AugmentedAIRuntimeException.php
│   │           ├── Auth/
│   │           │   ├── AuthSchemeResolver.php
│   │           │   ├── AuthSchemeResolverInterface.php
│   │           │   ├── AuthSelectionMiddleware.php
│   │           │   └── Exception/
│   │           │       └── UnresolvedAuthSchemeException.php
│   │           ├── AutoScaling/
│   │           │   ├── AutoScalingClient.php
│   │           │   └── Exception/
│   │           │       └── AutoScalingException.php
│   │           ├── AutoScalingPlans/
│   │           │   ├── AutoScalingPlansClient.php
│   │           │   └── Exception/
│   │           │       └── AutoScalingPlansException.php
│   │           ├── AwsClient.php
│   │           ├── AwsClientInterface.php
│   │           ├── AwsClientTrait.php
│   │           ├── B2bi/
│   │           │   ├── B2biClient.php
│   │           │   └── Exception/
│   │           │       └── B2biException.php
│   │           ├── BCMDataExports/
│   │           │   ├── BCMDataExportsClient.php
│   │           │   └── Exception/
│   │           │       └── BCMDataExportsException.php
│   │           ├── BCMPricingCalculator/
│   │           │   ├── BCMPricingCalculatorClient.php
│   │           │   └── Exception/
│   │           │       └── BCMPricingCalculatorException.php
│   │           ├── Backup/
│   │           │   ├── BackupClient.php
│   │           │   └── Exception/
│   │           │       └── BackupException.php
│   │           ├── BackupGateway/
│   │           │   ├── BackupGatewayClient.php
│   │           │   └── Exception/
│   │           │       └── BackupGatewayException.php
│   │           ├── BackupSearch/
│   │           │   ├── BackupSearchClient.php
│   │           │   └── Exception/
│   │           │       └── BackupSearchException.php
│   │           ├── Batch/
│   │           │   ├── BatchClient.php
│   │           │   └── Exception/
│   │           │       └── BatchException.php
│   │           ├── Bedrock/
│   │           │   ├── BedrockClient.php
│   │           │   └── Exception/
│   │           │       └── BedrockException.php
│   │           ├── BedrockAgent/
│   │           │   ├── BedrockAgentClient.php
│   │           │   └── Exception/
│   │           │       └── BedrockAgentException.php
│   │           ├── BedrockAgentRuntime/
│   │           │   ├── BedrockAgentRuntimeClient.php
│   │           │   └── Exception/
│   │           │       └── BedrockAgentRuntimeException.php
│   │           ├── BedrockDataAutomation/
│   │           │   ├── BedrockDataAutomationClient.php
│   │           │   └── Exception/
│   │           │       └── BedrockDataAutomationException.php
│   │           ├── BedrockDataAutomationRuntime/
│   │           │   ├── BedrockDataAutomationRuntimeClient.php
│   │           │   └── Exception/
│   │           │       └── BedrockDataAutomationRuntimeException.php
│   │           ├── BedrockRuntime/
│   │           │   ├── BedrockRuntimeClient.php
│   │           │   └── Exception/
│   │           │       └── BedrockRuntimeException.php
│   │           ├── Billing/
│   │           │   ├── BillingClient.php
│   │           │   └── Exception/
│   │           │       └── BillingException.php
│   │           ├── BillingConductor/
│   │           │   ├── BillingConductorClient.php
│   │           │   └── Exception/
│   │           │       └── BillingConductorException.php
│   │           ├── Braket/
│   │           │   ├── BraketClient.php
│   │           │   └── Exception/
│   │           │       └── BraketException.php
│   │           ├── Budgets/
│   │           │   ├── BudgetsClient.php
│   │           │   └── Exception/
│   │           │       └── BudgetsException.php
│   │           ├── CacheInterface.php
│   │           ├── Chatbot/
│   │           │   ├── ChatbotClient.php
│   │           │   └── Exception/
│   │           │       └── ChatbotException.php
│   │           ├── Chime/
│   │           │   ├── ChimeClient.php
│   │           │   └── Exception/
│   │           │       └── ChimeException.php
│   │           ├── ChimeSDKIdentity/
│   │           │   ├── ChimeSDKIdentityClient.php
│   │           │   └── Exception/
│   │           │       └── ChimeSDKIdentityException.php
│   │           ├── ChimeSDKMediaPipelines/
│   │           │   ├── ChimeSDKMediaPipelinesClient.php
│   │           │   └── Exception/
│   │           │       └── ChimeSDKMediaPipelinesException.php
│   │           ├── ChimeSDKMeetings/
│   │           │   ├── ChimeSDKMeetingsClient.php
│   │           │   └── Exception/
│   │           │       └── ChimeSDKMeetingsException.php
│   │           ├── ChimeSDKMessaging/
│   │           │   ├── ChimeSDKMessagingClient.php
│   │           │   └── Exception/
│   │           │       └── ChimeSDKMessagingException.php
│   │           ├── ChimeSDKVoice/
│   │           │   ├── ChimeSDKVoiceClient.php
│   │           │   └── Exception/
│   │           │       └── ChimeSDKVoiceException.php
│   │           ├── CleanRooms/
│   │           │   ├── CleanRoomsClient.php
│   │           │   └── Exception/
│   │           │       └── CleanRoomsException.php
│   │           ├── CleanRoomsML/
│   │           │   ├── CleanRoomsMLClient.php
│   │           │   └── Exception/
│   │           │       └── CleanRoomsMLException.php
│   │           ├── ClientResolver.php
│   │           ├── ClientSideMonitoring/
│   │           │   ├── AbstractMonitoringMiddleware.php
│   │           │   ├── ApiCallAttemptMonitoringMiddleware.php
│   │           │   ├── ApiCallMonitoringMiddleware.php
│   │           │   ├── Configuration.php
│   │           │   ├── ConfigurationInterface.php
│   │           │   ├── ConfigurationProvider.php
│   │           │   ├── Exception/
│   │           │   │   └── ConfigurationException.php
│   │           │   └── MonitoringMiddlewareInterface.php
│   │           ├── Cloud9/
│   │           │   ├── Cloud9Client.php
│   │           │   └── Exception/
│   │           │       └── Cloud9Exception.php
│   │           ├── CloudControlApi/
│   │           │   ├── CloudControlApiClient.php
│   │           │   └── Exception/
│   │           │       └── CloudControlApiException.php
│   │           ├── CloudDirectory/
│   │           │   ├── CloudDirectoryClient.php
│   │           │   └── Exception/
│   │           │       └── CloudDirectoryException.php
│   │           ├── CloudFormation/
│   │           │   ├── CloudFormationClient.php
│   │           │   └── Exception/
│   │           │       └── CloudFormationException.php
│   │           ├── CloudFront/
│   │           │   ├── CloudFrontClient.php
│   │           │   ├── CookieSigner.php
│   │           │   ├── Exception/
│   │           │   │   └── CloudFrontException.php
│   │           │   ├── Signer.php
│   │           │   └── UrlSigner.php
│   │           ├── CloudFrontKeyValueStore/
│   │           │   ├── CloudFrontKeyValueStoreClient.php
│   │           │   └── Exception/
│   │           │       └── CloudFrontKeyValueStoreException.php
│   │           ├── CloudHSMV2/
│   │           │   ├── CloudHSMV2Client.php
│   │           │   └── Exception/
│   │           │       └── CloudHSMV2Exception.php
│   │           ├── CloudHsm/
│   │           │   ├── CloudHsmClient.php
│   │           │   └── Exception/
│   │           │       └── CloudHsmException.php
│   │           ├── CloudSearch/
│   │           │   ├── CloudSearchClient.php
│   │           │   └── Exception/
│   │           │       └── CloudSearchException.php
│   │           ├── CloudSearchDomain/
│   │           │   ├── CloudSearchDomainClient.php
│   │           │   └── Exception/
│   │           │       └── CloudSearchDomainException.php
│   │           ├── CloudTrail/
│   │           │   ├── CloudTrailClient.php
│   │           │   ├── Exception/
│   │           │   │   └── CloudTrailException.php
│   │           │   ├── LogFileIterator.php
│   │           │   ├── LogFileReader.php
│   │           │   └── LogRecordIterator.php
│   │           ├── CloudTrailData/
│   │           │   ├── CloudTrailDataClient.php
│   │           │   └── Exception/
│   │           │       └── CloudTrailDataException.php
│   │           ├── CloudWatch/
│   │           │   ├── CloudWatchClient.php
│   │           │   └── Exception/
│   │           │       └── CloudWatchException.php
│   │           ├── CloudWatchEvents/
│   │           │   ├── CloudWatchEventsClient.php
│   │           │   └── Exception/
│   │           │       └── CloudWatchEventsException.php
│   │           ├── CloudWatchEvidently/
│   │           │   ├── CloudWatchEvidentlyClient.php
│   │           │   └── Exception/
│   │           │       └── CloudWatchEvidentlyException.php
│   │           ├── CloudWatchLogs/
│   │           │   ├── CloudWatchLogsClient.php
│   │           │   └── Exception/
│   │           │       └── CloudWatchLogsException.php
│   │           ├── CloudWatchRUM/
│   │           │   ├── CloudWatchRUMClient.php
│   │           │   └── Exception/
│   │           │       └── CloudWatchRUMException.php
│   │           ├── CodeArtifact/
│   │           │   ├── CodeArtifactClient.php
│   │           │   └── Exception/
│   │           │       └── CodeArtifactException.php
│   │           ├── CodeBuild/
│   │           │   ├── CodeBuildClient.php
│   │           │   └── Exception/
│   │           │       └── CodeBuildException.php
│   │           ├── CodeCatalyst/
│   │           │   ├── CodeCatalystClient.php
│   │           │   └── Exception/
│   │           │       └── CodeCatalystException.php
│   │           ├── CodeCommit/
│   │           │   ├── CodeCommitClient.php
│   │           │   └── Exception/
│   │           │       └── CodeCommitException.php
│   │           ├── CodeConnections/
│   │           │   ├── CodeConnectionsClient.php
│   │           │   └── Exception/
│   │           │       └── CodeConnectionsException.php
│   │           ├── CodeDeploy/
│   │           │   ├── CodeDeployClient.php
│   │           │   └── Exception/
│   │           │       └── CodeDeployException.php
│   │           ├── CodeGuruProfiler/
│   │           │   ├── CodeGuruProfilerClient.php
│   │           │   └── Exception/
│   │           │       └── CodeGuruProfilerException.php
│   │           ├── CodeGuruReviewer/
│   │           │   ├── CodeGuruReviewerClient.php
│   │           │   └── Exception/
│   │           │       └── CodeGuruReviewerException.php
│   │           ├── CodeGuruSecurity/
│   │           │   ├── CodeGuruSecurityClient.php
│   │           │   └── Exception/
│   │           │       └── CodeGuruSecurityException.php
│   │           ├── CodePipeline/
│   │           │   ├── CodePipelineClient.php
│   │           │   └── Exception/
│   │           │       └── CodePipelineException.php
│   │           ├── CodeStarNotifications/
│   │           │   ├── CodeStarNotificationsClient.php
│   │           │   └── Exception/
│   │           │       └── CodeStarNotificationsException.php
│   │           ├── CodeStarconnections/
│   │           │   ├── CodeStarconnectionsClient.php
│   │           │   └── Exception/
│   │           │       └── CodeStarconnectionsException.php
│   │           ├── CognitoIdentity/
│   │           │   ├── CognitoIdentityClient.php
│   │           │   ├── CognitoIdentityProvider.php
│   │           │   └── Exception/
│   │           │       └── CognitoIdentityException.php
│   │           ├── CognitoIdentityProvider/
│   │           │   ├── CognitoIdentityProviderClient.php
│   │           │   └── Exception/
│   │           │       └── CognitoIdentityProviderException.php
│   │           ├── CognitoSync/
│   │           │   ├── CognitoSyncClient.php
│   │           │   └── Exception/
│   │           │       └── CognitoSyncException.php
│   │           ├── Command.php
│   │           ├── CommandInterface.php
│   │           ├── CommandPool.php
│   │           ├── Comprehend/
│   │           │   ├── ComprehendClient.php
│   │           │   └── Exception/
│   │           │       └── ComprehendException.php
│   │           ├── ComprehendMedical/
│   │           │   ├── ComprehendMedicalClient.php
│   │           │   └── Exception/
│   │           │       └── ComprehendMedicalException.php
│   │           ├── ComputeOptimizer/
│   │           │   ├── ComputeOptimizerClient.php
│   │           │   └── Exception/
│   │           │       └── ComputeOptimizerException.php
│   │           ├── ConfigService/
│   │           │   ├── ConfigServiceClient.php
│   │           │   └── Exception/
│   │           │       └── ConfigServiceException.php
│   │           ├── Configuration/
│   │           │   └── ConfigurationResolver.php
│   │           ├── ConfigurationProviderInterface.php
│   │           ├── Connect/
│   │           │   ├── ConnectClient.php
│   │           │   └── Exception/
│   │           │       └── ConnectException.php
│   │           ├── ConnectCampaignService/
│   │           │   ├── ConnectCampaignServiceClient.php
│   │           │   └── Exception/
│   │           │       └── ConnectCampaignServiceException.php
│   │           ├── ConnectCampaignsV2/
│   │           │   ├── ConnectCampaignsV2Client.php
│   │           │   └── Exception/
│   │           │       └── ConnectCampaignsV2Exception.php
│   │           ├── ConnectCases/
│   │           │   ├── ConnectCasesClient.php
│   │           │   └── Exception/
│   │           │       └── ConnectCasesException.php
│   │           ├── ConnectContactLens/
│   │           │   ├── ConnectContactLensClient.php
│   │           │   └── Exception/
│   │           │       └── ConnectContactLensException.php
│   │           ├── ConnectParticipant/
│   │           │   ├── ConnectParticipantClient.php
│   │           │   └── Exception/
│   │           │       └── ConnectParticipantException.php
│   │           ├── ConnectWisdomService/
│   │           │   ├── ConnectWisdomServiceClient.php
│   │           │   └── Exception/
│   │           │       └── ConnectWisdomServiceException.php
│   │           ├── ControlCatalog/
│   │           │   ├── ControlCatalogClient.php
│   │           │   └── Exception/
│   │           │       └── ControlCatalogException.php
│   │           ├── ControlTower/
│   │           │   ├── ControlTowerClient.php
│   │           │   └── Exception/
│   │           │       └── ControlTowerException.php
│   │           ├── CostExplorer/
│   │           │   ├── CostExplorerClient.php
│   │           │   └── Exception/
│   │           │       └── CostExplorerException.php
│   │           ├── CostOptimizationHub/
│   │           │   ├── CostOptimizationHubClient.php
│   │           │   └── Exception/
│   │           │       └── CostOptimizationHubException.php
│   │           ├── CostandUsageReportService/
│   │           │   ├── CostandUsageReportServiceClient.php
│   │           │   └── Exception/
│   │           │       └── CostandUsageReportServiceException.php
│   │           ├── Credentials/
│   │           │   ├── AssumeRoleCredentialProvider.php
│   │           │   ├── AssumeRoleWithWebIdentityCredentialProvider.php
│   │           │   ├── CredentialProvider.php
│   │           │   ├── CredentialSources.php
│   │           │   ├── Credentials.php
│   │           │   ├── CredentialsInterface.php
│   │           │   ├── CredentialsUtils.php
│   │           │   ├── EcsCredentialProvider.php
│   │           │   └── InstanceProfileProvider.php
│   │           ├── Crypto/
│   │           │   ├── AbstractCryptoClient.php
│   │           │   ├── AbstractCryptoClientV2.php
│   │           │   ├── AesDecryptingStream.php
│   │           │   ├── AesEncryptingStream.php
│   │           │   ├── AesGcmDecryptingStream.php
│   │           │   ├── AesGcmEncryptingStream.php
│   │           │   ├── AesStreamInterface.php
│   │           │   ├── AesStreamInterfaceV2.php
│   │           │   ├── Cipher/
│   │           │   │   ├── Cbc.php
│   │           │   │   ├── CipherBuilderTrait.php
│   │           │   │   └── CipherMethod.php
│   │           │   ├── DecryptionTrait.php
│   │           │   ├── DecryptionTraitV2.php
│   │           │   ├── EncryptionTrait.php
│   │           │   ├── EncryptionTraitV2.php
│   │           │   ├── KmsMaterialsProvider.php
│   │           │   ├── KmsMaterialsProviderV2.php
│   │           │   ├── MaterialsProvider.php
│   │           │   ├── MaterialsProviderInterface.php
│   │           │   ├── MaterialsProviderInterfaceV2.php
│   │           │   ├── MaterialsProviderV2.php
│   │           │   ├── MetadataEnvelope.php
│   │           │   └── MetadataStrategyInterface.php
│   │           ├── CustomerProfiles/
│   │           │   ├── CustomerProfilesClient.php
│   │           │   └── Exception/
│   │           │       └── CustomerProfilesException.php
│   │           ├── DAX/
│   │           │   ├── DAXClient.php
│   │           │   └── Exception/
│   │           │       └── DAXException.php
│   │           ├── DLM/
│   │           │   ├── DLMClient.php
│   │           │   └── Exception/
│   │           │       └── DLMException.php
│   │           ├── DSQL/
│   │           │   ├── AuthTokenGenerator.php
│   │           │   ├── DSQLClient.php
│   │           │   └── Exception/
│   │           │       └── DSQLException.php
│   │           ├── DataExchange/
│   │           │   ├── DataExchangeClient.php
│   │           │   └── Exception/
│   │           │       └── DataExchangeException.php
│   │           ├── DataPipeline/
│   │           │   ├── DataPipelineClient.php
│   │           │   └── Exception/
│   │           │       └── DataPipelineException.php
│   │           ├── DataSync/
│   │           │   ├── DataSyncClient.php
│   │           │   └── Exception/
│   │           │       └── DataSyncException.php
│   │           ├── DataZone/
│   │           │   ├── DataZoneClient.php
│   │           │   └── Exception/
│   │           │       └── DataZoneException.php
│   │           ├── DatabaseMigrationService/
│   │           │   ├── DatabaseMigrationServiceClient.php
│   │           │   └── Exception/
│   │           │       └── DatabaseMigrationServiceException.php
│   │           ├── Deadline/
│   │           │   ├── DeadlineClient.php
│   │           │   └── Exception/
│   │           │       └── DeadlineException.php
│   │           ├── DefaultsMode/
│   │           │   ├── Configuration.php
│   │           │   ├── ConfigurationInterface.php
│   │           │   ├── ConfigurationProvider.php
│   │           │   └── Exception/
│   │           │       └── ConfigurationException.php
│   │           ├── Detective/
│   │           │   ├── DetectiveClient.php
│   │           │   └── Exception/
│   │           │       └── DetectiveException.php
│   │           ├── DevOpsGuru/
│   │           │   ├── DevOpsGuruClient.php
│   │           │   └── Exception/
│   │           │       └── DevOpsGuruException.php
│   │           ├── DeviceFarm/
│   │           │   ├── DeviceFarmClient.php
│   │           │   └── Exception/
│   │           │       └── DeviceFarmException.php
│   │           ├── DirectConnect/
│   │           │   ├── DirectConnectClient.php
│   │           │   └── Exception/
│   │           │       └── DirectConnectException.php
│   │           ├── DirectoryService/
│   │           │   ├── DirectoryServiceClient.php
│   │           │   └── Exception/
│   │           │       └── DirectoryServiceException.php
│   │           ├── DirectoryServiceData/
│   │           │   ├── DirectoryServiceDataClient.php
│   │           │   └── Exception/
│   │           │       └── DirectoryServiceDataException.php
│   │           ├── DocDB/
│   │           │   ├── DocDBClient.php
│   │           │   └── Exception/
│   │           │       └── DocDBException.php
│   │           ├── DocDBElastic/
│   │           │   ├── DocDBElasticClient.php
│   │           │   └── Exception/
│   │           │       └── DocDBElasticException.php
│   │           ├── DoctrineCacheAdapter.php
│   │           ├── DynamoDb/
│   │           │   ├── BinaryValue.php
│   │           │   ├── DynamoDbClient.php
│   │           │   ├── Exception/
│   │           │   │   └── DynamoDbException.php
│   │           │   ├── LockingSessionConnection.php
│   │           │   ├── Marshaler.php
│   │           │   ├── NumberValue.php
│   │           │   ├── SessionConnectionConfigTrait.php
│   │           │   ├── SessionConnectionInterface.php
│   │           │   ├── SessionHandler.php
│   │           │   ├── SetValue.php
│   │           │   ├── StandardSessionConnection.php
│   │           │   └── WriteRequestBatch.php
│   │           ├── DynamoDbStreams/
│   │           │   ├── DynamoDbStreamsClient.php
│   │           │   └── Exception/
│   │           │       └── DynamoDbStreamsException.php
│   │           ├── EBS/
│   │           │   ├── EBSClient.php
│   │           │   └── Exception/
│   │           │       └── EBSException.php
│   │           ├── EC2InstanceConnect/
│   │           │   ├── EC2InstanceConnectClient.php
│   │           │   └── Exception/
│   │           │       └── EC2InstanceConnectException.php
│   │           ├── ECRPublic/
│   │           │   ├── ECRPublicClient.php
│   │           │   └── Exception/
│   │           │       └── ECRPublicException.php
│   │           ├── EKS/
│   │           │   ├── EKSClient.php
│   │           │   └── Exception/
│   │           │       └── EKSException.php
│   │           ├── EKSAuth/
│   │           │   ├── EKSAuthClient.php
│   │           │   └── Exception/
│   │           │       └── EKSAuthException.php
│   │           ├── EMRContainers/
│   │           │   ├── EMRContainersClient.php
│   │           │   └── Exception/
│   │           │       └── EMRContainersException.php
│   │           ├── EMRServerless/
│   │           │   ├── EMRServerlessClient.php
│   │           │   └── Exception/
│   │           │       └── EMRServerlessException.php
│   │           ├── Ec2/
│   │           │   ├── Ec2Client.php
│   │           │   └── Exception/
│   │           │       └── Ec2Exception.php
│   │           ├── Ecr/
│   │           │   ├── EcrClient.php
│   │           │   └── Exception/
│   │           │       └── EcrException.php
│   │           ├── Ecs/
│   │           │   ├── EcsClient.php
│   │           │   └── Exception/
│   │           │       └── EcsException.php
│   │           ├── Efs/
│   │           │   ├── EfsClient.php
│   │           │   └── Exception/
│   │           │       └── EfsException.php
│   │           ├── ElastiCache/
│   │           │   ├── ElastiCacheClient.php
│   │           │   └── Exception/
│   │           │       └── ElastiCacheException.php
│   │           ├── ElasticBeanstalk/
│   │           │   ├── ElasticBeanstalkClient.php
│   │           │   └── Exception/
│   │           │       └── ElasticBeanstalkException.php
│   │           ├── ElasticLoadBalancing/
│   │           │   ├── ElasticLoadBalancingClient.php
│   │           │   └── Exception/
│   │           │       └── ElasticLoadBalancingException.php
│   │           ├── ElasticLoadBalancingV2/
│   │           │   ├── ElasticLoadBalancingV2Client.php
│   │           │   └── Exception/
│   │           │       └── ElasticLoadBalancingV2Exception.php
│   │           ├── ElasticTranscoder/
│   │           │   ├── ElasticTranscoderClient.php
│   │           │   └── Exception/
│   │           │       └── ElasticTranscoderException.php
│   │           ├── ElasticsearchService/
│   │           │   ├── ElasticsearchServiceClient.php
│   │           │   └── Exception/
│   │           │       └── ElasticsearchServiceException.php
│   │           ├── Emr/
│   │           │   ├── EmrClient.php
│   │           │   └── Exception/
│   │           │       └── EmrException.php
│   │           ├── Endpoint/
│   │           │   ├── EndpointProvider.php
│   │           │   ├── Partition.php
│   │           │   ├── PartitionEndpointProvider.php
│   │           │   ├── PartitionInterface.php
│   │           │   ├── PatternEndpointProvider.php
│   │           │   ├── UseDualstackEndpoint/
│   │           │   │   ├── Configuration.php
│   │           │   │   ├── ConfigurationInterface.php
│   │           │   │   ├── ConfigurationProvider.php
│   │           │   │   └── Exception/
│   │           │   │       └── ConfigurationException.php
│   │           │   └── UseFipsEndpoint/
│   │           │       ├── Configuration.php
│   │           │       ├── ConfigurationInterface.php
│   │           │       ├── ConfigurationProvider.php
│   │           │       └── Exception/
│   │           │           └── ConfigurationException.php
│   │           ├── EndpointDiscovery/
│   │           │   ├── Configuration.php
│   │           │   ├── ConfigurationInterface.php
│   │           │   ├── ConfigurationProvider.php
│   │           │   ├── EndpointDiscoveryMiddleware.php
│   │           │   ├── EndpointList.php
│   │           │   └── Exception/
│   │           │       └── ConfigurationException.php
│   │           ├── EndpointParameterMiddleware.php
│   │           ├── EndpointV2/
│   │           │   ├── EndpointDefinitionProvider.php
│   │           │   ├── EndpointProviderV2.php
│   │           │   ├── EndpointV2Middleware.php
│   │           │   ├── EndpointV2SerializerTrait.php
│   │           │   ├── Rule/
│   │           │   │   ├── AbstractRule.php
│   │           │   │   ├── EndpointRule.php
│   │           │   │   ├── ErrorRule.php
│   │           │   │   ├── RuleCreator.php
│   │           │   │   └── TreeRule.php
│   │           │   └── Ruleset/
│   │           │       ├── Ruleset.php
│   │           │       ├── RulesetEndpoint.php
│   │           │       ├── RulesetParameter.php
│   │           │       └── RulesetStandardLibrary.php
│   │           ├── EntityResolution/
│   │           │   ├── EntityResolutionClient.php
│   │           │   └── Exception/
│   │           │       └── EntityResolutionException.php
│   │           ├── EventBridge/
│   │           │   ├── EventBridgeClient.php
│   │           │   ├── EventBridgeEndpointMiddleware.php
│   │           │   └── Exception/
│   │           │       └── EventBridgeException.php
│   │           ├── Evs/
│   │           │   ├── EvsClient.php
│   │           │   └── Exception/
│   │           │       └── EvsException.php
│   │           ├── Exception/
│   │           │   ├── AwsException.php
│   │           │   ├── CommonRuntimeException.php
│   │           │   ├── CouldNotCreateChecksumException.php
│   │           │   ├── CredentialsException.php
│   │           │   ├── CryptoException.php
│   │           │   ├── CryptoPolyfillException.php
│   │           │   ├── EventStreamDataException.php
│   │           │   ├── IncalculablePayloadException.php
│   │           │   ├── InvalidJsonException.php
│   │           │   ├── InvalidRegionException.php
│   │           │   ├── MultipartUploadException.php
│   │           │   ├── TokenException.php
│   │           │   ├── UnresolvedApiException.php
│   │           │   ├── UnresolvedEndpointException.php
│   │           │   └── UnresolvedSignatureException.php
│   │           ├── FIS/
│   │           │   ├── Exception/
│   │           │   │   └── FISException.php
│   │           │   └── FISClient.php
│   │           ├── FMS/
│   │           │   ├── Exception/
│   │           │   │   └── FMSException.php
│   │           │   └── FMSClient.php
│   │           ├── FSx/
│   │           │   ├── Exception/
│   │           │   │   └── FSxException.php
│   │           │   └── FSxClient.php
│   │           ├── FinSpaceData/
│   │           │   ├── Exception/
│   │           │   │   └── FinSpaceDataException.php
│   │           │   └── FinSpaceDataClient.php
│   │           ├── Firehose/
│   │           │   ├── Exception/
│   │           │   │   └── FirehoseException.php
│   │           │   └── FirehoseClient.php
│   │           ├── ForecastQueryService/
│   │           │   ├── Exception/
│   │           │   │   └── ForecastQueryServiceException.php
│   │           │   └── ForecastQueryServiceClient.php
│   │           ├── ForecastService/
│   │           │   ├── Exception/
│   │           │   │   └── ForecastServiceException.php
│   │           │   └── ForecastServiceClient.php
│   │           ├── FraudDetector/
│   │           │   ├── Exception/
│   │           │   │   └── FraudDetectorException.php
│   │           │   └── FraudDetectorClient.php
│   │           ├── FreeTier/
│   │           │   ├── Exception/
│   │           │   │   └── FreeTierException.php
│   │           │   └── FreeTierClient.php
│   │           ├── GameLift/
│   │           │   ├── Exception/
│   │           │   │   └── GameLiftException.php
│   │           │   └── GameLiftClient.php
│   │           ├── GameLiftStreams/
│   │           │   ├── Exception/
│   │           │   │   └── GameLiftStreamsException.php
│   │           │   └── GameLiftStreamsClient.php
│   │           ├── GeoMaps/
│   │           │   ├── Exception/
│   │           │   │   └── GeoMapsException.php
│   │           │   └── GeoMapsClient.php
│   │           ├── GeoPlaces/
│   │           │   ├── Exception/
│   │           │   │   └── GeoPlacesException.php
│   │           │   └── GeoPlacesClient.php
│   │           ├── GeoRoutes/
│   │           │   ├── Exception/
│   │           │   │   └── GeoRoutesException.php
│   │           │   └── GeoRoutesClient.php
│   │           ├── Glacier/
│   │           │   ├── Exception/
│   │           │   │   └── GlacierException.php
│   │           │   ├── GlacierClient.php
│   │           │   ├── MultipartUploader.php
│   │           │   └── TreeHash.php
│   │           ├── GlobalAccelerator/
│   │           │   ├── Exception/
│   │           │   │   └── GlobalAcceleratorException.php
│   │           │   └── GlobalAcceleratorClient.php
│   │           ├── Glue/
│   │           │   ├── Exception/
│   │           │   │   └── GlueException.php
│   │           │   └── GlueClient.php
│   │           ├── GlueDataBrew/
│   │           │   ├── Exception/
│   │           │   │   └── GlueDataBrewException.php
│   │           │   └── GlueDataBrewClient.php
│   │           ├── Greengrass/
│   │           │   ├── Exception/
│   │           │   │   └── GreengrassException.php
│   │           │   └── GreengrassClient.php
│   │           ├── GreengrassV2/
│   │           │   ├── Exception/
│   │           │   │   └── GreengrassV2Exception.php
│   │           │   └── GreengrassV2Client.php
│   │           ├── GroundStation/
│   │           │   ├── Exception/
│   │           │   │   └── GroundStationException.php
│   │           │   └── GroundStationClient.php
│   │           ├── GuardDuty/
│   │           │   ├── Exception/
│   │           │   │   └── GuardDutyException.php
│   │           │   └── GuardDutyClient.php
│   │           ├── Handler/
│   │           │   ├── Guzzle/
│   │           │   │   └── GuzzleHandler.php
│   │           │   └── GuzzleV6/
│   │           │       └── GuzzleHandler.php
│   │           ├── HandlerList.php
│   │           ├── HasDataTrait.php
│   │           ├── HasMonitoringEventsTrait.php
│   │           ├── HashInterface.php
│   │           ├── HashingStream.php
│   │           ├── Health/
│   │           │   ├── Exception/
│   │           │   │   └── HealthException.php
│   │           │   └── HealthClient.php
│   │           ├── HealthLake/
│   │           │   ├── Exception/
│   │           │   │   └── HealthLakeException.php
│   │           │   └── HealthLakeClient.php
│   │           ├── History.php
│   │           ├── IVS/
│   │           │   ├── Exception/
│   │           │   │   └── IVSException.php
│   │           │   └── IVSClient.php
│   │           ├── IVSRealTime/
│   │           │   ├── Exception/
│   │           │   │   └── IVSRealTimeException.php
│   │           │   └── IVSRealTimeClient.php
│   │           ├── Iam/
│   │           │   ├── Exception/
│   │           │   │   └── IamException.php
│   │           │   └── IamClient.php
│   │           ├── IdempotencyTokenMiddleware.php
│   │           ├── Identity/
│   │           │   ├── AwsCredentialIdentity.php
│   │           │   ├── BearerTokenIdentity.php
│   │           │   ├── IdentityInterface.php
│   │           │   └── S3/
│   │           │       ├── S3ExpressIdentity.php
│   │           │       └── S3ExpressIdentityProvider.php
│   │           ├── IdentityStore/
│   │           │   ├── Exception/
│   │           │   │   └── IdentityStoreException.php
│   │           │   └── IdentityStoreClient.php
│   │           ├── ImportExport/
│   │           │   ├── Exception/
│   │           │   │   └── ImportExportException.php
│   │           │   └── ImportExportClient.php
│   │           ├── InputValidationMiddleware.php
│   │           ├── Inspector/
│   │           │   ├── Exception/
│   │           │   │   └── InspectorException.php
│   │           │   └── InspectorClient.php
│   │           ├── Inspector2/
│   │           │   ├── Exception/
│   │           │   │   └── Inspector2Exception.php
│   │           │   └── Inspector2Client.php
│   │           ├── InspectorScan/
│   │           │   ├── Exception/
│   │           │   │   └── InspectorScanException.php
│   │           │   └── InspectorScanClient.php
│   │           ├── InternetMonitor/
│   │           │   ├── Exception/
│   │           │   │   └── InternetMonitorException.php
│   │           │   └── InternetMonitorClient.php
│   │           ├── Invoicing/
│   │           │   ├── Exception/
│   │           │   │   └── InvoicingException.php
│   │           │   └── InvoicingClient.php
│   │           ├── IoTAnalytics/
│   │           │   ├── Exception/
│   │           │   │   └── IoTAnalyticsException.php
│   │           │   └── IoTAnalyticsClient.php
│   │           ├── IoTDeviceAdvisor/
│   │           │   ├── Exception/
│   │           │   │   └── IoTDeviceAdvisorException.php
│   │           │   └── IoTDeviceAdvisorClient.php
│   │           ├── IoTEvents/
│   │           │   ├── Exception/
│   │           │   │   └── IoTEventsException.php
│   │           │   └── IoTEventsClient.php
│   │           ├── IoTEventsData/
│   │           │   ├── Exception/
│   │           │   │   └── IoTEventsDataException.php
│   │           │   └── IoTEventsDataClient.php
│   │           ├── IoTFleetHub/
│   │           │   ├── Exception/
│   │           │   │   └── IoTFleetHubException.php
│   │           │   └── IoTFleetHubClient.php
│   │           ├── IoTFleetWise/
│   │           │   ├── Exception/
│   │           │   │   └── IoTFleetWiseException.php
│   │           │   └── IoTFleetWiseClient.php
│   │           ├── IoTJobsDataPlane/
│   │           │   ├── Exception/
│   │           │   │   └── IoTJobsDataPlaneException.php
│   │           │   └── IoTJobsDataPlaneClient.php
│   │           ├── IoTManagedIntegrations/
│   │           │   ├── Exception/
│   │           │   │   └── IoTManagedIntegrationsException.php
│   │           │   └── IoTManagedIntegrationsClient.php
│   │           ├── IoTSecureTunneling/
│   │           │   ├── Exception/
│   │           │   │   └── IoTSecureTunnelingException.php
│   │           │   └── IoTSecureTunnelingClient.php
│   │           ├── IoTSiteWise/
│   │           │   ├── Exception/
│   │           │   │   └── IoTSiteWiseException.php
│   │           │   └── IoTSiteWiseClient.php
│   │           ├── IoTThingsGraph/
│   │           │   ├── Exception/
│   │           │   │   └── IoTThingsGraphException.php
│   │           │   └── IoTThingsGraphClient.php
│   │           ├── IoTTwinMaker/
│   │           │   ├── Exception/
│   │           │   │   └── IoTTwinMakerException.php
│   │           │   └── IoTTwinMakerClient.php
│   │           ├── IoTWireless/
│   │           │   ├── Exception/
│   │           │   │   └── IoTWirelessException.php
│   │           │   └── IoTWirelessClient.php
│   │           ├── Iot/
│   │           │   ├── Exception/
│   │           │   │   └── IotException.php
│   │           │   └── IotClient.php
│   │           ├── IotDataPlane/
│   │           │   ├── Exception/
│   │           │   │   └── IotDataPlaneException.php
│   │           │   └── IotDataPlaneClient.php
│   │           ├── JsonCompiler.php
│   │           ├── Kafka/
│   │           │   ├── Exception/
│   │           │   │   └── KafkaException.php
│   │           │   └── KafkaClient.php
│   │           ├── KafkaConnect/
│   │           │   ├── Exception/
│   │           │   │   └── KafkaConnectException.php
│   │           │   └── KafkaConnectClient.php
│   │           ├── KendraRanking/
│   │           │   ├── Exception/
│   │           │   │   └── KendraRankingException.php
│   │           │   └── KendraRankingClient.php
│   │           ├── Keyspaces/
│   │           │   ├── Exception/
│   │           │   │   └── KeyspacesException.php
│   │           │   └── KeyspacesClient.php
│   │           ├── KeyspacesStreams/
│   │           │   ├── Exception/
│   │           │   │   └── KeyspacesStreamsException.php
│   │           │   └── KeyspacesStreamsClient.php
│   │           ├── Kinesis/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisException.php
│   │           │   └── KinesisClient.php
│   │           ├── KinesisAnalytics/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisAnalyticsException.php
│   │           │   └── KinesisAnalyticsClient.php
│   │           ├── KinesisAnalyticsV2/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisAnalyticsV2Exception.php
│   │           │   └── KinesisAnalyticsV2Client.php
│   │           ├── KinesisVideo/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisVideoException.php
│   │           │   └── KinesisVideoClient.php
│   │           ├── KinesisVideoArchivedMedia/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisVideoArchivedMediaException.php
│   │           │   └── KinesisVideoArchivedMediaClient.php
│   │           ├── KinesisVideoMedia/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisVideoMediaException.php
│   │           │   └── KinesisVideoMediaClient.php
│   │           ├── KinesisVideoSignalingChannels/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisVideoSignalingChannelsException.php
│   │           │   └── KinesisVideoSignalingChannelsClient.php
│   │           ├── KinesisVideoWebRTCStorage/
│   │           │   ├── Exception/
│   │           │   │   └── KinesisVideoWebRTCStorageException.php
│   │           │   └── KinesisVideoWebRTCStorageClient.php
│   │           ├── Kms/
│   │           │   ├── Exception/
│   │           │   │   └── KmsException.php
│   │           │   └── KmsClient.php
│   │           ├── LakeFormation/
│   │           │   ├── Exception/
│   │           │   │   └── LakeFormationException.php
│   │           │   └── LakeFormationClient.php
│   │           ├── Lambda/
│   │           │   ├── Exception/
│   │           │   │   └── LambdaException.php
│   │           │   └── LambdaClient.php
│   │           ├── LaunchWizard/
│   │           │   ├── Exception/
│   │           │   │   └── LaunchWizardException.php
│   │           │   └── LaunchWizardClient.php
│   │           ├── LexModelBuildingService/
│   │           │   ├── Exception/
│   │           │   │   └── LexModelBuildingServiceException.php
│   │           │   └── LexModelBuildingServiceClient.php
│   │           ├── LexModelsV2/
│   │           │   ├── Exception/
│   │           │   │   └── LexModelsV2Exception.php
│   │           │   └── LexModelsV2Client.php
│   │           ├── LexRuntimeService/
│   │           │   ├── Exception/
│   │           │   │   └── LexRuntimeServiceException.php
│   │           │   └── LexRuntimeServiceClient.php
│   │           ├── LexRuntimeV2/
│   │           │   ├── Exception/
│   │           │   │   └── LexRuntimeV2Exception.php
│   │           │   └── LexRuntimeV2Client.php
│   │           ├── LicenseManager/
│   │           │   ├── Exception/
│   │           │   │   └── LicenseManagerException.php
│   │           │   └── LicenseManagerClient.php
│   │           ├── LicenseManagerLinuxSubscriptions/
│   │           │   ├── Exception/
│   │           │   │   └── LicenseManagerLinuxSubscriptionsException.php
│   │           │   └── LicenseManagerLinuxSubscriptionsClient.php
│   │           ├── LicenseManagerUserSubscriptions/
│   │           │   ├── Exception/
│   │           │   │   └── LicenseManagerUserSubscriptionsException.php
│   │           │   └── LicenseManagerUserSubscriptionsClient.php
│   │           ├── Lightsail/
│   │           │   ├── Exception/
│   │           │   │   └── LightsailException.php
│   │           │   └── LightsailClient.php
│   │           ├── LocationService/
│   │           │   ├── Exception/
│   │           │   │   └── LocationServiceException.php
│   │           │   └── LocationServiceClient.php
│   │           ├── LookoutEquipment/
│   │           │   ├── Exception/
│   │           │   │   └── LookoutEquipmentException.php
│   │           │   └── LookoutEquipmentClient.php
│   │           ├── LookoutMetrics/
│   │           │   ├── Exception/
│   │           │   │   └── LookoutMetricsException.php
│   │           │   └── LookoutMetricsClient.php
│   │           ├── LookoutforVision/
│   │           │   ├── Exception/
│   │           │   │   └── LookoutforVisionException.php
│   │           │   └── LookoutforVisionClient.php
│   │           ├── LruArrayCache.php
│   │           ├── MPA/
│   │           │   ├── Exception/
│   │           │   │   └── MPAException.php
│   │           │   └── MPAClient.php
│   │           ├── MQ/
│   │           │   ├── Exception/
│   │           │   │   └── MQException.php
│   │           │   └── MQClient.php
│   │           ├── MTurk/
│   │           │   ├── Exception/
│   │           │   │   └── MTurkException.php
│   │           │   └── MTurkClient.php
│   │           ├── MWAA/
│   │           │   ├── Exception/
│   │           │   │   └── MWAAException.php
│   │           │   └── MWAAClient.php
│   │           ├── MachineLearning/
│   │           │   ├── Exception/
│   │           │   │   └── MachineLearningException.php
│   │           │   └── MachineLearningClient.php
│   │           ├── Macie2/
│   │           │   ├── Exception/
│   │           │   │   └── Macie2Exception.php
│   │           │   └── Macie2Client.php
│   │           ├── MailManager/
│   │           │   ├── Exception/
│   │           │   │   └── MailManagerException.php
│   │           │   └── MailManagerClient.php
│   │           ├── MainframeModernization/
│   │           │   ├── Exception/
│   │           │   │   └── MainframeModernizationException.php
│   │           │   └── MainframeModernizationClient.php
│   │           ├── ManagedBlockchain/
│   │           │   ├── Exception/
│   │           │   │   └── ManagedBlockchainException.php
│   │           │   └── ManagedBlockchainClient.php
│   │           ├── ManagedBlockchainQuery/
│   │           │   ├── Exception/
│   │           │   │   └── ManagedBlockchainQueryException.php
│   │           │   └── ManagedBlockchainQueryClient.php
│   │           ├── ManagedGrafana/
│   │           │   ├── Exception/
│   │           │   │   └── ManagedGrafanaException.php
│   │           │   └── ManagedGrafanaClient.php
│   │           ├── MarketplaceAgreement/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceAgreementException.php
│   │           │   └── MarketplaceAgreementClient.php
│   │           ├── MarketplaceCatalog/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceCatalogException.php
│   │           │   └── MarketplaceCatalogClient.php
│   │           ├── MarketplaceCommerceAnalytics/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceCommerceAnalyticsException.php
│   │           │   └── MarketplaceCommerceAnalyticsClient.php
│   │           ├── MarketplaceDeployment/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceDeploymentException.php
│   │           │   └── MarketplaceDeploymentClient.php
│   │           ├── MarketplaceEntitlementService/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceEntitlementServiceException.php
│   │           │   └── MarketplaceEntitlementServiceClient.php
│   │           ├── MarketplaceMetering/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceMeteringException.php
│   │           │   └── MarketplaceMeteringClient.php
│   │           ├── MarketplaceReporting/
│   │           │   ├── Exception/
│   │           │   │   └── MarketplaceReportingException.php
│   │           │   └── MarketplaceReportingClient.php
│   │           ├── MediaConnect/
│   │           │   ├── Exception/
│   │           │   │   └── MediaConnectException.php
│   │           │   └── MediaConnectClient.php
│   │           ├── MediaConvert/
│   │           │   ├── Exception/
│   │           │   │   └── MediaConvertException.php
│   │           │   └── MediaConvertClient.php
│   │           ├── MediaLive/
│   │           │   ├── Exception/
│   │           │   │   └── MediaLiveException.php
│   │           │   └── MediaLiveClient.php
│   │           ├── MediaPackage/
│   │           │   ├── Exception/
│   │           │   │   └── MediaPackageException.php
│   │           │   └── MediaPackageClient.php
│   │           ├── MediaPackageV2/
│   │           │   ├── Exception/
│   │           │   │   └── MediaPackageV2Exception.php
│   │           │   └── MediaPackageV2Client.php
│   │           ├── MediaPackageVod/
│   │           │   ├── Exception/
│   │           │   │   └── MediaPackageVodException.php
│   │           │   └── MediaPackageVodClient.php
│   │           ├── MediaStore/
│   │           │   ├── Exception/
│   │           │   │   └── MediaStoreException.php
│   │           │   └── MediaStoreClient.php
│   │           ├── MediaStoreData/
│   │           │   ├── Exception/
│   │           │   │   └── MediaStoreDataException.php
│   │           │   └── MediaStoreDataClient.php
│   │           ├── MediaTailor/
│   │           │   ├── Exception/
│   │           │   │   └── MediaTailorException.php
│   │           │   └── MediaTailorClient.php
│   │           ├── MedicalImaging/
│   │           │   ├── Exception/
│   │           │   │   └── MedicalImagingException.php
│   │           │   └── MedicalImagingClient.php
│   │           ├── MemoryDB/
│   │           │   ├── Exception/
│   │           │   │   └── MemoryDBException.php
│   │           │   └── MemoryDBClient.php
│   │           ├── MetricsBuilder.php
│   │           ├── Middleware.php
│   │           ├── MigrationHub/
│   │           │   ├── Exception/
│   │           │   │   └── MigrationHubException.php
│   │           │   └── MigrationHubClient.php
│   │           ├── MigrationHubConfig/
│   │           │   ├── Exception/
│   │           │   │   └── MigrationHubConfigException.php
│   │           │   └── MigrationHubConfigClient.php
│   │           ├── MigrationHubOrchestrator/
│   │           │   ├── Exception/
│   │           │   │   └── MigrationHubOrchestratorException.php
│   │           │   └── MigrationHubOrchestratorClient.php
│   │           ├── MigrationHubRefactorSpaces/
│   │           │   ├── Exception/
│   │           │   │   └── MigrationHubRefactorSpacesException.php
│   │           │   └── MigrationHubRefactorSpacesClient.php
│   │           ├── MigrationHubStrategyRecommendations/
│   │           │   ├── Exception/
│   │           │   │   └── MigrationHubStrategyRecommendationsException.php
│   │           │   └── MigrationHubStrategyRecommendationsClient.php
│   │           ├── MockHandler.php
│   │           ├── MonitoringEventsInterface.php
│   │           ├── MultiRegionClient.php
│   │           ├── Multipart/
│   │           │   ├── AbstractUploadManager.php
│   │           │   ├── AbstractUploader.php
│   │           │   └── UploadState.php
│   │           ├── Neptune/
│   │           │   ├── Exception/
│   │           │   │   └── NeptuneException.php
│   │           │   └── NeptuneClient.php
│   │           ├── NeptuneGraph/
│   │           │   ├── Exception/
│   │           │   │   └── NeptuneGraphException.php
│   │           │   └── NeptuneGraphClient.php
│   │           ├── Neptunedata/
│   │           │   ├── Exception/
│   │           │   │   └── NeptunedataException.php
│   │           │   └── NeptunedataClient.php
│   │           ├── NetworkFirewall/
│   │           │   ├── Exception/
│   │           │   │   └── NetworkFirewallException.php
│   │           │   └── NetworkFirewallClient.php
│   │           ├── NetworkFlowMonitor/
│   │           │   ├── Exception/
│   │           │   │   └── NetworkFlowMonitorException.php
│   │           │   └── NetworkFlowMonitorClient.php
│   │           ├── NetworkManager/
│   │           │   ├── Exception/
│   │           │   │   └── NetworkManagerException.php
│   │           │   └── NetworkManagerClient.php
│   │           ├── NetworkMonitor/
│   │           │   ├── Exception/
│   │           │   │   └── NetworkMonitorException.php
│   │           │   └── NetworkMonitorClient.php
│   │           ├── Notifications/
│   │           │   ├── Exception/
│   │           │   │   └── NotificationsException.php
│   │           │   └── NotificationsClient.php
│   │           ├── NotificationsContacts/
│   │           │   ├── Exception/
│   │           │   │   └── NotificationsContactsException.php
│   │           │   └── NotificationsContactsClient.php
│   │           ├── OAM/
│   │           │   ├── Exception/
│   │           │   │   └── OAMException.php
│   │           │   └── OAMClient.php
│   │           ├── OSIS/
│   │           │   ├── Exception/
│   │           │   │   └── OSISException.php
│   │           │   └── OSISClient.php
│   │           ├── ObservabilityAdmin/
│   │           │   ├── Exception/
│   │           │   │   └── ObservabilityAdminException.php
│   │           │   └── ObservabilityAdminClient.php
│   │           ├── Odb/
│   │           │   ├── Exception/
│   │           │   │   └── OdbException.php
│   │           │   └── OdbClient.php
│   │           ├── Omics/
│   │           │   ├── Exception/
│   │           │   │   └── OmicsException.php
│   │           │   └── OmicsClient.php
│   │           ├── OpenSearchServerless/
│   │           │   ├── Exception/
│   │           │   │   └── OpenSearchServerlessException.php
│   │           │   └── OpenSearchServerlessClient.php
│   │           ├── OpenSearchService/
│   │           │   ├── Exception/
│   │           │   │   └── OpenSearchServiceException.php
│   │           │   └── OpenSearchServiceClient.php
│   │           ├── OpsWorks/
│   │           │   ├── Exception/
│   │           │   │   └── OpsWorksException.php
│   │           │   └── OpsWorksClient.php
│   │           ├── OpsWorksCM/
│   │           │   ├── Exception/
│   │           │   │   └── OpsWorksCMException.php
│   │           │   └── OpsWorksCMClient.php
│   │           ├── Organizations/
│   │           │   ├── Exception/
│   │           │   │   └── OrganizationsException.php
│   │           │   └── OrganizationsClient.php
│   │           ├── Outposts/
│   │           │   ├── Exception/
│   │           │   │   └── OutpostsException.php
│   │           │   └── OutpostsClient.php
│   │           ├── PCS/
│   │           │   ├── Exception/
│   │           │   │   └── PCSException.php
│   │           │   └── PCSClient.php
│   │           ├── PI/
│   │           │   ├── Exception/
│   │           │   │   └── PIException.php
│   │           │   └── PIClient.php
│   │           ├── Panorama/
│   │           │   ├── Exception/
│   │           │   │   └── PanoramaException.php
│   │           │   └── PanoramaClient.php
│   │           ├── PartnerCentralSelling/
│   │           │   ├── Exception/
│   │           │   │   └── PartnerCentralSellingException.php
│   │           │   └── PartnerCentralSellingClient.php
│   │           ├── PaymentCryptography/
│   │           │   ├── Exception/
│   │           │   │   └── PaymentCryptographyException.php
│   │           │   └── PaymentCryptographyClient.php
│   │           ├── PaymentCryptographyData/
│   │           │   ├── Exception/
│   │           │   │   └── PaymentCryptographyDataException.php
│   │           │   └── PaymentCryptographyDataClient.php
│   │           ├── PcaConnectorAd/
│   │           │   ├── Exception/
│   │           │   │   └── PcaConnectorAdException.php
│   │           │   └── PcaConnectorAdClient.php
│   │           ├── PcaConnectorScep/
│   │           │   ├── Exception/
│   │           │   │   └── PcaConnectorScepException.php
│   │           │   └── PcaConnectorScepClient.php
│   │           ├── Personalize/
│   │           │   ├── Exception/
│   │           │   │   └── PersonalizeException.php
│   │           │   └── PersonalizeClient.php
│   │           ├── PersonalizeEvents/
│   │           │   ├── Exception/
│   │           │   │   └── PersonalizeEventsException.php
│   │           │   └── PersonalizeEventsClient.php
│   │           ├── PersonalizeRuntime/
│   │           │   ├── Exception/
│   │           │   │   └── PersonalizeRuntimeException.php
│   │           │   └── PersonalizeRuntimeClient.php
│   │           ├── PhpHash.php
│   │           ├── Pinpoint/
│   │           │   ├── Exception/
│   │           │   │   └── PinpointException.php
│   │           │   └── PinpointClient.php
│   │           ├── PinpointEmail/
│   │           │   ├── Exception/
│   │           │   │   └── PinpointEmailException.php
│   │           │   └── PinpointEmailClient.php
│   │           ├── PinpointSMSVoice/
│   │           │   ├── Exception/
│   │           │   │   └── PinpointSMSVoiceException.php
│   │           │   └── PinpointSMSVoiceClient.php
│   │           ├── PinpointSMSVoiceV2/
│   │           │   ├── Exception/
│   │           │   │   └── PinpointSMSVoiceV2Exception.php
│   │           │   └── PinpointSMSVoiceV2Client.php
│   │           ├── Pipes/
│   │           │   ├── Exception/
│   │           │   │   └── PipesException.php
│   │           │   └── PipesClient.php
│   │           ├── Polly/
│   │           │   ├── Exception/
│   │           │   │   └── PollyException.php
│   │           │   └── PollyClient.php
│   │           ├── PresignUrlMiddleware.php
│   │           ├── Pricing/
│   │           │   ├── Exception/
│   │           │   │   └── PricingException.php
│   │           │   └── PricingClient.php
│   │           ├── PrometheusService/
│   │           │   ├── Exception/
│   │           │   │   └── PrometheusServiceException.php
│   │           │   └── PrometheusServiceClient.php
│   │           ├── Proton/
│   │           │   ├── Exception/
│   │           │   │   └── ProtonException.php
│   │           │   └── ProtonClient.php
│   │           ├── Psr16CacheAdapter.php
│   │           ├── PsrCacheAdapter.php
│   │           ├── QApps/
│   │           │   ├── Exception/
│   │           │   │   └── QAppsException.php
│   │           │   └── QAppsClient.php
│   │           ├── QBusiness/
│   │           │   ├── Exception/
│   │           │   │   └── QBusinessException.php
│   │           │   └── QBusinessClient.php
│   │           ├── QConnect/
│   │           │   ├── Exception/
│   │           │   │   └── QConnectException.php
│   │           │   └── QConnectClient.php
│   │           ├── QLDB/
│   │           │   ├── Exception/
│   │           │   │   └── QLDBException.php
│   │           │   └── QLDBClient.php
│   │           ├── QLDBSession/
│   │           │   ├── Exception/
│   │           │   │   └── QLDBSessionException.php
│   │           │   └── QLDBSessionClient.php
│   │           ├── QueryCompatibleInputMiddleware.php
│   │           ├── QuickSight/
│   │           │   ├── Exception/
│   │           │   │   └── QuickSightException.php
│   │           │   └── QuickSightClient.php
│   │           ├── RAM/
│   │           │   ├── Exception/
│   │           │   │   └── RAMException.php
│   │           │   └── RAMClient.php
│   │           ├── RDSDataService/
│   │           │   ├── Exception/
│   │           │   │   └── RDSDataServiceException.php
│   │           │   └── RDSDataServiceClient.php
│   │           ├── Rds/
│   │           │   ├── AuthTokenGenerator.php
│   │           │   ├── Exception/
│   │           │   │   └── RdsException.php
│   │           │   └── RdsClient.php
│   │           ├── RecycleBin/
│   │           │   ├── Exception/
│   │           │   │   └── RecycleBinException.php
│   │           │   └── RecycleBinClient.php
│   │           ├── Redshift/
│   │           │   ├── Exception/
│   │           │   │   └── RedshiftException.php
│   │           │   └── RedshiftClient.php
│   │           ├── RedshiftDataAPIService/
│   │           │   ├── Exception/
│   │           │   │   └── RedshiftDataAPIServiceException.php
│   │           │   └── RedshiftDataAPIServiceClient.php
│   │           ├── RedshiftServerless/
│   │           │   ├── Exception/
│   │           │   │   └── RedshiftServerlessException.php
│   │           │   └── RedshiftServerlessClient.php
│   │           ├── Rekognition/
│   │           │   ├── Exception/
│   │           │   │   └── RekognitionException.php
│   │           │   └── RekognitionClient.php
│   │           ├── Repostspace/
│   │           │   ├── Exception/
│   │           │   │   └── RepostspaceException.php
│   │           │   └── RepostspaceClient.php
│   │           ├── RequestCompressionMiddleware.php
│   │           ├── ResilienceHub/
│   │           │   ├── Exception/
│   │           │   │   └── ResilienceHubException.php
│   │           │   └── ResilienceHubClient.php
│   │           ├── ResourceExplorer2/
│   │           │   ├── Exception/
│   │           │   │   └── ResourceExplorer2Exception.php
│   │           │   └── ResourceExplorer2Client.php
│   │           ├── ResourceGroups/
│   │           │   ├── Exception/
│   │           │   │   └── ResourceGroupsException.php
│   │           │   └── ResourceGroupsClient.php
│   │           ├── ResourceGroupsTaggingAPI/
│   │           │   ├── Exception/
│   │           │   │   └── ResourceGroupsTaggingAPIException.php
│   │           │   └── ResourceGroupsTaggingAPIClient.php
│   │           ├── ResponseContainerInterface.php
│   │           ├── Result.php
│   │           ├── ResultInterface.php
│   │           ├── ResultPaginator.php
│   │           ├── Retry/
│   │           │   ├── Configuration.php
│   │           │   ├── ConfigurationInterface.php
│   │           │   ├── ConfigurationProvider.php
│   │           │   ├── Exception/
│   │           │   │   └── ConfigurationException.php
│   │           │   ├── QuotaManager.php
│   │           │   ├── RateLimiter.php
│   │           │   └── RetryHelperTrait.php
│   │           ├── RetryMiddleware.php
│   │           ├── RetryMiddlewareV2.php
│   │           ├── RoboMaker/
│   │           │   ├── Exception/
│   │           │   │   └── RoboMakerException.php
│   │           │   └── RoboMakerClient.php
│   │           ├── RolesAnywhere/
│   │           │   ├── Exception/
│   │           │   │   └── RolesAnywhereException.php
│   │           │   └── RolesAnywhereClient.php
│   │           ├── Route53/
│   │           │   ├── Exception/
│   │           │   │   └── Route53Exception.php
│   │           │   └── Route53Client.php
│   │           ├── Route53Domains/
│   │           │   ├── Exception/
│   │           │   │   └── Route53DomainsException.php
│   │           │   └── Route53DomainsClient.php
│   │           ├── Route53Profiles/
│   │           │   ├── Exception/
│   │           │   │   └── Route53ProfilesException.php
│   │           │   └── Route53ProfilesClient.php
│   │           ├── Route53RecoveryCluster/
│   │           │   ├── Exception/
│   │           │   │   └── Route53RecoveryClusterException.php
│   │           │   └── Route53RecoveryClusterClient.php
│   │           ├── Route53RecoveryControlConfig/
│   │           │   ├── Exception/
│   │           │   │   └── Route53RecoveryControlConfigException.php
│   │           │   └── Route53RecoveryControlConfigClient.php
│   │           ├── Route53RecoveryReadiness/
│   │           │   ├── Exception/
│   │           │   │   └── Route53RecoveryReadinessException.php
│   │           │   └── Route53RecoveryReadinessClient.php
│   │           ├── Route53Resolver/
│   │           │   ├── Exception/
│   │           │   │   └── Route53ResolverException.php
│   │           │   └── Route53ResolverClient.php
│   │           ├── S3/
│   │           │   ├── AmbiguousSuccessParser.php
│   │           │   ├── ApplyChecksumMiddleware.php
│   │           │   ├── BatchDelete.php
│   │           │   ├── BucketEndpointArnMiddleware.php
│   │           │   ├── BucketEndpointMiddleware.php
│   │           │   ├── CalculatesChecksumTrait.php
│   │           │   ├── Crypto/
│   │           │   │   ├── CryptoParamsTrait.php
│   │           │   │   ├── CryptoParamsTraitV2.php
│   │           │   │   ├── HeadersMetadataStrategy.php
│   │           │   │   ├── InstructionFileMetadataStrategy.php
│   │           │   │   ├── S3EncryptionClient.php
│   │           │   │   ├── S3EncryptionClientV2.php
│   │           │   │   ├── S3EncryptionMultipartUploader.php
│   │           │   │   ├── S3EncryptionMultipartUploaderV2.php
│   │           │   │   └── UserAgentTrait.php
│   │           │   ├── EndpointRegionHelperTrait.php
│   │           │   ├── Exception/
│   │           │   │   ├── DeleteMultipleObjectsException.php
│   │           │   │   ├── PermanentRedirectException.php
│   │           │   │   ├── S3Exception.php
│   │           │   │   └── S3MultipartUploadException.php
│   │           │   ├── ExpiresParsingMiddleware.php
│   │           │   ├── GetBucketLocationParser.php
│   │           │   ├── MultipartCopy.php
│   │           │   ├── MultipartUploader.php
│   │           │   ├── MultipartUploadingTrait.php
│   │           │   ├── ObjectCopier.php
│   │           │   ├── ObjectUploader.php
│   │           │   ├── Parser/
│   │           │   │   ├── GetBucketLocationResultMutator.php
│   │           │   │   ├── S3Parser.php
│   │           │   │   ├── S3ResultMutator.php
│   │           │   │   └── ValidateResponseChecksumResultMutator.php
│   │           │   ├── PermanentRedirectMiddleware.php
│   │           │   ├── PostObject.php
│   │           │   ├── PostObjectV4.php
│   │           │   ├── PutObjectUrlMiddleware.php
│   │           │   ├── RegionalEndpoint/
│   │           │   │   ├── Configuration.php
│   │           │   │   ├── ConfigurationInterface.php
│   │           │   │   ├── ConfigurationProvider.php
│   │           │   │   └── Exception/
│   │           │   │       └── ConfigurationException.php
│   │           │   ├── RetryableMalformedResponseParser.php
│   │           │   ├── S3Client.php
│   │           │   ├── S3ClientInterface.php
│   │           │   ├── S3ClientTrait.php
│   │           │   ├── S3EndpointMiddleware.php
│   │           │   ├── S3MultiRegionClient.php
│   │           │   ├── S3UriParser.php
│   │           │   ├── SSECMiddleware.php
│   │           │   ├── StreamWrapper.php
│   │           │   ├── Transfer.php
│   │           │   ├── UseArnRegion/
│   │           │   │   ├── Configuration.php
│   │           │   │   ├── ConfigurationInterface.php
│   │           │   │   ├── ConfigurationProvider.php
│   │           │   │   └── Exception/
│   │           │   │       └── ConfigurationException.php
│   │           │   └── ValidateResponseChecksumParser.php
│   │           ├── S3Control/
│   │           │   ├── EndpointArnMiddleware.php
│   │           │   ├── Exception/
│   │           │   │   └── S3ControlException.php
│   │           │   └── S3ControlClient.php
│   │           ├── S3Outposts/
│   │           │   ├── Exception/
│   │           │   │   └── S3OutpostsException.php
│   │           │   └── S3OutpostsClient.php
│   │           ├── S3Tables/
│   │           │   ├── Exception/
│   │           │   │   └── S3TablesException.php
│   │           │   └── S3TablesClient.php
│   │           ├── SSMContacts/
│   │           │   ├── Exception/
│   │           │   │   └── SSMContactsException.php
│   │           │   └── SSMContactsClient.php
│   │           ├── SSMGuiConnect/
│   │           │   ├── Exception/
│   │           │   │   └── SSMGuiConnectException.php
│   │           │   └── SSMGuiConnectClient.php
│   │           ├── SSMIncidents/
│   │           │   ├── Exception/
│   │           │   │   └── SSMIncidentsException.php
│   │           │   └── SSMIncidentsClient.php
│   │           ├── SSMQuickSetup/
│   │           │   ├── Exception/
│   │           │   │   └── SSMQuickSetupException.php
│   │           │   └── SSMQuickSetupClient.php
│   │           ├── SSO/
│   │           │   ├── Exception/
│   │           │   │   └── SSOException.php
│   │           │   └── SSOClient.php
│   │           ├── SSOAdmin/
│   │           │   ├── Exception/
│   │           │   │   └── SSOAdminException.php
│   │           │   └── SSOAdminClient.php
│   │           ├── SSOOIDC/
│   │           │   ├── Exception/
│   │           │   │   └── SSOOIDCException.php
│   │           │   └── SSOOIDCClient.php
│   │           ├── SageMaker/
│   │           │   ├── Exception/
│   │           │   │   └── SageMakerException.php
│   │           │   └── SageMakerClient.php
│   │           ├── SageMakerFeatureStoreRuntime/
│   │           │   ├── Exception/
│   │           │   │   └── SageMakerFeatureStoreRuntimeException.php
│   │           │   └── SageMakerFeatureStoreRuntimeClient.php
│   │           ├── SageMakerGeospatial/
│   │           │   ├── Exception/
│   │           │   │   └── SageMakerGeospatialException.php
│   │           │   └── SageMakerGeospatialClient.php
│   │           ├── SageMakerMetrics/
│   │           │   ├── Exception/
│   │           │   │   └── SageMakerMetricsException.php
│   │           │   └── SageMakerMetricsClient.php
│   │           ├── SageMakerRuntime/
│   │           │   ├── Exception/
│   │           │   │   └── SageMakerRuntimeException.php
│   │           │   └── SageMakerRuntimeClient.php
│   │           ├── SagemakerEdgeManager/
│   │           │   ├── Exception/
│   │           │   │   └── SagemakerEdgeManagerException.php
│   │           │   └── SagemakerEdgeManagerClient.php
│   │           ├── SavingsPlans/
│   │           │   ├── Exception/
│   │           │   │   └── SavingsPlansException.php
│   │           │   └── SavingsPlansClient.php
│   │           ├── Scheduler/
│   │           │   ├── Exception/
│   │           │   │   └── SchedulerException.php
│   │           │   └── SchedulerClient.php
│   │           ├── Schemas/
│   │           │   ├── Exception/
│   │           │   │   └── SchemasException.php
│   │           │   └── SchemasClient.php
│   │           ├── Script/
│   │           │   └── Composer/
│   │           │       └── Composer.php
│   │           ├── Sdk.php
│   │           ├── SecretsManager/
│   │           │   ├── Exception/
│   │           │   │   └── SecretsManagerException.php
│   │           │   └── SecretsManagerClient.php
│   │           ├── SecurityHub/
│   │           │   ├── Exception/
│   │           │   │   └── SecurityHubException.php
│   │           │   └── SecurityHubClient.php
│   │           ├── SecurityIR/
│   │           │   ├── Exception/
│   │           │   │   └── SecurityIRException.php
│   │           │   └── SecurityIRClient.php
│   │           ├── SecurityLake/
│   │           │   ├── Exception/
│   │           │   │   └── SecurityLakeException.php
│   │           │   └── SecurityLakeClient.php
│   │           ├── ServerlessApplicationRepository/
│   │           │   ├── Exception/
│   │           │   │   └── ServerlessApplicationRepositoryException.php
│   │           │   └── ServerlessApplicationRepositoryClient.php
│   │           ├── ServiceCatalog/
│   │           │   ├── Exception/
│   │           │   │   └── ServiceCatalogException.php
│   │           │   └── ServiceCatalogClient.php
│   │           ├── ServiceDiscovery/
│   │           │   ├── Exception/
│   │           │   │   └── ServiceDiscoveryException.php
│   │           │   └── ServiceDiscoveryClient.php
│   │           ├── ServiceQuotas/
│   │           │   ├── Exception/
│   │           │   │   └── ServiceQuotasException.php
│   │           │   └── ServiceQuotasClient.php
│   │           ├── Ses/
│   │           │   ├── Exception/
│   │           │   │   └── SesException.php
│   │           │   └── SesClient.php
│   │           ├── SesV2/
│   │           │   ├── Exception/
│   │           │   │   └── SesV2Exception.php
│   │           │   └── SesV2Client.php
│   │           ├── Sfn/
│   │           │   ├── Exception/
│   │           │   │   └── SfnException.php
│   │           │   └── SfnClient.php
│   │           ├── Shield/
│   │           │   ├── Exception/
│   │           │   │   └── ShieldException.php
│   │           │   └── ShieldClient.php
│   │           ├── Signature/
│   │           │   ├── AnonymousSignature.php
│   │           │   ├── S3ExpressSignature.php
│   │           │   ├── S3SignatureV4.php
│   │           │   ├── SignatureInterface.php
│   │           │   ├── SignatureProvider.php
│   │           │   ├── SignatureTrait.php
│   │           │   └── SignatureV4.php
│   │           ├── SimSpaceWeaver/
│   │           │   ├── Exception/
│   │           │   │   └── SimSpaceWeaverException.php
│   │           │   └── SimSpaceWeaverClient.php
│   │           ├── Sms/
│   │           │   ├── Exception/
│   │           │   │   └── SmsException.php
│   │           │   └── SmsClient.php
│   │           ├── SnowBall/
│   │           │   ├── Exception/
│   │           │   │   └── SnowBallException.php
│   │           │   └── SnowBallClient.php
│   │           ├── SnowDeviceManagement/
│   │           │   ├── Exception/
│   │           │   │   └── SnowDeviceManagementException.php
│   │           │   └── SnowDeviceManagementClient.php
│   │           ├── Sns/
│   │           │   ├── Exception/
│   │           │   │   └── SnsException.php
│   │           │   └── SnsClient.php
│   │           ├── SocialMessaging/
│   │           │   ├── Exception/
│   │           │   │   └── SocialMessagingException.php
│   │           │   └── SocialMessagingClient.php
│   │           ├── Sqs/
│   │           │   ├── Exception/
│   │           │   │   └── SqsException.php
│   │           │   └── SqsClient.php
│   │           ├── Ssm/
│   │           │   ├── Exception/
│   │           │   │   └── SsmException.php
│   │           │   └── SsmClient.php
│   │           ├── SsmSap/
│   │           │   ├── Exception/
│   │           │   │   └── SsmSapException.php
│   │           │   └── SsmSapClient.php
│   │           ├── StorageGateway/
│   │           │   ├── Exception/
│   │           │   │   └── StorageGatewayException.php
│   │           │   └── StorageGatewayClient.php
│   │           ├── StreamRequestPayloadMiddleware.php
│   │           ├── Sts/
│   │           │   ├── Exception/
│   │           │   │   └── StsException.php
│   │           │   ├── RegionalEndpoints/
│   │           │   │   ├── Configuration.php
│   │           │   │   ├── ConfigurationInterface.php
│   │           │   │   ├── ConfigurationProvider.php
│   │           │   │   └── Exception/
│   │           │   │       └── ConfigurationException.php
│   │           │   └── StsClient.php
│   │           ├── SupplyChain/
│   │           │   ├── Exception/
│   │           │   │   └── SupplyChainException.php
│   │           │   └── SupplyChainClient.php
│   │           ├── Support/
│   │           │   ├── Exception/
│   │           │   │   └── SupportException.php
│   │           │   └── SupportClient.php
│   │           ├── SupportApp/
│   │           │   ├── Exception/
│   │           │   │   └── SupportAppException.php
│   │           │   └── SupportAppClient.php
│   │           ├── Swf/
│   │           │   ├── Exception/
│   │           │   │   └── SwfException.php
│   │           │   └── SwfClient.php
│   │           ├── Synthetics/
│   │           │   ├── Exception/
│   │           │   │   └── SyntheticsException.php
│   │           │   └── SyntheticsClient.php
│   │           ├── TaxSettings/
│   │           │   ├── Exception/
│   │           │   │   └── TaxSettingsException.php
│   │           │   └── TaxSettingsClient.php
│   │           ├── Textract/
│   │           │   ├── Exception/
│   │           │   │   └── TextractException.php
│   │           │   └── TextractClient.php
│   │           ├── TimestreamInfluxDB/
│   │           │   ├── Exception/
│   │           │   │   └── TimestreamInfluxDBException.php
│   │           │   └── TimestreamInfluxDBClient.php
│   │           ├── TimestreamQuery/
│   │           │   ├── Exception/
│   │           │   │   └── TimestreamQueryException.php
│   │           │   └── TimestreamQueryClient.php
│   │           ├── TimestreamWrite/
│   │           │   ├── Exception/
│   │           │   │   └── TimestreamWriteException.php
│   │           │   └── TimestreamWriteClient.php
│   │           ├── Tnb/
│   │           │   ├── Exception/
│   │           │   │   └── TnbException.php
│   │           │   └── TnbClient.php
│   │           ├── Token/
│   │           │   ├── BearerTokenAuthorization.php
│   │           │   ├── ParsesIniTrait.php
│   │           │   ├── RefreshableTokenProviderInterface.php
│   │           │   ├── SsoToken.php
│   │           │   ├── SsoTokenProvider.php
│   │           │   ├── Token.php
│   │           │   ├── TokenAuthorization.php
│   │           │   ├── TokenInterface.php
│   │           │   └── TokenProvider.php
│   │           ├── TraceMiddleware.php
│   │           ├── TranscribeService/
│   │           │   ├── Exception/
│   │           │   │   └── TranscribeServiceException.php
│   │           │   └── TranscribeServiceClient.php
│   │           ├── Transfer/
│   │           │   ├── Exception/
│   │           │   │   └── TransferException.php
│   │           │   └── TransferClient.php
│   │           ├── Translate/
│   │           │   ├── Exception/
│   │           │   │   └── TranslateException.php
│   │           │   └── TranslateClient.php
│   │           ├── TrustedAdvisor/
│   │           │   ├── Exception/
│   │           │   │   └── TrustedAdvisorException.php
│   │           │   └── TrustedAdvisorClient.php
│   │           ├── UserAgentMiddleware.php
│   │           ├── VPCLattice/
│   │           │   ├── Exception/
│   │           │   │   └── VPCLatticeException.php
│   │           │   └── VPCLatticeClient.php
│   │           ├── VerifiedPermissions/
│   │           │   ├── Exception/
│   │           │   │   └── VerifiedPermissionsException.php
│   │           │   └── VerifiedPermissionsClient.php
│   │           ├── VoiceID/
│   │           │   ├── Exception/
│   │           │   │   └── VoiceIDException.php
│   │           │   └── VoiceIDClient.php
│   │           ├── WAFV2/
│   │           │   ├── Exception/
│   │           │   │   └── WAFV2Exception.php
│   │           │   └── WAFV2Client.php
│   │           ├── Waf/
│   │           │   ├── Exception/
│   │           │   │   └── WafException.php
│   │           │   └── WafClient.php
│   │           ├── WafRegional/
│   │           │   ├── Exception/
│   │           │   │   └── WafRegionalException.php
│   │           │   └── WafRegionalClient.php
│   │           ├── Waiter.php
│   │           ├── WellArchitected/
│   │           │   ├── Exception/
│   │           │   │   └── WellArchitectedException.php
│   │           │   └── WellArchitectedClient.php
│   │           ├── WorkDocs/
│   │           │   ├── Exception/
│   │           │   │   └── WorkDocsException.php
│   │           │   └── WorkDocsClient.php
│   │           ├── WorkMail/
│   │           │   ├── Exception/
│   │           │   │   └── WorkMailException.php
│   │           │   └── WorkMailClient.php
│   │           ├── WorkMailMessageFlow/
│   │           │   ├── Exception/
│   │           │   │   └── WorkMailMessageFlowException.php
│   │           │   └── WorkMailMessageFlowClient.php
│   │           ├── WorkSpaces/
│   │           │   ├── Exception/
│   │           │   │   └── WorkSpacesException.php
│   │           │   └── WorkSpacesClient.php
│   │           ├── WorkSpacesThinClient/
│   │           │   ├── Exception/
│   │           │   │   └── WorkSpacesThinClientException.php
│   │           │   └── WorkSpacesThinClientClient.php
│   │           ├── WorkSpacesWeb/
│   │           │   ├── Exception/
│   │           │   │   └── WorkSpacesWebException.php
│   │           │   └── WorkSpacesWebClient.php
│   │           ├── WorkspacesInstances/
│   │           │   ├── Exception/
│   │           │   │   └── WorkspacesInstancesException.php
│   │           │   └── WorkspacesInstancesClient.php
│   │           ├── WrappedHttpHandler.php
│   │           ├── XRay/
│   │           │   ├── Exception/
│   │           │   │   └── XRayException.php
│   │           │   └── XRayClient.php
│   │           ├── data/
│   │           │   ├── accessanalyzer/
│   │           │   │   └── 2019-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── account/
│   │           │   │   └── 2021-02-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── defaults-1.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── acm/
│   │           │   │   └── 2015-12-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── acm-pca/
│   │           │   │   └── 2017-08-22/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── aiops/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── aliases.json.php
│   │           │   ├── amp/
│   │           │   │   └── 2020-08-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── amplify/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── amplifybackend/
│   │           │   │   └── 2020-08-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── amplifyuibuilder/
│   │           │   │   └── 2021-08-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── apigateway/
│   │           │   │   └── 2015-07-09/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── apigatewaymanagementapi/
│   │           │   │   └── 2018-11-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── apigatewayv2/
│   │           │   │   └── 2018-11-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── appconfig/
│   │           │   │   └── 2019-10-09/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── appconfigdata/
│   │           │   │   └── 2021-11-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── appfabric/
│   │           │   │   └── 2023-05-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── appflow/
│   │           │   │   └── 2020-08-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── appintegrations/
│   │           │   │   └── 2020-07-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── application-autoscaling/
│   │           │   │   └── 2016-02-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── application-insights/
│   │           │   │   └── 2018-11-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── application-signals/
│   │           │   │   └── 2024-04-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── applicationcostprofiler/
│   │           │   │   └── 2020-09-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── appmesh/
│   │           │   │   ├── 2018-10-01/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   └── paginators-1.json.php
│   │           │   │   └── 2019-01-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── apprunner/
│   │           │   │   └── 2020-05-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── appstream/
│   │           │   │   └── 2016-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── appsync/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── apptest/
│   │           │   │   └── 2022-12-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── arc-zonal-shift/
│   │           │   │   └── 2022-10-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── artifact/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── athena/
│   │           │   │   └── 2017-05-18/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── auditmanager/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── autoscaling/
│   │           │   │   └── 2011-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── autoscaling-plans/
│   │           │   │   └── 2018-01-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── b2bi/
│   │           │   │   └── 2022-06-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── backup/
│   │           │   │   └── 2018-11-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── backup-gateway/
│   │           │   │   └── 2021-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── backupsearch/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── batch/
│   │           │   │   └── 2016-08-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── bcm-data-exports/
│   │           │   │   └── 2023-11-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── bcm-pricing-calculator/
│   │           │   │   └── 2024-06-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── bedrock/
│   │           │   │   └── 2023-04-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── bedrock-agent/
│   │           │   │   └── 2023-06-05/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── bedrock-agent-runtime/
│   │           │   │   └── 2023-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── bedrock-data-automation/
│   │           │   │   └── 2023-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── bedrock-data-automation-runtime/
│   │           │   │   └── 2024-06-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── bedrock-runtime/
│   │           │   │   └── 2023-09-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── billing/
│   │           │   │   └── 2023-09-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── billingconductor/
│   │           │   │   └── 2021-07-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── braket/
│   │           │   │   └── 2019-09-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── budgets/
│   │           │   │   └── 2016-10-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ce/
│   │           │   │   └── 2017-10-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chatbot/
│   │           │   │   └── 2017-10-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chime/
│   │           │   │   └── 2018-05-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chime-sdk-identity/
│   │           │   │   └── 2021-04-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chime-sdk-media-pipelines/
│   │           │   │   └── 2021-07-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chime-sdk-meetings/
│   │           │   │   └── 2021-07-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chime-sdk-messaging/
│   │           │   │   └── 2021-05-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── chime-sdk-voice/
│   │           │   │   └── 2022-08-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cleanrooms/
│   │           │   │   └── 2022-02-17/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── cleanroomsml/
│   │           │   │   └── 2023-09-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── cloud9/
│   │           │   │   └── 2017-09-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cloudcontrol/
│   │           │   │   └── 2021-09-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── clouddirectory/
│   │           │   │   ├── 2016-05-10/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   └── paginators-1.json.php
│   │           │   │   └── 2017-01-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cloudformation/
│   │           │   │   └── 2010-05-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── cloudfront/
│   │           │   │   ├── 2015-07-27/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-01-28/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-08-01/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-08-20/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-09-07/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-09-29/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-11-25/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2017-03-25/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2017-10-30/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── smoke.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2018-06-18/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── smoke.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2018-11-05/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── smoke.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2019-03-26/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── smoke.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   └── 2020-05-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── cloudfront-keyvaluestore/
│   │           │   │   └── 2022-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cloudhsm/
│   │           │   │   └── 2014-05-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cloudhsmv2/
│   │           │   │   └── 2017-04-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── cloudsearch/
│   │           │   │   └── 2013-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── cloudsearchdomain/
│   │           │   │   └── 2013-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       └── endpoint-rule-set-1.json.php
│   │           │   ├── cloudtrail/
│   │           │   │   └── 2013-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── cloudtrail-data/
│   │           │   │   └── 2021-08-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── codeartifact/
│   │           │   │   └── 2018-09-22/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── codebuild/
│   │           │   │   └── 2016-10-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── codecatalyst/
│   │           │   │   └── 2022-09-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── codecommit/
│   │           │   │   └── 2015-04-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── codeconnections/
│   │           │   │   └── 2023-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── codedeploy/
│   │           │   │   └── 2014-10-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── codeguru-reviewer/
│   │           │   │   └── 2019-09-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── codeguru-security/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── codeguruprofiler/
│   │           │   │   └── 2019-07-18/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── codepipeline/
│   │           │   │   └── 2015-07-09/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── codestar-connections/
│   │           │   │   └── 2019-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── codestar-notifications/
│   │           │   │   └── 2019-10-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cognito-identity/
│   │           │   │   └── 2014-06-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── cognito-idp/
│   │           │   │   └── 2016-04-18/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── cognito-sync/
│   │           │   │   └── 2014-06-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── comprehend/
│   │           │   │   └── 2017-11-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── comprehendmedical/
│   │           │   │   └── 2018-10-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── compute-optimizer/
│   │           │   │   └── 2019-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── config/
│   │           │   │   └── 2014-11-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── connect/
│   │           │   │   └── 2017-08-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── connect-contact-lens/
│   │           │   │   └── 2020-08-21/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── connectcampaigns/
│   │           │   │   └── 2021-01-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── connectcampaignsv2/
│   │           │   │   └── 2024-04-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── connectcases/
│   │           │   │   └── 2022-10-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── connectparticipant/
│   │           │   │   └── 2018-09-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── controlcatalog/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── controltower/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── cost-optimization-hub/
│   │           │   │   └── 2022-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── cur/
│   │           │   │   └── 2017-01-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── customer-profiles/
│   │           │   │   └── 2020-08-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── data.iot/
│   │           │   │   └── 2015-05-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── databrew/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── dataexchange/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── datapipeline/
│   │           │   │   └── 2012-10-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── datasync/
│   │           │   │   └── 2018-11-09/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── datazone/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── dax/
│   │           │   │   └── 2017-04-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── deadline/
│   │           │   │   └── 2023-10-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── detective/
│   │           │   │   └── 2018-10-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── devicefarm/
│   │           │   │   └── 2015-06-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── devops-guru/
│   │           │   │   └── 2020-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── directconnect/
│   │           │   │   └── 2012-10-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── directory-service-data/
│   │           │   │   └── 2023-05-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── discovery/
│   │           │   │   └── 2015-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── dlm/
│   │           │   │   └── 2018-01-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── dms/
│   │           │   │   └── 2016-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── docdb/
│   │           │   │   └── 2014-10-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── docdb-elastic/
│   │           │   │   └── 2022-11-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── drs/
│   │           │   │   └── 2020-02-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ds/
│   │           │   │   └── 2015-04-16/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── dsql/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── dynamodb/
│   │           │   │   ├── 2011-12-05/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── smoke.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   └── 2012-08-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── ebs/
│   │           │   │   └── 2019-11-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ec2/
│   │           │   │   ├── 2015-10-01/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-04-01/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   ├── 2016-09-15/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   ├── waiters-1.json.php
│   │           │   │   │   └── waiters-2.json.php
│   │           │   │   └── 2016-11-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── ec2-instance-connect/
│   │           │   │   └── 2018-04-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ecr/
│   │           │   │   └── 2015-09-21/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── ecr-public/
│   │           │   │   └── 2020-10-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ecs/
│   │           │   │   └── 2014-11-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── eks/
│   │           │   │   └── 2017-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── eks-auth/
│   │           │   │   └── 2023-11-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── elasticache/
│   │           │   │   └── 2015-02-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── elasticbeanstalk/
│   │           │   │   └── 2010-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── elasticfilesystem/
│   │           │   │   └── 2015-02-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── elasticloadbalancing/
│   │           │   │   └── 2012-06-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── elasticloadbalancingv2/
│   │           │   │   └── 2015-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── elasticmapreduce/
│   │           │   │   └── 2009-03-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── elastictranscoder/
│   │           │   │   └── 2012-09-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── email/
│   │           │   │   └── 2010-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── emr-containers/
│   │           │   │   └── 2020-10-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── emr-serverless/
│   │           │   │   └── 2021-07-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── endpoints.json.php
│   │           │   ├── endpoints_prefix_history.json.php
│   │           │   ├── entitlement.marketplace/
│   │           │   │   └── 2017-01-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── entityresolution/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── es/
│   │           │   │   └── 2015-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── eventbridge/
│   │           │   │   └── 2015-10-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── events/
│   │           │   │   └── 2015-10-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── evidently/
│   │           │   │   └── 2021-02-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── evs/
│   │           │   │   └── 2023-07-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── finspace/
│   │           │   │   └── 2021-03-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── finspace-data/
│   │           │   │   └── 2020-07-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── firehose/
│   │           │   │   └── 2015-08-04/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── fis/
│   │           │   │   └── 2020-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── fms/
│   │           │   │   └── 2018-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── forecast/
│   │           │   │   └── 2018-06-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── forecastquery/
│   │           │   │   └── 2018-06-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── frauddetector/
│   │           │   │   └── 2019-11-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── freetier/
│   │           │   │   └── 2023-09-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── fsx/
│   │           │   │   └── 2018-03-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── gamelift/
│   │           │   │   └── 2015-10-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── gameliftstreams/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── geo-maps/
│   │           │   │   └── 2020-11-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── geo-places/
│   │           │   │   └── 2020-11-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── geo-routes/
│   │           │   │   └── 2020-11-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── glacier/
│   │           │   │   └── 2012-06-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── globalaccelerator/
│   │           │   │   └── 2018-08-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── glue/
│   │           │   │   └── 2017-03-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── grafana/
│   │           │   │   └── 2020-08-18/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── defaults-1.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── grandfathered-services.json.php
│   │           │   ├── greengrass/
│   │           │   │   └── 2017-06-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       └── endpoint-rule-set-1.json.php
│   │           │   ├── greengrassv2/
│   │           │   │   └── 2020-11-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── groundstation/
│   │           │   │   └── 2019-05-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── guardduty/
│   │           │   │   └── 2017-11-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── health/
│   │           │   │   └── 2016-08-04/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── healthlake/
│   │           │   │   └── 2017-07-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iam/
│   │           │   │   └── 2010-05-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── identitystore/
│   │           │   │   └── 2020-06-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── imagebuilder/
│   │           │   │   └── 2019-12-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── importexport/
│   │           │   │   └── 2010-06-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── inspector/
│   │           │   │   └── 2016-02-16/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── inspector-scan/
│   │           │   │   └── 2023-08-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── inspector2/
│   │           │   │   └── 2020-06-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── internetmonitor/
│   │           │   │   └── 2021-06-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── invoicing/
│   │           │   │   └── 2024-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── iot/
│   │           │   │   └── 2015-05-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── iot-jobs-data/
│   │           │   │   └── 2017-09-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iot-managed-integrations/
│   │           │   │   └── 2025-03-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotanalytics/
│   │           │   │   └── 2017-11-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotdeviceadvisor/
│   │           │   │   └── 2020-09-18/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotevents/
│   │           │   │   └── 2018-07-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotevents-data/
│   │           │   │   └── 2018-10-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotfleethub/
│   │           │   │   └── 2020-11-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotfleetwise/
│   │           │   │   └── 2021-06-17/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── iotsecuretunneling/
│   │           │   │   └── 2018-10-05/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iotsitewise/
│   │           │   │   └── 2019-12-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── iotthingsgraph/
│   │           │   │   └── 2018-09-06/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── iottwinmaker/
│   │           │   │   └── 2021-11-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── iotwireless/
│   │           │   │   └── 2020-11-22/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ivs/
│   │           │   │   └── 2020-07-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ivs-realtime/
│   │           │   │   └── 2020-07-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── ivschat/
│   │           │   │   └── 2020-07-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── kafka/
│   │           │   │   └── 2018-11-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kafkaconnect/
│   │           │   │   └── 2021-09-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── kendra/
│   │           │   │   └── 2019-02-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kendra-ranking/
│   │           │   │   └── 2022-10-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── keyspaces/
│   │           │   │   └── 2022-02-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── keyspacesstreams/
│   │           │   │   └── 2024-09-09/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── kinesis/
│   │           │   │   └── 2013-12-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── kinesis-video-archived-media/
│   │           │   │   └── 2017-09-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kinesis-video-media/
│   │           │   │   └── 2017-09-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kinesis-video-signaling/
│   │           │   │   └── 2019-12-04/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kinesis-video-webrtc-storage/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kinesisanalytics/
│   │           │   │   └── 2015-08-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kinesisanalyticsv2/
│   │           │   │   └── 2018-05-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kinesisvideo/
│   │           │   │   └── 2017-09-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── kms/
│   │           │   │   └── 2014-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── lakeformation/
│   │           │   │   └── 2017-03-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── lambda/
│   │           │   │   └── 2015-03-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── launch-wizard/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── lex-models/
│   │           │   │   └── 2017-04-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── license-manager/
│   │           │   │   └── 2018-08-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── license-manager-linux-subscriptions/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── license-manager-user-subscriptions/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── lightsail/
│   │           │   │   └── 2016-11-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── location/
│   │           │   │   └── 2020-11-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── logs/
│   │           │   │   └── 2014-03-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── lookoutequipment/
│   │           │   │   └── 2020-12-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── lookoutmetrics/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── lookoutvision/
│   │           │   │   └── 2020-11-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── m2/
│   │           │   │   └── 2021-04-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── machinelearning/
│   │           │   │   └── 2014-12-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── macie2/
│   │           │   │   └── 2020-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── mailmanager/
│   │           │   │   └── 2023-10-17/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── managedblockchain/
│   │           │   │   └── 2018-09-24/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── managedblockchain-query/
│   │           │   │   └── 2023-05-04/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── manifest.json.php
│   │           │   ├── marketplace-agreement/
│   │           │   │   └── 2020-03-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── marketplace-catalog/
│   │           │   │   └── 2018-09-17/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── marketplace-deployment/
│   │           │   │   └── 2023-01-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── marketplace-reporting/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── marketplacecommerceanalytics/
│   │           │   │   └── 2015-07-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── mediaconnect/
│   │           │   │   └── 2018-11-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── mediaconvert/
│   │           │   │   └── 2017-08-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── medialive/
│   │           │   │   └── 2017-10-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── mediapackage/
│   │           │   │   └── 2017-10-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mediapackage-vod/
│   │           │   │   └── 2018-11-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mediapackagev2/
│   │           │   │   └── 2022-12-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── mediastore/
│   │           │   │   └── 2017-09-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mediastore-data/
│   │           │   │   └── 2017-09-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mediatailor/
│   │           │   │   └── 2018-04-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── medical-imaging/
│   │           │   │   └── 2023-07-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── memorydb/
│   │           │   │   └── 2021-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── metering.marketplace/
│   │           │   │   └── 2016-01-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mgh/
│   │           │   │   └── 2017-05-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mgn/
│   │           │   │   └── 2020-02-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── migration-hub-refactor-spaces/
│   │           │   │   └── 2021-10-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── migrationhub-config/
│   │           │   │   └── 2019-06-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── migrationhuborchestrator/
│   │           │   │   └── 2021-08-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── migrationhubstrategy/
│   │           │   │   └── 2020-02-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── models.lex.v2/
│   │           │   │   └── 2020-08-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── monitoring/
│   │           │   │   └── 2010-08-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── mpa/
│   │           │   │   └── 2022-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── mq/
│   │           │   │   └── 2017-11-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── mturk-requester/
│   │           │   │   └── 2017-01-17/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── mwaa/
│   │           │   │   └── 2020-07-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── neptune/
│   │           │   │   └── 2014-10-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── neptune-graph/
│   │           │   │   └── 2023-11-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── neptunedata/
│   │           │   │   └── 2023-08-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── network-firewall/
│   │           │   │   └── 2020-11-12/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── networkflowmonitor/
│   │           │   │   └── 2023-04-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── networkmanager/
│   │           │   │   └── 2019-07-05/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── networkmonitor/
│   │           │   │   └── 2023-08-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── notifications/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── notificationscontacts/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── oam/
│   │           │   │   └── 2022-06-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── observabilityadmin/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── odb/
│   │           │   │   └── 2024-08-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── omics/
│   │           │   │   └── 2022-11-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── defaults-1.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── opensearch/
│   │           │   │   └── 2021-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── opensearchserverless/
│   │           │   │   └── 2021-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── opsworks/
│   │           │   │   └── 2013-02-18/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── opsworkscm/
│   │           │   │   └── 2016-11-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── organizations/
│   │           │   │   └── 2016-11-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── osis/
│   │           │   │   └── 2022-01-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── outposts/
│   │           │   │   └── 2019-12-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── panorama/
│   │           │   │   └── 2019-07-24/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── partitions.json.php
│   │           │   ├── partnercentral-selling/
│   │           │   │   └── 2022-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── payment-cryptography/
│   │           │   │   └── 2021-09-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── payment-cryptography-data/
│   │           │   │   └── 2022-02-03/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── pca-connector-ad/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── pca-connector-scep/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── pcs/
│   │           │   │   └── 2023-02-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── personalize/
│   │           │   │   └── 2018-05-22/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── personalize-events/
│   │           │   │   └── 2018-03-22/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── personalize-runtime/
│   │           │   │   └── 2018-05-22/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── pi/
│   │           │   │   └── 2018-02-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── pinpoint/
│   │           │   │   └── 2016-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       └── endpoint-rule-set-1.json.php
│   │           │   ├── pinpoint-email/
│   │           │   │   └── 2018-07-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── pinpoint-sms-voice-v2/
│   │           │   │   └── 2022-03-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── pipes/
│   │           │   │   └── 2015-10-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── polly/
│   │           │   │   └── 2016-06-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── pricing/
│   │           │   │   └── 2017-10-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── proton/
│   │           │   │   └── 2020-07-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── qapps/
│   │           │   │   └── 2023-11-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── qbusiness/
│   │           │   │   └── 2023-11-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── qconnect/
│   │           │   │   └── 2020-10-19/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── qldb/
│   │           │   │   └── 2019-01-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── qldb-session/
│   │           │   │   └── 2019-07-11/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── quicksight/
│   │           │   │   └── 2018-04-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── ram/
│   │           │   │   └── 2018-01-04/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── rbin/
│   │           │   │   └── 2021-06-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── rds/
│   │           │   │   ├── 2014-09-01/
│   │           │   │   │   ├── api-2.json.php
│   │           │   │   │   ├── endpoint-rule-set-1.json.php
│   │           │   │   │   ├── paginators-1.json.php
│   │           │   │   │   └── smoke.json.php
│   │           │   │   └── 2014-10-31/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── rds-data/
│   │           │   │   └── 2018-08-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── redshift/
│   │           │   │   └── 2012-12-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── redshift-data/
│   │           │   │   └── 2019-12-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── redshift-serverless/
│   │           │   │   └── 2021-04-21/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── rekognition/
│   │           │   │   └── 2016-06-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── repostspace/
│   │           │   │   └── 2022-05-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── resiliencehub/
│   │           │   │   └── 2020-04-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── resource-explorer-2/
│   │           │   │   └── 2022-07-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── resource-groups/
│   │           │   │   └── 2017-11-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── resourcegroupstaggingapi/
│   │           │   │   └── 2017-01-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── robomaker/
│   │           │   │   └── 2018-06-29/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── rolesanywhere/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── route53/
│   │           │   │   └── 2013-04-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── route53-recovery-cluster/
│   │           │   │   └── 2019-12-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── route53-recovery-control-config/
│   │           │   │   └── 2020-11-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── route53-recovery-readiness/
│   │           │   │   └── 2019-12-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── route53domains/
│   │           │   │   └── 2014-05-15/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── route53profiles/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── route53resolver/
│   │           │   │   └── 2018-04-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── rum/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── runtime.lex/
│   │           │   │   └── 2016-11-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── runtime.lex.v2/
│   │           │   │   └── 2020-08-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── runtime.sagemaker/
│   │           │   │   └── 2017-05-13/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── s3/
│   │           │   │   └── 2006-03-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       ├── waiters-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── s3control/
│   │           │   │   └── 2018-08-20/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── s3outposts/
│   │           │   │   └── 2017-07-25/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── s3tables/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── sagemaker/
│   │           │   │   └── 2017-07-24/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── sagemaker-a2i-runtime/
│   │           │   │   └── 2019-11-07/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── sagemaker-edge/
│   │           │   │   └── 2020-09-23/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── sagemaker-featurestore-runtime/
│   │           │   │   └── 2020-07-01/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── sagemaker-geospatial/
│   │           │   │   └── 2020-05-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── sagemaker-metrics/
│   │           │   │   └── 2022-09-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── savingsplans/
│   │           │   │   └── 2019-06-28/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── scheduler/
│   │           │   │   └── 2021-06-30/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── schemas/
│   │           │   │   └── 2019-12-02/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── sdk-default-configuration.json.php
│   │           │   ├── secretsmanager/
│   │           │   │   └── 2017-10-17/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── security-ir/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       ├── smoke.json.php
│   │           │   │       └── waiters-2.json.php
│   │           │   ├── securityhub/
│   │           │   │   └── 2018-10-26/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── securitylake/
│   │           │   │   └── 2018-05-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── serverlessrepo/
│   │           │   │   └── 2017-09-08/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── service-quotas/
│   │           │   │   └── 2019-06-24/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── servicecatalog/
│   │           │   │   └── 2015-12-10/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       ├── paginators-1.json.php
│   │           │   │       └── smoke.json.php
│   │           │   ├── servicecatalog-appregistry/
│   │           │   │   └── 2020-06-24/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── servicediscovery/
│   │           │   │   └── 2017-03-14/
│   │           │   │       ├── api-2.json.php
│   │           │   │       ├── endpoint-rule-set-1.json.php
│   │           │   │       └── paginators-1.json.php
│   │           │   ├── sesv2/
│   │           │   │   └── 2019-09-27/
│   │           │   │       ├── api-2.json.php
│   │           │   │ 
Download .txt
Showing preview only (5,935K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (59230 symbols across 8960 files)

FILE: _ide_helper.php
  class App (line 21) | class App {
    method configure (line 29) | public static function configure($basePath = null)
    method inferBasePath (line 40) | public static function inferBasePath()
    method version (line 51) | public static function version()
    method bootstrapWith (line 64) | public static function bootstrapWith($bootstrappers)
    method afterLoadingEnvironment (line 77) | public static function afterLoadingEnvironment($callback)
    method beforeBootstrapping (line 91) | public static function beforeBootstrapping($bootstrapper, $callback)
    method afterBootstrapping (line 105) | public static function afterBootstrapping($bootstrapper, $callback)
    method hasBeenBootstrapped (line 117) | public static function hasBeenBootstrapped()
    method setBasePath (line 130) | public static function setBasePath($basePath)
    method path (line 143) | public static function path($path = '')
    method useAppPath (line 156) | public static function useAppPath($path)
    method basePath (line 169) | public static function basePath($path = '')
    method bootstrapPath (line 182) | public static function bootstrapPath($path = '')
    method getBootstrapProvidersPath (line 194) | public static function getBootstrapProvidersPath()
    method useBootstrapPath (line 207) | public static function useBootstrapPath($path)
    method configPath (line 220) | public static function configPath($path = '')
    method useConfigPath (line 233) | public static function useConfigPath($path)
    method databasePath (line 246) | public static function databasePath($path = '')
    method useDatabasePath (line 259) | public static function useDatabasePath($path)
    method langPath (line 272) | public static function langPath($path = '')
    method useLangPath (line 285) | public static function useLangPath($path)
    method publicPath (line 298) | public static function publicPath($path = '')
    method usePublicPath (line 311) | public static function usePublicPath($path)
    method storagePath (line 324) | public static function storagePath($path = '')
    method useStoragePath (line 337) | public static function useStoragePath($path)
    method resourcePath (line 350) | public static function resourcePath($path = '')
    method viewPath (line 365) | public static function viewPath($path = '')
    method joinPaths (line 379) | public static function joinPaths($basePath, $path = '')
    method environmentPath (line 391) | public static function environmentPath()
    method useEnvironmentPath (line 404) | public static function useEnvironmentPath($path)
    method loadEnvironmentFrom (line 417) | public static function loadEnvironmentFrom($file)
    method environmentFile (line 429) | public static function environmentFile()
    method environmentFilePath (line 441) | public static function environmentFilePath()
    method environment (line 454) | public static function environment(...$environments)
    method isLocal (line 466) | public static function isLocal()
    method isProduction (line 478) | public static function isProduction()
    method detectEnvironment (line 491) | public static function detectEnvironment($callback)
    method runningInConsole (line 503) | public static function runningInConsole()
    method runningConsoleCommand (line 516) | public static function runningConsoleCommand(...$commands)
    method runningUnitTests (line 528) | public static function runningUnitTests()
    method hasDebugModeEnabled (line 540) | public static function hasDebugModeEnabled()
    method registered (line 553) | public static function registered($callback)
    method registerConfiguredProviders (line 565) | public static function registerConfiguredProviders()
    method register (line 579) | public static function register($provider, $force = false)
    method getProvider (line 592) | public static function getProvider($provider)
    method getProviders (line 605) | public static function getProviders($provider)
    method resolveProvider (line 618) | public static function resolveProvider($provider)
    method loadDeferredProviders (line 630) | public static function loadDeferredProviders()
    method loadDeferredProvider (line 643) | public static function loadDeferredProvider($service)
    method registerDeferredProvider (line 657) | public static function registerDeferredProvider($provider, $service = ...
    method make (line 673) | public static function make($abstract, $parameters = [])
    method bound (line 686) | public static function bound($abstract)
    method isBooted (line 698) | public static function isBooted()
    method boot (line 710) | public static function boot()
    method booting (line 723) | public static function booting($callback)
    method booted (line 736) | public static function booted($callback)
    method handle (line 748) | public static function handle($request, $type = 1, $catch = true)
    method handleRequest (line 761) | public static function handleRequest($request)
    method handleCommand (line 774) | public static function handleCommand($input)
    method shouldMergeFrameworkConfiguration (line 786) | public static function shouldMergeFrameworkConfiguration()
    method dontMergeFrameworkConfiguration (line 798) | public static function dontMergeFrameworkConfiguration()
    method shouldSkipMiddleware (line 810) | public static function shouldSkipMiddleware()
    method getCachedServicesPath (line 822) | public static function getCachedServicesPath()
    method getCachedPackagesPath (line 834) | public static function getCachedPackagesPath()
    method configurationIsCached (line 846) | public static function configurationIsCached()
    method getCachedConfigPath (line 858) | public static function getCachedConfigPath()
    method routesAreCached (line 870) | public static function routesAreCached()
    method getCachedRoutesPath (line 882) | public static function getCachedRoutesPath()
    method eventsAreCached (line 894) | public static function eventsAreCached()
    method getCachedEventsPath (line 906) | public static function getCachedEventsPath()
    method addAbsoluteCachePathPrefix (line 919) | public static function addAbsoluteCachePathPrefix($prefix)
    method maintenanceMode (line 931) | public static function maintenanceMode()
    method isDownForMaintenance (line 943) | public static function isDownForMaintenance()
    method abort (line 960) | public static function abort($code, $message = '', $headers = [])
    method terminating (line 973) | public static function terminating($callback)
    method terminate (line 985) | public static function terminate()
    method getLoadedProviders (line 997) | public static function getLoadedProviders()
    method providerIsLoaded (line 1010) | public static function providerIsLoaded($provider)
    method getDeferredServices (line 1022) | public static function getDeferredServices()
    method setDeferredServices (line 1035) | public static function setDeferredServices($services)
    method isDeferredService (line 1048) | public static function isDeferredService($service)
    method addDeferredServices (line 1061) | public static function addDeferredServices($services)
    method removeDeferredServices (line 1074) | public static function removeDeferredServices($services)
    method provideFacades (line 1087) | public static function provideFacades($namespace)
    method getLocale (line 1099) | public static function getLocale()
    method currentLocale (line 1111) | public static function currentLocale()
    method getFallbackLocale (line 1123) | public static function getFallbackLocale()
    method setLocale (line 1136) | public static function setLocale($locale)
    method setFallbackLocale (line 1149) | public static function setFallbackLocale($fallbackLocale)
    method isLocale (line 1162) | public static function isLocale($locale)
    method registerCoreContainerAliases (line 1174) | public static function registerCoreContainerAliases()
    method flush (line 1186) | public static function flush()
    method getNamespace (line 1199) | public static function getNamespace()
    method when (line 1212) | public static function when($concrete)
    method whenHasAttribute (line 1227) | public static function whenHasAttribute($attribute, $handler)
    method has (line 1247) | public static function has($id)
    method resolved (line 1261) | public static function resolved($abstract)
    method isShared (line 1275) | public static function isShared($abstract)
    method isAlias (line 1289) | public static function isAlias($name)
    method bind (line 1306) | public static function bind($abstract, $concrete = null, $shared = false)
    method hasMethodBinding (line 1320) | public static function hasMethodBinding($method)
    method bindMethod (line 1335) | public static function bindMethod($method, $callback)
    method callMethodBinding (line 1350) | public static function callMethodBinding($method, $instance)
    method addContextualBinding (line 1366) | public static function addContextualBinding($concrete, $abstract, $imp...
    method bindIf (line 1382) | public static function bindIf($abstract, $concrete = null, $shared = f...
    method singleton (line 1397) | public static function singleton($abstract, $concrete = null)
    method singletonIf (line 1412) | public static function singletonIf($abstract, $concrete = null)
    method scoped (line 1427) | public static function scoped($abstract, $concrete = null)
    method scopedIf (line 1442) | public static function scopedIf($abstract, $concrete = null)
    method extend (line 1458) | public static function extend($abstract, $closure)
    method instance (line 1474) | public static function instance($abstract, $instance)
    method tag (line 1489) | public static function tag($abstracts, $tags)
    method tagged (line 1503) | public static function tagged($tag)
    method alias (line 1519) | public static function alias($abstract, $alias)
    method rebinding (line 1534) | public static function rebinding($abstract, $callback)
    method refresh (line 1550) | public static function refresh($abstract, $target, $method)
    method wrap (line 1565) | public static function wrap($callback, $parameters = [])
    method call (line 1582) | public static function call($callback, $parameters = [], $defaultMetho...
    method factory (line 1597) | public static function factory($abstract)
    method makeWith (line 1614) | public static function makeWith($abstract, $parameters = [])
    method get (line 1629) | public static function get($id)
    method build (line 1646) | public static function build($concrete)
    method resolveFromAttribute (line 1660) | public static function resolveFromAttribute($attribute)
    method beforeResolving (line 1675) | public static function beforeResolving($abstract, $callback = null)
    method resolving (line 1690) | public static function resolving($abstract, $callback = null)
    method afterResolving (line 1705) | public static function afterResolving($abstract, $callback = null)
    method afterResolvingAttribute (line 1720) | public static function afterResolvingAttribute($attribute, $callback)
    method fireAfterResolvingAttributeCallbacks (line 1735) | public static function fireAfterResolvingAttributeCallbacks($attribute...
    method getBindings (line 1748) | public static function getBindings()
    method getAlias (line 1762) | public static function getAlias($abstract)
    method forgetExtenders (line 1776) | public static function forgetExtenders($abstract)
    method forgetInstance (line 1790) | public static function forgetInstance($abstract)
    method forgetInstances (line 1803) | public static function forgetInstances()
    method forgetScopedInstances (line 1816) | public static function forgetScopedInstances()
    method getInstance (line 1829) | public static function getInstance()
    method setInstance (line 1842) | public static function setInstance($container = null)
    method offsetExists (line 1855) | public static function offsetExists($key)
    method offsetGet (line 1869) | public static function offsetGet($key)
    method offsetSet (line 1884) | public static function offsetSet($key, $value)
    method offsetUnset (line 1898) | public static function offsetUnset($key)
    method macro (line 1914) | public static function macro($name, $macro)
    method mixin (line 1928) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 1940) | public static function hasMacro($name)
    method flushMacros (line 1951) | public static function flushMacros()
  class Artisan (line 1962) | class Artisan {
    method rerouteSymfonyCommandEvents (line 1970) | public static function rerouteSymfonyCommandEvents()
    method handle (line 1984) | public static function handle($input, $output = null)
    method terminate (line 1998) | public static function terminate($input, $status)
    method whenCommandLifecycleIsLongerThan (line 2012) | public static function whenCommandLifecycleIsLongerThan($threshold, $h...
    method commandStartedAt (line 2024) | public static function commandStartedAt()
    method resolveConsoleSchedule (line 2036) | public static function resolveConsoleSchedule()
    method command (line 2050) | public static function command($signature, $callback)
    method registerCommand (line 2063) | public static function registerCommand($command)
    method call (line 2079) | public static function call($command, $parameters = [], $outputBuffer ...
    method queue (line 2093) | public static function queue($command, $parameters = [])
    method all (line 2105) | public static function all()
    method output (line 2117) | public static function output()
    method bootstrap (line 2129) | public static function bootstrap()
    method bootstrapWithoutBootingProviders (line 2141) | public static function bootstrapWithoutBootingProviders()
    method setArtisan (line 2154) | public static function setArtisan($artisan)
    method addCommands (line 2167) | public static function addCommands($commands)
    method addCommandPaths (line 2180) | public static function addCommandPaths($paths)
    method addCommandRoutePaths (line 2193) | public static function addCommandRoutePaths($paths)
  class Auth (line 2206) | class Auth {
    method guard (line 2214) | public static function guard($name = null)
    method createSessionDriver (line 2228) | public static function createSessionDriver($name, $config)
    method createTokenDriver (line 2242) | public static function createTokenDriver($name, $config)
    method getDefaultDriver (line 2254) | public static function getDefaultDriver()
    method shouldUse (line 2267) | public static function shouldUse($name)
    method setDefaultDriver (line 2280) | public static function setDefaultDriver($name)
    method viaRequest (line 2294) | public static function viaRequest($driver, $callback)
    method userResolver (line 2306) | public static function userResolver()
    method resolveUsersUsing (line 2319) | public static function resolveUsersUsing($userResolver)
    method extend (line 2333) | public static function extend($driver, $callback)
    method provider (line 2347) | public static function provider($name, $callback)
    method hasResolvedGuards (line 2359) | public static function hasResolvedGuards()
    method forgetGuards (line 2371) | public static function forgetGuards()
    method setApplication (line 2384) | public static function setApplication($app)
    method createUserProvider (line 2398) | public static function createUserProvider($provider = null)
    method getDefaultUserProvider (line 2410) | public static function getDefaultUserProvider()
    method user (line 2422) | public static function user()
    method id (line 2434) | public static function id()
    method once (line 2447) | public static function once($credentials = [])
    method onceUsingId (line 2460) | public static function onceUsingId($id)
    method validate (line 2473) | public static function validate($credentials = [])
    method basic (line 2488) | public static function basic($field = 'email', $extraConditions = [])
    method onceBasic (line 2503) | public static function onceBasic($field = 'email', $extraConditions = [])
    method attempt (line 2517) | public static function attempt($credentials = [], $remember = false)
    method attemptWhen (line 2532) | public static function attemptWhen($credentials = [], $callbacks = nul...
    method loginUsingId (line 2546) | public static function loginUsingId($id, $remember = false)
    method login (line 2560) | public static function login($user, $remember = false)
    method logout (line 2572) | public static function logout()
    method logoutCurrentDevice (line 2586) | public static function logoutCurrentDevice()
    method logoutOtherDevices (line 2602) | public static function logoutOtherDevices($password)
    method attempting (line 2615) | public static function attempting($callback)
    method getLastAttempted (line 2627) | public static function getLastAttempted()
    method getName (line 2639) | public static function getName()
    method getRecallerName (line 2651) | public static function getRecallerName()
    method viaRemember (line 2663) | public static function viaRemember()
    method setRememberDuration (line 2676) | public static function setRememberDuration($minutes)
    method getCookieJar (line 2689) | public static function getCookieJar()
    method setCookieJar (line 2702) | public static function setCookieJar($cookie)
    method getDispatcher (line 2714) | public static function getDispatcher()
    method setDispatcher (line 2727) | public static function setDispatcher($events)
    method getSession (line 2739) | public static function getSession()
    method getUser (line 2751) | public static function getUser()
    method setUser (line 2764) | public static function setUser($user)
    method getRequest (line 2776) | public static function getRequest()
    method setRequest (line 2789) | public static function setRequest($request)
    method getTimebox (line 2801) | public static function getTimebox()
    method authenticate (line 2814) | public static function authenticate()
    method hasUser (line 2826) | public static function hasUser()
    method check (line 2838) | public static function check()
    method guest (line 2850) | public static function guest()
    method forgetUser (line 2862) | public static function forgetUser()
    method getProvider (line 2874) | public static function getProvider()
    method setProvider (line 2887) | public static function setProvider($provider)
    method macro (line 2902) | public static function macro($name, $macro)
    method mixin (line 2916) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 2928) | public static function hasMacro($name)
    method flushMacros (line 2939) | public static function flushMacros()
  class Blade (line 2950) | class Blade {
    method compile (line 2958) | public static function compile($path = null)
    method getPath (line 2970) | public static function getPath()
    method setPath (line 2983) | public static function setPath($path)
    method compileString (line 2996) | public static function compileString($value)
    method render (line 3011) | public static function render($string, $data = [], $deleteCachedView =...
    method renderComponent (line 3023) | public static function renderComponent($component)
    method stripParentheses (line 3035) | public static function stripParentheses($expression)
    method extend (line 3048) | public static function extend($compiler)
    method getExtensions (line 3060) | public static function getExtensions()
    method if (line 3074) | public static function if($name, $callback)
    method check (line 3088) | public static function check($name, ...$parameters)
    method component (line 3103) | public static function component($class, $alias = null, $prefix = '')
    method components (line 3117) | public static function components($components, $prefix = '')
    method getClassComponentAliases (line 3129) | public static function getClassComponentAliases()
    method anonymousComponentPath (line 3143) | public static function anonymousComponentPath($path, $prefix = null)
    method anonymousComponentNamespace (line 3157) | public static function anonymousComponentNamespace($directory, $prefix...
    method componentNamespace (line 3171) | public static function componentNamespace($namespace, $prefix)
    method getAnonymousComponentPaths (line 3183) | public static function getAnonymousComponentPaths()
    method getAnonymousComponentNamespaces (line 3195) | public static function getAnonymousComponentNamespaces()
    method getClassComponentNamespaces (line 3207) | public static function getClassComponentNamespaces()
    method aliasComponent (line 3221) | public static function aliasComponent($path, $alias = null)
    method include (line 3235) | public static function include($path, $alias = null)
    method aliasInclude (line 3249) | public static function aliasInclude($path, $alias = null)
    method bindDirective (line 3264) | public static function bindDirective($name, $handler)
    method directive (line 3280) | public static function directive($name, $handler, $bind = false)
    method getCustomDirectives (line 3292) | public static function getCustomDirectives()
    method prepareStringsForCompilationUsing (line 3305) | public static function prepareStringsForCompilationUsing($callback)
    method precompiler (line 3318) | public static function precompiler($precompiler)
    method usingEchoFormat (line 3332) | public static function usingEchoFormat($format, $callback)
    method setEchoFormat (line 3345) | public static function setEchoFormat($format)
    method withDoubleEncoding (line 3357) | public static function withDoubleEncoding()
    method withoutDoubleEncoding (line 3369) | public static function withoutDoubleEncoding()
    method withoutComponentTags (line 3381) | public static function withoutComponentTags()
    method getCompiledPath (line 3394) | public static function getCompiledPath($path)
    method isExpired (line 3409) | public static function isExpired($path)
    method newComponentHash (line 3423) | public static function newComponentHash($component)
    method compileClassComponentOpening (line 3438) | public static function compileClassComponentOpening($component, $alias...
    method compileEndComponentClass (line 3449) | public static function compileEndComponentClass()
    method sanitizeComponentAttribute (line 3462) | public static function sanitizeComponentAttribute($value)
    method compileEndOnce (line 3473) | public static function compileEndOnce()
    method stringable (line 3487) | public static function stringable($class, $handler = null)
    method compileEchos (line 3500) | public static function compileEchos($value)
    method applyEchoHandler (line 3513) | public static function applyEchoHandler($value)
  class Broadcast (line 3533) | class Broadcast {
    method routes (line 3541) | public static function routes($attributes = null)
    method userRoutes (line 3554) | public static function userRoutes($attributes = null)
    method channelRoutes (line 3569) | public static function channelRoutes($attributes = null)
    method socket (line 3582) | public static function socket($request = null)
    method on (line 3593) | public static function on($channels)
    method private (line 3604) | public static function private($channel)
    method presence (line 3615) | public static function presence($channel)
    method event (line 3628) | public static function event($event = null)
    method queue (line 3641) | public static function queue($event)
    method connection (line 3654) | public static function connection($driver = null)
    method driver (line 3667) | public static function driver($name = null)
    method pusher (line 3680) | public static function pusher($config)
    method ably (line 3693) | public static function ably($config)
    method getDefaultDriver (line 3705) | public static function getDefaultDriver()
    method setDefaultDriver (line 3718) | public static function setDefaultDriver($name)
    method purge (line 3731) | public static function purge($name = null)
    method extend (line 3745) | public static function extend($driver, $callback)
    method getApplication (line 3757) | public static function getApplication()
    method setApplication (line 3770) | public static function setApplication($app)
    method forgetDrivers (line 3782) | public static function forgetDrivers()
  class Bus (line 3795) | class Bus {
    method dispatch (line 3803) | public static function dispatch($command)
    method dispatchSync (line 3819) | public static function dispatchSync($command, $handler = null)
    method dispatchNow (line 3833) | public static function dispatchNow($command, $handler = null)
    method findBatch (line 3846) | public static function findBatch($batchId)
    method batch (line 3859) | public static function batch($jobs)
    method chain (line 3872) | public static function chain($jobs)
    method hasCommandHandler (line 3885) | public static function hasCommandHandler($command)
    method getCommandHandler (line 3898) | public static function getCommandHandler($command)
    method dispatchToQueue (line 3912) | public static function dispatchToQueue($command)
    method dispatchAfterResponse (line 3926) | public static function dispatchAfterResponse($command, $handler = null)
    method pipeThrough (line 3939) | public static function pipeThrough($pipes)
    method map (line 3952) | public static function map($map)
    method except (line 3965) | public static function except($jobsToDispatch)
    method assertDispatched (line 3979) | public static function assertDispatched($command, $callback = null)
    method assertDispatchedTimes (line 3993) | public static function assertDispatchedTimes($command, $times = 1)
    method assertNotDispatched (line 4007) | public static function assertNotDispatched($command, $callback = null)
    method assertNothingDispatched (line 4019) | public static function assertNothingDispatched()
    method assertDispatchedSync (line 4033) | public static function assertDispatchedSync($command, $callback = null)
    method assertDispatchedSyncTimes (line 4047) | public static function assertDispatchedSyncTimes($command, $times = 1)
    method assertNotDispatchedSync (line 4061) | public static function assertNotDispatchedSync($command, $callback = n...
    method assertDispatchedAfterResponse (line 4075) | public static function assertDispatchedAfterResponse($command, $callba...
    method assertDispatchedAfterResponseTimes (line 4089) | public static function assertDispatchedAfterResponseTimes($command, $t...
    method assertNotDispatchedAfterResponse (line 4103) | public static function assertNotDispatchedAfterResponse($command, $cal...
    method assertChained (line 4116) | public static function assertChained($expectedChain)
    method assertNothingChained (line 4128) | public static function assertNothingChained()
    method assertDispatchedWithoutChain (line 4142) | public static function assertDispatchedWithoutChain($command, $callbac...
    method chainedBatch (line 4155) | public static function chainedBatch($callback)
    method assertBatched (line 4168) | public static function assertBatched($callback)
    method assertBatchCount (line 4181) | public static function assertBatchCount($count)
    method assertNothingBatched (line 4193) | public static function assertNothingBatched()
    method assertNothingPlaced (line 4205) | public static function assertNothingPlaced()
    method dispatched (line 4219) | public static function dispatched($command, $callback = null)
    method dispatchedSync (line 4233) | public static function dispatchedSync($command, $callback = null)
    method dispatchedAfterResponse (line 4247) | public static function dispatchedAfterResponse($command, $callback = n...
    method batched (line 4260) | public static function batched($callback)
    method hasDispatched (line 4273) | public static function hasDispatched($command)
    method hasDispatchedSync (line 4286) | public static function hasDispatchedSync($command)
    method hasDispatchedAfterResponse (line 4299) | public static function hasDispatchedAfterResponse($command)
    method dispatchFakeBatch (line 4312) | public static function dispatchFakeBatch($name = '')
    method recordPendingBatch (line 4325) | public static function recordPendingBatch($pendingBatch)
    method serializeAndRestore (line 4338) | public static function serializeAndRestore($serializeAndRestore = true)
    method dispatchedBatches (line 4350) | public static function dispatchedBatches()
  class Cache (line 4363) | class Cache {
    method store (line 4371) | public static function store($name = null)
    method driver (line 4384) | public static function driver($driver = null)
    method resolve (line 4398) | public static function resolve($name)
    method build (line 4411) | public static function build($config)
    method repository (line 4425) | public static function repository($store, $config = [])
    method refreshEventDispatcher (line 4437) | public static function refreshEventDispatcher()
    method getDefaultDriver (line 4449) | public static function getDefaultDriver()
    method setDefaultDriver (line 4462) | public static function setDefaultDriver($name)
    method forgetDriver (line 4475) | public static function forgetDriver($name = null)
    method purge (line 4488) | public static function purge($name = null)
    method extend (line 4502) | public static function extend($driver, $callback)
    method setApplication (line 4515) | public static function setApplication($app)
    method has (line 4528) | public static function has($key)
    method missing (line 4541) | public static function missing($key)
    method get (line 4555) | public static function get($key, $default = null)
    method many (line 4570) | public static function many($keys)
    method getMultiple (line 4588) | public static function getMultiple($keys, $default = null)
    method pull (line 4602) | public static function pull($key, $default = null)
    method put (line 4617) | public static function put($key, $value, $ttl = null)
    method set (line 4637) | public static function set($key, $value, $ttl = null)
    method putMany (line 4651) | public static function putMany($values, $ttl = null)
    method setMultiple (line 4671) | public static function setMultiple($values, $ttl = null)
    method add (line 4686) | public static function add($key, $value, $ttl = null)
    method increment (line 4700) | public static function increment($key, $value = 1)
    method decrement (line 4714) | public static function decrement($key, $value = 1)
    method forever (line 4728) | public static function forever($key, $value)
    method remember (line 4744) | public static function remember($key, $ttl, $callback)
    method sear (line 4759) | public static function sear($key, $callback)
    method rememberForever (line 4774) | public static function rememberForever($key, $callback)
    method flexible (line 4791) | public static function flexible($key, $ttl, $callback, $lock = null)
    method forget (line 4804) | public static function forget($key)
    method delete (line 4820) | public static function delete($key)
    method deleteMultiple (line 4837) | public static function deleteMultiple($keys)
    method clear (line 4850) | public static function clear()
    method tags (line 4864) | public static function tags($names)
    method getName (line 4876) | public static function getName()
    method supportsTags (line 4888) | public static function supportsTags()
    method getDefaultCacheTime (line 4900) | public static function getDefaultCacheTime()
    method setDefaultCacheTime (line 4913) | public static function setDefaultCacheTime($seconds)
    method getStore (line 4925) | public static function getStore()
    method setStore (line 4938) | public static function setStore($store)
    method getEventDispatcher (line 4950) | public static function getEventDispatcher()
    method setEventDispatcher (line 4963) | public static function setEventDispatcher($events)
    method offsetExists (line 4976) | public static function offsetExists($key)
    method offsetGet (line 4989) | public static function offsetGet($key)
    method offsetSet (line 5003) | public static function offsetSet($key, $value)
    method offsetUnset (line 5016) | public static function offsetUnset($key)
    method macro (line 5031) | public static function macro($name, $macro)
    method mixin (line 5045) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 5057) | public static function hasMacro($name)
    method flushMacros (line 5068) | public static function flushMacros()
    method macroCall (line 5082) | public static function macroCall($method, $parameters)
    method lock (line 5097) | public static function lock($name, $seconds = 0, $owner = null)
    method restoreLock (line 5111) | public static function restoreLock($name, $owner)
    method flush (line 5123) | public static function flush()
    method path (line 5136) | public static function path($key)
    method getFilesystem (line 5148) | public static function getFilesystem()
    method getDirectory (line 5160) | public static function getDirectory()
    method setDirectory (line 5173) | public static function setDirectory($directory)
    method setLockDirectory (line 5186) | public static function setLockDirectory($lockDirectory)
    method getPrefix (line 5198) | public static function getPrefix()
  class Concurrency (line 5212) | class Concurrency {
    method driver (line 5220) | public static function driver($name = null)
    method createProcessDriver (line 5233) | public static function createProcessDriver($config)
    method createForkDriver (line 5247) | public static function createForkDriver($config)
    method createSyncDriver (line 5260) | public static function createSyncDriver($config)
    method getDefaultInstance (line 5272) | public static function getDefaultInstance()
    method setDefaultInstance (line 5285) | public static function setDefaultInstance($name)
    method getInstanceConfig (line 5298) | public static function getInstanceConfig($name)
    method instance (line 5311) | public static function instance($name = null)
    method forgetInstance (line 5325) | public static function forgetInstance($name = null)
    method purge (line 5339) | public static function purge($name = null)
    method extend (line 5354) | public static function extend($name, $callback)
    method setApplication (line 5368) | public static function setApplication($app)
  class Config (line 5381) | class Config {
    method has (line 5389) | public static function has($key)
    method get (line 5403) | public static function get($key, $default = null)
    method getMany (line 5416) | public static function getMany($keys)
    method string (line 5430) | public static function string($key, $default = null)
    method integer (line 5444) | public static function integer($key, $default = null)
    method float (line 5458) | public static function float($key, $default = null)
    method boolean (line 5472) | public static function boolean($key, $default = null)
    method array (line 5486) | public static function array($key, $default = null)
    method set (line 5500) | public static function set($key, $value = null)
    method prepend (line 5514) | public static function prepend($key, $value)
    method push (line 5528) | public static function push($key, $value)
    method all (line 5540) | public static function all()
    method offsetExists (line 5553) | public static function offsetExists($key)
    method offsetGet (line 5566) | public static function offsetGet($key)
    method offsetSet (line 5580) | public static function offsetSet($key, $value)
    method offsetUnset (line 5593) | public static function offsetUnset($key)
    method macro (line 5608) | public static function macro($name, $macro)
    method mixin (line 5622) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 5634) | public static function hasMacro($name)
    method flushMacros (line 5645) | public static function flushMacros()
  class Context (line 5656) | class Context {
    method has (line 5664) | public static function has($key)
    method missing (line 5677) | public static function missing($key)
    method hasHidden (line 5690) | public static function hasHidden($key)
    method missingHidden (line 5703) | public static function missingHidden($key)
    method all (line 5715) | public static function all()
    method allHidden (line 5727) | public static function allHidden()
    method get (line 5741) | public static function get($key, $default = null)
    method getHidden (line 5755) | public static function getHidden($key, $default = null)
    method pull (line 5769) | public static function pull($key, $default = null)
    method pullHidden (line 5783) | public static function pullHidden($key, $default = null)
    method only (line 5796) | public static function only($keys)
    method onlyHidden (line 5809) | public static function onlyHidden($keys)
    method add (line 5823) | public static function add($key, $value = null)
    method addHidden (line 5837) | public static function addHidden($key, $value = null)
    method forget (line 5850) | public static function forget($key)
    method forgetHidden (line 5863) | public static function forgetHidden($key)
    method addIf (line 5877) | public static function addIf($key, $value)
    method addHiddenIf (line 5891) | public static function addHiddenIf($key, $value)
    method push (line 5906) | public static function push($key, ...$values)
    method pop (line 5920) | public static function pop($key)
    method pushHidden (line 5935) | public static function pushHidden($key, ...$values)
    method popHidden (line 5949) | public static function popHidden($key)
    method stackContains (line 5965) | public static function stackContains($key, $value, $strict = false)
    method hiddenStackContains (line 5981) | public static function hiddenStackContains($key, $value, $strict = false)
    method isEmpty (line 5993) | public static function isEmpty()
    method dehydrating (line 6006) | public static function dehydrating($callback)
    method hydrated (line 6019) | public static function hydrated($callback)
    method handleUnserializeExceptionsUsing (line 6032) | public static function handleUnserializeExceptionsUsing($callback)
    method flush (line 6044) | public static function flush()
    method dehydrate (line 6057) | public static function dehydrate()
    method hydrate (line 6072) | public static function hydrate($context)
    method when (line 6089) | public static function when($value = null, $callback = null, $default ...
    method unless (line 6106) | public static function unless($value = null, $callback = null, $defaul...
    method macro (line 6121) | public static function macro($name, $macro)
    method mixin (line 6135) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 6147) | public static function hasMacro($name)
    method flushMacros (line 6158) | public static function flushMacros()
    method restoreModel (line 6170) | public static function restoreModel($value)
  class Cookie (line 6182) | class Cookie {
    method make (line 6198) | public static function make($name, $value, $minutes = 0, $path = null,...
    method forever (line 6218) | public static function forever($name, $value, $path = null, $domain = ...
    method forget (line 6233) | public static function forget($name, $path = null, $domain = null)
    method hasQueued (line 6247) | public static function hasQueued($key, $path = null)
    method queued (line 6262) | public static function queued($key, $default = null, $path = null)
    method queue (line 6275) | public static function queue(...$parameters)
    method expire (line 6290) | public static function expire($name, $path = null, $domain = null)
    method unqueue (line 6304) | public static function unqueue($name, $path = null)
    method setDefaultPathAndDomain (line 6320) | public static function setDefaultPathAndDomain($path, $domain, $secure...
    method getQueuedCookies (line 6332) | public static function getQueuedCookies()
    method flushQueuedCookies (line 6344) | public static function flushQueuedCookies()
    method macro (line 6359) | public static function macro($name, $macro)
    method mixin (line 6373) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 6385) | public static function hasMacro($name)
    method flushMacros (line 6396) | public static function flushMacros()
  class Crypt (line 6407) | class Crypt {
    method supported (line 6416) | public static function supported($key, $cipher)
    method generateKey (line 6428) | public static function generateKey($cipher)
    method encrypt (line 6442) | public static function encrypt($value, $serialize = true)
    method encryptString (line 6456) | public static function encryptString($value)
    method decrypt (line 6471) | public static function decrypt($payload, $unserialize = true)
    method decryptString (line 6485) | public static function decryptString($payload)
    method getKey (line 6497) | public static function getKey()
    method getAllKeys (line 6509) | public static function getAllKeys()
    method getPreviousKeys (line 6521) | public static function getPreviousKeys()
    method previousKeys (line 6534) | public static function previousKeys($keys)
  class Date (line 6619) | class Date {
    method use (line 6628) | public static function use($handler)
    method useDefault (line 6639) | public static function useDefault()
    method useCallable (line 6651) | public static function useCallable($callable)
    method useClass (line 6663) | public static function useClass($dateClass)
    method useFactory (line 6675) | public static function useFactory($factory)
  class DB (line 6686) | class DB {
    method connection (line 6694) | public static function connection($name = null)
    method build (line 6707) | public static function build($config)
    method calculateDynamicConnectionName (line 6720) | public static function calculateDynamicConnectionName($config)
    method connectUsing (line 6734) | public static function connectUsing($name, $config, $force = false)
    method purge (line 6747) | public static function purge($name = null)
    method disconnect (line 6760) | public static function disconnect($name = null)
    method reconnect (line 6773) | public static function reconnect($name = null)
    method usingConnection (line 6787) | public static function usingConnection($name, $callback)
    method getDefaultConnection (line 6799) | public static function getDefaultConnection()
    method setDefaultConnection (line 6812) | public static function setDefaultConnection($name)
    method supportedDrivers (line 6824) | public static function supportedDrivers()
    method availableDrivers (line 6836) | public static function availableDrivers()
    method extend (line 6850) | public static function extend($name, $resolver)
    method forgetExtension (line 6863) | public static function forgetExtension($name)
    method getConnections (line 6875) | public static function getConnections()
    method setReconnector (line 6888) | public static function setReconnector($reconnector)
    method setApplication (line 6901) | public static function setApplication($app)
    method macro (line 6916) | public static function macro($name, $macro)
    method mixin (line 6930) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 6942) | public static function hasMacro($name)
    method flushMacros (line 6953) | public static function flushMacros()
    method macroCall (line 6967) | public static function macroCall($method, $parameters)
    method getDriverTitle (line 6979) | public static function getDriverTitle()
    method getSchemaBuilder (line 6991) | public static function getSchemaBuilder()
    method getSchemaState (line 7005) | public static function getSchemaState($files = null, $processFactory =...
    method useDefaultQueryGrammar (line 7017) | public static function useDefaultQueryGrammar()
    method useDefaultSchemaGrammar (line 7030) | public static function useDefaultSchemaGrammar()
    method useDefaultPostProcessor (line 7043) | public static function useDefaultPostProcessor()
    method table (line 7058) | public static function table($table, $as = null)
    method query (line 7071) | public static function query()
    method selectOne (line 7087) | public static function selectOne($query, $bindings = [], $useReadPdo =...
    method scalar (line 7104) | public static function scalar($query, $bindings = [], $useReadPdo = true)
    method selectFromWriteConnection (line 7119) | public static function selectFromWriteConnection($query, $bindings = [])
    method select (line 7135) | public static function select($query, $bindings = [], $useReadPdo = true)
    method selectResultSets (line 7151) | public static function selectResultSets($query, $bindings = [], $useRe...
    method cursor (line 7167) | public static function cursor($query, $bindings = [], $useReadPdo = true)
    method insert (line 7182) | public static function insert($query, $bindings = [])
    method update (line 7197) | public static function update($query, $bindings = [])
    method delete (line 7212) | public static function delete($query, $bindings = [])
    method statement (line 7227) | public static function statement($query, $bindings = [])
    method affectingStatement (line 7242) | public static function affectingStatement($query, $bindings = [])
    method unprepared (line 7256) | public static function unprepared($query)
    method threadCount (line 7269) | public static function threadCount()
    method pretend (line 7283) | public static function pretend($callback)
    method withoutPretending (line 7297) | public static function withoutPretending($callback)
    method bindValues (line 7312) | public static function bindValues($statement, $bindings)
    method prepareBindings (line 7326) | public static function prepareBindings($bindings)
    method logQuery (line 7342) | public static function logQuery($query, $bindings, $time = null)
    method whenQueryingForLongerThan (line 7357) | public static function whenQueryingForLongerThan($threshold, $handler)
    method allowQueryDurationHandlersToRunAgain (line 7370) | public static function allowQueryDurationHandlersToRunAgain()
    method totalQueryDuration (line 7383) | public static function totalQueryDuration()
    method resetTotalQueryDuration (line 7396) | public static function resetTotalQueryDuration()
    method reconnectIfMissingConnection (line 7409) | public static function reconnectIfMissingConnection()
    method beforeStartingTransaction (line 7423) | public static function beforeStartingTransaction($callback)
    method beforeExecuting (line 7437) | public static function beforeExecuting($callback)
    method listen (line 7451) | public static function listen($callback)
    method raw (line 7465) | public static function raw($value)
    method escape (line 7480) | public static function escape($value, $binary = false)
    method hasModifiedRecords (line 7493) | public static function hasModifiedRecords()
    method recordsHaveBeenModified (line 7507) | public static function recordsHaveBeenModified($value = true)
    method setRecordModificationState (line 7521) | public static function setRecordModificationState($value)
    method forgetRecordModificationState (line 7534) | public static function forgetRecordModificationState()
    method useWriteConnectionWhenReading (line 7548) | public static function useWriteConnectionWhenReading($value = true)
    method getPdo (line 7561) | public static function getPdo()
    method getRawPdo (line 7574) | public static function getRawPdo()
    method getReadPdo (line 7587) | public static function getReadPdo()
    method getRawReadPdo (line 7600) | public static function getRawReadPdo()
    method setPdo (line 7614) | public static function setPdo($pdo)
    method setReadPdo (line 7628) | public static function setReadPdo($pdo)
    method getName (line 7641) | public static function getName()
    method getNameWithReadWriteType (line 7654) | public static function getNameWithReadWriteType()
    method getConfig (line 7668) | public static function getConfig($option = null)
    method getDriverName (line 7681) | public static function getDriverName()
    method getQueryGrammar (line 7694) | public static function getQueryGrammar()
    method setQueryGrammar (line 7708) | public static function setQueryGrammar($grammar)
    method getSchemaGrammar (line 7721) | public static function getSchemaGrammar()
    method setSchemaGrammar (line 7735) | public static function setSchemaGrammar($grammar)
    method getPostProcessor (line 7748) | public static function getPostProcessor()
    method setPostProcessor (line 7762) | public static function setPostProcessor($processor)
    method getEventDispatcher (line 7775) | public static function getEventDispatcher()
    method setEventDispatcher (line 7789) | public static function setEventDispatcher($events)
    method unsetEventDispatcher (line 7802) | public static function unsetEventDispatcher()
    method setTransactionManager (line 7816) | public static function setTransactionManager($manager)
    method unsetTransactionManager (line 7829) | public static function unsetTransactionManager()
    method pretending (line 7842) | public static function pretending()
    method getQueryLog (line 7855) | public static function getQueryLog()
    method getRawQueryLog (line 7868) | public static function getRawQueryLog()
    method flushQueryLog (line 7881) | public static function flushQueryLog()
    method enableQueryLog (line 7894) | public static function enableQueryLog()
    method disableQueryLog (line 7907) | public static function disableQueryLog()
    method logging (line 7920) | public static function logging()
    method getDatabaseName (line 7933) | public static function getDatabaseName()
    method setDatabaseName (line 7947) | public static function setDatabaseName($database)
    method setReadWriteType (line 7961) | public static function setReadWriteType($readWriteType)
    method getTablePrefix (line 7974) | public static function getTablePrefix()
    method setTablePrefix (line 7988) | public static function setTablePrefix($prefix)
    method withTablePrefix (line 8003) | public static function withTablePrefix($grammar)
    method withoutTablePrefix (line 8017) | public static function withoutTablePrefix($callback)
    method getServerVersion (line 8030) | public static function getServerVersion()
    method resolverFor (line 8045) | public static function resolverFor($driver, $callback)
    method getResolver (line 8058) | public static function getResolver($driver)
    method transaction (line 8076) | public static function transaction($callback, $attempts = 1)
    method beginTransaction (line 8090) | public static function beginTransaction()
    method commit (line 8104) | public static function commit()
    method rollBack (line 8119) | public static function rollBack($toLevel = null)
    method transactionLevel (line 8132) | public static function transactionLevel()
    method afterCommit (line 8147) | public static function afterCommit($callback)
  class Event (line 8161) | class Event {
    method listen (line 8170) | public static function listen($events, $listener = null)
    method hasListeners (line 8183) | public static function hasListeners($eventName)
    method hasWildcardListeners (line 8196) | public static function hasWildcardListeners($eventName)
    method push (line 8210) | public static function push($event, $payload = [])
    method flush (line 8223) | public static function flush($event)
    method subscribe (line 8236) | public static function subscribe($subscriber)
    method until (line 8250) | public static function until($event, $payload = [])
    method dispatch (line 8265) | public static function dispatch($event, $payload = [], $halt = false)
    method getListeners (line 8278) | public static function getListeners($eventName)
    method makeListener (line 8292) | public static function makeListener($listener, $wildcard = false)
    method createClassListener (line 8306) | public static function createClassListener($listener, $wildcard = false)
    method forget (line 8319) | public static function forget($event)
    method forgetPushed (line 8331) | public static function forgetPushed()
    method setQueueResolver (line 8344) | public static function setQueueResolver($resolver)
    method setTransactionManagerResolver (line 8357) | public static function setTransactionManagerResolver($resolver)
    method getRawListeners (line 8369) | public static function getRawListeners()
    method macro (line 8384) | public static function macro($name, $macro)
    method mixin (line 8398) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 8410) | public static function hasMacro($name)
    method flushMacros (line 8421) | public static function flushMacros()
    method except (line 8433) | public static function except($eventsToDispatch)
    method assertListening (line 8447) | public static function assertListening($expectedEvent, $expectedListener)
    method assertDispatched (line 8461) | public static function assertDispatched($event, $callback = null)
    method assertDispatchedTimes (line 8475) | public static function assertDispatchedTimes($event, $times = 1)
    method assertNotDispatched (line 8489) | public static function assertNotDispatched($event, $callback = null)
    method assertNothingDispatched (line 8501) | public static function assertNothingDispatched()
    method dispatched (line 8515) | public static function dispatched($event, $callback = null)
    method hasDispatched (line 8528) | public static function hasDispatched($event)
    method dispatchedEvents (line 8540) | public static function dispatchedEvents()
  class File (line 8552) | class File {
    method exists (line 8560) | public static function exists($path)
    method missing (line 8573) | public static function missing($path)
    method get (line 8588) | public static function get($path, $lock = false)
    method json (line 8604) | public static function json($path, $flags = 0, $lock = false)
    method sharedGet (line 8617) | public static function sharedGet($path)
    method getRequire (line 8632) | public static function getRequire($path, $data = [])
    method requireOnce (line 8647) | public static function requireOnce($path, $data = [])
    method lines (line 8661) | public static function lines($path)
    method hash (line 8675) | public static function hash($path, $algorithm = 'md5')
    method put (line 8690) | public static function put($path, $contents, $lock = false)
    method replace (line 8705) | public static function replace($path, $content, $mode = null)
    method replaceInFile (line 8720) | public static function replaceInFile($search, $replace, $path)
    method prepend (line 8734) | public static function prepend($path, $data)
    method append (line 8749) | public static function append($path, $data, $lock = false)
    method chmod (line 8763) | public static function chmod($path, $mode = null)
    method delete (line 8776) | public static function delete($paths)
    method move (line 8790) | public static function move($path, $target)
    method copy (line 8804) | public static function copy($path, $target)
    method link (line 8818) | public static function link($target, $link)
    method relativeLink (line 8833) | public static function relativeLink($target, $link)
    method name (line 8846) | public static function name($path)
    method basename (line 8859) | public static function basename($path)
    method dirname (line 8872) | public static function dirname($path)
    method extension (line 8885) | public static function extension($path)
    method guessExtension (line 8899) | public static function guessExtension($path)
    method type (line 8912) | public static function type($path)
    method mimeType (line 8925) | public static function mimeType($path)
    method size (line 8938) | public static function size($path)
    method lastModified (line 8951) | public static function lastModified($path)
    method isDirectory (line 8964) | public static function isDirectory($directory)
    method isEmptyDirectory (line 8978) | public static function isEmptyDirectory($directory, $ignoreDotFiles = ...
    method isReadable (line 8991) | public static function isReadable($path)
    method isWritable (line 9004) | public static function isWritable($path)
    method hasSameHash (line 9018) | public static function hasSameHash($firstFile, $secondFile)
    method isFile (line 9031) | public static function isFile($file)
    method glob (line 9045) | public static function glob($pattern, $flags = 0)
    method files (line 9059) | public static function files($directory, $hidden = false)
    method allFiles (line 9073) | public static function allFiles($directory, $hidden = false)
    method directories (line 9086) | public static function directories($directory)
    method ensureDirectoryExists (line 9101) | public static function ensureDirectoryExists($path, $mode = 493, $recu...
    method makeDirectory (line 9117) | public static function makeDirectory($path, $mode = 493, $recursive = ...
    method moveDirectory (line 9132) | public static function moveDirectory($from, $to, $overwrite = false)
    method copyDirectory (line 9147) | public static function copyDirectory($directory, $destination, $option...
    method deleteDirectory (line 9163) | public static function deleteDirectory($directory, $preserve = false)
    method deleteDirectories (line 9176) | public static function deleteDirectories($directory)
    method cleanDirectory (line 9189) | public static function cleanDirectory($directory)
    method when (line 9206) | public static function when($value = null, $callback = null, $default ...
    method unless (line 9223) | public static function unless($value = null, $callback = null, $defaul...
    method macro (line 9238) | public static function macro($name, $macro)
    method mixin (line 9252) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 9264) | public static function hasMacro($name)
    method flushMacros (line 9275) | public static function flushMacros()
  class Gate (line 9286) | class Gate {
    method has (line 9294) | public static function has($ability)
    method allowIf (line 9310) | public static function allowIf($condition, $message = null, $code = null)
    method denyIf (line 9326) | public static function denyIf($condition, $message = null, $code = null)
    method define (line 9341) | public static function define($ability, $callback)
    method resource (line 9356) | public static function resource($name, $class, $abilities = null)
    method policy (line 9370) | public static function policy($class, $policy)
    method before (line 9383) | public static function before($callback)
    method after (line 9396) | public static function after($callback)
    method allows (line 9410) | public static function allows($ability, $arguments = [])
    method denies (line 9424) | public static function denies($ability, $arguments = [])
    method check (line 9438) | public static function check($abilities, $arguments = [])
    method any (line 9452) | public static function any($abilities, $arguments = [])
    method none (line 9466) | public static function none($abilities, $arguments = [])
    method authorize (line 9481) | public static function authorize($ability, $arguments = [])
    method inspect (line 9495) | public static function inspect($ability, $arguments = [])
    method raw (line 9510) | public static function raw($ability, $arguments = [])
    method getPolicyFor (line 9523) | public static function getPolicyFor($class)
    method guessPolicyNamesUsing (line 9536) | public static function guessPolicyNamesUsing($callback)
    method resolvePolicy (line 9550) | public static function resolvePolicy($class)
    method forUser (line 9563) | public static function forUser($user)
    method abilities (line 9575) | public static function abilities()
    method policies (line 9587) | public static function policies()
    method defaultDenialResponse (line 9600) | public static function defaultDenialResponse($response)
    method setContainer (line 9613) | public static function setContainer($container)
    method denyWithStatus (line 9628) | public static function denyWithStatus($status, $message = null, $code ...
    method denyAsNotFound (line 9642) | public static function denyAsNotFound($message = null, $code = null)
  class Hash (line 9655) | class Hash {
    method createBcryptDriver (line 9662) | public static function createBcryptDriver()
    method createArgonDriver (line 9674) | public static function createArgonDriver()
    method createArgon2idDriver (line 9686) | public static function createArgon2idDriver()
    method info (line 9699) | public static function info($hashedValue)
    method make (line 9713) | public static function make($value, $options = [])
    method check (line 9728) | public static function check($value, $hashedValue, $options = [])
    method needsRehash (line 9742) | public static function needsRehash($hashedValue, $options = [])
    method isHashed (line 9755) | public static function isHashed($value)
    method getDefaultDriver (line 9767) | public static function getDefaultDriver()
    method verifyConfiguration (line 9781) | public static function verifyConfiguration($value)
    method driver (line 9795) | public static function driver($driver = null)
    method extend (line 9810) | public static function extend($driver, $callback)
    method getDrivers (line 9823) | public static function getDrivers()
    method getContainer (line 9836) | public static function getContainer()
    method setContainer (line 9850) | public static function setContainer($container)
    method forgetDrivers (line 9863) | public static function forgetDrivers()
  class Http (line 9938) | class Http {
    method globalMiddleware (line 9946) | public static function globalMiddleware($middleware)
    method globalRequestMiddleware (line 9959) | public static function globalRequestMiddleware($middleware)
    method globalResponseMiddleware (line 9972) | public static function globalResponseMiddleware($middleware)
    method globalOptions (line 9985) | public static function globalOptions($options)
    method response (line 10000) | public static function response($body = null, $status = 200, $headers ...
    method failedConnection (line 10012) | public static function failedConnection($message = null)
    method sequence (line 10024) | public static function sequence($responses = [])
    method fake (line 10037) | public static function fake($callback = null)
    method fakeSequence (line 10050) | public static function fakeSequence($url = '*')
    method stubUrl (line 10064) | public static function stubUrl($url, $callback)
    method preventStrayRequests (line 10077) | public static function preventStrayRequests($prevent = true)
    method preventingStrayRequests (line 10089) | public static function preventingStrayRequests()
    method allowStrayRequests (line 10101) | public static function allowStrayRequests()
    method recordRequestResponsePair (line 10115) | public static function recordRequestResponsePair($request, $response)
    method assertSent (line 10128) | public static function assertSent($callback)
    method assertSentInOrder (line 10141) | public static function assertSentInOrder($callbacks)
    method assertNotSent (line 10154) | public static function assertNotSent($callback)
    method assertNothingSent (line 10166) | public static function assertNothingSent()
    method assertSentCount (line 10179) | public static function assertSentCount($count)
    method assertSequencesAreEmpty (line 10191) | public static function assertSequencesAreEmpty()
    method recorded (line 10204) | public static function recorded($callback = null)
    method createPendingRequest (line 10216) | public static function createPendingRequest()
    method getDispatcher (line 10228) | public static function getDispatcher()
    method getGlobalMiddleware (line 10240) | public static function getGlobalMiddleware()
    method macro (line 10255) | public static function macro($name, $macro)
    method mixin (line 10269) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 10281) | public static function hasMacro($name)
    method flushMacros (line 10292) | public static function flushMacros()
    method macroCall (line 10306) | public static function macroCall($method, $parameters)
  class Lang (line 10318) | class Lang {
    method hasForLocale (line 10327) | public static function hasForLocale($key, $locale = null)
    method has (line 10342) | public static function has($key, $locale = null, $fallback = true)
    method get (line 10358) | public static function get($key, $replace = [], $locale = null, $fallb...
    method choice (line 10374) | public static function choice($key, $number, $replace = [], $locale = ...
    method addLines (line 10389) | public static function addLines($lines, $locale, $namespace = '*')
    method load (line 10404) | public static function load($namespace, $group, $locale)
    method handleMissingKeysUsing (line 10417) | public static function handleMissingKeysUsing($callback)
    method addNamespace (line 10431) | public static function addNamespace($namespace, $hint)
    method addPath (line 10444) | public static function addPath($path)
    method addJsonPath (line 10457) | public static function addJsonPath($path)
    method parseKey (line 10470) | public static function parseKey($key)
    method determineLocalesUsing (line 10483) | public static function determineLocalesUsing($callback)
    method getSelector (line 10495) | public static function getSelector()
    method setSelector (line 10508) | public static function setSelector($selector)
    method getLoader (line 10520) | public static function getLoader()
    method locale (line 10532) | public static function locale()
    method getLocale (line 10544) | public static function getLocale()
    method setLocale (line 10558) | public static function setLocale($locale)
    method getFallback (line 10570) | public static function getFallback()
    method setFallback (line 10583) | public static function setFallback($fallback)
    method setLoaded (line 10596) | public static function setLoaded($loaded)
    method stringable (line 10610) | public static function stringable($class, $handler = null)
    method setParsedKey (line 10624) | public static function setParsedKey($key, $parsed)
    method flushParsedKeys (line 10637) | public static function flushParsedKeys()
    method macro (line 10653) | public static function macro($name, $macro)
    method mixin (line 10667) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 10679) | public static function hasMacro($name)
    method flushMacros (line 10690) | public static function flushMacros()
  class Log (line 10709) | class Log {
    method build (line 10717) | public static function build($config)
    method stack (line 10731) | public static function stack($channels, $channel = null)
    method channel (line 10744) | public static function channel($channel = null)
    method driver (line 10757) | public static function driver($driver = null)
    method shareContext (line 10770) | public static function shareContext($context)
    method sharedContext (line 10782) | public static function sharedContext()
    method withoutContext (line 10794) | public static function withoutContext()
    method flushSharedContext (line 10806) | public static function flushSharedContext()
    method getDefaultDriver (line 10818) | public static function getDefaultDriver()
    method setDefaultDriver (line 10831) | public static function setDefaultDriver($name)
    method extend (line 10845) | public static function extend($driver, $callback)
    method forgetChannel (line 10858) | public static function forgetChannel($driver = null)
    method getChannels (line 10870) | public static function getChannels()
    method emergency (line 10884) | public static function emergency($message, $context = [])
    method alert (line 10901) | public static function alert($message, $context = [])
    method critical (line 10917) | public static function critical($message, $context = [])
    method error (line 10932) | public static function error($message, $context = [])
    method warning (line 10949) | public static function warning($message, $context = [])
    method notice (line 10963) | public static function notice($message, $context = [])
    method info (line 10979) | public static function info($message, $context = [])
    method debug (line 10993) | public static function debug($message, $context = [])
    method log (line 11008) | public static function log($level, $message, $context = [])
    method setApplication (line 11021) | public static function setApplication($app)
  class Mail (line 11052) | class Mail {
    method mailer (line 11060) | public static function mailer($name = null)
    method driver (line 11073) | public static function driver($driver = null)
    method build (line 11086) | public static function build($config)
    method createSymfonyTransport (line 11100) | public static function createSymfonyTransport($config)
    method getDefaultDriver (line 11112) | public static function getDefaultDriver()
    method setDefaultDriver (line 11125) | public static function setDefaultDriver($name)
    method purge (line 11138) | public static function purge($name = null)
    method extend (line 11152) | public static function extend($driver, $callback)
    method getApplication (line 11164) | public static function getApplication()
    method setApplication (line 11177) | public static function setApplication($app)
    method forgetMailers (line 11189) | public static function forgetMailers()
    method assertSent (line 11203) | public static function assertSent($mailable, $callback = null)
    method assertNotOutgoing (line 11217) | public static function assertNotOutgoing($mailable, $callback = null)
    method assertNotSent (line 11231) | public static function assertNotSent($mailable, $callback = null)
    method assertNothingOutgoing (line 11243) | public static function assertNothingOutgoing()
    method assertNothingSent (line 11255) | public static function assertNothingSent()
    method assertQueued (line 11269) | public static function assertQueued($mailable, $callback = null)
    method assertNotQueued (line 11283) | public static function assertNotQueued($mailable, $callback = null)
    method assertNothingQueued (line 11295) | public static function assertNothingQueued()
    method assertSentCount (line 11308) | public static function assertSentCount($count)
    method assertQueuedCount (line 11321) | public static function assertQueuedCount($count)
    method assertOutgoingCount (line 11334) | public static function assertOutgoingCount($count)
    method sent (line 11348) | public static function sent($mailable, $callback = null)
    method hasSent (line 11361) | public static function hasSent($mailable)
    method queued (line 11375) | public static function queued($mailable, $callback = null)
    method hasQueued (line 11388) | public static function hasQueued($mailable)
    method to (line 11401) | public static function to($users)
    method cc (line 11414) | public static function cc($users)
    method bcc (line 11427) | public static function bcc($users)
    method raw (line 11441) | public static function raw($text, $callback)
    method send (line 11456) | public static function send($view, $data = [], $callback = null)
    method sendNow (line 11471) | public static function sendNow($mailable, $data = [], $callback = null)
    method queue (line 11485) | public static function queue($view, $queue = null)
    method later (line 11500) | public static function later($delay, $view, $queue = null)
  class Notification (line 11513) | class Notification {
    method send (line 11522) | public static function send($notifiables, $notification)
    method sendNow (line 11537) | public static function sendNow($notifiables, $notification, $channels ...
    method channel (line 11550) | public static function channel($name = null)
    method getDefaultDriver (line 11562) | public static function getDefaultDriver()
    method deliversVia (line 11574) | public static function deliversVia()
    method deliverVia (line 11587) | public static function deliverVia($channel)
    method locale (line 11600) | public static function locale($locale)
    method driver (line 11614) | public static function driver($driver = null)
    method extend (line 11629) | public static function extend($driver, $callback)
    method getDrivers (line 11642) | public static function getDrivers()
    method getContainer (line 11655) | public static function getContainer()
    method setContainer (line 11669) | public static function setContainer($container)
    method forgetDrivers (line 11682) | public static function forgetDrivers()
    method assertSentOnDemand (line 11698) | public static function assertSentOnDemand($notification, $callback = n...
    method assertSentTo (line 11714) | public static function assertSentTo($notifiable, $notification, $callb...
    method assertSentOnDemandTimes (line 11728) | public static function assertSentOnDemandTimes($notification, $times = 1)
    method assertSentToTimes (line 11743) | public static function assertSentToTimes($notifiable, $notification, $...
    method assertNotSentTo (line 11759) | public static function assertNotSentTo($notifiable, $notification, $ca...
    method assertNothingSent (line 11771) | public static function assertNothingSent()
    method assertNothingSentTo (line 11785) | public static function assertNothingSentTo($notifiable)
    method assertSentTimes (line 11799) | public static function assertSentTimes($notification, $expectedCount)
    method assertCount (line 11812) | public static function assertCount($expectedCount)
    method sent (line 11827) | public static function sent($notifiable, $notification, $callback = null)
    method hasSent (line 11841) | public static function hasSent($notifiable, $notification)
    method serializeAndRestore (line 11854) | public static function serializeAndRestore($serializeAndRestore = true)
    method sentNotifications (line 11866) | public static function sentNotifications()
    method macro (line 11881) | public static function macro($name, $macro)
    method mixin (line 11895) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 11907) | public static function hasMacro($name)
    method flushMacros (line 11918) | public static function flushMacros()
  class Password (line 11938) | class Password {
    method broker (line 11946) | public static function broker($name = null)
    method getDefaultDriver (line 11958) | public static function getDefaultDriver()
    method setDefaultDriver (line 11971) | public static function setDefaultDriver($name)
  class Process (line 12000) | class Process {
    method result (line 12010) | public static function result($output = '', $errorOutput = '', $exitCo...
    method describe (line 12022) | public static function describe()
    method sequence (line 12035) | public static function sequence($processes = [])
    method fake (line 12048) | public static function fake($callback = null)
    method isRecording (line 12060) | public static function isRecording()
    method recordIfRecording (line 12074) | public static function recordIfRecording($process, $result)
    method record (line 12088) | public static function record($process, $result)
    method preventStrayProcesses (line 12101) | public static function preventStrayProcesses($prevent = true)
    method preventingStrayProcesses (line 12113) | public static function preventingStrayProcesses()
    method assertRan (line 12126) | public static function assertRan($callback)
    method assertRanTimes (line 12140) | public static function assertRanTimes($callback, $times = 1)
    method assertNotRan (line 12153) | public static function assertNotRan($callback)
    method assertDidntRun (line 12166) | public static function assertDidntRun($callback)
    method assertNothingRan (line 12178) | public static function assertNothingRan()
    method pool (line 12191) | public static function pool($callback)
    method pipe (line 12204) | public static function pipe($callback, $output = null)
    method concurrently (line 12218) | public static function concurrently($callback, $output = null)
    method newPendingProcess (line 12230) | public static function newPendingProcess()
    method macro (line 12245) | public static function macro($name, $macro)
    method mixin (line 12259) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 12271) | public static function hasMacro($name)
    method flushMacros (line 12282) | public static function flushMacros()
    method macroCall (line 12296) | public static function macroCall($method, $parameters)
  class Queue (line 12310) | class Queue {
    method before (line 12318) | public static function before($callback)
    method after (line 12331) | public static function after($callback)
    method exceptionOccurred (line 12344) | public static function exceptionOccurred($callback)
    method looping (line 12357) | public static function looping($callback)
    method failing (line 12370) | public static function failing($callback)
    method stopping (line 12383) | public static function stopping($callback)
    method connected (line 12396) | public static function connected($name = null)
    method connection (line 12409) | public static function connection($name = null)
    method extend (line 12423) | public static function extend($driver, $resolver)
    method addConnector (line 12437) | public static function addConnector($driver, $resolver)
    method getDefaultDriver (line 12449) | public static function getDefaultDriver()
    method setDefaultDriver (line 12462) | public static function setDefaultDriver($name)
    method getName (line 12475) | public static function getName($connection = null)
    method getApplication (line 12487) | public static function getApplication()
    method setApplication (line 12500) | public static function setApplication($app)
    method except (line 12513) | public static function except($jobsToBeQueued)
    method assertPushed (line 12527) | public static function assertPushed($job, $callback = null)
    method assertPushedOn (line 12542) | public static function assertPushedOn($queue, $job, $callback = null)
    method assertPushedWithChain (line 12557) | public static function assertPushedWithChain($job, $expectedChain = []...
    method assertPushedWithoutChain (line 12571) | public static function assertPushedWithoutChain($job, $callback = null)
    method assertClosurePushed (line 12584) | public static function assertClosurePushed($callback = null)
    method assertClosureNotPushed (line 12597) | public static function assertClosureNotPushed($callback = null)
    method assertNotPushed (line 12611) | public static function assertNotPushed($job, $callback = null)
    method assertCount (line 12624) | public static function assertCount($expectedCount)
    method assertNothingPushed (line 12636) | public static function assertNothingPushed()
    method pushed (line 12650) | public static function pushed($job, $callback = null)
    method pushedRaw (line 12663) | public static function pushedRaw($callback = null)
    method hasPushed (line 12676) | public static function hasPushed($job)
    method size (line 12689) | public static function size($queue = null)
    method push (line 12704) | public static function push($job, $data = '', $queue = null)
    method shouldFakeJob (line 12717) | public static function shouldFakeJob($job)
    method pushRaw (line 12732) | public static function pushRaw($payload, $queue = null, $options = [])
    method later (line 12748) | public static function later($delay, $job, $data = '', $queue = null)
    method pushOn (line 12763) | public static function pushOn($queue, $job, $data = '')
    method laterOn (line 12779) | public static function laterOn($queue, $delay, $job, $data = '')
    method pop (line 12792) | public static function pop($queue = null)
    method bulk (line 12807) | public static function bulk($jobs, $data = '', $queue = null)
    method pushedJobs (line 12819) | public static function pushedJobs()
    method rawPushes (line 12831) | public static function rawPushes()
    method serializeAndRestore (line 12844) | public static function serializeAndRestore($serializeAndRestore = true)
    method getConnectionName (line 12856) | public static function getConnectionName()
    method setConnectionName (line 12869) | public static function setConnectionName($name)
    method getJobTries (line 12882) | public static function getJobTries($job)
    method getJobBackoff (line 12896) | public static function getJobBackoff($job)
    method getJobExpiration (line 12910) | public static function getJobExpiration($job)
    method createPayloadUsing (line 12924) | public static function createPayloadUsing($callback)
    method getContainer (line 12936) | public static function getContainer()
    method setContainer (line 12950) | public static function setContainer($container)
  class RateLimiter (line 12963) | class RateLimiter {
    method for (line 12972) | public static function for($name, $callback)
    method limiter (line 12985) | public static function limiter($name)
    method attempt (line 13001) | public static function attempt($key, $maxAttempts, $callback, $decaySe...
    method tooManyAttempts (line 13015) | public static function tooManyAttempts($key, $maxAttempts)
    method hit (line 13029) | public static function hit($key, $decaySeconds = 60)
    method increment (line 13044) | public static function increment($key, $decaySeconds = 60, $amount = 1)
    method decrement (line 13059) | public static function decrement($key, $decaySeconds = 60, $amount = 1)
    method attempts (line 13072) | public static function attempts($key)
    method resetAttempts (line 13085) | public static function resetAttempts($key)
    method remaining (line 13099) | public static function remaining($key, $maxAttempts)
    method retriesLeft (line 13113) | public static function retriesLeft($key, $maxAttempts)
    method clear (line 13126) | public static function clear($key)
    method availableIn (line 13139) | public static function availableIn($key)
    method cleanRateLimiterKey (line 13152) | public static function cleanRateLimiterKey($key)
  class Redirect (line 13164) | class Redirect {
    method back (line 13174) | public static function back($status = 302, $headers = [], $fallback = ...
    method refresh (line 13188) | public static function refresh($status = 302, $headers = [])
    method guest (line 13204) | public static function guest($path, $status = 302, $headers = [], $sec...
    method intended (line 13220) | public static function intended($default = '/', $status = 302, $header...
    method to (line 13236) | public static function to($path, $status = 302, $headers = [], $secure...
    method away (line 13251) | public static function away($path, $status = 302, $headers = [])
    method secure (line 13266) | public static function secure($path, $status = 302, $headers = [])
    method route (line 13282) | public static function route($route, $parameters = [], $status = 302, ...
    method signedRoute (line 13299) | public static function signedRoute($route, $parameters = [], $expirati...
    method temporarySignedRoute (line 13316) | public static function temporarySignedRoute($route, $expiration, $para...
    method action (line 13332) | public static function action($action, $parameters = [], $status = 302...
    method getUrlGenerator (line 13344) | public static function getUrlGenerator()
    method setSession (line 13357) | public static function setSession($session)
    method getIntendedUrl (line 13369) | public static function getIntendedUrl()
    method setIntendedUrl (line 13382) | public static function setIntendedUrl($url)
    method macro (line 13397) | public static function macro($name, $macro)
    method mixin (line 13411) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 13423) | public static function hasMacro($name)
    method flushMacros (line 13434) | public static function flushMacros()
  class Request (line 13448) | class Request {
    method capture (line 13455) | public static function capture()
    method instance (line 13466) | public static function instance()
    method method (line 13478) | public static function method()
    method uri (line 13490) | public static function uri()
    method root (line 13502) | public static function root()
    method url (line 13514) | public static function url()
    method fullUrl (line 13526) | public static function fullUrl()
    method fullUrlWithQuery (line 13539) | public static function fullUrlWithQuery($query)
    method fullUrlWithoutQuery (line 13552) | public static function fullUrlWithoutQuery($keys)
    method path (line 13564) | public static function path()
    method decodedPath (line 13576) | public static function decodedPath()
    method segment (line 13590) | public static function segment($index, $default = null)
    method segments (line 13602) | public static function segments()
    method is (line 13615) | public static function is(...$patterns)
    method routeIs (line 13628) | public static function routeIs(...$patterns)
    method fullUrlIs (line 13641) | public static function fullUrlIs(...$patterns)
    method host (line 13653) | public static function host()
    method httpHost (line 13665) | public static function httpHost()
    method schemeAndHttpHost (line 13677) | public static function schemeAndHttpHost()
    method ajax (line 13689) | public static function ajax()
    method pjax (line 13701) | public static function pjax()
    method prefetch (line 13713) | public static function prefetch()
    method secure (line 13725) | public static function secure()
    method ip (line 13737) | public static function ip()
    method ips (line 13749) | public static function ips()
    method userAgent (line 13761) | public static function userAgent()
    method merge (line 13774) | public static function merge($input)
    method mergeIfMissing (line 13787) | public static function mergeIfMissing($input)
    method replace (line 13800) | public static function replace($input)
    method get (line 13816) | public static function get($key, $default = null)
    method json (line 13830) | public static function json($key = null, $default = null)
    method createFrom (line 13844) | public static function createFrom($from, $to = null)
    method createFromBase (line 13856) | public static function createFromBase($request)
    method duplicate (line 13873) | public static function duplicate($query = null, $request = null, $attr...
    method hasSession (line 13889) | public static function hasSession($skipIfUninitialized = false)
    method getSession (line 13901) | public static function getSession()
    method session (line 13914) | public static function session()
    method setLaravelSession (line 13927) | public static function setLaravelSession($session)
    method setRequestLocale (line 13940) | public static function setRequestLocale($locale)
    method setDefaultRequestLocale (line 13953) | public static function setDefaultRequestLocale($locale)
    method user (line 13966) | public static function user($guard = null)
    method route (line 13980) | public static function route($param = null, $default = null)
    method fingerprint (line 13993) | public static function fingerprint()
    method setJson (line 14006) | public static function setJson($json)
    method getUserResolver (line 14018) | public static function getUserResolver()
    method setUserResolver (line 14031) | public static function setUserResolver($callback)
    method getRouteResolver (line 14043) | public static function getRouteResolver()
    method setRouteResolver (line 14056) | public static function setRouteResolver($callback)
    method toArray (line 14068) | public static function toArray()
    method offsetExists (line 14081) | public static function offsetExists($offset)
    method offsetGet (line 14094) | public static function offsetGet($offset)
    method offsetSet (line 14108) | public static function offsetSet($offset, $value)
    method offsetUnset (line 14121) | public static function offsetUnset($offset)
    method initialize (line 14141) | public static function initialize($query = [], $request = [], $attribu...
    method createFromGlobals (line 14153) | public static function createFromGlobals()
    method create (line 14175) | public static function create($uri, $method = 'GET', $parameters = [],...
    method setFactory (line 14190) | public static function setFactory($callable)
    method overrideGlobals (line 14204) | public static function overrideGlobals()
    method setTrustedProxies (line 14220) | public static function setTrustedProxies($proxies, $trustedHeaderSet)
    method getTrustedProxies (line 14232) | public static function getTrustedProxies()
    method getTrustedHeaderSet (line 14244) | public static function getTrustedHeaderSet()
    method setTrustedHosts (line 14258) | public static function setTrustedHosts($hostPatterns)
    method getTrustedHosts (line 14270) | public static function getTrustedHosts()
    method normalizeQueryString (line 14284) | public static function normalizeQueryString($qs)
    method enableHttpMethodParameterOverride (line 14303) | public static function enableHttpMethodParameterOverride()
    method getHttpMethodParameterOverride (line 14314) | public static function getHttpMethodParameterOverride()
    method hasPreviousSession (line 14326) | public static function hasPreviousSession()
    method setSession (line 14338) | public static function setSession($session)
    method setSessionFactory (line 14352) | public static function setSessionFactory($factory)
    method getClientIps (line 14371) | public static function getClientIps()
    method getClientIp (line 14395) | public static function getClientIp()
    method getScriptName (line 14407) | public static function getScriptName()
    method getPathInfo (line 14429) | public static function getPathInfo()
    method getBasePath (line 14449) | public static function getBasePath()
    method getBaseUrl (line 14467) | public static function getBaseUrl()
    method getScheme (line 14479) | public static function getScheme()
    method getPort (line 14497) | public static function getPort()
    method getUser (line 14509) | public static function getUser()
    method getPassword (line 14521) | public static function getPassword()
    method getUserInfo (line 14534) | public static function getUserInfo()
    method getHttpHost (line 14548) | public static function getHttpHost()
    method getRequestUri (line 14561) | public static function getRequestUri()
    method getSchemeAndHttpHost (line 14576) | public static function getSchemeAndHttpHost()
    method getUri (line 14589) | public static function getUri()
    method getUriForPath (line 14602) | public static function getUriForPath($path)
    method getRelativeUriForPath (line 14626) | public static function getRelativeUriForPath($path)
    method getQueryString (line 14641) | public static function getQueryString()
    method isSecure (line 14658) | public static function isSecure()
    method getHost (line 14676) | public static function getHost()
    method setMethod (line 14688) | public static function setMethod($method)
    method getMethod (line 14709) | public static function getMethod()
    method getRealMethod (line 14722) | public static function getRealMethod()
    method getMimeType (line 14734) | public static function getMimeType($format)
    method getMimeTypes (line 14747) | public static function getMimeTypes($format)
    method getFormat (line 14758) | public static function getFormat($mimeType)
    method setFormat (line 14771) | public static function setFormat($format, $mimeTypes)
    method getRequestFormat (line 14790) | public static function getRequestFormat($default = 'html')
    method setRequestFormat (line 14802) | public static function setRequestFormat($format)
    method getContentTypeFormat (line 14815) | public static function getContentTypeFormat()
    method setDefaultLocale (line 14827) | public static function setDefaultLocale($locale)
    method getDefaultLocale (line 14839) | public static function getDefaultLocale()
    method setLocale (line 14851) | public static function setLocale($locale)
    method getLocale (line 14863) | public static function getLocale()
    method isMethod (line 14876) | public static function isMethod($method)
    method isMethodSafe (line 14889) | public static function isMethodSafe()
    method isMethodIdempotent (line 14901) | public static function isMethodIdempotent()
    method isMethodCacheable (line 14914) | public static function isMethodCacheable()
    method getProtocolVersion (line 14932) | public static function getProtocolVersion()
    method getContent (line 14947) | public static function getContent($asResource = false)
    method getPayload (line 14960) | public static function getPayload()
    method getETags (line 14972) | public static function getETags()
    method isNoCache (line 14984) | public static function isNoCache()
    method getPreferredFormat (line 15001) | public static function getPreferredFormat($default = 'html')
    method getPreferredLanguage (line 15014) | public static function getPreferredLanguage($locales = null)
    method getLanguages (line 15027) | public static function getLanguages()
    method getCharsets (line 15040) | public static function getCharsets()
    method getEncodings (line 15053) | public static function getEncodings()
    method getAcceptableContentTypes (line 15066) | public static function getAcceptableContentTypes()
    method isXmlHttpRequest (line 15082) | public static function isXmlHttpRequest()
    method preferSafeContent (line 15095) | public static function preferSafeContent()
    method isFromTrustedProxy (line 15110) | public static function isFromTrustedProxy()
    method filterPrecognitiveRules (line 15124) | public static function filterPrecognitiveRules($rules)
    method isAttemptingPrecognition (line 15136) | public static function isAttemptingPrecognition()
    method isPrecognitive (line 15148) | public static function isPrecognitive()
    method isJson (line 15160) | public static function isJson()
    method expectsJson (line 15172) | public static function expectsJson()
    method wantsJson (line 15184) | public static function wantsJson()
    method accepts (line 15197) | public static function accepts($contentTypes)
    method prefers (line 15210) | public static function prefers($contentTypes)
    method acceptsAnyContentType (line 15222) | public static function acceptsAnyContentType()
    method acceptsJson (line 15234) | public static function acceptsJson()
    method acceptsHtml (line 15246) | public static function acceptsHtml()
    method matchesType (line 15260) | public static function matchesType($actual, $type)
    method format (line 15272) | public static function format($default = 'html')
    method old (line 15286) | public static function old($key = null, $default = null)
    method flash (line 15298) | public static function flash()
    method flashOnly (line 15311) | public static function flashOnly($keys)
    method flashExcept (line 15324) | public static function flashExcept($keys)
    method flush (line 15336) | public static function flush()
    method server (line 15350) | public static function server($key = null, $default = null)
    method hasHeader (line 15363) | public static function hasHeader($key)
    method header (line 15377) | public static function header($key = null, $default = null)
    method bearerToken (line 15389) | public static function bearerToken()
    method keys (line 15401) | public static function keys()
    method all (line 15414) | public static function all($keys = null)
    method input (line 15428) | public static function input($key = null, $default = null)
    method fluent (line 15441) | public static function fluent($key = null)
    method query (line 15455) | public static function query($key = null, $default = null)
    method post (line 15469) | public static function post($key = null, $default = null)
    method hasCookie (line 15482) | public static function hasCookie($key)
    method cookie (line 15496) | public static function cookie($key = null, $default = null)
    method allFiles (line 15508) | public static function allFiles()
    method hasFile (line 15521) | public static function hasFile($key)
    method file (line 15535) | public static function file($key = null, $default = null)
    method dump (line 15548) | public static function dump($keys = [])
    method dd (line 15561) | public static function dd(...$args)
    method exists (line 15574) | public static function exists($key)
    method has (line 15587) | public static function has($key)
    method hasAny (line 15600) | public static function hasAny($keys)
    method whenHas (line 15615) | public static function whenHas($key, $callback, $default = null)
    method filled (line 15628) | public static function filled($key)
    method isNotFilled (line 15641) | public static function isNotFilled($key)
    method anyFilled (line 15654) | public static function anyFilled($keys)
    method whenFilled (line 15669) | public static function whenFilled($key, $callback, $default = null)
    method missing (line 15682) | public static function missing($key)
    method whenMissing (line 15697) | public static function whenMissing($key, $callback, $default = null)
    method str (line 15711) | public static function str($key, $default = null)
    method string (line 15725) | public static function string($key, $default = null)
    method boolean (line 15741) | public static function boolean($key = null, $default = false)
    method integer (line 15755) | public static function integer($key, $default = 0)
    method float (line 15769) | public static function float($key, $default = 0.0)
    method date (line 15785) | public static function date($key, $format = null, $tz = null)
    method enum (line 15800) | public static function enum($key, $enumClass)
    method enums (line 15815) | public static function enums($key, $enumClass)
    method array (line 15828) | public static function array($key = null)
    method collect (line 15841) | public static function collect($key = null)
    method only (line 15854) | public static function only($keys)
    method except (line 15867) | public static function except($keys)
    method when (line 15884) | public static function when($value = null, $callback = null, $default ...
    method unless (line 15901) | public static function unless($value = null, $callback = null, $defaul...
    method macro (line 15916) | public static function macro($name, $macro)
    method mixin (line 15930) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 15942) | public static function hasMacro($name)
    method flushMacros (line 15953) | public static function flushMacros()
    method validate (line 23576) | public static function validate($rules, ...$params)
    method validateWithBag (line 23590) | public static function validateWithBag($errorBag, $rules, ...$params)
    method hasValidSignature (line 23602) | public static function hasValidSignature($absolute = true)
    method hasValidRelativeSignature (line 23613) | public static function hasValidRelativeSignature()
    method hasValidSignatureWhileIgnoring (line 23626) | public static function hasValidSignatureWhileIgnoring($ignoreQuery = [...
    method hasValidRelativeSignatureWhileIgnoring (line 23638) | public static function hasValidRelativeSignatureWhileIgnoring($ignoreQ...
  class Response (line 15964) | class Response {
    method make (line 15974) | public static function make($content = '', $status = 200, $headers = [])
    method noContent (line 15988) | public static function noContent($status = 204, $headers = [])
    method view (line 16004) | public static function view($view, $data = [], $status = 200, $headers...
    method json (line 16020) | public static function json($data = [], $status = 200, $headers = [], ...
    method jsonp (line 16037) | public static function jsonp($callback, $data = [], $status = 200, $he...
    method eventStream (line 16052) | public static function eventStream($callback, $headers = [], $endStrea...
    method stream (line 16067) | public static function stream($callback, $status = 200, $headers = [])
    method streamJson (line 16083) | public static function streamJson($data, $status = 200, $headers = [],...
    method streamDownload (line 16100) | public static function streamDownload($callback, $name = null, $header...
    method download (line 16116) | public static function download($file, $name = null, $headers = [], $d...
    method file (line 16130) | public static function file($file, $headers = [])
    method redirectTo (line 16146) | public static function redirectTo($path, $status = 302, $headers = [],...
    method redirectToRoute (line 16162) | public static function redirectToRoute($route, $parameters = [], $stat...
    method redirectToAction (line 16178) | public static function redirectToAction($action, $parameters = [], $st...
    method redirectGuest (line 16194) | public static function redirectGuest($path, $status = 302, $headers = ...
    method redirectToIntended (line 16210) | public static function redirectToIntended($default = '/', $status = 30...
    method macro (line 16225) | public static function macro($name, $macro)
    method mixin (line 16239) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 16251) | public static function hasMacro($name)
    method flushMacros (line 16262) | public static function flushMacros()
  class Route (line 16293) | class Route {
    method get (line 16302) | public static function get($uri, $action = null)
    method post (line 16316) | public static function post($uri, $action = null)
    method put (line 16330) | public static function put($uri, $action = null)
    method patch (line 16344) | public static function patch($uri, $action = null)
    method delete (line 16358) | public static function delete($uri, $action = null)
    method options (line 16372) | public static function options($uri, $action = null)
    method any (line 16386) | public static function any($uri, $action = null)
    method fallback (line 16399) | public static function fallback($action)
    method redirect (line 16414) | public static function redirect($uri, $destination, $status = 302)
    method permanentRedirect (line 16428) | public static function permanentRedirect($uri, $destination)
    method view (line 16445) | public static function view($uri, $view, $data = [], $status = 200, $h...
    method match (line 16460) | public static function match($methods, $uri, $action = null)
    method resources (line 16474) | public static function resources($resources, $options = [])
    method resource (line 16489) | public static function resource($name, $controller, $options = [])
    method apiResources (line 16503) | public static function apiResources($resources, $options = [])
    method apiResource (line 16518) | public static function apiResource($name, $controller, $options = [])
    method singletons (line 16532) | public static function singletons($singletons, $options = [])
    method singleton (line 16547) | public static function singleton($name, $controller, $options = [])
    method apiSingletons (line 16561) | public static function apiSingletons($singletons, $options = [])
    method apiSingleton (line 16576) | public static function apiSingleton($name, $controller, $options = [])
    method group (line 16590) | public static function group($attributes, $routes)
    method mergeWithLastGroup (line 16604) | public static function mergeWithLastGroup($new, $prependExistingPrefix...
    method getLastGroupPrefix (line 16616) | public static function getLastGroupPrefix()
    method addRoute (line 16631) | public static function addRoute($methods, $uri, $action)
    method newRoute (line 16646) | public static function newRoute($methods, $uri, $action)
    method respondWithRoute (line 16659) | public static function respondWithRoute($name)
    method dispatch (line 16672) | public static function dispatch($request)
    method dispatchToRoute (line 16685) | public static function dispatchToRoute($request)
    method gatherRouteMiddleware (line 16698) | public static function gatherRouteMiddleware($route)
    method resolveMiddleware (line 16712) | public static function resolveMiddleware($middleware, $excluded = [])
    method prepareResponse (line 16726) | public static function prepareResponse($request, $response)
    method toResponse (line 16740) | public static function toResponse($request, $response)
    method substituteBindings (line 16754) | public static function substituteBindings($route)
    method substituteImplicitBindings (line 16769) | public static function substituteImplicitBindings($route)
    method substituteImplicitBindingsUsing (line 16782) | public static function substituteImplicitBindingsUsing($callback)
    method matched (line 16795) | public static function matched($callback)
    method getMiddleware (line 16807) | public static function getMiddleware()
    method aliasMiddleware (line 16821) | public static function aliasMiddleware($name, $class)
    method hasMiddlewareGroup (line 16834) | public static function hasMiddlewareGroup($name)
    method getMiddlewareGroups (line 16846) | public static function getMiddlewareGroups()
    method middlewareGroup (line 16860) | public static function middlewareGroup($name, $middleware)
    method prependMiddlewareToGroup (line 16876) | public static function prependMiddlewareToGroup($group, $middleware)
    method pushMiddlewareToGroup (line 16892) | public static function pushMiddlewareToGroup($group, $middleware)
    method removeMiddlewareFromGroup (line 16906) | public static function removeMiddlewareFromGroup($group, $middleware)
    method flushMiddlewareGroups (line 16918) | public static function flushMiddlewareGroups()
    method bind (line 16932) | public static function bind($key, $binder)
    method model (line 16947) | public static function model($key, $class, $callback = null)
    method getBindingCallback (line 16960) | public static function getBindingCallback($key)
    method getPatterns (line 16972) | public static function getPatterns()
    method pattern (line 16986) | public static function pattern($key, $pattern)
    method patterns (line 16999) | public static function patterns($patterns)
    method hasGroupStack (line 17011) | public static function hasGroupStack()
    method getGroupStack (line 17023) | public static function getGroupStack()
    method input (line 17037) | public static function input($key, $default = null)
    method getCurrentRequest (line 17049) | public static function getCurrentRequest()
    method getCurrentRoute (line 17061) | public static function getCurrentRoute()
    method current (line 17073) | public static function current()
    method has (line 17086) | public static function has($name)
    method currentRouteName (line 17098) | public static function currentRouteName()
    method is (line 17111) | public static function is(...$patterns)
    method currentRouteNamed (line 17124) | public static function currentRouteNamed(...$patterns)
    method currentRouteAction (line 17136) | public static function currentRouteAction()
    method uses (line 17149) | public static function uses(...$patterns)
    method currentRouteUses (line 17162) | public static function currentRouteUses($action)
    method singularResourceParameters (line 17175) | public static function singularResourceParameters($singular = true)
    method resourceParameters (line 17188) | public static function resourceParameters($parameters = [])
    method resourceVerbs (line 17201) | public static function resourceVerbs($verbs = [])
    method getRoutes (line 17213) | public static function getRoutes()
    method setRoutes (line 17226) | public static function setRoutes($routes)
    method setCompiledRoutes (line 17239) | public static function setCompiledRoutes($routes)
    method uniqueMiddleware (line 17252) | public static function uniqueMiddleware($middleware)
    method setContainer (line 17264) | public static function setContainer($container)
    method macro (line 17279) | public static function macro($name, $macro)
    method mixin (line 17293) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 17305) | public static function hasMacro($name)
    method flushMacros (line 17316) | public static function flushMacros()
    method macroCall (line 17330) | public static function macroCall($method, $parameters)
    method tap (line 17343) | public static function tap($callback = null)
  class Schedule (line 17417) | class Schedule {
    method call (line 17426) | public static function call($callback, $parameters = [])
    method command (line 17440) | public static function command($command, $parameters = [])
    method job (line 17455) | public static function job($job, $queue = null, $connection = null)
    method exec (line 17469) | public static function exec($command, $parameters = [])
    method group (line 17483) | public static function group($events)
    method compileArrayInput (line 17497) | public static function compileArrayInput($key, $value)
    method serverShouldRun (line 17511) | public static function serverShouldRun($event, $time)
    method dueEvents (line 17524) | public static function dueEvents($app)
    method events (line 17536) | public static function events()
    method useCache (line 17549) | public static function useCache($store)
    method macro (line 17564) | public static function macro($name, $macro)
    method mixin (line 17578) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 17590) | public static function hasMacro($name)
    method flushMacros (line 17601) | public static function flushMacros()
    method macroCall (line 17615) | public static function macroCall($method, $parameters)
  class Schema (line 17627) | class Schema {
    method createDatabase (line 17635) | public static function createDatabase($name)
    method dropDatabaseIfExists (line 17648) | public static function dropDatabaseIfExists($name)
    method hasTable (line 17661) | public static function hasTable($table)
    method getTables (line 17674) | public static function getTables($withSize = true)
    method getColumns (line 17687) | public static function getColumns($table)
    method dropAllTables (line 17699) | public static function dropAllTables()
    method dropAllViews (line 17711) | public static function dropAllViews()
    method setBusyTimeout (line 17724) | public static function setBusyTimeout($milliseconds)
    method setJournalMode (line 17737) | public static function setJournalMode($mode)
    method setSynchronous (line 17750) | public static function setSynchronous($mode)
    method refreshDatabaseFile (line 17762) | public static function refreshDatabaseFile()
    method defaultStringLength (line 17775) | public static function defaultStringLength($length)
    method defaultMorphKeyType (line 17789) | public static function defaultMorphKeyType($type)
    method morphUsingUuids (line 17801) | public static function morphUsingUuids()
    method morphUsingUlids (line 17813) | public static function morphUsingUlids()
    method hasView (line 17826) | public static function hasView($view)
    method getTableListing (line 17839) | public static function getTableListing()
    method getViews (line 17852) | public static function getViews()
    method getTypes (line 17865) | public static function getTypes()
    method hasColumn (line 17880) | public static function hasColumn($table, $column)
    method hasColumns (line 17895) | public static function hasColumns($table, $columns)
    method whenTableHasColumn (line 17911) | public static function whenTableHasColumn($table, $column, $callback)
    method whenTableDoesntHaveColumn (line 17927) | public static function whenTableDoesntHaveColumn($table, $column, $cal...
    method getColumnType (line 17943) | public static function getColumnType($table, $column, $fullDefinition ...
    method getColumnListing (line 17957) | public static function getColumnListing($table)
    method getIndexes (line 17971) | public static function getIndexes($table)
    method getIndexListing (line 17985) | public static function getIndexListing($table)
    method hasIndex (line 18001) | public static function hasIndex($table, $index, $type = null)
    method getForeignKeys (line 18015) | public static function getForeignKeys($table)
    method table (line 18030) | public static function table($table, $callback)
    method create (line 18045) | public static function create($table, $callback)
    method drop (line 18059) | public static function drop($table)
    method dropIfExists (line 18073) | public static function dropIfExists($table)
    method dropColumns (line 18088) | public static function dropColumns($table, $columns)
    method dropAllTypes (line 18102) | public static function dropAllTypes()
    method rename (line 18117) | public static function rename($from, $to)
    method enableForeignKeyConstraints (line 18130) | public static function enableForeignKeyConstraints()
    method disableForeignKeyConstraints (line 18143) | public static function disableForeignKeyConstraints()
    method withoutForeignKeyConstraints (line 18157) | public static function withoutForeignKeyConstraints($callback)
    method getConnection (line 18170) | public static function getConnection()
    method setConnection (line 18184) | public static function setConnection($connection)
    method blueprintResolver (line 18198) | public static function blueprintResolver($resolver)
    method macro (line 18214) | public static function macro($name, $macro)
    method mixin (line 18229) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 18242) | public static function hasMacro($name)
    method flushMacros (line 18254) | public static function flushMacros()
  class Session (line 18266) | class Session {
    method shouldBlock (line 18273) | public static function shouldBlock()
    method blockDriver (line 18285) | public static function blockDriver()
    method defaultRouteBlockLockSeconds (line 18297) | public static function defaultRouteBlockLockSeconds()
    method defaultRouteBlockWaitSeconds (line 18309) | public static function defaultRouteBlockWaitSeconds()
    method getSessionConfig (line 18321) | public static function getSessionConfig()
    method getDefaultDriver (line 18333) | public static function getDefaultDriver()
    method setDefaultDriver (line 18346) | public static function setDefaultDriver($name)
    method driver (line 18360) | public static function driver($driver = null)
    method extend (line 18375) | public static function extend($driver, $callback)
    method getDrivers (line 18388) | public static function getDrivers()
    method getContainer (line 18401) | public static function getContainer()
    method setContainer (line 18415) | public static function setContainer($container)
    method forgetDrivers (line 18428) | public static function forgetDrivers()
    method start (line 18441) | public static function start()
    method save (line 18453) | public static function save()
    method ageFlashData (line 18465) | public static function ageFlashData()
    method all (line 18477) | public static function all()
    method only (line 18490) | public static function only($keys)
    method except (line 18503) | public static function except($keys)
    method exists (line 18516) | public static function exists($key)
    method missing (line 18529) | public static function missing($key)
    method has (line 18542) | public static function has($key)
    method hasAny (line 18555) | public static function hasAny($key)
    method get (line 18569) | public static function get($key, $default = null)
    method pull (line 18583) | public static function pull($key, $default = null)
    method hasOldInput (line 18596) | public static function hasOldInput($key = null)
    method getOldInput (line 18610) | public static function getOldInput($key = null, $default = null)
    method replace (line 18623) | public static function replace($attributes)
    method put (line 18637) | public static function put($key, $value = null)
    method remember (line 18651) | public static function remember($key, $callback)
    method push (line 18665) | public static function push($key, $value)
    method increment (line 18679) | public static function increment($key, $amount = 1)
    method decrement (line 18693) | public static function decrement($key, $amount = 1)
    method flash (line 18707) | public static function flash($key, $value = true)
    method now (line 18721) | public static function now($key, $value)
    method reflash (line 18733) | public static function reflash()
    method keep (line 18746) | public static function keep($keys = null)
    method flashInput (line 18759) | public static function flashInput($value)
    method remove (line 18772) | public static function remove($key)
    method forget (line 18785) | public static function forget($keys)
    method flush (line 18797) | public static function flush()
    method invalidate (line 18809) | public static function invalidate()
    method regenerate (line 18822) | public static function regenerate($destroy = false)
    method migrate (line 18835) | public static function migrate($destroy = false)
    method isStarted (line 18847) | public static function isStarted()
    method getName (line 18859) | public static function getName()
    method setName (line 18872) | public static function setName($name)
    method id (line 18884) | public static function id()
    method getId (line 18896) | public static function getId()
    method setId (line 18909) | public static function setId($id)
    method isValidId (line 18922) | public static function isValidId($id)
    method setExists (line 18935) | public static function setExists($value)
    method token (line 18947) | public static function token()
    method regenerateToken (line 18959) | public static function regenerateToken()
    method hasPreviousUri (line 18971) | public static function hasPreviousUri()
    method previousUri (line 18984) | public static function previousUri()
    method previousUrl (line 18996) | public static function previousUrl()
    method setPreviousUrl (line 19009) | public static function setPreviousUrl($url)
    method passwordConfirmed (line 19021) | public static function passwordConfirmed()
    method getHandler (line 19033) | public static function getHandler()
    method setHandler (line 19046) | public static function setHandler($handler)
    method handlerNeedsRequest (line 19058) | public static function handlerNeedsRequest()
    method setRequestOnHandler (line 19071) | public static function setRequestOnHandler($request)
    method macro (line 19086) | public static function macro($name, $macro)
    method mixin (line 19100) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 19112) | public static function hasMacro($name)
    method flushMacros (line 19123) | public static function flushMacros()
  class Storage (line 19141) | class Storage {
    method drive (line 19149) | public static function drive($name = null)
    method disk (line 19162) | public static function disk($name = null)
    method cloud (line 19174) | public static function cloud()
    method build (line 19187) | public static function build($config)
    method createLocalDriver (line 19201) | public static function createLocalDriver($config, $name = 'local')
    method createFtpDriver (line 19214) | public static function createFtpDriver($config)
    method createSftpDriver (line 19227) | public static function createSftpDriver($config)
    method createS3Driver (line 19240) | public static function createS3Driver($config)
    method createScopedDriver (line 19253) | public static function createScopedDriver($config)
    method set (line 19267) | public static function set($name, $disk)
    method getDefaultDriver (line 19279) | public static function getDefaultDriver()
    method getDefaultCloudDriver (line 19291) | public static function getDefaultCloudDriver()
    method forgetDisk (line 19304) | public static function forgetDisk($disk)
    method purge (line 19317) | public static function purge($name = null)
    method extend (line 19331) | public static function extend($driver, $callback)
    method setApplication (line 19344) | public static function setApplication($app)
    method providesTemporaryUrls (line 19356) | public static function providesTemporaryUrls()
    method temporaryUrl (line 19371) | public static function temporaryUrl($path, $expiration, $options = [])
    method diskName (line 19384) | public static function diskName($disk)
    method shouldServeSignedUrls (line 19398) | public static function shouldServeSignedUrls($serve = true, $urlGenera...
    method assertExists (line 19412) | public static function assertExists($path, $content = null)
    method assertCount (line 19428) | public static function assertCount($path, $count, $recursive = false)
    method assertMissing (line 19442) | public static function assertMissing($path)
    method assertDirectoryEmpty (line 19456) | public static function assertDirectoryEmpty($path)
    method exists (line 19470) | public static function exists($path)
    method missing (line 19484) | public static function missing($path)
    method fileExists (line 19498) | public static function fileExists($path)
    method fileMissing (line 19512) | public static function fileMissing($path)
    method directoryExists (line 19526) | public static function directoryExists($path)
    method directoryMissing (line 19540) | public static function directoryMissing($path)
    method path (line 19554) | public static function path($path)
    method get (line 19568) | public static function get($path)
    method json (line 19583) | public static function json($path, $flags = 0)
    method response (line 19600) | public static function response($path, $name = null, $headers = [], $d...
    method serve (line 19617) | public static function serve($request, $path, $name = null, $headers =...
    method download (line 19633) | public static function download($path, $name = null, $headers = [])
    method put (line 19649) | public static function put($path, $contents, $options = [])
    method putFile (line 19665) | public static function putFile($path, $file = null, $options = [])
    method putFileAs (line 19682) | public static function putFileAs($path, $file, $name = null, $options ...
    method getVisibility (line 19696) | public static function getVisibility($path)
    method setVisibility (line 19711) | public static function setVisibility($path, $visibility)
    method prepend (line 19727) | public static function prepend($path, $data, $separator = '
    method append (line 19744) | public static function append($path, $data, $separator = '
    method delete (line 19759) | public static function delete($paths)
    method copy (line 19774) | public static function copy($from, $to)
    method move (line 19789) | public static function move($from, $to)
    method size (line 19803) | public static function size($path)
    method checksum (line 19817) | public static function checksum($path, $options = [])
    method mimeType (line 19831) | public static function mimeType($path)
    method lastModified (line 19845) | public static function lastModified($path)
    method readStream (line 19859) | public static function readStream($path)
    method writeStream (line 19875) | public static function writeStream($path, $resource, $options = [])
    method url (line 19890) | public static function url($path)
    method temporaryUploadUrl (line 19907) | public static function temporaryUploadUrl($path, $expiration, $options...
    method files (line 19922) | public static function files($directory = null, $recursive = false)
    method allFiles (line 19936) | public static function allFiles($directory = null)
    method directories (line 19951) | public static function directories($directory = null, $recursive = false)
    method allDirectories (line 19965) | public static function allDirectories($directory = null)
    method makeDirectory (line 19979) | public static function makeDirectory($path)
    method deleteDirectory (line 19993) | public static function deleteDirectory($directory)
    method getDriver (line 20006) | public static function getDriver()
    method getAdapter (line 20019) | public static function getAdapter()
    method getConfig (line 20032) | public static function getConfig()
    method serveUsing (line 20046) | public static function serveUsing($callback)
    method buildTemporaryUrlsUsing (line 20060) | public static function buildTemporaryUrlsUsing($callback)
    method when (line 20078) | public static function when($value = null, $callback = null, $default ...
    method unless (line 20095) | public static function unless($value = null, $callback = null, $defaul...
    method macro (line 20110) | public static function macro($name, $macro)
    method mixin (line 20125) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 20138) | public static function hasMacro($name)
    method flushMacros (line 20150) | public static function flushMacros()
    method macroCall (line 20165) | public static function macroCall($method, $parameters)
  class URL (line 20178) | class URL {
    method full (line 20185) | public static function full()
    method current (line 20197) | public static function current()
    method previous (line 20210) | public static function previous($fallback = false)
    method previousPath (line 20223) | public static function previousPath($fallback = false)
    method to (line 20238) | public static function to($path, $extra = [], $secure = null)
    method query (line 20254) | public static function query($path, $query = [], $extra = [], $secure ...
    method secure (line 20268) | public static function secure($path, $parameters = [])
    method asset (line 20282) | public static function asset($path, $secure = null)
    method secureAsset (line 20295) | public static function secureAsset($path)
    method assetFrom (line 20310) | public static function assetFrom($root, $path, $secure = null)
    method formatScheme (line 20323) | public static function formatScheme($secure = null)
    method signedRoute (line 20340) | public static function signedRoute($name, $parameters = [], $expiratio...
    method temporarySignedRoute (line 20356) | public static function temporarySignedRoute($name, $expiration, $param...
    method hasValidSignature (line 20371) | public static function hasValidSignature($request, $absolute = true, $...
    method hasValidRelativeSignature (line 20385) | public static function hasValidRelativeSignature($request, $ignoreQuer...
    method hasCorrectSignature (line 20400) | public static function hasCorrectSignature($request, $absolute = true,...
    method signatureHasNotExpired (line 20413) | public static function signatureHasNotExpired($request)
    method route (line 20429) | public static function route($name, $parameters = [], $absolute = true)
    method toRoute (line 20445) | public static function toRoute($route, $parameters, $absolute)
    method action (line 20461) | public static function action($action, $parameters = [], $absolute = t...
    method formatParameters (line 20474) | public static function formatParameters($parameters)
    method formatRoot (line 20488) | public static function formatRoot($scheme, $root = null)
    method format (line 20503) | public static function format($root, $path, $route = null)
    method isValidUrl (line 20516) | public static function isValidUrl($path)
    method defaults (line 20529) | public static function defaults($defaults)
    method getDefaultParameters (line 20541) | public static function getDefaultParameters()
    method forceScheme (line 20554) | public static function forceScheme($scheme)
    method forceHttps (line 20567) | public static function forceHttps($force = true)
    method useOrigin (line 20580) | public static function useOrigin($root)
    method forceRootUrl (line 20594) | public static function forceRootUrl($root)
    method useAssetOrigin (line 20607) | public static function useAssetOrigin($root)
    method formatHostUsing (line 20620) | public static function formatHostUsing($callback)
    method formatPathUsing (line 20633) | public static function formatPathUsing($callback)
    method pathFormatter (line 20645) | public static function pathFormatter()
    method getRequest (line 20657) | public static function getRequest()
    method setRequest (line 20670) | public static function setRequest($request)
    method setRoutes (line 20683) | public static function setRoutes($routes)
    method setSessionResolver (line 20696) | public static function setSessionResolver($sessionResolver)
    method setKeyResolver (line 20709) | public static function setKeyResolver($keyResolver)
    method withKeyResolver (line 20722) | public static function withKeyResolver($keyResolver)
    method resolveMissingNamedRoutesUsing (line 20735) | public static function resolveMissingNamedRoutesUsing($missingNamedRou...
    method getRootControllerNamespace (line 20747) | public static function getRootControllerNamespace()
    method setRootControllerNamespace (line 20760) | public static function setRootControllerNamespace($rootNamespace)
    method macro (line 20775) | public static function macro($name, $macro)
    method mixin (line 20789) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 20801) | public static function hasMacro($name)
    method flushMacros (line 20812) | public static function flushMacros()
  class Validator (line 20823) | class Validator {
    method make (line 20834) | public static function make($data, $rules, $messages = [], $attributes...
    method validate (line 20851) | public static function validate($data, $rules, $messages = [], $attrib...
    method extend (line 20866) | public static function extend($rule, $extension, $message = null)
    method extendImplicit (line 20881) | public static function extendImplicit($rule, $extension, $message = null)
    method extendDependent (line 20896) | public static function extendDependent($rule, $extension, $message = n...
    method replacer (line 20910) | public static function replacer($rule, $replacer)
    method includeUnvalidatedArrayKeys (line 20922) | public static function includeUnvalidatedArrayKeys()
    method excludeUnvalidatedArrayKeys (line 20934) | public static function excludeUnvalidatedArrayKeys()
    method resolver (line 20947) | public static function resolver($resolver)
    method getTranslator (line 20959) | public static function getTranslator()
    method getPresenceVerifier (line 20971) | public static function getPresenceVerifier()
    method setPresenceVerifier (line 20984) | public static function setPresenceVerifier($presenceVerifier)
    method getContainer (line 20996) | public static function getContainer()
    method setContainer (line 21009) | public static function setContainer($container)
  class View (line 21021) | class View {
    method file (line 21031) | public static function file($path, $data = [], $mergeData = [])
    method make (line 21046) | public static function make($view, $data = [], $mergeData = [])
    method first (line 21062) | public static function first($views, $data = [], $mergeData = [])
    method renderWhen (line 21078) | public static function renderWhen($condition, $view, $data = [], $merg...
    method renderUnless (line 21094) | public static function renderUnless($condition, $view, $data = [], $me...
    method renderEach (line 21110) | public static function renderEach($view, $data, $iterator, $empty = 'r...
    method exists (line 21123) | public static function exists($view)
    method getEngineFromPath (line 21137) | public static function getEngineFromPath($path)
    method share (line 21151) | public static function share($key, $value = null)
    method incrementRender (line 21163) | public static function incrementRender()
    method decrementRender (line 21175) | public static function decrementRender()
    method doneRendering (line 21187) | public static function doneRendering()
    method hasRenderedOnce (line 21200) | public static function hasRenderedOnce($id)
    method markAsRenderedOnce (line 21213) | public static function markAsRenderedOnce($id)
    method addLocation (line 21226) | public static function addLocation($location)
    method prependLocation (line 21239) | public static function prependLocation($location)
    method addNamespace (line 21253) | public static function addNamespace($namespace, $hints)
    method prependNamespace (line 21267) | public static function prependNamespace($namespace, $hints)
    method replaceNamespace (line 21281) | public static function replaceNamespace($namespace, $hints)
    method addExtension (line 21296) | public static function addExtension($extension, $engine, $resolver = n...
    method flushState (line 21308) | public static function flushState()
    method flushStateIfDoneRendering (line 21320) | public static function flushStateIfDoneRendering()
    method getExtensions (line 21332) | public static function getExtensions()
    method getEngineResolver (line 21344) | public static function getEngineResolver()
    method getFinder (line 21356) | public static function getFinder()
    method setFinder (line 21369) | public static function setFinder($finder)
    method flushFinderCache (line 21381) | public static function flushFinderCache()
    method getDispatcher (line 21393) | public static function getDispatcher()
    method setDispatcher (line 21406) | public static function setDispatcher($events)
    method getContainer (line 21418) | public static function getContainer()
    method setContainer (line 21431) | public static function setContainer($container)
    method shared (line 21445) | public static function shared($key, $default = null)
    method getShared (line 21457) | public static function getShared()
    method macro (line 21472) | public static function macro($name, $macro)
    method mixin (line 21486) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 21498) | public static function hasMacro($name)
    method flushMacros (line 21509) | public static function flushMacros()
    method startComponent (line 21522) | public static function startComponent($view, $data = [])
    method startComponentFirst (line 21536) | public static function startComponentFirst($names, $data = [])
    method renderComponent (line 21548) | public static function renderComponent()
    method getConsumableComponentData (line 21562) | public static function getConsumableComponentData($key, $default = null)
    method slot (line 21577) | public static function slot($name, $content = null, $attributes = [])
    method endSlot (line 21589) | public static function endSlot()
    method creator (line 21603) | public static function creator($views, $callback)
    method composers (line 21616) | public static function composers($composers)
    method composer (line 21630) | public static function composer($views, $callback)
    method callComposer (line 21643) | public static function callComposer($view)
    method callCreator (line 21656) | public static function callCreator($view)
    method startFragment (line 21669) | public static function startFragment($fragment)
    method stopFragment (line 21682) | public static function stopFragment()
    method getFragment (line 21696) | public static function getFragment($name, $default = null)
    method getFragments (line 21708) | public static function getFragments()
    method flushFragments (line 21720) | public static function flushFragments()
    method startSection (line 21734) | public static function startSection($section, $content = null)
    method inject (line 21748) | public static function inject($section, $content)
    method yieldSection (line 21760) | public static function yieldSection()
    method stopSection (line 21774) | public static function stopSection($overwrite = false)
    method appendSection (line 21787) | public static function appendSection()
    method yieldContent (line 21801) | public static function yieldContent($section, $default = '')
    method parentPlaceholder (line 21814) | public static function parentPlaceholder($section = '')
    method hasSection (line 21826) | public static function hasSection($name)
    method sectionMissing (line 21839) | public static function sectionMissing($name)
    method getSection (line 21853) | public static function getSection($name, $default = null)
    method getSections (line 21865) | public static function getSections()
    method flushSections (line 21877) | public static function flushSections()
    method addLoop (line 21890) | public static function addLoop($data)
    method incrementLoopIndices (line 21902) | public static function incrementLoopIndices()
    method popLoop (line 21914) | public static function popLoop()
    method getLastLoop (line 21926) | public static function getLastLoop()
    method getLoopStack (line 21938) | public static function getLoopStack()
    method startPush (line 21952) | public static function startPush($section, $content = '')
    method stopPush (line 21965) | public static function stopPush()
    method startPrepend (line 21979) | public static function startPrepend($section, $content = '')
    method stopPrepend (line 21992) | public static function stopPrepend()
    method yieldPushContent (line 22006) | public static function yieldPushContent($section, $default = '')
    method flushStacks (line 22018) | public static function flushStacks()
    method startTranslation (line 22031) | public static function startTranslation($replacements = [])
    method renderTranslation (line 22043) | public static function renderTranslation()
  class Vite (line 22055) | class Vite {
    method preloadedAssets (line 22062) | public static function preloadedAssets()
    method cspNonce (line 22074) | public static function cspNonce()
    method useCspNonce (line 22087) | public static function useCspNonce($nonce = null)
    method useIntegrityKey (line 22100) | public static function useIntegrityKey($key)
    method withEntryPoints (line 22113) | public static function withEntryPoints($entryPoints)
    method mergeEntryPoints (line 22126) | public static function mergeEntryPoints($entryPoints)
    method useManifestFilename (line 22139) | public static function useManifestFilename($filename)
    method createAssetPathsUsing (line 22152) | public static function createAssetPathsUsing($resolver)
    method hotFile (line 22164) | public static function hotFile()
    method useHotFile (line 22177) | public static function useHotFile($path)
    method useBuildDirectory (line 22190) | public static function useBuildDirectory($path)
    method useScriptTagAttributes (line 22203) | public static function useScriptTagAttributes($attributes)
    method useStyleTagAttributes (line 22216) | public static function useStyleTagAttributes($attributes)
    method usePreloadTagAttributes (line 22229) | public static function usePreloadTagAttributes($attributes)
    method prefetch (line 22243) | public static function prefetch($concurrency = null, $event = 'load')
    method useWaterfallPrefetching (line 22255) | public static function useWaterfallPrefetching($concurrency = null)
    method useAggressivePrefetching (line 22267) | public static function useAggressivePrefetching()
    method usePrefetchStrategy (line 22281) | public static function usePrefetchStrategy($strategy, $config = [])
    method reactRefresh (line 22293) | public static function reactRefresh()
    method asset (line 22307) | public static function asset($asset, $buildDirectory = null)
    method content (line 22322) | public static function content($asset, $buildDirectory = null)
    method manifestHash (line 22335) | public static function manifestHash($buildDirectory = null)
    method isRunningHot (line 22347) | public static function isRunningHot()
    method toHtml (line 22359) | public static function toHtml()
    method macro (line 22374) | public static function macro($name, $macro)
    method mixin (line 22388) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 22400) | public static function hasMacro($name)
    method flushMacros (line 22411) | public static function flushMacros()
  class Form (line 22424) | class Form {
    method text (line 22430) | public static function text($name, $value = null, $options = [])
    method select (line 22441) | public static function select($name, $list = [], $selected = null, $op...
    method textarea (line 22452) | public static function textarea($name, $value = null, $options = [])
  class Html (line 22466) | class Html {
    method a (line 22475) | public static function a($href = null, $contents = null)
    method i (line 22489) | public static function i($contents = null)
    method p (line 22502) | public static function p($contents = null)
    method button (line 22516) | public static function button($contents = null, $type = null, $name = ...
    method class (line 22529) | public static function class($classes)
    method checkbox (line 22544) | public static function checkbox($name = null, $checked = null, $value ...
    method div (line 22557) | public static function div($contents = null)
    method email (line 22571) | public static function email($name = null, $value = null)
    method search (line 22585) | public static function search($name = null, $value = null)
    method date (line 22600) | public static function date($name = '', $value = null, $format = true)
    method datetime (line 22615) | public static function datetime($name = '', $value = null, $format = t...
    method range (line 22632) | public static function range($name = '', $value = null, $min = null, $...
    method time (line 22647) | public static function time($name = '', $value = null, $format = true)
    method element (line 22660) | public static function element($tag)
    method input (line 22675) | public static function input($type = null, $name = null, $value = null)
    method fieldset (line 22688) | public static function fieldset($legend = null)
    method form (line 22702) | public static function form($method = 'POST', $action = null)
    method hidden (line 22716) | public static function hidden($name = null, $value = null)
    method img (line 22730) | public static function img($src = null, $alt = null)
    method label (line 22744) | public static function label($contents = null, $for = null)
    method legend (line 22757) | public static function legend($contents = null)
    method mailto (line 22771) | public static function mailto($email, $text = null)
    method multiselect (line 22786) | public static function multiselect($name = null, $options = [], $value...
    method number (line 22803) | public static function number($name = null, $value = null, $min = null...
    method option (line 22818) | public static function option($text = null, $value = null, $selected =...
    method password (line 22831) | public static function password($name = null)
    method radio (line 22846) | public static function radio($name = null, $checked = null, $value = n...
    method select (line 22861) | public static function select($name = null, $options = [], $value = null)
    method span (line 22874) | public static function span($contents = null)
    method submit (line 22887) | public static function submit($text = null)
    method reset (line 22900) | public static function reset($text = null)
    method tel (line 22914) | public static function tel($number, $text = null)
    method text (line 22928) | public static function text($name = null, $value = null)
    method file (line 22941) | public static function file($name = null)
    method textarea (line 22955) | public static function textarea($name = null, $value = null)
    method token (line 22967) | public static function token()
    method model (line 22980) | public static function model($model)
    method modelForm (line 22995) | public static function modelForm($model, $method = 'POST', $action = n...
    method endModel (line 23007) | public static function endModel()
    method closeModelForm (line 23019) | public static function closeModelForm()
    method value (line 23034) | public static function value($name, $default = null)
    method macro (line 23049) | public static function macro($name, $macro)
    method mixin (line 23063) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 23075) | public static function hasMacro($name)
    method flushMacros (line 23086) | public static function flushMacros()
  class Flare (line 23100) | class Flare {
    method make (line 23106) | public static function make($apiKey = null, $contextDetector = null)
    method setApiToken (line 23116) | public static function setApiToken($apiToken)
    method apiTokenSet (line 23127) | public static function apiTokenSet()
    method setBaseUrl (line 23138) | public static function setBaseUrl($baseUrl)
    method setStage (line 23149) | public static function setStage($stage)
    method sendReportsImmediately (line 23160) | public static function sendReportsImmediately()
    method determineVersionUsing (line 23171) | public static function determineVersionUsing($determineVersionCallable)
    method reportErrorLevels (line 23182) | public static function reportErrorLevels($reportErrorLevels)
    method filterExceptionsUsing (line 23193) | public static function filterExceptionsUsing($filterExceptionsCallable)
    method filterReportsUsing (line 23204) | public static function filterReportsUsing($filterReportsCallable)
    method argumentReducers (line 23216) | public static function argumentReducers($argumentReducers)
    method withStackFrameArguments (line 23227) | public static function withStackFrameArguments($withStackFrameArgument...
    method overrideGrouping (line 23239) | public static function overrideGrouping($exceptionClass, $type = 'exce...
    method version (line 23250) | public static function version()
    method getMiddleware (line 23262) | public static function getMiddleware()
    method setContextProviderDetector (line 23273) | public static function setContextProviderDetector($contextDetector)
    method setContainer (line 23284) | public static function setContainer($container)
    method registerFlareHandlers (line 23295) | public static function registerFlareHandlers()
    method registerExceptionHandler (line 23306) | public static function registerExceptionHandler()
    method registerErrorHandler (line 23317) | public static function registerErrorHandler($errorLevels = null)
    method registerMiddleware (line 23330) | public static function registerMiddleware($middleware)
    method getMiddlewares (line 23342) | public static function getMiddlewares()
    method glow (line 23357) | public static function glow($name, $messageLevel = 'info', $metaData =...
    method handleException (line 23368) | public static function handleException($throwable)
    method handleError (line 23380) | public static function handleError($code, $message, $file = '', $line ...
    method applicationPath (line 23391) | public static function applicationPath($applicationPath)
    method report (line 23402) | public static function report($throwable, $callback = null, $report = ...
    method reportHandled (line 23413) | public static function reportHandled($throwable)
    method reportMessage (line 23424) | public static function reportMessage($message, $logLevel, $callback = ...
    method sendTestReport (line 23435) | public static function sendTestReport($throwable)
    method reset (line 23446) | public static function reset()
    method anonymizeIp (line 23457) | public static function anonymizeIp()
    method censorRequestBodyFields (line 23470) | public static function censorRequestBodyFields($fieldNames)
    method createReport (line 23481) | public static function createReport($throwable)
    method createReportFromMessage (line 23492) | public static function createReportFromMessage($message, $logLevel)
    method stage (line 23503) | public static function stage($stage)
    method messageLevel (line 23514) | public static function messageLevel($messageLevel)
    method getGroup (line 23528) | public static function getGroup($groupName = 'context', $default = [])
    method context (line 23539) | public static function context($key, $value)
    method group (line 23553) | public static function group($groupName, $properties)
  class Request (line 23567) | class Request {
    method capture (line 13455) | public static function capture()
    method instance (line 13466) | public static function instance()
    method method (line 13478) | public static function method()
    method uri (line 13490) | public static function uri()
    method root (line 13502) | public static function root()
    method url (line 13514) | public static function url()
    method fullUrl (line 13526) | public static function fullUrl()
    method fullUrlWithQuery (line 13539) | public static function fullUrlWithQuery($query)
    method fullUrlWithoutQuery (line 13552) | public static function fullUrlWithoutQuery($keys)
    method path (line 13564) | public static function path()
    method decodedPath (line 13576) | public static function decodedPath()
    method segment (line 13590) | public static function segment($index, $default = null)
    method segments (line 13602) | public static function segments()
    method is (line 13615) | public static function is(...$patterns)
    method routeIs (line 13628) | public static function routeIs(...$patterns)
    method fullUrlIs (line 13641) | public static function fullUrlIs(...$patterns)
    method host (line 13653) | public static function host()
    method httpHost (line 13665) | public static function httpHost()
    method schemeAndHttpHost (line 13677) | public static function schemeAndHttpHost()
    method ajax (line 13689) | public static function ajax()
    method pjax (line 13701) | public static function pjax()
    method prefetch (line 13713) | public static function prefetch()
    method secure (line 13725) | public static function secure()
    method ip (line 13737) | public static function ip()
    method ips (line 13749) | public static function ips()
    method userAgent (line 13761) | public static function userAgent()
    method merge (line 13774) | public static function merge($input)
    method mergeIfMissing (line 13787) | public static function mergeIfMissing($input)
    method replace (line 13800) | public static function replace($input)
    method get (line 13816) | public static function get($key, $default = null)
    method json (line 13830) | public static function json($key = null, $default = null)
    method createFrom (line 13844) | public static function createFrom($from, $to = null)
    method createFromBase (line 13856) | public static function createFromBase($request)
    method duplicate (line 13873) | public static function duplicate($query = null, $request = null, $attr...
    method hasSession (line 13889) | public static function hasSession($skipIfUninitialized = false)
    method getSession (line 13901) | public static function getSession()
    method session (line 13914) | public static function session()
    method setLaravelSession (line 13927) | public static function setLaravelSession($session)
    method setRequestLocale (line 13940) | public static function setRequestLocale($locale)
    method setDefaultRequestLocale (line 13953) | public static function setDefaultRequestLocale($locale)
    method user (line 13966) | public static function user($guard = null)
    method route (line 13980) | public static function route($param = null, $default = null)
    method fingerprint (line 13993) | public static function fingerprint()
    method setJson (line 14006) | public static function setJson($json)
    method getUserResolver (line 14018) | public static function getUserResolver()
    method setUserResolver (line 14031) | public static function setUserResolver($callback)
    method getRouteResolver (line 14043) | public static function getRouteResolver()
    method setRouteResolver (line 14056) | public static function setRouteResolver($callback)
    method toArray (line 14068) | public static function toArray()
    method offsetExists (line 14081) | public static function offsetExists($offset)
    method offsetGet (line 14094) | public static function offsetGet($offset)
    method offsetSet (line 14108) | public static function offsetSet($offset, $value)
    method offsetUnset (line 14121) | public static function offsetUnset($offset)
    method initialize (line 14141) | public static function initialize($query = [], $request = [], $attribu...
    method createFromGlobals (line 14153) | public static function createFromGlobals()
    method create (line 14175) | public static function create($uri, $method = 'GET', $parameters = [],...
    method setFactory (line 14190) | public static function setFactory($callable)
    method overrideGlobals (line 14204) | public static function overrideGlobals()
    method setTrustedProxies (line 14220) | public static function setTrustedProxies($proxies, $trustedHeaderSet)
    method getTrustedProxies (line 14232) | public static function getTrustedProxies()
    method getTrustedHeaderSet (line 14244) | public static function getTrustedHeaderSet()
    method setTrustedHosts (line 14258) | public static function setTrustedHosts($hostPatterns)
    method getTrustedHosts (line 14270) | public static function getTrustedHosts()
    method normalizeQueryString (line 14284) | public static function normalizeQueryString($qs)
    method enableHttpMethodParameterOverride (line 14303) | public static function enableHttpMethodParameterOverride()
    method getHttpMethodParameterOverride (line 14314) | public static function getHttpMethodParameterOverride()
    method hasPreviousSession (line 14326) | public static function hasPreviousSession()
    method setSession (line 14338) | public static function setSession($session)
    method setSessionFactory (line 14352) | public static function setSessionFactory($factory)
    method getClientIps (line 14371) | public static function getClientIps()
    method getClientIp (line 14395) | public static function getClientIp()
    method getScriptName (line 14407) | public static function getScriptName()
    method getPathInfo (line 14429) | public static function getPathInfo()
    method getBasePath (line 14449) | public static function getBasePath()
    method getBaseUrl (line 14467) | public static function getBaseUrl()
    method getScheme (line 14479) | public static function getScheme()
    method getPort (line 14497) | public static function getPort()
    method getUser (line 14509) | public static function getUser()
    method getPassword (line 14521) | public static function getPassword()
    method getUserInfo (line 14534) | public static function getUserInfo()
    method getHttpHost (line 14548) | public static function getHttpHost()
    method getRequestUri (line 14561) | public static function getRequestUri()
    method getSchemeAndHttpHost (line 14576) | public static function getSchemeAndHttpHost()
    method getUri (line 14589) | public static function getUri()
    method getUriForPath (line 14602) | public static function getUriForPath($path)
    method getRelativeUriForPath (line 14626) | public static function getRelativeUriForPath($path)
    method getQueryString (line 14641) | public static function getQueryString()
    method isSecure (line 14658) | public static function isSecure()
    method getHost (line 14676) | public static function getHost()
    method setMethod (line 14688) | public static function setMethod($method)
    method getMethod (line 14709) | public static function getMethod()
    method getRealMethod (line 14722) | public static function getRealMethod()
    method getMimeType (line 14734) | public static function getMimeType($format)
    method getMimeTypes (line 14747) | public static function getMimeTypes($format)
    method getFormat (line 14758) | public static function getFormat($mimeType)
    method setFormat (line 14771) | public static function setFormat($format, $mimeTypes)
    method getRequestFormat (line 14790) | public static function getRequestFormat($default = 'html')
    method setRequestFormat (line 14802) | public static function setRequestFormat($format)
    method getContentTypeFormat (line 14815) | public static function getContentTypeFormat()
    method setDefaultLocale (line 14827) | public static function setDefaultLocale($locale)
    method getDefaultLocale (line 14839) | public static function getDefaultLocale()
    method setLocale (line 14851) | public static function setLocale($locale)
    method getLocale (line 14863) | public static function getLocale()
    method isMethod (line 14876) | public static function isMethod($method)
    method isMethodSafe (line 14889) | public static function isMethodSafe()
    method isMethodIdempotent (line 14901) | public static function isMethodIdempotent()
    method isMethodCacheable (line 14914) | public static function isMethodCacheable()
    method getProtocolVersion (line 14932) | public static function getProtocolVersion()
    method getContent (line 14947) | public static function getContent($asResource = false)
    method getPayload (line 14960) | public static function getPayload()
    method getETags (line 14972) | public static function getETags()
    method isNoCache (line 14984) | public static function isNoCache()
    method getPreferredFormat (line 15001) | public static function getPreferredFormat($default = 'html')
    method getPreferredLanguage (line 15014) | public static function getPreferredLanguage($locales = null)
    method getLanguages (line 15027) | public static function getLanguages()
    method getCharsets (line 15040) | public static function getCharsets()
    method getEncodings (line 15053) | public static function getEncodings()
    method getAcceptableContentTypes (line 15066) | public static function getAcceptableContentTypes()
    method isXmlHttpRequest (line 15082) | public static function isXmlHttpRequest()
    method preferSafeContent (line 15095) | public static function preferSafeContent()
    method isFromTrustedProxy (line 15110) | public static function isFromTrustedProxy()
    method filterPrecognitiveRules (line 15124) | public static function filterPrecognitiveRules($rules)
    method isAttemptingPrecognition (line 15136) | public static function isAttemptingPrecognition()
    method isPrecognitive (line 15148) | public static function isPrecognitive()
    method isJson (line 15160) | public static function isJson()
    method expectsJson (line 15172) | public static function expectsJson()
    method wantsJson (line 15184) | public static function wantsJson()
    method accepts (line 15197) | public static function accepts($contentTypes)
    method prefers (line 15210) | public static function prefers($contentTypes)
    method acceptsAnyContentType (line 15222) | public static function acceptsAnyContentType()
    method acceptsJson (line 15234) | public static function acceptsJson()
    method acceptsHtml (line 15246) | public static function acceptsHtml()
    method matchesType (line 15260) | public static function matchesType($actual, $type)
    method format (line 15272) | public static function format($default = 'html')
    method old (line 15286) | public static function old($key = null, $default = null)
    method flash (line 15298) | public static function flash()
    method flashOnly (line 15311) | public static function flashOnly($keys)
    method flashExcept (line 15324) | public static function flashExcept($keys)
    method flush (line 15336) | public static function flush()
    method server (line 15350) | public static function server($key = null, $default = null)
    method hasHeader (line 15363) | public static function hasHeader($key)
    method header (line 15377) | public static function header($key = null, $default = null)
    method bearerToken (line 15389) | public static function bearerToken()
    method keys (line 15401) | public static function keys()
    method all (line 15414) | public static function all($keys = null)
    method input (line 15428) | public static function input($key = null, $default = null)
    method fluent (line 15441) | public static function fluent($key = null)
    method query (line 15455) | public static function query($key = null, $default = null)
    method post (line 15469) | public static function post($key = null, $default = null)
    method hasCookie (line 15482) | public static function hasCookie($key)
    method cookie (line 15496) | public static function cookie($key = null, $default = null)
    method allFiles (line 15508) | public static function allFiles()
    method hasFile (line 15521) | public static function hasFile($key)
    method file (line 15535) | public static function file($key = null, $default = null)
    method dump (line 15548) | public static function dump($keys = [])
    method dd (line 15561) | public static function dd(...$args)
    method exists (line 15574) | public static function exists($key)
    method has (line 15587) | public static function has($key)
    method hasAny (line 15600) | public static function hasAny($keys)
    method whenHas (line 15615) | public static function whenHas($key, $callback, $default = null)
    method filled (line 15628) | public static function filled($key)
    method isNotFilled (line 15641) | public static function isNotFilled($key)
    method anyFilled (line 15654) | public static function anyFilled($keys)
    method whenFilled (line 15669) | public static function whenFilled($key, $callback, $default = null)
    method missing (line 15682) | public static function missing($key)
    method whenMissing (line 15697) | public static function whenMissing($key, $callback, $default = null)
    method str (line 15711) | public static function str($key, $default = null)
    method string (line 15725) | public static function string($key, $default = null)
    method boolean (line 15741) | public static function boolean($key = null, $default = false)
    method integer (line 15755) | public static function integer($key, $default = 0)
    method float (line 15769) | public static function float($key, $default = 0.0)
    method date (line 15785) | public static function date($key, $format = null, $tz = null)
    method enum (line 15800) | public static function enum($key, $enumClass)
    method enums (line 15815) | public static function enums($key, $enumClass)
    method array (line 15828) | public static function array($key = null)
    method collect (line 15841) | public static function collect($key = null)
    method only (line 15854) | public static function only($keys)
    method except (line 15867) | public static function except($keys)
    method when (line 15884) | public static function when($value = null, $callback = null, $default ...
    method unless (line 15901) | public static function unless($value = null, $callback = null, $defaul...
    method macro (line 15916) | public static function macro($name, $macro)
    method mixin (line 15930) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 15942) | public static function hasMacro($name)
    method flushMacros (line 15953) | public static function flushMacros()
    method validate (line 23576) | public static function validate($rules, ...$params)
    method validateWithBag (line 23590) | public static function validateWithBag($errorBag, $rules, ...$params)
    method hasValidSignature (line 23602) | public static function hasValidSignature($absolute = true)
    method hasValidRelativeSignature (line 23613) | public static function hasValidRelativeSignature()
    method hasValidSignatureWhileIgnoring (line 23626) | public static function hasValidSignatureWhileIgnoring($ignoreQuery = [...
    method hasValidRelativeSignatureWhileIgnoring (line 23638) | public static function hasValidRelativeSignatureWhileIgnoring($ignoreQ...
  class Router (line 23652) | class Router {
    method auth (line 23660) | public static function auth($options = [])
    method resetPassword (line 23671) | public static function resetPassword()
    method confirmPassword (line 23682) | public static function confirmPassword()
    method emailVerification (line 23693) | public static function emailVerification()
  class App (line 23703) | class App extends \Illuminate\Support\Facades\App {}
    method configure (line 29) | public static function configure($basePath = null)
    method inferBasePath (line 40) | public static function inferBasePath()
    method version (line 51) | public static function version()
    method bootstrapWith (line 64) | public static function bootstrapWith($bootstrappers)
    method afterLoadingEnvironment (line 77) | public static function afterLoadingEnvironment($callback)
    method beforeBootstrapping (line 91) | public static function beforeBootstrapping($bootstrapper, $callback)
    method afterBootstrapping (line 105) | public static function afterBootstrapping($bootstrapper, $callback)
    method hasBeenBootstrapped (line 117) | public static function hasBeenBootstrapped()
    method setBasePath (line 130) | public static function setBasePath($basePath)
    method path (line 143) | public static function path($path = '')
    method useAppPath (line 156) | public static function useAppPath($path)
    method basePath (line 169) | public static function basePath($path = '')
    method bootstrapPath (line 182) | public static function bootstrapPath($path = '')
    method getBootstrapProvidersPath (line 194) | public static function getBootstrapProvidersPath()
    method useBootstrapPath (line 207) | public static function useBootstrapPath($path)
    method configPath (line 220) | public static function configPath($path = '')
    method useConfigPath (line 233) | public static function useConfigPath($path)
    method databasePath (line 246) | public static function databasePath($path = '')
    method useDatabasePath (line 259) | public static function useDatabasePath($path)
    method langPath (line 272) | public static function langPath($path = '')
    method useLangPath (line 285) | public static function useLangPath($path)
    method publicPath (line 298) | public static function publicPath($path = '')
    method usePublicPath (line 311) | public static function usePublicPath($path)
    method storagePath (line 324) | public static function storagePath($path = '')
    method useStoragePath (line 337) | public static function useStoragePath($path)
    method resourcePath (line 350) | public static function resourcePath($path = '')
    method viewPath (line 365) | public static function viewPath($path = '')
    method joinPaths (line 379) | public static function joinPaths($basePath, $path = '')
    method environmentPath (line 391) | public static function environmentPath()
    method useEnvironmentPath (line 404) | public static function useEnvironmentPath($path)
    method loadEnvironmentFrom (line 417) | public static function loadEnvironmentFrom($file)
    method environmentFile (line 429) | public static function environmentFile()
    method environmentFilePath (line 441) | public static function environmentFilePath()
    method environment (line 454) | public static function environment(...$environments)
    method isLocal (line 466) | public static function isLocal()
    method isProduction (line 478) | public static function isProduction()
    method detectEnvironment (line 491) | public static function detectEnvironment($callback)
    method runningInConsole (line 503) | public static function runningInConsole()
    method runningConsoleCommand (line 516) | public static function runningConsoleCommand(...$commands)
    method runningUnitTests (line 528) | public static function runningUnitTests()
    method hasDebugModeEnabled (line 540) | public static function hasDebugModeEnabled()
    method registered (line 553) | public static function registered($callback)
    method registerConfiguredProviders (line 565) | public static function registerConfiguredProviders()
    method register (line 579) | public static function register($provider, $force = false)
    method getProvider (line 592) | public static function getProvider($provider)
    method getProviders (line 605) | public static function getProviders($provider)
    method resolveProvider (line 618) | public static function resolveProvider($provider)
    method loadDeferredProviders (line 630) | public static function loadDeferredProviders()
    method loadDeferredProvider (line 643) | public static function loadDeferredProvider($service)
    method registerDeferredProvider (line 657) | public static function registerDeferredProvider($provider, $service = ...
    method make (line 673) | public static function make($abstract, $parameters = [])
    method bound (line 686) | public static function bound($abstract)
    method isBooted (line 698) | public static function isBooted()
    method boot (line 710) | public static function boot()
    method booting (line 723) | public static function booting($callback)
    method booted (line 736) | public static function booted($callback)
    method handle (line 748) | public static function handle($request, $type = 1, $catch = true)
    method handleRequest (line 761) | public static function handleRequest($request)
    method handleCommand (line 774) | public static function handleCommand($input)
    method shouldMergeFrameworkConfiguration (line 786) | public static function shouldMergeFrameworkConfiguration()
    method dontMergeFrameworkConfiguration (line 798) | public static function dontMergeFrameworkConfiguration()
    method shouldSkipMiddleware (line 810) | public static function shouldSkipMiddleware()
    method getCachedServicesPath (line 822) | public static function getCachedServicesPath()
    method getCachedPackagesPath (line 834) | public static function getCachedPackagesPath()
    method configurationIsCached (line 846) | public static function configurationIsCached()
    method getCachedConfigPath (line 858) | public static function getCachedConfigPath()
    method routesAreCached (line 870) | public static function routesAreCached()
    method getCachedRoutesPath (line 882) | public static function getCachedRoutesPath()
    method eventsAreCached (line 894) | public static function eventsAreCached()
    method getCachedEventsPath (line 906) | public static function getCachedEventsPath()
    method addAbsoluteCachePathPrefix (line 919) | public static function addAbsoluteCachePathPrefix($prefix)
    method maintenanceMode (line 931) | public static function maintenanceMode()
    method isDownForMaintenance (line 943) | public static function isDownForMaintenance()
    method abort (line 960) | public static function abort($code, $message = '', $headers = [])
    method terminating (line 973) | public static function terminating($callback)
    method terminate (line 985) | public static function terminate()
    method getLoadedProviders (line 997) | public static function getLoadedProviders()
    method providerIsLoaded (line 1010) | public static function providerIsLoaded($provider)
    method getDeferredServices (line 1022) | public static function getDeferredServices()
    method setDeferredServices (line 1035) | public static function setDeferredServices($services)
    method isDeferredService (line 1048) | public static function isDeferredService($service)
    method addDeferredServices (line 1061) | public static function addDeferredServices($services)
    method removeDeferredServices (line 1074) | public static function removeDeferredServices($services)
    method provideFacades (line 1087) | public static function provideFacades($namespace)
    method getLocale (line 1099) | public static function getLocale()
    method currentLocale (line 1111) | public static function currentLocale()
    method getFallbackLocale (line 1123) | public static function getFallbackLocale()
    method setLocale (line 1136) | public static function setLocale($locale)
    method setFallbackLocale (line 1149) | public static function setFallbackLocale($fallbackLocale)
    method isLocale (line 1162) | public static function isLocale($locale)
    method registerCoreContainerAliases (line 1174) | public static function registerCoreContainerAliases()
    method flush (line 1186) | public static function flush()
    method getNamespace (line 1199) | public static function getNamespace()
    method when (line 1212) | public static function when($concrete)
    method whenHasAttribute (line 1227) | public static function whenHasAttribute($attribute, $handler)
    method has (line 1247) | public static function has($id)
    method resolved (line 1261) | public static function resolved($abstract)
    method isShared (line 1275) | public static function isShared($abstract)
    method isAlias (line 1289) | public static function isAlias($name)
    method bind (line 1306) | public static function bind($abstract, $concrete = null, $shared = false)
    method hasMethodBinding (line 1320) | public static function hasMethodBinding($method)
    method bindMethod (line 1335) | public static function bindMethod($method, $callback)
    method callMethodBinding (line 1350) | public static function callMethodBinding($method, $instance)
    method addContextualBinding (line 1366) | public static function addContextualBinding($concrete, $abstract, $imp...
    method bindIf (line 1382) | public static function bindIf($abstract, $concrete = null, $shared = f...
    method singleton (line 1397) | public static function singleton($abstract, $concrete = null)
    method singletonIf (line 1412) | public static function singletonIf($abstract, $concrete = null)
    method scoped (line 1427) | public static function scoped($abstract, $concrete = null)
    method scopedIf (line 1442) | public static function scopedIf($abstract, $concrete = null)
    method extend (line 1458) | public static function extend($abstract, $closure)
    method instance (line 1474) | public static function instance($abstract, $instance)
    method tag (line 1489) | public static function tag($abstracts, $tags)
    method tagged (line 1503) | public static function tagged($tag)
    method alias (line 1519) | public static function alias($abstract, $alias)
    method rebinding (line 1534) | public static function rebinding($abstract, $callback)
    method refresh (line 1550) | public static function refresh($abstract, $target, $method)
    method wrap (line 1565) | public static function wrap($callback, $parameters = [])
    method call (line 1582) | public static function call($callback, $parameters = [], $defaultMetho...
    method factory (line 1597) | public static function factory($abstract)
    method makeWith (line 1614) | public static function makeWith($abstract, $parameters = [])
    method get (line 1629) | public static function get($id)
    method build (line 1646) | public static function build($concrete)
    method resolveFromAttribute (line 1660) | public static function resolveFromAttribute($attribute)
    method beforeResolving (line 1675) | public static function beforeResolving($abstract, $callback = null)
    method resolving (line 1690) | public static function resolving($abstract, $callback = null)
    method afterResolving (line 1705) | public static function afterResolving($abstract, $callback = null)
    method afterResolvingAttribute (line 1720) | public static function afterResolvingAttribute($attribute, $callback)
    method fireAfterResolvingAttributeCallbacks (line 1735) | public static function fireAfterResolvingAttributeCallbacks($attribute...
    method getBindings (line 1748) | public static function getBindings()
    method getAlias (line 1762) | public static function getAlias($abstract)
    method forgetExtenders (line 1776) | public static function forgetExtenders($abstract)
    method forgetInstance (line 1790) | public static function forgetInstance($abstract)
    method forgetInstances (line 1803) | public static function forgetInstances()
    method forgetScopedInstances (line 1816) | public static function forgetScopedInstances()
    method getInstance (line 1829) | public static function getInstance()
    method setInstance (line 1842) | public static function setInstance($container = null)
    method offsetExists (line 1855) | public static function offsetExists($key)
    method offsetGet (line 1869) | public static function offsetGet($key)
    method offsetSet (line 1884) | public static function offsetSet($key, $value)
    method offsetUnset (line 1898) | public static function offsetUnset($key)
    method macro (line 1914) | public static function macro($name, $macro)
    method mixin (line 1928) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 1940) | public static function hasMacro($name)
    method flushMacros (line 1951) | public static function flushMacros()
  class Arr (line 23704) | class Arr extends \Illuminate\Support\Arr {}
  class Artisan (line 23705) | class Artisan extends \Illuminate\Support\Facades\Artisan {}
    method rerouteSymfonyCommandEvents (line 1970) | public static function rerouteSymfonyCommandEvents()
    method handle (line 1984) | public static function handle($input, $output = null)
    method terminate (line 1998) | public static function terminate($input, $status)
    method whenCommandLifecycleIsLongerThan (line 2012) | public static function whenCommandLifecycleIsLongerThan($threshold, $h...
    method commandStartedAt (line 2024) | public static function commandStartedAt()
    method resolveConsoleSchedule (line 2036) | public static function resolveConsoleSchedule()
    method command (line 2050) | public static function command($signature, $callback)
    method registerCommand (line 2063) | public static function registerCommand($command)
    method call (line 2079) | public static function call($command, $parameters = [], $outputBuffer ...
    method queue (line 2093) | public static function queue($command, $parameters = [])
    method all (line 2105) | public static function all()
    method output (line 2117) | public static function output()
    method bootstrap (line 2129) | public static function bootstrap()
    method bootstrapWithoutBootingProviders (line 2141) | public static function bootstrapWithoutBootingProviders()
    method setArtisan (line 2154) | public static function setArtisan($artisan)
    method addCommands (line 2167) | public static function addCommands($commands)
    method addCommandPaths (line 2180) | public static function addCommandPaths($paths)
    method addCommandRoutePaths (line 2193) | public static function addCommandRoutePaths($paths)
  class Auth (line 23706) | class Auth extends \Illuminate\Support\Facades\Auth {}
    method guard (line 2214) | public static function guard($name = null)
    method createSessionDriver (line 2228) | public static function createSessionDriver($name, $config)
    method createTokenDriver (line 2242) | public static function createTokenDriver($name, $config)
    method getDefaultDriver (line 2254) | public static function getDefaultDriver()
    method shouldUse (line 2267) | public static function shouldUse($name)
    method setDefaultDriver (line 2280) | public static function setDefaultDriver($name)
    method viaRequest (line 2294) | public static function viaRequest($driver, $callback)
    method userResolver (line 2306) | public static function userResolver()
    method resolveUsersUsing (line 2319) | public static function resolveUsersUsing($userResolver)
    method extend (line 2333) | public static function extend($driver, $callback)
    method provider (line 2347) | public static function provider($name, $callback)
    method hasResolvedGuards (line 2359) | public static function hasResolvedGuards()
    method forgetGuards (line 2371) | public static function forgetGuards()
    method setApplication (line 2384) | public static function setApplication($app)
    method createUserProvider (line 2398) | public static function createUserProvider($provider = null)
    method getDefaultUserProvider (line 2410) | public static function getDefaultUserProvider()
    method user (line 2422) | public static function user()
    method id (line 2434) | public static function id()
    method once (line 2447) | public static function once($credentials = [])
    method onceUsingId (line 2460) | public static function onceUsingId($id)
    method validate (line 2473) | public static function validate($credentials = [])
    method basic (line 2488) | public static function basic($field = 'email', $extraConditions = [])
    method onceBasic (line 2503) | public static function onceBasic($field = 'email', $extraConditions = [])
    method attempt (line 2517) | public static function attempt($credentials = [], $remember = false)
    method attemptWhen (line 2532) | public static function attemptWhen($credentials = [], $callbacks = nul...
    method loginUsingId (line 2546) | public static function loginUsingId($id, $remember = false)
    method login (line 2560) | public static function login($user, $remember = false)
    method logout (line 2572) | public static function logout()
    method logoutCurrentDevice (line 2586) | public static function logoutCurrentDevice()
    method logoutOtherDevices (line 2602) | public static function logoutOtherDevices($password)
    method attempting (line 2615) | public static function attempting($callback)
    method getLastAttempted (line 2627) | public static function getLastAttempted()
    method getName (line 2639) | public static function getName()
    method getRecallerName (line 2651) | public static function getRecallerName()
    method viaRemember (line 2663) | public static function viaRemember()
    method setRememberDuration (line 2676) | public static function setRememberDuration($minutes)
    method getCookieJar (line 2689) | public static function getCookieJar()
    method setCookieJar (line 2702) | public static function setCookieJar($cookie)
    method getDispatcher (line 2714) | public static function getDispatcher()
    method setDispatcher (line 2727) | public static function setDispatcher($events)
    method getSession (line 2739) | public static function getSession()
    method getUser (line 2751) | public static function getUser()
    method setUser (line 2764) | public static function setUser($user)
    method getRequest (line 2776) | public static function getRequest()
    method setRequest (line 2789) | public static function setRequest($request)
    method getTimebox (line 2801) | public static function getTimebox()
    method authenticate (line 2814) | public static function authenticate()
    method hasUser (line 2826) | public static function hasUser()
    method check (line 2838) | public static function check()
    method guest (line 2850) | public static function guest()
    method forgetUser (line 2862) | public static function forgetUser()
    method getProvider (line 2874) | public static function getProvider()
    method setProvider (line 2887) | public static function setProvider($provider)
    method macro (line 2902) | public static function macro($name, $macro)
    method mixin (line 2916) | public static function mixin($mixin, $replace = true)
    method hasMacro (line 2928) | public static function hasMacro($name)
    method flushMacros (line 2939) | public static function flushMacros()
  class Blade (line 23707) | class Blade extends \Illuminate\Support\Facades\Blade {}
    method compile (line 2958) | public static function compile($path = null)
    method getPath (line 2970) | public static function getPath()
    method setPath (line 2983) | public static function setPath($path)
    method compileString (line 2996) | public static function compileString($value)
    method render (line 3011) | public static function render($string, $data = [], $deleteCachedView =...
    method renderComponent (line 3023) | public static function renderComponent($component)
    method stripParentheses (line 3035) | public static function stripParentheses($expression)
    method extend (line 3048) | public static function extend($compiler)
    method getExtensions (line 3060) | public static function getExtensions()
    method if (line 3074) | public static function if($name, $callback)
    method check (line 3088) | public static function check($name, ...$parameters)
    method component (line 3103) | public static function component($class, $alias = null, $prefix = '')
    method components (line 3117) | public static function components($components, $prefix = '')
    method getClassComponentAliases (line 3129) | public static function getClassComponentAliases()
    method anonymousComponentPath (line 3143) | public static function anonymousComponentPath($path, $prefix = null)
    method anonymousComponentNamespace (line 3157) | public static function anonymousComponentNamespace($directory, $prefix...
    method componentNamespace (line 3171) | public static function componentNamespace($namespace, $prefix)
    method getAnonymousComponentPaths (line 3183) | public static function getAnonymousComponentPaths()
    method getAnonymousComponentNamespaces (line 3195) | public static function getAnonymousComponentNamespaces()
    method getClassComponentNamespaces (line 3207) | public static function getClassComponentNamespaces()
    method aliasComponent (line 3221) | public static function aliasComponent($path, $alias = null)
    method include (line 3235) | public static function include($path, $alias = null)
    method aliasInclude (line 3249) | public static function aliasInclude($path, $alias = null)
    method bindDirective (line 3264) | public static function bindDirective($name, $handler)
    method directive (line 3280) | public static function directive($name, $handler, $bind = false)
    method getCustomDirectives (line 3292) | public static function getCustomDirectives()
    method prepareStringsForCompilationUsing (line 3305) | public static function prepareStringsForCompilationUsing($callback)
    method precompiler (line 3318) | public static function precompiler($precompiler)
    method usingEchoFormat (line 3332) | public static function usingEchoFormat($format, $callback)
    method setEchoFormat (line 3345) | public static function setEchoFormat($format)
    method withDoubleEncoding (line 3357) | public static function withDoubleEncoding()
    method withoutDoubleEncoding (line 3369) | public static function withoutDoubleEncoding()
    method withoutComponentTags (line 3381) | public static function withoutComponentTags()
    method getCompiledPath (line 3394) | public static function getCompiledPath($path)
    method isExpired (line 3409) | public static function isExpired($path)
    method newComponentHash (line 3423) | public static function newComponentHash($component)
    method compileClassComponentOpening (line 3438) | public static function compileClassComponentOpening($component, $alias...
    method compileEndComponentClass (line 3449) | public static function compileEndComponentClass()
    method sanitizeComponentAttribute (line 3462) | public static function sanitizeComponentAttribute($value)
    method compileEndOnce (line 3473) | public static function compileEndOnce()
    method stringable (line 3487) | public static function stringable($class, $handler = null)
    method compileEchos (line 3500) | public static function compileEchos($value)
    method applyEchoHandler (line 3513) | public static function applyEchoHandler($value)
  class Broadcast (line 23708) | class Broadcast extends \Illuminate\Support\Facades\Broadcast {}
    method routes (line 3541) | public static function routes($attributes = null)
    method userRoutes (line 3554) | public static function userRoutes($attributes = null)
    method channelRoutes (line 3569) | public static function channelRoutes($attributes = null)
    method socket (line 3582) | public static function socket($request = null)
    method on (line 3593) | public static function on($channels)
    method private (line 3604) | public static function private($channel)
    method presence (line 3615) | public static function presence($channel)
    method event (line 3628) | public static function event($event = null)
    method queue (line 3641) | public static function queue($event)
    method connection (line 3654) | public static function connection($driver = null)
    method driver (line 3667) | public static function driver($name = null)
    method pusher (line 3680) | public static function pusher($config)
    method ably (line 3693) | public static function ably($config)
    method getDefaultDriver (line 3705) | public static function getDefaultDriver()
    method setDefaultDriver (line 3718) | public static function setDefaultDriver($name)
    method purge (line 3731) | public static function purge($name = null)
    method extend (line 3745) | public static function extend($driver, $callback)
    method getApplication (line 3757) | public static function getApplication()
    method setApplication (line 3770) | public static function setApplication($app)
    method forgetDrivers (line 3782) | public static function forgetDrivers()
  class Bus (line 23709) | class Bus extends \Illuminate\Support\Facades\Bus {}
    method dispatch (line 3803) | public static function dispatch($command)
    method dispatchSync (line 3819) | public static function dispatchSync($command, $handler = null)
    method dispatchNow (line 3833) | public static function dispatchNow($command, $handler = null)
    method findBatch (line 3846) | public static function findBatch($batchId)
    method batch (line 3859) | public static function batch($jobs)
    method chain (line 3872) | public static function chain($jobs)
    method hasCommandHandler (line 3885) | public static function hasCommandHandler($command)
    method getCommandHandler (line 3898) | public static function getCommandHandler($command)
    method dispatchToQueue (line 3912) | public static function dispatchToQueue($command)
    method dispatchAfterResponse (line 3926) | public static function dispatchAfterResponse($command, $handler = null)
    method pipeThrough (line 3939) | public static function pipeThrough($pipes)
    method map (line 3952) | public static function map($map)
    method except (line 3965) | public static function except($jobsToDispatch)
    method assertDispatched (line 3979) | public static function assertDispatched($command, $callback = null)
    method assertDispatchedTimes (line 3993) | public static function assertDispatchedTimes($command, $times = 1)
    method assertNotDispatched (line 4007) | public static function assertNotDispatched($command, $callback = null)
    method assertNothingDispatched (line 4019) | public static function assertNothingDispatched()
    method assertDispatchedSync (line 4033) | public static function assertDispatchedSync($command, $callback = null)
    method assertDispatchedSyncTimes (line 4047) | public static function assertDispatchedSyncTimes($command, $times = 1)
    method assertNotDispatchedSync (line 4061) | public static function assertNotDispatchedSync($command, $callback = n...
    method assertDispatchedAfterResponse (line 4075) | public static function assertDispatchedAfterResponse($command, $callba...
    method assertDispatchedAfterResponseTimes (line 4089) | public static function assertDispatchedAfterResponseTimes($command, $t...
    method assertNotDispatchedAfterResponse (line 4103) | public static function assertNotDispatchedAfterResponse($command, $cal...
    method assertChained (line 4116) | public static function assertChained($expectedChain)
    method assertNothingChained (line 4128) | public static function assertNothingChained()
    method assertDispatchedWithoutChain (line 4142) | public static function assertDispatchedWithoutChain($command, $callbac...
    method chainedBatch (line 4155) | public static function chainedBatch($callback)
    method assertBatched (line 4168) | public static function assertBatched($callback)
    method assertBatchCount (line 4181) | public static function assertBatchCount($count)
    method assertNothingBatched (line 4193) | public static function assertNothingBatched()
    method assertNothingPlaced (line 4205) | public static function assertNothingPlaced()
    method dispatched (line 4219) | public static function dispatched($command, $callback = null)
    method dispatchedSync (line 4233) | public static function dispatchedSync($command, $callback = null)
    method dispatchedAfterResponse (line 4247) | public static function dispatchedAfterResponse($command, $callback = n...
    method batched (line 4260) | public static function batched($callback)
    method hasDispatched (line 4273) | public static function hasDispatched($command)
    method hasDispatchedSync (line 4286) | public static function hasDispatchedSync($command)
    method hasDispatchedAfterResponse (line 4299) | public static function hasDispatchedAfterResponse($command)
    method dispatchFakeBatch (line 4312) | public static function dispatchFakeBatch($name = '')
    method recordPendingBatch (line 4325) | public static function recordPendingBatch($pendingBatch)
    method serializeAndRestore (line 4338) | public static function serializeAndRestore($serializeAndRestore = true)
    method dispatchedBatches (line 4350) | public static function dispatchedBatches()
  class Cache (line 23710) | class Cache extends \Illuminate\Support\Facades\Cache {}
    method store (line 4371) | public static function store($name = null)
    method driver (line 4384) | public static function driver($driver = null)
    method resolve (line 4398) | public static function resolve($name)
    method build (line 4411) | public static function build($config)
    method repository (line 4425) | public static function repository($store, $config = [])
    method refreshEventDispatcher (line 4437) | public static function refreshEventDispatcher()
    method getDefaultDriver (line 4449) | public static function getDefaultDriver()
    method setDefaultDriver (line 4462) | public static function setDefaultDriver($name)
    method forgetDriver (line 4475) | public static function forgetDriver($name = null)
    method purge (line 4488) | public static function purge($name = null)
    method extend (line 4502) | public static function extend($driver, $callback)
    method setApplication (line 4515) | public static function setApplication($app)
    method has (line 4528) | public static function has($key)
    method missing (line 4541) | public static function missing($key)
    method get (line 4555) | public static function get($key, $default = null)
    method many (line 4570) | public static function many($keys)
    method getMultiple (line 4588) | public static function getMultiple($keys, $default = null)
    method pull (line 4602) | public static function pull($key, $default = null)
    method put (line 4617) | public static function put($key, $value, $ttl = null)
    method set (line 4637) | public static function set($key, $value, $ttl = null)
    method putMany (line 4651) | public static function putMany($values, $ttl = null)
    method setMultiple (line 4671) | public static function setMultiple($values, $ttl = null)
    method add (line 4686) | public static function add($key, $value, $ttl = null)
    method increment (line 4700) | public static function increment($key, $value = 1)
    method decrement (line 4714) | public static function decrement($key, $value = 1)
    method forever (line 4728) | public static function forever($key, $value)
    method remember (line 4744) | public static function remember($key, $ttl, $callback)
    method sear (line 4759) | public static function sear($key, $callback)
    method rememberForever (line 4774) | public static function rememberForever($key, $callback)
    method flexible (line 4791) | public static function flexible($key, $ttl, $callback, $lock = null)
    method forget (line 4804) | public static function forget($key)
    method delete (line 4820) | public static function delete($key)
    method deleteMultiple (line 4837) | public static function deleteMultiple($keys)
    method clear (line 4850) | public static function clear()
    method tags (line 4864) | public static function tags($names)
    method getName (line 4876) | public static function getName()
    method supportsTags (line 4888) | public static function supportsTags()
    method getDefaultCacheTime (line 4900) | public static function getDefaultCacheTime()
    method setDefaultCacheTime (line 4913) | public static function setDefaultCacheTime($seconds)
    method getStore (line 4925) | public static function getStore()
    method setStore (line 4938) | public static function setStore($store)
    method getEventDispatcher (line 4950) | public static function getEventDispatcher()
    method setEventDispatcher (line 4963) | public static function setEventDispatcher($events)
    method offsetExists (line 4976) | public static function offsetExists($key)
    method offsetGet (line 4989) | public static function offsetGet($key)
    method offsetSet (line 5003) | public static function offsetSet($key, $value)
    method offsetUnset (line 5016) | public static function offsetUnset($
Copy disabled (too large) Download .json
Condensed preview — 14203 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (93,441K chars).
[
  {
    "path": ".eslintignore",
    "chars": 39,
    "preview": "huebee.js\njquery-ui.min.js\nbootstrap.js"
  },
  {
    "path": ".eslintrc",
    "chars": 222,
    "preview": "{\n    \"extends\": [\"airbnb-base\", \"prettier\"],\n    \"plugins\": [\"prettier\"],\n    \"rules\": {\n        \"prettier/prettier\": ["
  },
  {
    "path": ".gitattributes",
    "chars": 1109,
    "preview": "# Configuration file for Git attributes\n\n# Core Settings {{{\n# .gitattributes\n.gitattributes !filter !diff\n\n# Line Endin"
  },
  {
    "path": ".github/workflows/call_issue_pr_tracker.yml",
    "chars": 438,
    "preview": "name: Issue & PR Tracker\n\non:\n  issues:\n    types: [opened,reopened,labeled,unlabeled,closed]\n  pull_request_target:\n   "
  },
  {
    "path": ".github/workflows/call_issues_cron.yml",
    "chars": 283,
    "preview": "name: Mark stale issues and pull requests\non:\n  schedule:\n    - cron:  '35 15 * * *'\n  workflow_dispatch:\n\njobs:\n  stale"
  },
  {
    "path": ".github/workflows/ci.yml",
    "chars": 1521,
    "preview": "name: Tests (PHP)\n\non: [pull_request]\n\njobs:\n  tests:\n    name: Run tests\n    runs-on: ubuntu-latest\n    steps:\n      - "
  },
  {
    "path": ".gitignore",
    "chars": 439,
    "preview": "/app/SupportedApps\n/node_modules\n/public/hot\n/public/storage\n/storage/*.key\n/storage/debugbar\n/.idea\n/.vagrant\nHomestead"
  },
  {
    "path": ".phpstorm.meta.php",
    "chars": 175955,
    "preview": "<?php\n/* @noinspection ALL */\n// @formatter:off\n// phpcs:ignoreFile\n\nnamespace PHPSTORM_META {\n\n   /**\n    * PhpStorm Me"
  },
  {
    "path": ".vscode/launch.json",
    "chars": 273,
    "preview": "{\n    \"version\": \"0.2.0\",\n    \"configurations\": [\n      {\n        \"name\": \"Listen for Xdebug\",\n        \"type\": \"php\",\n  "
  },
  {
    "path": ".vscode/tasks.json",
    "chars": 297,
    "preview": "{\n    \"version\": \"2.0.0\",\n    \"tasks\": [\n      {\n        \"label\": \"Start Docker Compose\",\n        \"type\": \"shell\",\n     "
  },
  {
    "path": "CHANGELOG.md",
    "chars": 1842,
    "preview": "# Release Notes\n\n## v1.4.0 (2018-02-18)\n\n### Added\n- Tag(folder) support\n- Image preview for uploading icons\n- A load of"
  },
  {
    "path": "LICENSE",
    "chars": 1067,
    "preview": "MIT License\n\nCopyright (c) 2018 Chris Hunt\n\nPermission is hereby granted, free of charge, to any person obtaining a copy"
  },
  {
    "path": "_config.yml",
    "chars": 27,
    "preview": "theme: jekyll-theme-tactile"
  },
  {
    "path": "_ide_helper.php",
    "chars": 905742,
    "preview": "<?php\n/* @noinspection ALL */\n// @formatter:off\n// phpcs:ignoreFile\n\n/**\n * A helper file for Laravel, to provide autoco"
  },
  {
    "path": "app/Application.php",
    "chars": 5509,
    "preview": "<?php\n\nnamespace App;\n\nuse GuzzleHttp\\Exception\\GuzzleException;\nuse Illuminate\\Database\\Eloquent\\Builder;\nuse Illuminat"
  },
  {
    "path": "app/Console/Commands/RegisterApp.php",
    "chars": 2591,
    "preview": "<?php\n\nnamespace App\\Console\\Commands;\n\nuse App\\Application;\nuse App\\SupportedApps;\nuse Illuminate\\Console\\Command;\nuse "
  },
  {
    "path": "app/EnhancedApps.php",
    "chars": 149,
    "preview": "<?php\n\nnamespace App;\n\ninterface EnhancedApps\n{\n    public function test();\n\n    public function livestats();\n\n    publi"
  },
  {
    "path": "app/Facades/Form.php",
    "chars": 192,
    "preview": "<?php\n\nnamespace App\\Facades;\n\nuse Illuminate\\Support\\Facades\\Facade;\n\nclass Form extends Facade\n{\n    protected static "
  },
  {
    "path": "app/Helper.php",
    "chars": 3905,
    "preview": "<?php\n\nuse Illuminate\\Support\\Str;\nuse enshrined\\svgSanitize\\Sanitizer;\n\n/**\n * @param $bytes\n * @param bool $is_drive_s"
  },
  {
    "path": "app/Http/Controllers/Auth/ForgotPasswordController.php",
    "chars": 834,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers\\Auth;\n\nuse App\\Http\\Controllers\\Controller;\nuse Illuminate\\Foundation\\Auth\\SendsPa"
  },
  {
    "path": "app/Http/Controllers/Auth/LoginController.php",
    "chars": 3972,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers\\Auth;\n\nuse App\\Http\\Controllers\\Controller;\nuse App\\User;\nuse Illuminate\\Contracts"
  },
  {
    "path": "app/Http/Controllers/Auth/RegisterController.php",
    "chars": 1717,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers\\Auth;\n\nuse App\\Http\\Controllers\\Controller;\nuse App\\User;\nuse Illuminate\\Foundatio"
  },
  {
    "path": "app/Http/Controllers/Auth/ResetPasswordController.php",
    "chars": 955,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers\\Auth;\n\nuse App\\Http\\Controllers\\Controller;\nuse Illuminate\\Foundation\\Auth\\ResetsP"
  },
  {
    "path": "app/Http/Controllers/Controller.php",
    "chars": 638,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse App\\User;\nuse Illuminate\\Foundation\\Auth\\Access\\AuthorizesRequests;\nuse Illu"
  },
  {
    "path": "app/Http/Controllers/HealthController.php",
    "chars": 1231,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse App\\Item;\nuse App\\User;\nuse Illuminate\\Contracts\\Container\\BindingResolution"
  },
  {
    "path": "app/Http/Controllers/HomeController.php",
    "chars": 475,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse Illuminate\\Http\\RedirectResponse;\n\nclass HomeController extends Controller\n{"
  },
  {
    "path": "app/Http/Controllers/ImportController.php",
    "chars": 501,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse Illuminate\\Http\\Request;\nuse Illuminate\\View\\View;\n\nclass ImportController e"
  },
  {
    "path": "app/Http/Controllers/ItemController.php",
    "chars": 20301,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse App\\Application;\nuse App\\Item;\nuse App\\Jobs\\ProcessApps;\nuse App\\User;\nuse G"
  },
  {
    "path": "app/Http/Controllers/ItemRestController.php",
    "chars": 1782,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse App\\Item;\nuse Illuminate\\Http\\Request;\nuse Illuminate\\Http\\Response;\nuse Ill"
  },
  {
    "path": "app/Http/Controllers/SearchController.php",
    "chars": 4323,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse App\\Search;\nuse Illuminate\\Contracts\\Foundation\\Application;\nuse Illuminate\\"
  },
  {
    "path": "app/Http/Controllers/SettingsController.php",
    "chars": 4088,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse App\\Setting;\nuse App\\SettingGroup;\nuse Exception;\nuse enshrined\\svgSanitize\\"
  },
  {
    "path": "app/Http/Controllers/TagController.php",
    "chars": 5524,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse App\\Item;\nuse App\\User;\nuse Illuminate\\Contracts\\Foundation\\Application;\nuse"
  },
  {
    "path": "app/Http/Controllers/UserController.php",
    "chars": 4328,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse App\\User;\nuse Illuminate\\Contracts\\View\\View;\nuse Illuminate\\Http\\RedirectRe"
  },
  {
    "path": "app/Http/Middleware/CheckAllowed.php",
    "chars": 1513,
    "preview": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Symfony\\Component\\HttpFoundation\\Response;\nuse App\\User;\nuse Closure;\nuse Ill"
  },
  {
    "path": "app/Http/Middleware/RedirectIfAuthenticated.php",
    "chars": 485,
    "preview": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Symfony\\Component\\HttpFoundation\\Response;\nuse Closure;\nuse Illuminate\\Http\\R"
  },
  {
    "path": "app/Http/Middleware/TrustProxies.php",
    "chars": 635,
    "preview": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Illuminate\\Http\\Middleware\\TrustProxies as Middleware;\nuse Illuminate\\Http\\Re"
  },
  {
    "path": "app/Item.php",
    "chars": 10545,
    "preview": "<?php\n\nnamespace App;\n\nuse Illuminate\\Contracts\\Routing\\UrlGenerator;\nuse Illuminate\\Database\\Eloquent\\Builder;\nuse Illu"
  },
  {
    "path": "app/ItemTag.php",
    "chars": 960,
    "preview": "<?php\n\nnamespace App;\n\nuse Illuminate\\Database\\Eloquent\\Factories\\HasFactory;\nuse Illuminate\\Database\\Eloquent\\Relations"
  },
  {
    "path": "app/Jobs/ProcessApps.php",
    "chars": 1572,
    "preview": "<?php\n\nnamespace App\\Jobs;\n\nuse App\\Application;\nuse App\\Item;\nuse App\\SupportedApps;\nuse GuzzleHttp\\Exception\\GuzzleExc"
  },
  {
    "path": "app/Jobs/UpdateApps.php",
    "chars": 1384,
    "preview": "<?php\n\nnamespace App\\Jobs;\n\nuse App\\Application;\nuse GuzzleHttp\\Exception\\GuzzleException;\nuse Illuminate\\Bus\\Queueable;"
  },
  {
    "path": "app/Providers/AppServiceProvider.php",
    "chars": 6513,
    "preview": "<?php\n\nnamespace App\\Providers;\n\nuse App\\Application;\nuse App\\Jobs\\ProcessApps;\nuse App\\Jobs\\UpdateApps;\nuse App\\Setting"
  },
  {
    "path": "app/Providers/RouteServiceProvider.php",
    "chars": 1327,
    "preview": "<?php\n\nnamespace App\\Providers;\n\nuse Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider as ServiceProvider;\nus"
  },
  {
    "path": "app/Search.php",
    "chars": 5018,
    "preview": "<?php\n\nnamespace App;\n\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Request as Input;\nuse Yaml;\n\nab"
  },
  {
    "path": "app/SearchInterface.php",
    "chars": 111,
    "preview": "<?php\n\nnamespace App;\n\ninterface SearchInterface\n{\n    public function getResults($query, $providerdetails);\n}\n"
  },
  {
    "path": "app/Services/CustomFormBuilder.php",
    "chars": 1668,
    "preview": "<?php\n\nnamespace App\\Services;\n\nuse Spatie\\Html\\Html;\nuse Illuminate\\Support\\HtmlString;\n\nclass CustomFormBuilder\n{\n    "
  },
  {
    "path": "app/Setting.php",
    "chars": 10423,
    "preview": "<?php\n\nnamespace App;\n\nuse Illuminate\\Database\\Eloquent\\Builder;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\"
  },
  {
    "path": "app/SettingGroup.php",
    "chars": 1285,
    "preview": "<?php\n\nnamespace App;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\n\n/**\n"
  },
  {
    "path": "app/SettingUser.php",
    "chars": 767,
    "preview": "<?php\n\nnamespace App;\n\nuse Illuminate\\Database\\Eloquent\\Relations\\Pivot;\n\n/**\n * App\\SettingUser\n *\n * @property int $se"
  },
  {
    "path": "app/SupportedApps.php",
    "chars": 6455,
    "preview": "<?php\n\nnamespace App;\n\nuse GuzzleHttp\\Client;\nuse GuzzleHttp\\Exception\\ConnectException;\nuse GuzzleHttp\\Exception\\Guzzle"
  },
  {
    "path": "app/User.php",
    "chars": 3574,
    "preview": "<?php\n\nnamespace App;\n\nuse Illuminate\\Database\\Eloquent\\Factories\\HasFactory;\nuse Illuminate\\Database\\Eloquent\\Relations"
  },
  {
    "path": "artisan",
    "chars": 350,
    "preview": "#!/usr/bin/env php\n<?php\n\nuse Symfony\\Component\\Console\\Input\\ArgvInput;\n\ndefine('LARAVEL_START', microtime(true));\n\n// "
  },
  {
    "path": "bootstrap/app.php",
    "chars": 1450,
    "preview": "<?php\n\nuse Illuminate\\Foundation\\Application;\nuse Illuminate\\Foundation\\Configuration\\Exceptions;\nuse Illuminate\\Foundat"
  },
  {
    "path": "bootstrap/cache/.gitignore",
    "chars": 14,
    "preview": "*\n!.gitignore\n"
  },
  {
    "path": "bootstrap/providers.php",
    "chars": 162,
    "preview": "<?php\n\nreturn [\n    App\\Providers\\AppServiceProvider::class,\n    App\\Providers\\FormMacroServiceProvider::class,\n    App\\"
  },
  {
    "path": "composer.json",
    "chars": 2618,
    "preview": "{\n    \"name\": \"laravel/laravel\",\n    \"description\": \"The Laravel Framework.\",\n    \"keywords\": [\n        \"framework\",\n   "
  },
  {
    "path": "config/.gitkeep",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "config/app.php",
    "chars": 962,
    "preview": "<?php\n\nuse Illuminate\\Support\\ServiceProvider;\nuse Illuminate\\Support\\Facades\\Facade;\n\nreturn [\n\n    'version' => '2.7.7"
  },
  {
    "path": "config/auth.php",
    "chars": 349,
    "preview": "<?php\n\nreturn [\n\n    'guards' => [\n        'api' => [\n            'driver' => 'token',\n            'provider' => 'users'"
  },
  {
    "path": "config/database.php",
    "chars": 631,
    "preview": "<?php\n\nreturn [\n\n    'default' => env('DB_CONNECTION', 'sqlite'),  // Make sure the default connection is set\n\n    'conn"
  },
  {
    "path": "config/filesystems.php",
    "chars": 230,
    "preview": "<?php\n\nreturn [\n\n    'cloud' => env('FILESYSTEM_CLOUD', 's3'),\n\n    'disks' => [\n        'local' => [\n            'drive"
  },
  {
    "path": "config/github.php",
    "chars": 2655,
    "preview": "<?php\n\ndeclare(strict_types=1);\n\n/*\n * This file is part of Laravel GitHub.\n *\n * (c) Graham Campbell <graham@alt-three."
  },
  {
    "path": "config/mail.php",
    "chars": 340,
    "preview": "<?php\n\nreturn [\n\n    'mailers' => [\n        'mailgun' => [\n            'transport' => 'mailgun',\n            // 'client'"
  },
  {
    "path": "config/services.php",
    "chars": 228,
    "preview": "<?php\n\nreturn [\n\n    'mailgun' => [\n        'domain' => env('MAILGUN_DOMAIN'),\n        'secret' => env('MAILGUN_SECRET')"
  },
  {
    "path": "css/app.css",
    "chars": 70258,
    "preview": "/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n  font-family: sans-serif;\n  -ms-tex"
  },
  {
    "path": "database/.gitignore",
    "chars": 9,
    "preview": "*.sqlite\n"
  },
  {
    "path": "database/factories/ItemFactory.php",
    "chars": 387,
    "preview": "<?php\n\nnamespace Database\\Factories;\n\nuse App\\Item;\nuse Illuminate\\Database\\Eloquent\\Factories\\Factory;\n\nclass ItemFacto"
  },
  {
    "path": "database/factories/ItemTagFactory.php",
    "chars": 291,
    "preview": "<?php\n\nnamespace Database\\Factories;\n\nuse App\\Item;\nuse App\\ItemTag;\nuse Illuminate\\Database\\Eloquent\\Factories\\Factory;"
  },
  {
    "path": "database/factories/UserFactory.php",
    "chars": 968,
    "preview": "<?php\n\nnamespace Database\\Factories;\n\nuse Illuminate\\Support\\Facades\\Hash;\nuse App\\User;\nuse Illuminate\\Database\\Eloquen"
  },
  {
    "path": "database/migrations/2018_01_27_155922_create_items_table.php",
    "chars": 902,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2018_02_04_185524_create_settings_table.php",
    "chars": 891,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2018_02_04_185802_create_setting_groups_table.php",
    "chars": 610,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2018_02_16_175830_add_columns_to_items_for_groups.php",
    "chars": 626,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2018_02_16_193703_item_tag.php",
    "chars": 812,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2018_10_12_122907_create_users_table.php",
    "chars": 888,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2018_10_12_123036_create_password_resets_table.php",
    "chars": 627,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2018_10_12_131222_add_user_id_to_items_table.php",
    "chars": 632,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2018_10_12_140451_create_setting_user_pivot_table.php",
    "chars": 905,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2018_10_18_110905_create_applications_table.php",
    "chars": 996,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2018_10_23_132008_add_class_to_items_table.php",
    "chars": 592,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2018_10_31_191604_create_jobs_table.php",
    "chars": 814,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2018_11_06_112434_create_failed_jobs_table.php",
    "chars": 737,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2022_03_15_140911_add_appid_to_items.php",
    "chars": 592,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2022_03_16_093044_add_class_to_application.php",
    "chars": 615,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2022_03_16_181343_add_app_description_to_items.php",
    "chars": 571,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2023_01_27_121000_add_role_to_item.php",
    "chars": 615,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2024_02_16_000000_rename_password_resets_table.php",
    "chars": 490,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/migrations/2025_07_17_134226_create_cache_table.php",
    "chars": 849,
    "preview": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Fa"
  },
  {
    "path": "database/seeders/DatabaseSeeder.php",
    "chars": 285,
    "preview": "<?php\n\nnamespace Database\\Seeders;\n\nuse Illuminate\\Database\\Seeder;\n\nclass DatabaseSeeder extends Seeder\n{\n    /**\n     "
  },
  {
    "path": "database/seeders/SettingsSeeder.php",
    "chars": 12447,
    "preview": "<?php\n\nnamespace Database\\Seeders;\n\nuse App\\Setting;\nuse App\\SettingGroup;\nuse Illuminate\\Database\\Seeder;\nuse Illuminat"
  },
  {
    "path": "database/seeders/UsersSeeder.php",
    "chars": 772,
    "preview": "<?php\n\nnamespace Database\\Seeders;\n\nuse App\\User;\nuse Illuminate\\Database\\Seeder;\n\nclass UsersSeeder extends Seeder\n{\n  "
  },
  {
    "path": "docker/docker-compose.yml",
    "chars": 486,
    "preview": "version: \"3\"\nservices:\n  nginx:\n    build:\n      context: .\n      dockerfile: nginx/Dockerfile\n    ports: \n      - \"8080"
  },
  {
    "path": "docker/nginx/Dockerfile",
    "chars": 55,
    "preview": "FROM nginx:alpine\nCOPY ./default.conf /etc/nginx/conf.d"
  },
  {
    "path": "docker/nginx/default.conf",
    "chars": 403,
    "preview": "server {\n    listen 0.0.0.0:80;\n\n    root /var/www/html;\n\n    location / {\n        index index.php index.html;\n    }\n\n  "
  },
  {
    "path": "docker/php/Dockerfile",
    "chars": 80,
    "preview": "FROM php:8.4-fpm\n\nRUN pecl install xdebug \\\n    && docker-php-ext-enable xdebug\n"
  },
  {
    "path": "lang/br/app.php",
    "chars": 5244,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | App Langua"
  },
  {
    "path": "lang/cs/app.php",
    "chars": 4592,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Systém',\n  'settings.appearance' => 'Vzhled',\n  'settings.miscellaneous' ="
  },
  {
    "path": "lang/cs/auth.php",
    "chars": 174,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Zadané údaje se neshodují s našimi záznamy.',\n  'throttle' => 'Příliš mnoho pokusů "
  },
  {
    "path": "lang/cs/pagination.php",
    "chars": 90,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Předchozí',\n  'next' => 'Další &raquo;',\n);"
  },
  {
    "path": "lang/cs/passwords.php",
    "chars": 339,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Heslo musí mít alespoň šest znaků a musí se shodovat s potvrzením.',\n  'reset' =>"
  },
  {
    "path": "lang/cs/validation.php",
    "chars": 6238,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation"
  },
  {
    "path": "lang/da/app.php",
    "chars": 4586,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'System',\n  'settings.appearance' => 'Appearance',\n  'settings.miscellaneou"
  },
  {
    "path": "lang/da/auth.php",
    "chars": 200,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Disse legitimationsoplysninger stemmer ikke overens med vores optegnelser.',\n  'thr"
  },
  {
    "path": "lang/da/pagination.php",
    "chars": 90,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Tidligere',\n  'next' => 'Næste &raquo;',\n);"
  },
  {
    "path": "lang/da/passwords.php",
    "chars": 354,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Adgangskoder skal bestå af mindst seks tegn og matche bekræftelsen.',\n  'reset' ="
  },
  {
    "path": "lang/de/app.php",
    "chars": 4869,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'System',\n  'settings.appearance' => 'Aussehen',\n  'settings.miscellaneous'"
  },
  {
    "path": "lang/de/auth.php",
    "chars": 216,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Diese Anmeldeinformationen stimmen nicht mit unseren Aufzeichnungen überein.',\n  't"
  },
  {
    "path": "lang/de/pagination.php",
    "chars": 91,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Vorherige',\n  'next' => 'Weiter &raquo;',\n);"
  },
  {
    "path": "lang/de/passwords.php",
    "chars": 426,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Passwörter müssen mindestens sechs Zeichen lang sein und mit der Bestätigung über"
  },
  {
    "path": "lang/el/app.php",
    "chars": 4965,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Σύστημα',\n  'settings.appearance' => 'Εμφάνιση',\n  'settings.miscellaneous"
  },
  {
    "path": "lang/el/auth.php",
    "chars": 199,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Αυτά τα διαπιστευτήρια δεν ταιριάζουν με τα μητρώα μας.',\n  'throttle' => 'Πολλές π"
  },
  {
    "path": "lang/el/pagination.php",
    "chars": 94,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Προηγούμενη',\n  'next' => 'Επόμενη &raquo;',\n);"
  },
  {
    "path": "lang/el/passwords.php",
    "chars": 478,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Οι κωδικοί πρόσβασης πρέπει να αποτελλούνται τουλάχιστον από έξι χαρακτήρες και ν"
  },
  {
    "path": "lang/el/validation.php",
    "chars": 7620,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation"
  },
  {
    "path": "lang/en/app.php",
    "chars": 4954,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'System',\n  'settings.appearance' => 'Appearance',\n  'settings.miscellaneou"
  },
  {
    "path": "lang/en/passwords.php",
    "chars": 281,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Passwords must be at least six characters and match the confirmation.',\n  'reset'"
  },
  {
    "path": "lang/es/app.php",
    "chars": 5330,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Sistema',\n  'settings.appearance' => 'Apariencia',\n  'settings.miscellaneo"
  },
  {
    "path": "lang/es/auth.php",
    "chars": 200,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Estas credenciales no coinciden con nuestros registros.',\n  'throttle' => 'Demasiad"
  },
  {
    "path": "lang/es/pagination.php",
    "chars": 93,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Anterior',\n  'next' => 'Siguiente &raquo;',\n);"
  },
  {
    "path": "lang/es/passwords.php",
    "chars": 446,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Las contraseñas deben tener al menos seis caracteres y coincidir con la confirmac"
  },
  {
    "path": "lang/fi/app.php",
    "chars": 4696,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Järjestelmä',\n  'settings.appearance' => 'Ulkonäkö',\n  'settings.miscellan"
  },
  {
    "path": "lang/fi/auth.php",
    "chars": 183,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Nämä valtuustiedot eivät vastaa tietueitamme.',\n  'throttle' => 'Liian monta kirjau"
  },
  {
    "path": "lang/fi/pagination.php",
    "chars": 93,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Edellinen',\n  'next' => 'Seuraava &raquo;',\n);"
  },
  {
    "path": "lang/fi/passwords.php",
    "chars": 358,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Salasanassa on oltava vähintään kuusi merkkiä ja vastattava vahvistusta.',\n  'res"
  },
  {
    "path": "lang/fr/app.php",
    "chars": 4945,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Système',\n  'settings.appearance' => 'Apparence',\n  'settings.miscellaneou"
  },
  {
    "path": "lang/fr/auth.php",
    "chars": 215,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Ces informations d\\'identification ne correspondent pas à nos enregistrements.',\n  "
  },
  {
    "path": "lang/fr/pagination.php",
    "chars": 94,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; précédents',\n  'next' => '&raquo; suivants',\n);"
  },
  {
    "path": "lang/fr/passwords.php",
    "chars": 450,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Les mots de passe doivent comporter au moins six caractères et correspondre à la "
  },
  {
    "path": "lang/hu/app.php",
    "chars": 4598,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Rendszer',\n  'settings.appearance' => 'Megjelenés',\n  'settings.miscellane"
  },
  {
    "path": "lang/hu/auth.php",
    "chars": 169,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Belépési adatok nem egyeznek.',\n  'throttle' => 'Túl sok hibás bejelentkezési kísér"
  },
  {
    "path": "lang/hu/pagination.php",
    "chars": 90,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Előző',\n  'next' => 'Következő &raquo;',\n);"
  },
  {
    "path": "lang/hu/passwords.php",
    "chars": 320,
    "preview": "<?php\n\nreturn array (\n  'password' => 'A jelszónak legalább hat karakter hosszúnak kell lennie.',\n  'reset' => 'A jelszó"
  },
  {
    "path": "lang/it/app.php",
    "chars": 4770,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Sistema',\n  'settings.appearance' => 'Aspetto',\n  'settings.miscellaneous'"
  },
  {
    "path": "lang/it/auth.php",
    "chars": 152,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Le credenziali non sono valide.',\n  'throttle' => 'Troppi tentativi di accesso. Rip"
  },
  {
    "path": "lang/it/pagination.php",
    "chars": 96,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Precedente',\n  'next' => 'Successivo &raquo;',\n);"
  },
  {
    "path": "lang/it/passwords.php",
    "chars": 408,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Le password devono contenere almeno sei caratteri e corrispondere alla conferma.'"
  },
  {
    "path": "lang/jp/app.php",
    "chars": 3956,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'システム',\n  'settings.appearance' => '外観',\n  'settings.miscellaneous' => 'その他"
  },
  {
    "path": "lang/jp/auth.php",
    "chars": 124,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'これらの認証情報は弊社の記録と一致しません。',\n  'throttle' => 'ログイン試行回数が多すぎます。 :seconds 秒後にもう一度お試しください。'"
  },
  {
    "path": "lang/jp/pagination.php",
    "chars": 78,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; 前',\n  'next' => '次 &raquo;',\n);"
  },
  {
    "path": "lang/jp/passwords.php",
    "chars": 233,
    "preview": "<?php\n\nreturn array (\n  'password' => 'パスワードは 6 文字以上で、確認と一致する必要があります。',\n  'reset' => 'パスワードがリセットされました!',\n  'sent' => 'パス"
  },
  {
    "path": "lang/jp/validation.php",
    "chars": 6393,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation"
  },
  {
    "path": "lang/ko/app.php",
    "chars": 3989,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => '시스템',\n  'settings.appearance' => '외관',\n  'settings.miscellaneous' => '잡동사니"
  },
  {
    "path": "lang/ko/auth.php",
    "chars": 133,
    "preview": "<?php\n\nreturn array (\n  'failed' => '이 자격 증명은 우리 기록과 일치하지 않습니다.',\n  'throttle' => '로그인 시도 횟수가 너무 많습니다. :seconds 초 후에 다시 "
  },
  {
    "path": "lang/ko/pagination.php",
    "chars": 80,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; 이전',\n  'next' => '다음 &raquo;',\n);"
  },
  {
    "path": "lang/ko/passwords.php",
    "chars": 231,
    "preview": "<?php\n\nreturn array (\n  'password' => '암호는 6자 이상이어야 하며 확인란과 서로 일치해야 합니다.',\n  'reset' => '암호가 재설정되었습니다!',\n  'sent' => '암호"
  },
  {
    "path": "lang/ko/validation.php",
    "chars": 6626,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation"
  },
  {
    "path": "lang/lmo/app.php",
    "chars": 4789,
    "preview": "<?php\n\nreturn [\n\n    /*\n\n    |--------------------------------------------------------------------------\n\n    | App Lang"
  },
  {
    "path": "lang/nl/app.php",
    "chars": 4766,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Systeem',\n  'settings.appearance' => 'Uiterlijk',\n  'settings.miscellaneou"
  },
  {
    "path": "lang/nl/auth.php",
    "chars": 201,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'De door u opgegeven inloggegevens komen niet overeen met onze gegevens.',\n  'thrott"
  },
  {
    "path": "lang/nl/pagination.php",
    "chars": 90,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Vorige',\n  'next' => 'Volgende &raquo;',\n);"
  },
  {
    "path": "lang/nl/passwords.php",
    "chars": 429,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Wachtwoorden moeten tenminste zes karakters bevatten en overeenkomen met de beves"
  },
  {
    "path": "lang/nl/validation.php",
    "chars": 6728,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation"
  },
  {
    "path": "lang/no/app.php",
    "chars": 4529,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Systemet',\n  'settings.appearance' => 'Utseende',\n  'settings.miscellaneou"
  },
  {
    "path": "lang/no/auth.php",
    "chars": 181,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Påloggingsinformasjonen stemmer ikke overens med våre data.',\n  'throttle' => 'For "
  },
  {
    "path": "lang/no/pagination.php",
    "chars": 88,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Forrige',\n  'next' => 'Neste &raquo;',\n);"
  },
  {
    "path": "lang/no/passwords.php",
    "chars": 354,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Passord må være minst seks tegn og i samsvar med bekreftelsen.',\n  'reset' => 'Pa"
  },
  {
    "path": "lang/pl/app.php",
    "chars": 4734,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'System',\n  'settings.appearance' => 'Wygląd',\n  'settings.miscellaneous' ="
  },
  {
    "path": "lang/pl/auth.php",
    "chars": 160,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Nieprawidłowe dane uwierzytelnienia',\n  'throttle' => 'Zbyt wiele prób logowania. S"
  },
  {
    "path": "lang/pl/pagination.php",
    "chars": 93,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Poprzedni',\n  'next' => 'Następny &raquo;',\n);"
  },
  {
    "path": "lang/pl/passwords.php",
    "chars": 357,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Hasła muszą mieć co najmniej sześć znaków i być zgodne z potwierdzeniem.',\n  'res"
  },
  {
    "path": "lang/pl/validation.php",
    "chars": 6927,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation"
  },
  {
    "path": "lang/pt/app.php",
    "chars": 4757,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Sistema',\n  'settings.appearance' => 'Aparência',\n  'settings.miscellaneou"
  },
  {
    "path": "lang/pt/auth.php",
    "chars": 211,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Estas credenciais não se encontram nos nossos registos.',\n  'throttle' => 'Demasiad"
  },
  {
    "path": "lang/pt/pagination.php",
    "chars": 91,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Anterior',\n  'next' => 'Próximo &raquo;',\n);"
  },
  {
    "path": "lang/pt/passwords.php",
    "chars": 430,
    "preview": "<?php\n\nreturn array (\n  'password' => 'As palavras-passe necessitam de conter no mínimo seis caracteres e igualar a conf"
  },
  {
    "path": "lang/pt/validation.php",
    "chars": 6653,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation"
  },
  {
    "path": "lang/rs/app.php",
    "chars": 4938,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Sistem',\n  'settings.appearance' => 'Izgled',\n  'settings.miscellaneous' ="
  },
  {
    "path": "lang/ru/app.php",
    "chars": 4686,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Система',\n  'settings.appearance' => 'Внешний вид',\n  'settings.miscellane"
  },
  {
    "path": "lang/ru/auth.php",
    "chars": 185,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Введенные реквизиты не совпадают c существующими.',\n  'throttle' => 'Слишком много "
  },
  {
    "path": "lang/ru/pagination.php",
    "chars": 95,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Предыдущий',\n  'next' => 'Следующий &raquo;',\n);"
  },
  {
    "path": "lang/ru/passwords.php",
    "chars": 325,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Длина пароля минимум 6 символов и он должен совпадать с подтверждением.',\n  'rese"
  },
  {
    "path": "lang/ru/validation.php",
    "chars": 6528,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation"
  },
  {
    "path": "lang/sl/app.php",
    "chars": 4582,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Sistem',\n  'settings.appearance' => 'Videz',\n  'settings.miscellaneous' =>"
  },
  {
    "path": "lang/sl/auth.php",
    "chars": 158,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Podatki za prijavo se ne ujemajo.',\n  'throttle' => 'Preveč poizkusov prijave. Pono"
  },
  {
    "path": "lang/sl/pagination.php",
    "chars": 92,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Prejšna',\n  'next' => 'Naslednja &raquo;',\n);"
  },
  {
    "path": "lang/sl/passwords.php",
    "chars": 353,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Geslo mora imeti najmanj šest znakov in se mora ujemati s potrditvijo.',\n  'reset"
  },
  {
    "path": "lang/sl/validation.php",
    "chars": 6344,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation"
  },
  {
    "path": "lang/sv/app.php",
    "chars": 4495,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Systemet',\n  'settings.appearance' => 'Utseende',\n  'settings.miscellaneou"
  },
  {
    "path": "lang/sv/auth.php",
    "chars": 180,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Dessa uppgifter stämmer inte överens med våra uppgifter.',\n  'throttle' => 'För mån"
  },
  {
    "path": "lang/sv/pagination.php",
    "chars": 89,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Tidigare',\n  'next' => 'Nästa &raquo;',\n);"
  },
  {
    "path": "lang/sv/passwords.php",
    "chars": 372,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Lösenord måste vara minst sex tecken och matcha bekräftelsen.',\n  'reset' => 'Dit"
  },
  {
    "path": "lang/tr/app.php",
    "chars": 4539,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Sistem',\n  'settings.appearance' => 'Görünüm',\n  'settings.miscellaneous' "
  },
  {
    "path": "lang/tr/auth.php",
    "chars": 147,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Kimlik bilgileri doğru değil.',\n  'throttle' => 'Çok fazla girişim. :seconds saniye"
  },
  {
    "path": "lang/tr/pagination.php",
    "chars": 89,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Önceki',\n  'next' => 'Sonraki &raquo;',\n);"
  },
  {
    "path": "lang/tr/passwords.php",
    "chars": 323,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Şifre en az altı karakter olmalı ve onaylamasına uymalıdır.',\n  'reset' => 'Şifre"
  },
  {
    "path": "lang/tr/validation.php",
    "chars": 6282,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation"
  },
  {
    "path": "lang/uk/app.php",
    "chars": 4844,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => 'Система',\n  'settings.appearance' => 'Зовнішній вигляд',\n  'settings.misce"
  },
  {
    "path": "lang/uk/auth.php",
    "chars": 173,
    "preview": "<?php\n\nreturn array (\n  'failed' => 'Введені реквізити не співпадають з існуючими.',\n  'throttle' => 'Забагато спроб авт"
  },
  {
    "path": "lang/uk/pagination.php",
    "chars": 95,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; Попередній',\n  'next' => 'Наступний &raquo;',\n);"
  },
  {
    "path": "lang/uk/passwords.php",
    "chars": 341,
    "preview": "<?php\n\nreturn array (\n  'password' => 'Довжина пароля мінімум 6 символів та він має співпадати з підтвердженням.',\n  're"
  },
  {
    "path": "lang/uk/validation.php",
    "chars": 6412,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation"
  },
  {
    "path": "lang/zh/app.php",
    "chars": 4120,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | App Langua"
  },
  {
    "path": "lang/zh/auth.php",
    "chars": 550,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Authentica"
  },
  {
    "path": "lang/zh/pagination.php",
    "chars": 528,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Pagination"
  },
  {
    "path": "lang/zh/passwords.php",
    "chars": 639,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Password R"
  },
  {
    "path": "lang/zh/validation.php",
    "chars": 5320,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation"
  },
  {
    "path": "lang/zh_TW/app.php",
    "chars": 3506,
    "preview": "<?php\n\nreturn array (\n  'settings.system' => '系统',\n  'settings.appearance' => '外观',\n  'settings.miscellaneous' => '杂项',\n"
  },
  {
    "path": "lang/zh_TW/auth.php",
    "chars": 100,
    "preview": "<?php\n\nreturn array (\n  'failed' => '此凭据无效,请重试。',\n  'throttle' => '登录尝试次数过多. 请等待 :seconds 秒后重试.',\n);"
  },
  {
    "path": "lang/zh_TW/pagination.php",
    "chars": 82,
    "preview": "<?php\n\nreturn array (\n  'previous' => '&laquo; 上一页',\n  'next' => '下一页 &raquo;',\n);"
  },
  {
    "path": "lang/zh_TW/passwords.php",
    "chars": 186,
    "preview": "<?php\n\nreturn array (\n  'password' => '密码必须至少包含6个字符, 且两次输入一致.',\n  'reset' => '您的密码已重置!',\n  'sent' => '我们已通过邮件将密码重置链接发送至您"
  },
  {
    "path": "mix-manifest.json",
    "chars": 38,
    "preview": "{\n    \"/css/app.css\": \"/css/app.css\"\n}"
  }
]

// ... and 14003 more files (download for full content)

About this extraction

This page contains the full source code of the linuxserver/Heimdall GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 14203 files (85.8 MB), approximately 23.4M tokens, and a symbol index with 59230 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!