awslabs.git-repo-research-mcp-server 1.0.1__py3-none-any.whl → 1.0.3__py3-none-any.whl
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.
- awslabs/__init__.py +9 -6
- awslabs/git_repo_research_mcp_server/__init__.py +9 -6
- awslabs/git_repo_research_mcp_server/defaults.py +9 -6
- awslabs/git_repo_research_mcp_server/embeddings.py +9 -6
- awslabs/git_repo_research_mcp_server/github_search.py +9 -6
- awslabs/git_repo_research_mcp_server/indexer.py +9 -6
- awslabs/git_repo_research_mcp_server/models.py +9 -6
- awslabs/git_repo_research_mcp_server/repository.py +9 -6
- awslabs/git_repo_research_mcp_server/search.py +10 -7
- awslabs/git_repo_research_mcp_server/server.py +9 -6
- awslabs/git_repo_research_mcp_server/utils.py +9 -6
- {awslabs_git_repo_research_mcp_server-1.0.1.dist-info → awslabs_git_repo_research_mcp_server-1.0.3.dist-info}/METADATA +1 -1
- awslabs_git_repo_research_mcp_server-1.0.3.dist-info/RECORD +17 -0
- awslabs_git_repo_research_mcp_server-1.0.1.dist-info/RECORD +0 -17
- {awslabs_git_repo_research_mcp_server-1.0.1.dist-info → awslabs_git_repo_research_mcp_server-1.0.3.dist-info}/WHEEL +0 -0
- {awslabs_git_repo_research_mcp_server-1.0.1.dist-info → awslabs_git_repo_research_mcp_server-1.0.3.dist-info}/entry_points.txt +0 -0
- {awslabs_git_repo_research_mcp_server-1.0.1.dist-info → awslabs_git_repo_research_mcp_server-1.0.3.dist-info}/licenses/LICENSE +0 -0
- {awslabs_git_repo_research_mcp_server-1.0.1.dist-info → awslabs_git_repo_research_mcp_server-1.0.3.dist-info}/licenses/NOTICE +0 -0
awslabs/__init__.py
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
# This file is part of the awslabs namespace.
|
|
12
15
|
# It is intentionally minimal to support PEP 420 namespace packages.
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
"""awslabs.git-repo-research-mcp-server"""
|
|
12
15
|
|
|
13
16
|
__version__ = '0.0.0'
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
"""Default constants for Git Repository Research MCP Server."""
|
|
12
15
|
|
|
13
16
|
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
"""Embeddings generation for Git Repository Research MCP Server.
|
|
12
15
|
|
|
13
16
|
This module provides functionality for generating embeddings from text
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
"""GitHub repository search functionality for Git Repository Research MCP Server.
|
|
12
15
|
|
|
13
16
|
This module provides functionality for searching GitHub repositories using the GitHub GraphQL API.
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
"""FAISS indexing for Git Repository Research MCP Server using LangChain.
|
|
12
15
|
|
|
13
16
|
This module provides functionality for creating and managing FAISS indices
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
"""Data models for Git Repository Research MCP Server."""
|
|
12
15
|
|
|
13
16
|
from datetime import datetime
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
"""Repository handling for Git Repository Research MCP Server.
|
|
12
15
|
|
|
13
16
|
This module provides functionality for cloning, accessing, and processing
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
"""Search functionality for Git Repository Research MCP Server.
|
|
12
15
|
|
|
13
16
|
This module provides functionality for searching within indexed Git repositories
|
|
@@ -210,7 +213,7 @@ class RepositorySearcher:
|
|
|
210
213
|
index_path = self.repository_indexer._get_index_path(repository_name)
|
|
211
214
|
|
|
212
215
|
# Load the index and chunk map
|
|
213
|
-
vector_store = self.repository_indexer.load_index_without_pickle(
|
|
216
|
+
vector_store = self.repository_indexer.load_index_without_pickle(index_path)
|
|
214
217
|
if vector_store is None:
|
|
215
218
|
logger.error(f'Index or chunk map not found for repository {repository_name}')
|
|
216
219
|
# Set repository_directory even if index is not found
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
"""awslabs git-repo-research MCP Server implementation."""
|
|
12
15
|
|
|
13
16
|
import json
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
"""Utility functions for Git Repository Research MCP Server.
|
|
12
15
|
|
|
13
16
|
This module provides utility functions for the Git Repository Research MCP Server.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: awslabs.git-repo-research-mcp-server
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: An AWS Labs Model Context Protocol (MCP) server for researching git repositories
|
|
5
5
|
Project-URL: Homepage, https://awslabs.github.io/mcp/
|
|
6
6
|
Project-URL: Documentation, https://awslabs.github.io/mcp/servers/git-repo-research-mcp-server/
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
awslabs/__init__.py,sha256=G7eEcWsmny92kyAWsWZfTcvujk7GZEKSZgniz3M4mvU,730
|
|
2
|
+
awslabs/git_repo_research_mcp_server/__init__.py,sha256=9vMh0_8PFhXNc3qg5-SI_0T2mxKjKSjCSVlBi9ceCOk,681
|
|
3
|
+
awslabs/git_repo_research_mcp_server/defaults.py,sha256=ysNJoPzAQqF8LK5wYANlMFUZrsicChGyCl4bWewhiA4,7678
|
|
4
|
+
awslabs/git_repo_research_mcp_server/embeddings.py,sha256=XOhJX1g-sZWkCYVwVDdcV9YgrWaN-3dmOtali6ebokU,2509
|
|
5
|
+
awslabs/git_repo_research_mcp_server/github_search.py,sha256=0sZL7o7Q29ub73FVfKF2pHXIcCzxH3UIx8jtIHFStmU,16193
|
|
6
|
+
awslabs/git_repo_research_mcp_server/indexer.py,sha256=Xwr0NP8IMQ5xRYlf78Of9N48tuGWJhG2BWqK1XaY4L0,30374
|
|
7
|
+
awslabs/git_repo_research_mcp_server/models.py,sha256=ecuUuiyKL4A2lTosPo5IqUZoQtJWTCfCbVXy0rhz4l0,12601
|
|
8
|
+
awslabs/git_repo_research_mcp_server/repository.py,sha256=c9aSuc7W8H4c7YK-cQx80TscdPKWSYIZrqjYZ1uXlMk,10662
|
|
9
|
+
awslabs/git_repo_research_mcp_server/search.py,sha256=jvouzpOc_VKMIzmKgXng6ynXJ_Wm71JUIcXMxmIhCo0,13799
|
|
10
|
+
awslabs/git_repo_research_mcp_server/server.py,sha256=WNIiJB8nepOzu2e2g8ud9eebQJk48og7TGbFlg3Do08,34184
|
|
11
|
+
awslabs/git_repo_research_mcp_server/utils.py,sha256=bhf-0E6gsyVTFTnaBHrZnVVxTpp9x3V1vR4n1TwKkQw,15076
|
|
12
|
+
awslabs_git_repo_research_mcp_server-1.0.3.dist-info/METADATA,sha256=Y1f1GZUL8k9t20Lpkbsmbd68oCto_u-8jfnfvzF9HgY,6106
|
|
13
|
+
awslabs_git_repo_research_mcp_server-1.0.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
14
|
+
awslabs_git_repo_research_mcp_server-1.0.3.dist-info/entry_points.txt,sha256=jX-BkQM7l_OK8D_iq_B4ukRuChbKjA4P4Q0IMikM4Ys,106
|
|
15
|
+
awslabs_git_repo_research_mcp_server-1.0.3.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
16
|
+
awslabs_git_repo_research_mcp_server-1.0.3.dist-info/licenses/NOTICE,sha256=fnpchtUnC9htWDzn7WbOrBYePd9UUEYXytHe98AB34w,104
|
|
17
|
+
awslabs_git_repo_research_mcp_server-1.0.3.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
awslabs/__init__.py,sha256=BIBSY3C1KeFtC_77foZxP2Jju9462uxgEQUPoJTve7w,673
|
|
2
|
-
awslabs/git_repo_research_mcp_server/__init__.py,sha256=GNVcSFE3kxGv2FOKoy3H0Yh922lVN6vycp6SfgZl4w4,624
|
|
3
|
-
awslabs/git_repo_research_mcp_server/defaults.py,sha256=DRk79HueQN-HW3xFmrSV2q4jdjTtSjmTSjucmhSfAJU,7621
|
|
4
|
-
awslabs/git_repo_research_mcp_server/embeddings.py,sha256=qOW3ulokriuDdl_OilcJ4F38zkWdZy80N-GN2AgwHOc,2452
|
|
5
|
-
awslabs/git_repo_research_mcp_server/github_search.py,sha256=gLCTq3EV2ghS9FMbngoP5BnDwHcWiKTahOZbCPdglTs,16136
|
|
6
|
-
awslabs/git_repo_research_mcp_server/indexer.py,sha256=AMSY3FLnLjRtNXdTELqI43yhcjXU8iBkuZMZcWOd3m4,30317
|
|
7
|
-
awslabs/git_repo_research_mcp_server/models.py,sha256=fb55x92k5xqseFHLGo2bJta5YioRuNPxicSn1Vm_yhE,12544
|
|
8
|
-
awslabs/git_repo_research_mcp_server/repository.py,sha256=6Tw2k2V3XxLE7Hqjc_o6LBiaYEbjLiBtn4HpTJ_tuAE,10605
|
|
9
|
-
awslabs/git_repo_research_mcp_server/search.py,sha256=b2NBJGk3YLU9zVEhXlrpHdfGTUQdRNhSGIvU0TR9muI,13747
|
|
10
|
-
awslabs/git_repo_research_mcp_server/server.py,sha256=ZU7QIivXuBna2Ln6A51GR9srEyCys26np_g4YSb9DiA,34127
|
|
11
|
-
awslabs/git_repo_research_mcp_server/utils.py,sha256=SRFPvxRNPR3K41F1fQDRHdytF-86JczvXINTxjjGguI,15019
|
|
12
|
-
awslabs_git_repo_research_mcp_server-1.0.1.dist-info/METADATA,sha256=ceNZYKvAWYH7qF3fjFS30DaoiByl-rIOVyQNr0vIDO4,6106
|
|
13
|
-
awslabs_git_repo_research_mcp_server-1.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
14
|
-
awslabs_git_repo_research_mcp_server-1.0.1.dist-info/entry_points.txt,sha256=jX-BkQM7l_OK8D_iq_B4ukRuChbKjA4P4Q0IMikM4Ys,106
|
|
15
|
-
awslabs_git_repo_research_mcp_server-1.0.1.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
16
|
-
awslabs_git_repo_research_mcp_server-1.0.1.dist-info/licenses/NOTICE,sha256=fnpchtUnC9htWDzn7WbOrBYePd9UUEYXytHe98AB34w,104
|
|
17
|
-
awslabs_git_repo_research_mcp_server-1.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|