more-compute 0.4.0__tar.gz → 0.4.2__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.
- {more_compute-0.4.0 → more_compute-0.4.2}/LICENSE +1 -1
- {more_compute-0.4.0/more_compute.egg-info → more_compute-0.4.2}/PKG-INFO +7 -7
- {more_compute-0.4.0 → more_compute-0.4.2}/README.md +4 -2
- {more_compute-0.4.0 → more_compute-0.4.2}/kernel_run.py +13 -1
- {more_compute-0.4.0 → more_compute-0.4.2/more_compute.egg-info}/PKG-INFO +7 -7
- more_compute-0.4.2/morecompute/__version__.py +1 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/pyproject.toml +2 -4
- {more_compute-0.4.0 → more_compute-0.4.2}/setup.py +1 -3
- more_compute-0.4.0/morecompute/__version__.py +0 -1
- {more_compute-0.4.0 → more_compute-0.4.2}/MANIFEST.in +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/.gitignore +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/README.md +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/__init__.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/app/favicon.ico +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/app/globals.css +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/app/layout.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/app/page.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/Notebook.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/cell/AddCellButton.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/cell/CellButton.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/cell/MonacoCell.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/layout/ConnectionBanner.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/layout/Sidebar.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/modals/ConfirmModal.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/modals/ErrorModal.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/modals/SuccessModal.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/output/CellOutput.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/output/ErrorDisplay.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/output/MarkdownRenderer.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/popups/ComputePopup.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/popups/FilterPopup.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/popups/FolderPopup.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/popups/MetricsPopup.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/popups/PackagesPopup.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/popups/SettingsPopup.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/contexts/PodWebSocketContext.tsx +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/eslint.config.mjs +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/lib/api.ts +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/lib/monaco-themes.ts +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/lib/settings.ts +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/lib/themes.json +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/lib/websocket-native.ts +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/lib/websocket.ts +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/next-env.d.ts +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/next.config.mjs +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/next.config.ts +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/package-lock.json +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/package.json +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/postcss.config.mjs +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/add.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/check.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/copy.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/folder.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/metric.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/packages.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/play.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/python.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/setting.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/stop.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/trash.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/up-down.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/x.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/file.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/fonts/Fira.ttf +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/fonts/Tiempos.woff2 +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/fonts/VeraMono.ttf +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/globe.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/next.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/vercel.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/window.svg +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/styling_README.md +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/tailwind.config.ts +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/tsconfig.json +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/frontend/types/notebook.ts +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/more_compute.egg-info/SOURCES.txt +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/more_compute.egg-info/dependency_links.txt +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/more_compute.egg-info/entry_points.txt +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/more_compute.egg-info/requires.txt +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/more_compute.egg-info/top_level.txt +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/__init__.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/cli.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/execution/__init__.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/execution/__main__.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/execution/executor.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/execution/worker.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/models/__init__.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/models/api_models.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/notebook.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/process_worker.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/server.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/services/data_manager.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/services/lsp_service.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/services/pod_manager.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/services/pod_monitor.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/services/prime_intellect.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/static/styles.css +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/__init__.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/cache_util.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/cell_magics.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/config_util.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/error_utils.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/line_magics.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/notebook_converter.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/notebook_util.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/py_percent_parser.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/python_environment_util.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/shell_utils.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/special_commands.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/system_environment_util.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/zmq_util.py +0 -0
- {more_compute-0.4.0 → more_compute-0.4.2}/setup.cfg +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: more-compute
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: An interactive notebook environment for local and GPU computing
|
|
5
5
|
Home-page: https://github.com/DannyMang/MORECOMPUTE
|
|
6
6
|
Author: MoreCompute Team
|
|
7
|
-
Author-email:
|
|
7
|
+
Author-email: Daniel Ung <daniel.haidang.ung@gmail.com>
|
|
8
8
|
License: MIT
|
|
9
9
|
Project-URL: Homepage, https://github.com/DannyMang/MORECOMPUTE
|
|
10
10
|
Project-URL: Repository, https://github.com/DannyMang/MORECOMPUTE
|
|
@@ -15,12 +15,10 @@ Classifier: Intended Audience :: Developers
|
|
|
15
15
|
Classifier: License :: OSI Approved :: MIT License
|
|
16
16
|
Classifier: Operating System :: OS Independent
|
|
17
17
|
Classifier: Programming Language :: Python :: 3
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
20
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
21
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
-
Requires-Python: >=3.
|
|
21
|
+
Requires-Python: >=3.10
|
|
24
22
|
Description-Content-Type: text/markdown
|
|
25
23
|
License-File: LICENSE
|
|
26
24
|
Requires-Dist: fastapi>=0.104.0
|
|
@@ -41,7 +39,7 @@ Dynamic: requires-python
|
|
|
41
39
|
# more-compute
|
|
42
40
|
|
|
43
41
|
[](https://pypi.org/project/more-compute/)
|
|
44
|
-
[](https://www.python.org/downloads/)
|
|
45
43
|
[](LICENSE)
|
|
46
44
|
|
|
47
45
|
An interactive Python notebook environment, similar to Marimo and Google Colab, that runs locally.
|
|
@@ -52,7 +50,9 @@ https://github.com/user-attachments/assets/8c7ec716-dade-4de2-ad37-71d328129c97
|
|
|
52
50
|
|
|
53
51
|
## Installation
|
|
54
52
|
|
|
55
|
-
**Prerequisites:**
|
|
53
|
+
**Prerequisites:**
|
|
54
|
+
- [Node.js](https://nodejs.org/) >= 20.10.0 required for web interface
|
|
55
|
+
- Python >= 3.10 (uv installs this automatically, pip users need to install manually)
|
|
56
56
|
|
|
57
57
|
### Using uv (Recommended)
|
|
58
58
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# more-compute
|
|
2
2
|
|
|
3
3
|
[](https://pypi.org/project/more-compute/)
|
|
4
|
-
[](https://www.python.org/downloads/)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
7
|
An interactive Python notebook environment, similar to Marimo and Google Colab, that runs locally.
|
|
@@ -12,7 +12,9 @@ https://github.com/user-attachments/assets/8c7ec716-dade-4de2-ad37-71d328129c97
|
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
14
14
|
|
|
15
|
-
**Prerequisites:**
|
|
15
|
+
**Prerequisites:**
|
|
16
|
+
- [Node.js](https://nodejs.org/) >= 20.10.0 required for web interface
|
|
17
|
+
- Python >= 3.10 (uv installs this automatically, pip users need to install manually)
|
|
16
18
|
|
|
17
19
|
### Using uv (Recommended)
|
|
18
20
|
|
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
2
|
|
|
3
|
+
import sys
|
|
4
|
+
if sys.version_info < (3, 10):
|
|
5
|
+
print(f"Error: more-compute requires Python 3.10 or higher.")
|
|
6
|
+
print(f"You are using Python {sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}")
|
|
7
|
+
print()
|
|
8
|
+
print("To fix this:")
|
|
9
|
+
print(" 1. Uninstall: uv tool uninstall more-compute")
|
|
10
|
+
print(" 2. Reinstall with specific version: uv tool install more-compute==0.4.1")
|
|
11
|
+
print(" (uv will automatically download Python 3.10+ for you)")
|
|
12
|
+
print()
|
|
13
|
+
print("Or upgrade your system Python: https://www.python.org/downloads/")
|
|
14
|
+
sys.exit(1)
|
|
15
|
+
|
|
3
16
|
import argparse
|
|
4
17
|
import subprocess
|
|
5
|
-
import sys
|
|
6
18
|
import os
|
|
7
19
|
import time
|
|
8
20
|
import signal
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: more-compute
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: An interactive notebook environment for local and GPU computing
|
|
5
5
|
Home-page: https://github.com/DannyMang/MORECOMPUTE
|
|
6
6
|
Author: MoreCompute Team
|
|
7
|
-
Author-email:
|
|
7
|
+
Author-email: Daniel Ung <daniel.haidang.ung@gmail.com>
|
|
8
8
|
License: MIT
|
|
9
9
|
Project-URL: Homepage, https://github.com/DannyMang/MORECOMPUTE
|
|
10
10
|
Project-URL: Repository, https://github.com/DannyMang/MORECOMPUTE
|
|
@@ -15,12 +15,10 @@ Classifier: Intended Audience :: Developers
|
|
|
15
15
|
Classifier: License :: OSI Approved :: MIT License
|
|
16
16
|
Classifier: Operating System :: OS Independent
|
|
17
17
|
Classifier: Programming Language :: Python :: 3
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
20
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
21
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
-
Requires-Python: >=3.
|
|
21
|
+
Requires-Python: >=3.10
|
|
24
22
|
Description-Content-Type: text/markdown
|
|
25
23
|
License-File: LICENSE
|
|
26
24
|
Requires-Dist: fastapi>=0.104.0
|
|
@@ -41,7 +39,7 @@ Dynamic: requires-python
|
|
|
41
39
|
# more-compute
|
|
42
40
|
|
|
43
41
|
[](https://pypi.org/project/more-compute/)
|
|
44
|
-
[](https://www.python.org/downloads/)
|
|
45
43
|
[](LICENSE)
|
|
46
44
|
|
|
47
45
|
An interactive Python notebook environment, similar to Marimo and Google Colab, that runs locally.
|
|
@@ -52,7 +50,9 @@ https://github.com/user-attachments/assets/8c7ec716-dade-4de2-ad37-71d328129c97
|
|
|
52
50
|
|
|
53
51
|
## Installation
|
|
54
52
|
|
|
55
|
-
**Prerequisites:**
|
|
53
|
+
**Prerequisites:**
|
|
54
|
+
- [Node.js](https://nodejs.org/) >= 20.10.0 required for web interface
|
|
55
|
+
- Python >= 3.10 (uv installs this automatically, pip users need to install manually)
|
|
56
56
|
|
|
57
57
|
### Using uv (Recommended)
|
|
58
58
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.4.2"
|
|
@@ -7,10 +7,10 @@ name = "more-compute"
|
|
|
7
7
|
dynamic = ["version"]
|
|
8
8
|
description = "An interactive notebook environment for local and GPU computing"
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
11
|
license = {text = "MIT"}
|
|
12
12
|
authors = [
|
|
13
|
-
{name = "
|
|
13
|
+
{name = "Daniel Ung", email = "daniel.haidang.ung@gmail.com"}
|
|
14
14
|
]
|
|
15
15
|
keywords = ["jupyter", "notebook", "gpu", "computing", "interactive"]
|
|
16
16
|
classifiers = [
|
|
@@ -19,8 +19,6 @@ classifiers = [
|
|
|
19
19
|
"License :: OSI Approved :: MIT License",
|
|
20
20
|
"Operating System :: OS Independent",
|
|
21
21
|
"Programming Language :: Python :: 3",
|
|
22
|
-
"Programming Language :: Python :: 3.8",
|
|
23
|
-
"Programming Language :: Python :: 3.9",
|
|
24
22
|
"Programming Language :: Python :: 3.10",
|
|
25
23
|
"Programming Language :: Python :: 3.11",
|
|
26
24
|
"Programming Language :: Python :: 3.12",
|
|
@@ -28,13 +28,11 @@ setup(
|
|
|
28
28
|
"License :: OSI Approved :: MIT License",
|
|
29
29
|
"Operating System :: OS Independent",
|
|
30
30
|
"Programming Language :: Python :: 3",
|
|
31
|
-
"Programming Language :: Python :: 3.8",
|
|
32
|
-
"Programming Language :: Python :: 3.9",
|
|
33
31
|
"Programming Language :: Python :: 3.10",
|
|
34
32
|
"Programming Language :: Python :: 3.11",
|
|
35
33
|
"Programming Language :: Python :: 3.12",
|
|
36
34
|
],
|
|
37
|
-
python_requires=">=3.
|
|
35
|
+
python_requires=">=3.10",
|
|
38
36
|
install_requires=[
|
|
39
37
|
"fastapi>=0.104.0",
|
|
40
38
|
"uvicorn[standard]>=0.24.0",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.4.0"
|
|
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
|
|
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
|