amati 0.3.8__tar.gz → 0.3.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {amati-0.3.8 → amati-0.3.9}/.pre-commit-config.yaml +1 -1
- {amati-0.3.8 → amati-0.3.9}/PKG-INFO +1 -1
- {amati-0.3.8 → amati-0.3.9}/amati/_data/files/schemes.json +2 -0
- {amati-0.3.8 → amati-0.3.9}/pyproject.toml +1 -1
- {amati-0.3.8 → amati-0.3.9}/uv.lock +26 -26
- {amati-0.3.8 → amati-0.3.9}/.dockerignore +0 -0
- {amati-0.3.8 → amati-0.3.9}/.github/actions/setup/action.yaml +0 -0
- {amati-0.3.8 → amati-0.3.9}/.github/dependabot.yml +0 -0
- {amati-0.3.8 → amati-0.3.9}/.github/workflows/checks.yaml +0 -0
- {amati-0.3.8 → amati-0.3.9}/.github/workflows/codeql.yml +0 -0
- {amati-0.3.8 → amati-0.3.9}/.github/workflows/coverage.yaml +0 -0
- {amati-0.3.8 → amati-0.3.9}/.github/workflows/data-refresh.yaml +0 -0
- {amati-0.3.8 → amati-0.3.9}/.github/workflows/dependency-review.yml +0 -0
- {amati-0.3.8 → amati-0.3.9}/.github/workflows/publish.yaml +0 -0
- {amati-0.3.8 → amati-0.3.9}/.github/workflows/scorecards.yml +0 -0
- {amati-0.3.8 → amati-0.3.9}/.github/workflows/tag-and-create-release.yaml +0 -0
- {amati-0.3.8 → amati-0.3.9}/.gitignore +0 -0
- {amati-0.3.8 → amati-0.3.9}/.python-version +0 -0
- {amati-0.3.8 → amati-0.3.9}/Dockerfile +0 -0
- {amati-0.3.8 → amati-0.3.9}/LICENSE +0 -0
- {amati-0.3.8 → amati-0.3.9}/README.md +0 -0
- {amati-0.3.8 → amati-0.3.9}/SECURITY.md +0 -0
- {amati-0.3.8 → amati-0.3.9}/TEMPLATE.html +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/__init__.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_data/files/http-status-codes.json +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_data/files/iso9110.json +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_data/files/media-types.json +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_data/files/spdx-licences.json +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_data/files/tlds.json +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_data/http_status_code.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_data/iso9110.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_data/media_types.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_data/refresh.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_data/schemes.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_data/spdx_licences.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_data/tlds.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_error_handler.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_logging.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/_resolve_forward_references.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/amati.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/exceptions.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/fields/__init__.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/fields/_custom_types.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/fields/commonmark.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/fields/email.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/fields/http_status_codes.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/fields/iso9110.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/fields/json.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/fields/media.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/fields/oas.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/fields/spdx_licences.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/fields/uri.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/file_handler.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/grammars/oas.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/grammars/rfc6901.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/grammars/rfc7159.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/model_validators.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/py.typed +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/validators/__init__.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/validators/generic.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/validators/oas304.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/amati/validators/oas311.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/bin/checks.sh +0 -0
- {amati-0.3.8 → amati-0.3.9}/bin/startup.sh +0 -0
- {amati-0.3.8 → amati-0.3.9}/bin/upgrade-python.sh +0 -0
- {amati-0.3.8 → amati-0.3.9}/bin/uv-upgrade-from-main.sh +0 -0
- {amati-0.3.8 → amati-0.3.9}/scripts/setup_test_specs.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/__init__.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/data/.amati.tests.yaml +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/data/DigitalOcean-public.v2.errors.json +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/data/api.github.com.yaml.errors.json +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/data/discourse.yml.errors.json +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/data/invalid-openapi.yaml +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/data/next-api.github.com.yaml.errors.json +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/data/openapi.yaml +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/data/openapi.yaml.gz +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/data/redocly.openapi.yaml.errors.json +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/fields/__init__.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/fields/test_email.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/fields/test_http_status_codes.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/fields/test_iso9110.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/fields/test_media.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/fields/test_oas.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/fields/test_spdx_licences.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/fields/test_uri.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/helpers.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/model_validators/test_all_of.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/model_validators/test_at_least_one.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/model_validators/test_if_then.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/model_validators/test_only_one.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/test_amati.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/test_external_specs.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/test_logging.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/validators/__init__.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/validators/test_generic.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/validators/test_licence_object.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/validators/test_security_scheme_object.py +0 -0
- {amati-0.3.8 → amati-0.3.9}/tests/validators/test_server_variable_object.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: amati
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9
|
|
4
4
|
Summary: Validates that a .yaml or .json file conforms to the OpenAPI Specifications 3.x.
|
|
5
5
|
Project-URL: Homepage, https://github.com/gwyli/amati
|
|
6
6
|
Project-URL: Issues, https://github.com/gwyli/amati/issues
|
|
@@ -13,7 +13,7 @@ wheels = [
|
|
|
13
13
|
|
|
14
14
|
[[package]]
|
|
15
15
|
name = "amati"
|
|
16
|
-
version = "0.3.
|
|
16
|
+
version = "0.3.9"
|
|
17
17
|
source = { editable = "." }
|
|
18
18
|
dependencies = [
|
|
19
19
|
{ name = "abnf" },
|
|
@@ -212,14 +212,14 @@ wheels = [
|
|
|
212
212
|
|
|
213
213
|
[[package]]
|
|
214
214
|
name = "hypothesis"
|
|
215
|
-
version = "6.
|
|
215
|
+
version = "6.147.0"
|
|
216
216
|
source = { registry = "https://pypi.org/simple/" }
|
|
217
217
|
dependencies = [
|
|
218
218
|
{ name = "sortedcontainers" },
|
|
219
219
|
]
|
|
220
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
220
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f3/53/e19fe74671fd60db86344a4623c818fac58b813cc3efbb7ea3b3074dcb71/hypothesis-6.147.0.tar.gz", hash = "sha256:72e6004ea3bd1460bdb4640b6389df23b87ba7a4851893fd84d1375635d3e507", size = 468587, upload-time = "2025-11-06T20:27:29.682Z" }
|
|
221
221
|
wheels = [
|
|
222
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
222
|
+
{ url = "https://files.pythonhosted.org/packages/b2/1b/932eddc3d55c4ed6c585006cffe6c6a133b5e1797d873de0bcf5208e4fed/hypothesis-6.147.0-py3-none-any.whl", hash = "sha256:de588807b6da33550d32f47bcd42b1a86d061df85673aa73e6443680249d185e", size = 535595, upload-time = "2025-11-06T20:27:23.536Z" },
|
|
223
223
|
]
|
|
224
224
|
|
|
225
225
|
[[package]]
|
|
@@ -582,28 +582,28 @@ wheels = [
|
|
|
582
582
|
|
|
583
583
|
[[package]]
|
|
584
584
|
name = "ruff"
|
|
585
|
-
version = "0.14.
|
|
586
|
-
source = { registry = "https://pypi.org/simple/" }
|
|
587
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
588
|
-
wheels = [
|
|
589
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
590
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
591
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
592
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
593
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
594
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
595
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
596
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
597
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
598
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
599
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
600
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
601
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
602
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
603
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
604
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
605
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
606
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
585
|
+
version = "0.14.4"
|
|
586
|
+
source = { registry = "https://pypi.org/simple/" }
|
|
587
|
+
sdist = { url = "https://files.pythonhosted.org/packages/df/55/cccfca45157a2031dcbb5a462a67f7cf27f8b37d4b3b1cd7438f0f5c1df6/ruff-0.14.4.tar.gz", hash = "sha256:f459a49fe1085a749f15414ca76f61595f1a2cc8778ed7c279b6ca2e1fd19df3", size = 5587844, upload-time = "2025-11-06T22:07:45.033Z" }
|
|
588
|
+
wheels = [
|
|
589
|
+
{ url = "https://files.pythonhosted.org/packages/17/b9/67240254166ae1eaa38dec32265e9153ac53645a6c6670ed36ad00722af8/ruff-0.14.4-py3-none-linux_armv6l.whl", hash = "sha256:e6604613ffbcf2297cd5dcba0e0ac9bd0c11dc026442dfbb614504e87c349518", size = 12606781, upload-time = "2025-11-06T22:07:01.841Z" },
|
|
590
|
+
{ url = "https://files.pythonhosted.org/packages/46/c8/09b3ab245d8652eafe5256ab59718641429f68681ee713ff06c5c549f156/ruff-0.14.4-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:d99c0b52b6f0598acede45ee78288e5e9b4409d1ce7f661f0fa36d4cbeadf9a4", size = 12946765, upload-time = "2025-11-06T22:07:05.858Z" },
|
|
591
|
+
{ url = "https://files.pythonhosted.org/packages/14/bb/1564b000219144bf5eed2359edc94c3590dd49d510751dad26202c18a17d/ruff-0.14.4-py3-none-macosx_11_0_arm64.whl", hash = "sha256:9358d490ec030f1b51d048a7fd6ead418ed0826daf6149e95e30aa67c168af33", size = 11928120, upload-time = "2025-11-06T22:07:08.023Z" },
|
|
592
|
+
{ url = "https://files.pythonhosted.org/packages/a3/92/d5f1770e9988cc0742fefaa351e840d9aef04ec24ae1be36f333f96d5704/ruff-0.14.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81b40d27924f1f02dfa827b9c0712a13c0e4b108421665322218fc38caf615c2", size = 12370877, upload-time = "2025-11-06T22:07:10.015Z" },
|
|
593
|
+
{ url = "https://files.pythonhosted.org/packages/e2/29/e9282efa55f1973d109faf839a63235575519c8ad278cc87a182a366810e/ruff-0.14.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f5e649052a294fe00818650712083cddc6cc02744afaf37202c65df9ea52efa5", size = 12408538, upload-time = "2025-11-06T22:07:13.085Z" },
|
|
594
|
+
{ url = "https://files.pythonhosted.org/packages/8e/01/930ed6ecfce130144b32d77d8d69f5c610e6d23e6857927150adf5d7379a/ruff-0.14.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aa082a8f878deeba955531f975881828fd6afd90dfa757c2b0808aadb437136e", size = 13141942, upload-time = "2025-11-06T22:07:15.386Z" },
|
|
595
|
+
{ url = "https://files.pythonhosted.org/packages/6a/46/a9c89b42b231a9f487233f17a89cbef9d5acd538d9488687a02ad288fa6b/ruff-0.14.4-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:1043c6811c2419e39011890f14d0a30470f19d47d197c4858b2787dfa698f6c8", size = 14544306, upload-time = "2025-11-06T22:07:17.631Z" },
|
|
596
|
+
{ url = "https://files.pythonhosted.org/packages/78/96/9c6cf86491f2a6d52758b830b89b78c2ae61e8ca66b86bf5a20af73d20e6/ruff-0.14.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a9f3a936ac27fb7c2a93e4f4b943a662775879ac579a433291a6f69428722649", size = 14210427, upload-time = "2025-11-06T22:07:19.832Z" },
|
|
597
|
+
{ url = "https://files.pythonhosted.org/packages/71/f4/0666fe7769a54f63e66404e8ff698de1dcde733e12e2fd1c9c6efb689cb5/ruff-0.14.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:95643ffd209ce78bc113266b88fba3d39e0461f0cbc8b55fb92505030fb4a850", size = 13658488, upload-time = "2025-11-06T22:07:22.32Z" },
|
|
598
|
+
{ url = "https://files.pythonhosted.org/packages/ee/79/6ad4dda2cfd55e41ac9ed6d73ef9ab9475b1eef69f3a85957210c74ba12c/ruff-0.14.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:456daa2fa1021bc86ca857f43fe29d5d8b3f0e55e9f90c58c317c1dcc2afc7b5", size = 13354908, upload-time = "2025-11-06T22:07:24.347Z" },
|
|
599
|
+
{ url = "https://files.pythonhosted.org/packages/b5/60/f0b6990f740bb15c1588601d19d21bcc1bd5de4330a07222041678a8e04f/ruff-0.14.4-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:f911bba769e4a9f51af6e70037bb72b70b45a16db5ce73e1f72aefe6f6d62132", size = 13587803, upload-time = "2025-11-06T22:07:26.327Z" },
|
|
600
|
+
{ url = "https://files.pythonhosted.org/packages/c9/da/eaaada586f80068728338e0ef7f29ab3e4a08a692f92eb901a4f06bbff24/ruff-0.14.4-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:76158a7369b3979fa878612c623a7e5430c18b2fd1c73b214945c2d06337db67", size = 12279654, upload-time = "2025-11-06T22:07:28.46Z" },
|
|
601
|
+
{ url = "https://files.pythonhosted.org/packages/66/d4/b1d0e82cf9bf8aed10a6d45be47b3f402730aa2c438164424783ac88c0ed/ruff-0.14.4-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:f3b8f3b442d2b14c246e7aeca2e75915159e06a3540e2f4bed9f50d062d24469", size = 12357520, upload-time = "2025-11-06T22:07:31.468Z" },
|
|
602
|
+
{ url = "https://files.pythonhosted.org/packages/04/f4/53e2b42cc82804617e5c7950b7079d79996c27e99c4652131c6a1100657f/ruff-0.14.4-py3-none-musllinux_1_2_i686.whl", hash = "sha256:c62da9a06779deecf4d17ed04939ae8b31b517643b26370c3be1d26f3ef7dbde", size = 12719431, upload-time = "2025-11-06T22:07:33.831Z" },
|
|
603
|
+
{ url = "https://files.pythonhosted.org/packages/a2/94/80e3d74ed9a72d64e94a7b7706b1c1ebaa315ef2076fd33581f6a1cd2f95/ruff-0.14.4-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:5a443a83a1506c684e98acb8cb55abaf3ef725078be40237463dae4463366349", size = 13464394, upload-time = "2025-11-06T22:07:35.905Z" },
|
|
604
|
+
{ url = "https://files.pythonhosted.org/packages/54/1a/a49f071f04c42345c793d22f6cf5e0920095e286119ee53a64a3a3004825/ruff-0.14.4-py3-none-win32.whl", hash = "sha256:643b69cb63cd996f1fc7229da726d07ac307eae442dd8974dbc7cf22c1e18fff", size = 12493429, upload-time = "2025-11-06T22:07:38.43Z" },
|
|
605
|
+
{ url = "https://files.pythonhosted.org/packages/bc/22/e58c43e641145a2b670328fb98bc384e20679b5774258b1e540207580266/ruff-0.14.4-py3-none-win_amd64.whl", hash = "sha256:26673da283b96fe35fa0c939bf8411abec47111644aa9f7cfbd3c573fb125d2c", size = 13635380, upload-time = "2025-11-06T22:07:40.496Z" },
|
|
606
|
+
{ url = "https://files.pythonhosted.org/packages/30/bd/4168a751ddbbf43e86544b4de8b5c3b7be8d7167a2a5cb977d274e04f0a1/ruff-0.14.4-py3-none-win_arm64.whl", hash = "sha256:dd09c292479596b0e6fec8cd95c65c3a6dc68e9ad17b8f2382130f87ff6a75bb", size = 12663065, upload-time = "2025-11-06T22:07:42.603Z" },
|
|
607
607
|
]
|
|
608
608
|
|
|
609
609
|
[[package]]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|