xpander-sdk 2.0.142__tar.gz → 2.0.144__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.
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/PKG-INFO +2 -2
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/README.md +1 -1
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/setup.py +1 -1
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/events_module.py +13 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk.egg-info/PKG-INFO +2 -2
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/LICENSE +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/pyproject.toml +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/setup.cfg +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/consts/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/consts/api_routes.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/core/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/core/module_base.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/core/state.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/core/xpander_api_client.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/exceptions/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/exceptions/module_exception.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/models/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/models/configuration.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/models/events.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/models/frameworks.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/models/shared.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/models/user.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/agents_module.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/models/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/models/agent.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/models/agent_list.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/models/knowledge_bases.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/sub_modules/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/sub_modules/agent.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/utils/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/utils/generic.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/backend/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/backend/backend_module.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/backend/frameworks/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/backend/frameworks/agno.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/backend/frameworks/dispatch.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/backend/utils/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/backend/utils/mcp_oauth.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/decorators/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/decorators/on_boot.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/decorators/on_shutdown.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/decorators/on_task.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/models/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/models/deployments.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/models/events.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/utils/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/utils/generic.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/utils/git_init.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/knowledge_bases/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/knowledge_bases/knowledge_bases_module.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/knowledge_bases/models/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/knowledge_bases/models/knowledge_bases.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/knowledge_bases/sub_modules/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/knowledge_bases/sub_modules/knowledge_base.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/knowledge_bases/sub_modules/knowledge_base_document_item.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/knowledge_bases/utils/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tasks/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tasks/models/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tasks/models/task.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tasks/models/tasks_list.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tasks/sub_modules/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tasks/sub_modules/task.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tasks/tasks_module.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tasks/utils/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tasks/utils/files.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/decorators/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/decorators/register_tool.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/models/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/models/mcp.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/models/tool_invocation_result.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/sub_modules/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/sub_modules/tool.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/tools_repository_module.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/utils/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/utils/generic.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/utils/local_tools.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/utils/schemas.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/utils/__init__.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/utils/env.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/utils/event_loop.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/utils/tools.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk.egg-info/SOURCES.txt +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk.egg-info/dependency_links.txt +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk.egg-info/requires.txt +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk.egg-info/top_level.txt +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/tests/test_agents_module.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/tests/test_api_client.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/tests/test_backend_module.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/tests/test_boot_shutdown_handlers.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/tests/test_configuration.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/tests/test_knowledge_bases_module.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/tests/test_tasks_module.py +0 -0
- {xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/tests/test_tools_repository.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: xpander-sdk
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.144
|
|
4
4
|
Summary: xpander.ai Backend-as-a-service for AI Agents - SDK
|
|
5
5
|
Home-page: https://www.xpander.ai
|
|
6
6
|
Author: xpanderAI
|
|
@@ -405,7 +405,7 @@ This project is licensed under the MIT License - see the LICENSE file for detail
|
|
|
405
405
|
|
|
406
406
|
- **Documentation**: [https://docs.xpander.ai](https://docs.xpander.ai)
|
|
407
407
|
- **Issues**: [GitHub Issues](https://github.com/xpander-ai/xpander-sdk/issues)
|
|
408
|
-
- **Email**:
|
|
408
|
+
- **Email**: support@xpander.ai
|
|
409
409
|
|
|
410
410
|
---
|
|
411
411
|
|
|
@@ -356,7 +356,7 @@ This project is licensed under the MIT License - see the LICENSE file for detail
|
|
|
356
356
|
|
|
357
357
|
- **Documentation**: [https://docs.xpander.ai](https://docs.xpander.ai)
|
|
358
358
|
- **Issues**: [GitHub Issues](https://github.com/xpander-ai/xpander-sdk/issues)
|
|
359
|
-
- **Email**:
|
|
359
|
+
- **Email**: support@xpander.ai
|
|
360
360
|
|
|
361
361
|
---
|
|
362
362
|
|
|
@@ -9,6 +9,7 @@ from __future__ import annotations
|
|
|
9
9
|
|
|
10
10
|
import asyncio
|
|
11
11
|
import json
|
|
12
|
+
import json as py_json
|
|
12
13
|
import os
|
|
13
14
|
import signal
|
|
14
15
|
import sys
|
|
@@ -19,10 +20,12 @@ from typing import Any, Awaitable, Callable, Optional, Set, Union, List
|
|
|
19
20
|
import httpx
|
|
20
21
|
from httpx_sse import aconnect_sse
|
|
21
22
|
from loguru import logger
|
|
23
|
+
from pydantic import BaseModel
|
|
22
24
|
|
|
23
25
|
from xpander_sdk.core.module_base import ModuleBase
|
|
24
26
|
from xpander_sdk.exceptions.module_exception import ModuleException
|
|
25
27
|
from xpander_sdk.models.configuration import Configuration
|
|
28
|
+
from xpander_sdk.models.shared import OutputFormat
|
|
26
29
|
from xpander_sdk.modules.agents.models.agent import SourceNodeType
|
|
27
30
|
from xpander_sdk.modules.tasks.tasks_module import Tasks
|
|
28
31
|
|
|
@@ -364,6 +367,16 @@ class Events(ModuleBase):
|
|
|
364
367
|
): # let the handler set the status, if not set - mark as completed
|
|
365
368
|
task.status = AgentExecutionStatus.Completed
|
|
366
369
|
|
|
370
|
+
# in case of structured output, return as stringified json
|
|
371
|
+
try:
|
|
372
|
+
if task.output_format == OutputFormat.Json:
|
|
373
|
+
if isinstance(task.result, BaseModel):
|
|
374
|
+
task.result = task.result.model_dump_json()
|
|
375
|
+
if isinstance(task.result, dict) or isinstance(task.result, list):
|
|
376
|
+
task.result = py_json.dumps(task.result)
|
|
377
|
+
except Exception:
|
|
378
|
+
pass
|
|
379
|
+
|
|
367
380
|
await task.asave()
|
|
368
381
|
task.tokens = task_used_tokens
|
|
369
382
|
task.used_tools = task_used_tools
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: xpander-sdk
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.144
|
|
4
4
|
Summary: xpander.ai Backend-as-a-service for AI Agents - SDK
|
|
5
5
|
Home-page: https://www.xpander.ai
|
|
6
6
|
Author: xpanderAI
|
|
@@ -405,7 +405,7 @@ This project is licensed under the MIT License - see the LICENSE file for detail
|
|
|
405
405
|
|
|
406
406
|
- **Documentation**: [https://docs.xpander.ai](https://docs.xpander.ai)
|
|
407
407
|
- **Issues**: [GitHub Issues](https://github.com/xpander-ai/xpander-sdk/issues)
|
|
408
|
-
- **Email**:
|
|
408
|
+
- **Email**: support@xpander.ai
|
|
409
409
|
|
|
410
410
|
---
|
|
411
411
|
|
|
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
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/models/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/models/agent_list.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/models/knowledge_bases.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/sub_modules/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/sub_modules/agent.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/agents/utils/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/backend/backend_module.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/backend/frameworks/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/backend/frameworks/agno.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/backend/frameworks/dispatch.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/backend/utils/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/backend/utils/mcp_oauth.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/decorators/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/decorators/on_boot.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/decorators/on_shutdown.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/decorators/on_task.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/models/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/models/deployments.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/utils/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/events/utils/git_init.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/knowledge_bases/__init__.py
RENAMED
|
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
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tasks/models/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tasks/models/tasks_list.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tasks/sub_modules/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tasks/sub_modules/task.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.142 → xpander_sdk-2.0.144}/src/xpander_sdk/modules/tools_repository/models/mcp.py
RENAMED
|
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
|