Your message dated Wed, 17 Jun 2026 09:05:27 +0000
with message-id <[email protected]>
and subject line Bug#1139419: fixed in python-yalexs 9.2.9-1
has caused the Debian Bug report #1139419,
regarding python-yalexs: FTBFS with aiohttp 3.14
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1139419: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1139419
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:python-yalexs
Version: 9.2.7-1
Severity: serious
Tags: ftbfs forky sid
User: [email protected]
Usertags: aiohttp-3.14

Dear maintainer:

During a rebuild of all packages in unstable, this package failed to build.

Below you will find the last part of the build log (probably the most
relevant part, but not necessarily). If required, the full build log
is available here:

https://people.debian.org/~sanvila/build-logs/202606/

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you cannot reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:python-yalexs, so that this is still
visible in the BTS web page for this package.

Thanks.

--------------------------------------------------------------------------------
[...]
 debian/rules clean
dh clean --buildsystem=pybuild
   dh_auto_clean -O--buildsystem=pybuild
   dh_autoreconf_clean -O--buildsystem=pybuild
   dh_clean -O--buildsystem=pybuild
 debian/rules binary
dh binary --buildsystem=pybuild
   dh_update_autotools_config -O--buildsystem=pybuild
   dh_autoreconf -O--buildsystem=pybuild
   dh_auto_configure -O--buildsystem=pybuild
   dh_auto_build -O--buildsystem=pybuild
I: pybuild plugin_pyproject:142: Building wheel for python3.14 with "build" 
module
I: pybuild base:385: python3.14 -m build --skip-dependency-check --no-isolation 
--wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14  

[... snipped ...]

request_headers = {'Accept-Version': '0.0.1', 'Content-Type': 
'application/json; charset=UTF-8', 'x-august-api-key': 
'd9984f29-07a6-816e-e1c9-44ec9d1be431', 'x-august-branding': 'august', ...}
status = 200
body = b'{"expiresAt": "2026-07-08 22:07:09.603Z", "vPassword": true, 
"vInstallId": true}'
content_type = 'application/json', payload = None
headers = {'x-august-access-token': 'fresh_token'}
response_class = <class 'aiohttp.client_reqrep.ClientResponse'>, reason = 'OK'

    def _build_response(self, url: 'Union[URL, str]',
                        method: str = hdrs.METH_GET,
                        request_headers: Optional[Dict] = None,
                        status: int = 200,
                        body: Union[str, bytes] = '',
                        content_type: str = 'application/json',
                        payload: Optional[Dict] = None,
                        headers: Optional[Dict] = None,
                        response_class: Optional[Type[ClientResponse]] = None,
                        reason: Optional[str] = None) -> ClientResponse:
        if response_class is None:
            response_class = ClientResponse
        if payload is not None:
            body = json.dumps(payload)
        if not isinstance(body, bytes):
            body = str.encode(body)
        if request_headers is None:
            request_headers = {}
        loop = Mock()
        loop.get_debug = Mock()
        loop.get_debug.return_value = True
        kwargs = {}  # type: Dict[str, Any]
        kwargs['request_info'] = RequestInfo(
            url=url,
            method=method,
            headers=CIMultiDictProxy(CIMultiDict(**request_headers)),
        )
        kwargs['writer'] = None
        kwargs['continue100'] = None
        kwargs['timer'] = TimerNoop()
        kwargs['traces'] = []
        kwargs['loop'] = loop
        kwargs['session'] = None
    
        # We need to initialize headers manually
        _headers = CIMultiDict({hdrs.CONTENT_TYPE: content_type})
        if headers:
            _headers.update(headers)
        raw_headers = self._build_raw_headers(_headers)
>       resp = response_class(method, url, **kwargs)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E       TypeError: ClientResponse.__init__() missing 1 required keyword-only 
argument: 'stream_writer'

/usr/lib/python3/dist-packages/aioresponses/core.py:171: TypeError
______________________ test_async_get_device_capabilities ______________________

    @pytest.mark.asyncio
    async def test_async_get_device_capabilities() -> None:
        """Test fetching device capabilities from the API."""
        capabilities_response: CapabilitiesResponse = {
            "lock": {
                "concurrentBLE": 2,
                "batteryType": "AA",
                "doorSense": True,
                "hasMagnetometer": False,
                "hasIntegratedWiFi": False,
                "scheduledSmartAlerts": True,
                "standalone": False,
                "bluetooth": True,
                "slotRange": None,
                "integratedKeypad": True,
                "entryCodeSlots": True,
                "pinSlotMax": 100,
                "pinSlotMin": 1,
                "supportsRFID": True,
                "supportsRFIDLegacy": False,
                "supportsRFIDCredential": True,
                "supportsRFIDOnlyAccess": True,
                "supportsRFIDWithCode": False,
                "supportsSecureMode": False,
                "supportsSecureModeCodeDisable": False,
                "supportsSecureModeMobileControl": False,
                "supportsFingerprintCredential": True,
                "supportsDeliveryMode": False,
                "supportsSchedulePerUser": True,
                "supportsFingerprintOnlyAccess": True,
                "batteryLifeMS": 21513600000,
                "supportedPartners": [],
                "unlatch": True,
            }
        }
    
        serial_number = "TEST123"
    
        with aioresponses() as mock:
            mock.get(
                ApiCommon(DEFAULT_BRAND).get_brand_url(API_GET_CAPABILITIES_URL)
                + f"?serialNumber={serial_number}&topLevelHost=true",
                payload=capabilities_response,
            )
    
            async with ClientSession() as session:
                api = ApiAsync(session)
>               capabilities = await api.async_get_lock_capabilities(
                    ACCESS_TOKEN, serial_number
                )

tests/test_capabilities.py:65: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
yalexs/api_async.py:246: in async_get_lock_capabilities
    response = await self._async_dict_to_api(
yalexs/api_async.py:503: in _async_dict_to_api
    response = await self._aiohttp_session.request(method, url, **api_dict)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
<string>:3: in _request
    ???
/usr/lib/python3.13/unittest/mock.py:2332: in _execute_mock_call
    result = await effect(*args, **kwargs)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/usr/lib/python3/dist-packages/aioresponses/core.py:512: in _request_mock
    response = await self.match(method, url, **kwargs)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/usr/lib/python3/dist-packages/aioresponses/core.py:456: in match
    response_or_exc = await matcher.build_response(
/usr/lib/python3/dist-packages/aioresponses/core.py:202: in build_response
    resp = self._build_response(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <aioresponses.core.RequestMatch object at 0x7f74b86bcdd0>
url = 
URL('https://api-production.august.com/devices/capabilities?serialNumber=TEST123&topLevelHost=true')
method = 'get'
request_headers = {'Accept-Version': '0.0.1', 'Content-Type': 
'application/json; charset=UTF-8', 'x-august-access-token': 'test-token', 
'x-august-api-key': 'd9984f29-07a6-816e-e1c9-44ec9d1be431', ...}
status = 200
body = b'{"lock": {"concurrentBLE": 2, "batteryType": "AA", "doorSense": true, 
"hasMagnetometer": false, "hasIntegratedWiFi":... true, 
"supportsFingerprintOnlyAccess": true, "batteryLifeMS": 21513600000, 
"supportedPartners": [], "unlatch": true}}'
content_type = 'application/json'
payload = {'lock': {'batteryLifeMS': 21513600000, 'batteryType': 'AA', 
'bluetooth': True, 'concurrentBLE': 2, ...}}
headers = None, response_class = <class 'aiohttp.client_reqrep.ClientResponse'>
reason = 'OK'

    def _build_response(self, url: 'Union[URL, str]',
                        method: str = hdrs.METH_GET,
                        request_headers: Optional[Dict] = None,
                        status: int = 200,
                        body: Union[str, bytes] = '',
                        content_type: str = 'application/json',
                        payload: Optional[Dict] = None,
                        headers: Optional[Dict] = None,
                        response_class: Optional[Type[ClientResponse]] = None,
                        reason: Optional[str] = None) -> ClientResponse:
        if response_class is None:
            response_class = ClientResponse
        if payload is not None:
            body = json.dumps(payload)
        if not isinstance(body, bytes):
            body = str.encode(body)
        if request_headers is None:
            request_headers = {}
        loop = Mock()
        loop.get_debug = Mock()
        loop.get_debug.return_value = True
        kwargs = {}  # type: Dict[str, Any]
        kwargs['request_info'] = RequestInfo(
            url=url,
            method=method,
            headers=CIMultiDictProxy(CIMultiDict(**request_headers)),
        )
        kwargs['writer'] = None
        kwargs['continue100'] = None
        kwargs['timer'] = TimerNoop()
        kwargs['traces'] = []
        kwargs['loop'] = loop
        kwargs['session'] = None
    
        # We need to initialize headers manually
        _headers = CIMultiDict({hdrs.CONTENT_TYPE: content_type})
        if headers:
            _headers.update(headers)
        raw_headers = self._build_raw_headers(_headers)
>       resp = response_class(method, url, **kwargs)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E       TypeError: ClientResponse.__init__() missing 1 required keyword-only 
argument: 'stream_writer'

/usr/lib/python3/dist-packages/aioresponses/core.py:171: TypeError
=============================== warnings summary ===============================
tests/test_authenticator_common.py::test_process_refreshed_access_token_with_exp
tests/test_authenticator_common.py::test_process_refreshed_access_token_missing_exp_warns
  /usr/lib/python3/dist-packages/jwt/api_jwt.py:147: InsecureKeyLengthWarning: 
The HMAC key is 6 bytes long, which is below the minimum recommended length of 
32 bytes for SHA256. See RFC 7518 Section 3.2.
    return self._jws.encode(

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED 
tests/test_activity.py::TestActivityApiAsync::test_async_get_lock_detail_bridge_online
FAILED tests/test_api_async.py::TestApiAsync::test__raise_response_exceptions
FAILED tests/test_api_async.py::TestApiAsync::test_async_get_doorbell_detail
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_doorbell_detail_missing_image
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_doorbell_gen2_full_battery_detail
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_doorbell_gen2_low_battery_detail
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_doorbell_gen2_medium_battery_detail
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_doorbell_image_token_expired
FAILED tests/test_api_async.py::TestApiAsync::test_async_get_doorbell_offline
FAILED tests/test_api_async.py::TestApiAsync::test_async_get_doorbells - Type...
FAILED tests/test_api_async.py::TestApiAsync::test_async_get_house_activities
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_lock_and_door_status_with_locked_response
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_lock_and_door_status_with_open_response
FAILED tests/test_api_async.py::TestApiAsync::test_async_get_lock_capabilities
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_lock_detail_bridge_offline
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_lock_detail_bridge_online
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_lock_detail_doorsense_init_state
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_lock_detail_with_doorsense_bridge_online
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_lock_detail_with_doorsense_disabled_bridge_online
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_lock_door_status_with_closed_response
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_lock_door_status_with_open_response
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_lock_door_status_with_unknown_response
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_lock_status_with_locked_response
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_lock_status_with_unknown_status_response
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_lock_status_with_unlocked_response
FAILED tests/test_api_async.py::TestApiAsync::test_async_get_lock_with_doorbell
FAILED tests/test_api_async.py::TestApiAsync::test_async_get_lock_with_unlatch
FAILED tests/test_api_async.py::TestApiAsync::test_async_get_locks - TypeErro...
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_locks_yale_home_brand
FAILED tests/test_api_async.py::TestApiAsync::test_async_get_operable_locks
FAILED tests/test_api_async.py::TestApiAsync::test_async_get_pins - TypeError...
FAILED tests/test_api_async.py::TestApiAsync::test_async_get_usern - TypeErro...
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_get_v2_lock_detail_bridge_online
FAILED tests/test_api_async.py::TestApiAsync::test_async_lock - TypeError: Cl...
FAILED tests/test_api_async.py::TestApiAsync::test_async_lock_async_new_bridge
FAILED tests/test_api_async.py::TestApiAsync::test_async_lock_async_old_bridge
FAILED tests/test_api_async.py::TestApiAsync::test_async_lock_from_fixture - ...
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_lock_return_activities_from_fixture
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_lock_return_activities_from_fixture_with_no_doorstate
FAILED tests/test_api_async.py::TestApiAsync::test_async_refresh_access_token
FAILED tests/test_api_async.py::TestApiAsync::test_async_status_async_new_bridge
FAILED tests/test_api_async.py::TestApiAsync::test_async_status_async_old_bridge
FAILED tests/test_api_async.py::TestApiAsync::test_async_unlatch - TypeError:...
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_unlatch_async_new_bridge
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_unlatch_async_old_bridge
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_unlatch_return_activities_from_fixture
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_unlatch_return_activities_from_fixture_with_no_doorstate
FAILED tests/test_api_async.py::TestApiAsync::test_async_unlock - TypeError: ...
FAILED tests/test_api_async.py::TestApiAsync::test_async_unlock_async_new_bridge
FAILED tests/test_api_async.py::TestApiAsync::test_async_unlock_async_old_bridge
FAILED tests/test_api_async.py::TestApiAsync::test_async_unlock_from_fixture
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_unlock_return_activities_from_fixture
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_unlock_return_activities_from_fixture_with_no_doorstate
FAILED 
tests/test_api_async.py::TestApiAsync::test_async_validate_verification_code
FAILED tests/test_api_async.py::test_retry_exhausts_all_attempts[502] - TypeE...
FAILED tests/test_api_async.py::test_retry_exhausts_all_attempts[429] - TypeE...
FAILED 
tests/test_api_async.py::test_async_dict_to_api_preserves_existing_headers
FAILED tests/test_api_async.py::test_retry_502_429[502] - TypeError: ClientRe...
FAILED tests/test_api_async.py::test_retry_502_429[429] - TypeError: ClientRe...
FAILED tests/test_api_async.py::test_async_get_alarms_returns_alarms - TypeEr...
FAILED tests/test_api_async.py::test_async_get_alarm_devices_returns_devices
FAILED 
tests/test_api_async.py::test_async_arm_alarm_posts_state_and_returns_json
FAILED tests/test_api_async.py::test_async_wakeup_doorbell_returns_true - Typ...
FAILED tests/test_api_async.py::test_async_get_houses_returns_response - Type...
FAILED tests/test_api_async.py::test_async_get_house_returns_dict - TypeError...
FAILED 
tests/test_api_async.py::test_refresh_access_token_prefers_access_token_header
FAILED 
tests/test_api_async.py::test_refresh_access_token_falls_back_to_august_header
FAILED tests/test_api_async.py::test_async_add_websocket_subscription - TypeE...
FAILED tests/test_api_async.py::test_async_get_websocket_subscriptions - Type...
FAILED tests/test_api_async.py::test_async_remove_websocket_subscription - Ty...
FAILED tests/test_api_async.py::test_debug_logging_does_not_break_request - T...
FAILED 
tests/test_authenticator_async.py::TestAuthenticatorAsync::test_async_get_session_with_already_authenticated_state
FAILED 
tests/test_authenticator_async.py::TestAuthenticatorAsync::test_async_get_session_with_authenticated_response
FAILED 
tests/test_authenticator_async.py::TestAuthenticatorAsync::test_async_get_session_with_bad_password_response
FAILED 
tests/test_authenticator_async.py::TestAuthenticatorAsync::test_async_get_session_with_requires_validation_response
FAILED 
tests/test_authenticator_async.py::TestAuthenticatorAsync::test_async_refresh_token
FAILED 
tests/test_authenticator_async.py::TestAuthenticatorAsync::test_async_send_verification_code
FAILED 
tests/test_authenticator_async.py::TestAuthenticatorAsync::test_async_should_refresh_when_token_expiry_is_after_renewal_threshold
FAILED 
tests/test_authenticator_async.py::TestAuthenticatorAsync::test_async_should_refresh_when_token_expiry_is_before_renewal_threshold
FAILED 
tests/test_authenticator_async.py::TestAuthenticatorAsync::test_async_validate_verification_code_with_invalid_code_response
FAILED 
tests/test_authenticator_async.py::TestAuthenticatorAsync::test_async_validate_verification_code_with_no_code
FAILED 
tests/test_authenticator_async.py::TestAuthenticatorAsync::test_async_validate_verification_code_with_validated_response
FAILED tests/test_authenticator_async.py::test_authenticate_writes_cache_file
FAILED 
tests/test_authenticator_async.py::test_refresh_no_op_when_refresh_not_needed
FAILED tests/test_capabilities.py::test_async_get_device_capabilities - TypeE...
================== 85 failed, 364 passed, 2 warnings in 5.78s ==================
E: pybuild pybuild:485: test: plugin pyproject failed with: exit code=1: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build; python3.13 -m pytest --no-cov
dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.14 
3.13" --parallel=2 returned exit code 13
make: *** [debian/rules:5: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess failed with exit 
status 2
--------------------------------------------------------------------------------

--- End Message ---
--- Begin Message ---
Source: python-yalexs
Source-Version: 9.2.9-1
Done: Edward Betts <[email protected]>

We believe that the bug you reported is fixed in the latest version of
python-yalexs, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Edward Betts <[email protected]> (supplier of updated python-yalexs package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Wed, 17 Jun 2026 08:54:05 +0100
Source: python-yalexs
Architecture: source
Version: 9.2.9-1
Distribution: unstable
Urgency: medium
Maintainer: Home Assistant Team <[email protected]>
Changed-By: Edward Betts <[email protected]>
Closes: 1139419
Changes:
 python-yalexs (9.2.9-1) unstable; urgency=medium
 .
   * New upstream release.
   * Upstream switched from aioresponses to aiointercept. (Closes: #1139419)
Checksums-Sha1:
 c7c97bd44b4255bed0e18a0e247d43334868dfaf 2939 python-yalexs_9.2.9-1.dsc
 ca329e136c734b0d937196e64935ab5f6f4c6fbc 159124 python-yalexs_9.2.9.orig.tar.xz
 d3b838722970a975906e128ede2737dbd36ed037 2848 
python-yalexs_9.2.9-1.debian.tar.xz
 d3d4edff9be6b99e0c5f70cc96db9af4a7b0acbf 422080 
python-yalexs_9.2.9-1.git.tar.xz
 f729963f3d895e48f5bd4ca757875a33c77767af 17512 
python-yalexs_9.2.9-1_source.buildinfo
Checksums-Sha256:
 bbd0d771253dae870af5e0a0220fe5d4354c030b400064c945bd682309e11b71 2939 
python-yalexs_9.2.9-1.dsc
 1a91d21e4f626896a8fec3cdffc893cb3c9ff2c0690c37895d0de8aa42254a8a 159124 
python-yalexs_9.2.9.orig.tar.xz
 bd968b664b3b26e4ecd7caff2747da8d98f692a5bc798ba7ae2a1b79b5d906e3 2848 
python-yalexs_9.2.9-1.debian.tar.xz
 a903846ec1477945cc5ec2289a354d36ce6e38f21d35cee7d8ea32bf6defd289 422080 
python-yalexs_9.2.9-1.git.tar.xz
 4ac32cf25eeda96c95ee45ba1015b2419ebb04bd360182fcdd69c3e78c9d809d 17512 
python-yalexs_9.2.9-1_source.buildinfo
Files:
 677bde97ba83286c456da40ac77a0b2d 2939 python optional python-yalexs_9.2.9-1.dsc
 fbeec2e33e4c2a459c94f1c49a483aee 159124 python optional 
python-yalexs_9.2.9.orig.tar.xz
 871a153e271310316848c439ead93bf1 2848 python optional 
python-yalexs_9.2.9-1.debian.tar.xz
 dd1cc4754df5bde8c4df987cf9d6b140 422080 python None 
python-yalexs_9.2.9-1.git.tar.xz
 a43cf95102ae5d2275a6142ea776b2cf 17512 python optional 
python-yalexs_9.2.9-1_source.buildinfo
Git-Tag-Info: tag=812004712ce4a48774ca3bb161840d3832597684 
fp=fb8acfa78c726089c38ad0269605a1098c63b92a
Git-Tag-Tagger: Edward Betts <[email protected]>

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEN02M5NuW6cvUwJcqYG0ITkaDwHkFAmoyXdQACgkQYG0ITkaD
wHmQow//RovI07MlvNGON0DCMnb4bIL5Jh2LYPA6sik2hHHQtu6HIPvCRGczY3ge
vakVTPFXRktBLJc6QBGPmbZJyx7RPGyevaaVPYbMKJj0qkyNz2cbsFafrdh3PWsW
IJUY7+9/nV0G/ZsHQ56zgsZxcHWcCMG5khTTWTWfe2IOSzIRZmASWyoeGqdVUQwK
59xU3/qk4aRyudsN2zbA95HG3U5fxQOvrRL5dL/KPTGTCqUL66e6D/BGNddf6Bwh
WN8Gv124JMve8iqVqyNGBASosCLH9ShlT0BH4dDqnuA+Xx8hAkMue6mnLrMM3sVu
rpLLTpJJrWcPHifN+zg4V6PvqkJR1quWdEgi/PQGpD56SldOLVPhEcT0GieKwz4A
5yJ3gGEq/JMidjQqwpVHPUFPQsiSdtHhlhHCyAFwwhI2a4X6jFJCU0kVZCKsXjzE
RiqGCSN00C0W2d9mPMQIjLsoEfh3dW8DZnl3ageNa+S9sljUeVjjw0NoXvvXkago
BFxpnmZU1F+JsZRj50xNgy2k0uJSfHB4wbOcNj+02cCYYg2B2ci7wDMeTjmp64x4
i/HvmtZnQV2pmVOhyKcO9Vuw586Y4fsYo/R/Q4LXiFVhdJh7OCBfWGWC6h4vM+PS
Pl+D0wL2WdMALNqlGao2e2UR9W4HgnhN/wECa14gzwE6r3ePMHs=
=9h5X
-----END PGP SIGNATURE-----

Attachment: pgpADtS45qoxx.pgp
Description: PGP signature


--- End Message ---

Reply via email to