diff --git a/.env b/.env deleted file mode 100644 index 8a75e01..0000000 --- a/.env +++ /dev/null @@ -1,3 +0,0 @@ -POSTGRES_DB=spacecom -POSTGRES_USER=spacecom -POSTGRES_PASSWORD=spacecom \ No newline at end of file diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..dc3f5f5 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,83 @@ +# Repository Guidelines + +## Project Overview + +SkyNav SpaceCom is a dual-domain re-entry debris hazard analysis platform that bridges space-domain prediction with aviation-domain decision support. It visualises space objects on a 3D globe (CesiumJS) and is designed to evolve into a full hazard analysis and decision-support system for ANSPs and aviation safety organisations. + +Key planning documents: +- `docs/Overview.md` — shortest summary of the programme +- `docs/Roadmap.md` — staged product delivery view (Phases 0–7) +- `docs/Implementation_Plan.md` — sprint-oriented coding plan (Phases 0–10) +- `docs/Master_Plan.md` — authoritative detailed specification + +## Current Repository State + +The original prototype code has been archived to `original_code/` (gitignored as reference). The working tree is being rebuilt from scratch. The repo currently contains only: + +``` +AGENTS.md This file +docs/ Planning and architecture documents +original_code/ Archived prototype (gitignored, reference only) +``` + +The archived prototype in `original_code/` contains: +``` +original_code/backend/app/main.py FastAPI app with a single /czml/test endpoint +original_code/backend/Dockerfile Python 3.11-slim, installs fastapi + uvicorn +original_code/frontend/public/ Static HTML/JS — CesiumJS 1.110 globe + OSM tiles +original_code/frontend/public/config.js API_BASE_URL = http://aegis.sbln.bxl.skynav.cloud:8000 +original_code/db/schema.sql PostGIS + TimescaleDB schema (objects, orbits, conjunctions, reentry_predictions) +original_code/docker-compose.yml Three services: nginx frontend, FastAPI backend, TimescaleDB/PostGIS db +original_code/worker/fetch.py Placeholder TLE/CDM ingest worker +original_code/.env DB credentials (POSTGRES_DB/USER/PASSWORD=spacecom) +``` + +## Target Architecture (from docs) + +The target stack per `docs/Overview.md` and `docs/Master_Plan.md`: + +- **Frontend** — Next.js + TypeScript + CesiumJS +- **Backend** — FastAPI (Python), async, with WebSocket API +- **Workers** — Celery workers for simulation, propagation, ingest (isolated from app Redis) +- **Database** — TimescaleDB (PostgreSQL + PostGIS) for time-series orbital data +- **Cache/Queue** — Redis (split trust domains: app state vs worker traffic) +- **Object storage** — MinIO for simulation outputs and reports +- **Renderer** — Network-isolated renderer for report generation +- **Deployment** — Docker Compose on self-hosted VPS; CI/CD via self-hosted GitLab + +## Database Schema (from prototype) + +Key tables (defined in `original_code/db/schema.sql`): + +- `objects` — space object catalog (NORAD ID, orbital params, mass) +- `orbits` — time-series positions (TimescaleDB hypertable, PostGIS geography) +- `conjunctions` — conjunction alerts with probability of collision (TCA, miss distance, PoC) +- `reentry_predictions` — re-entry windows with geographic footprints + +## Build, Test, and Development Commands + +No test framework, linter, or formatter is configured yet. + +The prototype stack was started with: +``` +docker compose up --build +``` + +Frontend was available at `http://localhost:8080`, backend API at `http://localhost:8000`. +The deployment environment is `aegis.sbln.bxl.skynav.cloud`. + +## Git & Source Control + +Hosted on GitLab at `gemini.skynavintl.com:10090/root/spacecom`. Two commits exist: +- `05f87e0` Initial commit +- `2c49d7c` base sys done. shift to vs code + +Conventional commits format is the target standard. The `.gitignore` covers Python, Node, Docker, database artifacts, environment files, and the `original_code/` archive. + +## Delivery Principles (from docs) + +- Safety-critical changes require human review +- Contracts are the authoritative source of commercial entitlements +- Self-hosted GitLab is the authoritative CI/CD platform +- Phase 0 architectural and legal blockers must be cleared before commitment-heavy implementation +- Commercial enforcement must not interrupt active operational incidents diff --git a/README.md b/README.md deleted file mode 100644 index 58ba079..0000000 --- a/README.md +++ /dev/null @@ -1,93 +0,0 @@ -# SpaceCom - - - -## Getting started - -To make it easy for you to get started with GitLab, here's a list of recommended next steps. - -Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! - -## Add your files - -- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files -- [ ] [Add files using the command line](https://docs.gitlab.com/topics/git/add_files/#add-files-to-a-git-repository) or push an existing Git repository with the following command: - -``` -cd existing_repo -git remote add origin https://gemini.skynavintl.com:10090/root/spacecom.git -git branch -M main -git push -uf origin main -``` - -## Integrate with your tools - -- [ ] [Set up project integrations](https://gemini.skynavintl.com:10090/root/spacecom/-/settings/integrations) - -## Collaborate with your team - -- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/) -- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) -- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically) -- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/) -- [ ] [Set auto-merge](https://docs.gitlab.com/user/project/merge_requests/auto_merge/) - -## Test and Deploy - -Use the built-in continuous integration in GitLab. - -- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/) -- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/ee/user/application_security/sast/) -- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html) -- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/) -- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html) - -*** - -# Editing this README - -When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template. - -## Suggestions for a good README - -Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information. - -## Name -Choose a self-explaining name for your project. - -## Description -Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors. - -## Badges -On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge. - -## Visuals -Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method. - -## Installation -Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. - -## Usage -Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. - -## Support -Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc. - -## Roadmap -If you have ideas for releases in the future, it is a good idea to list them in the README. - -## Contributing -State if you are open to contributions and what your requirements are for accepting them. - -For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. - -You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. - -## Authors and acknowledgment -Show your appreciation to those who have contributed to the project. - -## License -For open source projects, say how it is licensed. - -## Project status -If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers. diff --git a/backend/Dockerfile b/backend/Dockerfile deleted file mode 100644 index f274166..0000000 --- a/backend/Dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM python:3.11-slim - -WORKDIR /app -COPY . . - -RUN pip install fastapi uvicorn - -CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"] diff --git a/backend/app/__pycache__/main.cpython-311.pyc b/backend/app/__pycache__/main.cpython-311.pyc deleted file mode 100644 index 2de66ad..0000000 Binary files a/backend/app/__pycache__/main.cpython-311.pyc and /dev/null differ diff --git a/backend/app/main.py b/backend/app/main.py deleted file mode 100644 index f906b11..0000000 --- a/backend/app/main.py +++ /dev/null @@ -1,65 +0,0 @@ -# backend/main.py - -from fastapi import FastAPI -from fastapi.responses import JSONResponse -from fastapi.middleware.cors import CORSMiddleware - -app = FastAPI() - - -app.add_middleware( - CORSMiddleware, - allow_origins=[ - "http://aegis.sbln.bxl.skynav.cloud:8080" - ], - allow_credentials=True, - allow_methods=["*"], - allow_headers=["*"], -) - - - -@app.get("/czml/test") -def get_dummy_czml(): - czml = [ - { - "id": "document", - "name": "Dummy orbit test", - "version": "1.0" - }, - { - "id": "sat1", - "name": "TestSat-001", - "availability": "2025-06-29T00:00:00Z/2025-06-29T00:04:00Z", - "position": { - "interpolationAlgorithm": "LAGRANGE", - "interpolationDegree": 5, - "referenceFrame": "INERTIAL", - "epoch": "2025-06-29T00:00:00Z", - "cartesian": [ - 0, 7000000, 0, 0, - 60, 7050000, 20000, 0, - 120, 7100000, 40000, 0, - 180, 7150000, 60000, 0, - 240, 7200000, 80000, 0 - ] - }, - "point": { - "pixelSize": 10, - "color": { - "rgba": [0, 255, 255, 255] - } - }, - "label": { - "text": "TestSat-001", - "font": "12pt sans-serif", - "style": "FILL", - "outlineWidth": 2, - "verticalOrigin": "BOTTOM", - "pixelOffset": { - "cartesian2": [0, -20] - } - } - } - ] - return JSONResponse(content=czml) diff --git a/db/schema.sql b/db/schema.sql deleted file mode 100644 index 6d2699e..0000000 --- a/db/schema.sql +++ /dev/null @@ -1,44 +0,0 @@ --- Enable extensions -CREATE EXTENSION IF NOT EXISTS postgis; -CREATE EXTENSION IF NOT EXISTS timescaledb; - --- Main object catalog (replaces 'satellites') -CREATE TABLE objects ( - id SERIAL PRIMARY KEY, - name TEXT NOT NULL, - norad_id INT UNIQUE NOT NULL, - intl_designator TEXT, - launch_date DATE, - orbit_type TEXT -); - -CREATE TABLE orbits ( - object_id INT REFERENCES objects(id), - ts TIMESTAMPTZ NOT NULL, - position GEOGRAPHY(POINT, 4326), - altitude_km DOUBLE PRECISION, - velocity_kms DOUBLE PRECISION, - PRIMARY KEY (object_id, ts) -); -SELECT create_hypertable('orbits', 'ts', if_not_exists => TRUE); - --- Conjunction Data Messages / alerts -CREATE TABLE conjunctions ( - id SERIAL PRIMARY KEY, - primary_object INT REFERENCES objects(id), - secondary_object INT, - tca TIMESTAMPTZ, -- Time of Closest Approach - miss_distance_km DOUBLE PRECISION, - risk_level TEXT, - poc DOUBLE PRECISION -- Probability of Collision -); - --- Re-entry prediction windows and footprints -CREATE TABLE reentry_predictions ( - id SERIAL PRIMARY KEY, - object_id INT REFERENCES objects(id), - window_start TIMESTAMPTZ, - window_end TIMESTAMPTZ, - footprint GEOGRAPHY(POLYGON, 4326), - notes TEXT -); diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index dd61a17..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,43 +0,0 @@ -version: '3.8' - -services: - frontend: - image: nginx:alpine - container_name: spacecom-frontend - volumes: - - ./frontend/public:/usr/share/nginx/html:ro - ports: - - "8080:80" - restart: unless-stopped - - backend: - build: ./backend - container_name: spacecom-backend - ports: - - "8000:8000" - depends_on: - - db - environment: - - DB_URL=postgresql://spacecom:spacecom@db:5432/spacecom - volumes: - - ./backend:/app - restart: unless-stopped - - - db: - image: timescaledev/timescaledb-ha:pg17 - container_name: spacecom-db - ports: - - "5432:5432" - environment: - POSTGRES_DB: spacecom - POSTGRES_USER: spacecom - POSTGRES_PASSWORD: uCV4@YUCuR9kX.MQaxp2 - volumes: - - pgdata:/var/lib/postgresql/data - - ./db/schema.sql:/docker-entrypoint-initdb.d/schema.sql:ro - restart: unless-stopped - - -volumes: - pgdata: diff --git a/docs/Overview.md b/docs/Overview.md new file mode 100644 index 0000000..6fd9c38 --- /dev/null +++ b/docs/Overview.md @@ -0,0 +1,88 @@ +# SpaceCom Overview + +## Purpose + +SpaceCom is a dual-domain re-entry debris hazard analysis platform that connects space-domain prediction with aviation-domain action. + +It is designed to solve a specific operational gap: space analysts can generate technically credible predictions, but ANSPs and aviation decision-makers still need those predictions translated into practical, time-bound, airspace-aware decisions. + +## Product Vision + +SpaceCom operates as two connected products sharing a common physics and data core. + +- **Space domain product:** decay prediction, uncertainty quantification, conjunction screening, controlled re-entry planning, and API-based integration with space operations workflows. +- **Aviation domain product:** hazard corridors, FIR intersection analysis, operator-friendly uncertainty communication, NOTAM-adjacent support, and multi-ANSP coordination. + +The strategic positioning is that SpaceCom is the interface layer between two domains that currently do not communicate in the same operational language. + +## Core Value Proposition + +SpaceCom is intended to provide: + +- technically credible orbital and re-entry analysis +- operationally usable aviation decision support +- traceability from model input to output to operator-facing recommendation +- a platform that can support both productisation and procurement-led institutional use + +## High-Level Architecture + +The platform is built as a layered web system with: + +- a Next.js and CesiumJS frontend +- a FastAPI backend and WebSocket API +- isolated Celery workers for simulation and ingest +- a network-isolated renderer for reports +- TimescaleDB/PostGIS for persistence +- split Redis trust domains for app state and worker traffic +- MinIO for private object storage +- observability, audit logging, and safety/compliance controls throughout + +The current deployment model is Docker Compose on a deliberately managed VPS-style stack, with architecture choices kept compatible with later scale-up. + +## Major Capability Areas + +- object catalog and propagation +- decay prediction with Monte Carlo uncertainty +- breakup and corridor generation +- conjunction and alert handling +- event timeline and operator workflow support +- reporting and export +- organisation, contract, and entitlement management +- validation, monitoring, and safety-case traceability + +## Users + +The plan is built around multiple personas, but the most important groups are: + +- space operators and analysts +- ANSP operational users +- airspace and incident decision-makers +- internal SpaceCom operations, engineering, and compliance staff + +## Delivery Principles + +The master plan emphasizes: + +- safety-critical changes require human review +- contracts are the authoritative source of commercial entitlements +- self-hosted GitLab is the authoritative CI/CD platform +- commercial enforcement must not interrupt active operational incidents +- Phase 0 legal and architectural blockers must be cleared before commitment-heavy implementation + +## Governance Summary + +Cross-hat governance is now explicit in the master plan. + +- Product and commercial decisions are owned through the contract model. +- Safety-critical UX and alerting decisions are governed by the safety case owner with HF and regulatory review. +- Platform and architecture decisions are owned through the architecture/platform function. +- Legal, privacy, and licensing obligations override implementation convenience. + +## What This Document Is + +This file is the shortest summary of the programme. + +- Read this first for the big picture. +- Read [Roadmap.md](/d:/Projects/SpaceCom/docs/Roadmap.md) for the staged product journey. +- Read [Implementation_Plan.md](/d:/Projects/SpaceCom/docs/Implementation_Plan.md) for the coding and sprint plan. +- Use [MASTER_PLAN.md](/d:/Projects/SpaceCom/docs/MASTER_PLAN.md) as the authoritative detailed specification. diff --git a/docs/Roadmap.md b/docs/Roadmap.md new file mode 100644 index 0000000..c4c852f --- /dev/null +++ b/docs/Roadmap.md @@ -0,0 +1,144 @@ +# SpaceCom Roadmap + +## Roadmap Intent + +This roadmap is the big-picture delivery view of SpaceCom. It compresses the master plan into the main stages of platform maturity, from architectural gating through operational deployment readiness. + +## Phase 0: Commitment Gates + +Before major implementation proceeds, the project clears the blockers that would otherwise force rework later. + +- confirm the Space-Track AUP architecture path +- execute the Cesium commercial licence +- lock in self-hosted GitLab as the CI/CD authority +- confirm the contract-led entitlement model +- approve the Redis trust split between application state and worker traffic + +Outcome: +- the team can build without uncertainty on ingest architecture, frontend licensing, commercial authority, or deployment governance + +## Phase 1: Platform Foundation + +Goal: +- establish a safe, testable, developer-ready baseline for the product + +Major outcomes: + +- containerised stack running locally and in controlled environments +- backend and frontend scaffolding in place +- authentication, RBAC, logging, and network segmentation active +- core docs, ADRs, CI/CD, and pre-commit hooks established +- legal/compliance acceptance gates wired into onboarding and delivery + +This phase is about building the foundation correctly, not shipping every feature. + +## Phase 2: Physics and Operational Core + +Goal: +- turn the prototype into a real hazard-analysis platform + +Major outcomes: + +- object catalog and ingest pipelines +- SGP4 propagation and frame conversion +- numerical decay prediction +- Monte Carlo uncertainty handling +- corridor generation and event orchestration +- first usable operational globe, alerting, and degraded-mode handling + +This is where SpaceCom starts to become technically distinctive. + +## Phase 3: User Workflow Maturity + +Goal: +- make the platform genuinely usable for operations, not just technically correct + +Major outcomes: + +- event detail workflows +- operator alert acknowledgement and decision support +- reporting flow +- stronger human-factors treatment +- accessibility and validation improvements +- deeper auditability and readiness controls + +This phase converts a capable engine into a credible product. + +## Phase 4: Aviation Decision Support Expansion + +Goal: +- strengthen the aviation-side operational layer + +Major outcomes: + +- FIR-aware outputs +- uncertainty communication suitable for non-specialist operators +- NOTAM-adjacent support +- shadow mode workflows +- multi-ANSP coordination features +- stronger safety-case and regulatory documentation + +This is the phase where SpaceCom most clearly occupies the bridge between space and aviation. + +## Phase 5: Space Operator Expansion + +Goal: +- extend the shared physics core into upstream space-operator workflows + +Major outcomes: + +- space operator portal +- owned-object workflows +- controlled re-entry planning +- API key lifecycle and external integration support +- CCSDS export and partner-facing interfaces + +This broadens the platform without abandoning the aviation differentiator. + +## Phase 6: Operational Hardening and Evidence + +Goal: +- prepare the platform for shadow deployment, procurement credibility, and long-term operation + +Major outcomes: + +- full observability and reliability maturity +- stronger incident response and recovery posture +- post-deployment safety monitoring +- validation and backcasting evidence +- licensing, privacy, and procurement artefacts +- commercial packaging and contract enforcement + +This is where the platform becomes institutionally defensible, not just technically interesting. + +## Phase 7: Scale and Deployment Readiness + +Goal: +- support real customer use with disciplined scale-up, not speculative over-engineering + +Major outcomes: + +- capacity thresholds and scaling review process +- tiered deployment model +- shadow ANSP deployment readiness +- long-term operational governance +- roadmap path to higher-availability deployments when justified by usage + +## Summary View + +The roadmap is intentionally cumulative: + +1. clear the blockers +2. build the foundation +3. deliver the physics core +4. deliver the operational workflows +5. expand into both aviation and space-facing products +6. harden for institutional trust +7. scale only when operational evidence justifies it + +## Relationship to the Master Plan + +This document is a compression of the master plan, not a replacement for it. + +- Use [MASTER_PLAN.md](/d:/Projects/SpaceCom/docs/MASTER_PLAN.md) for the detailed architecture, controls, and acceptance criteria. +- Use [Implementation_Plan.md](/d:/Projects/SpaceCom/docs/Implementation_Plan.md) for the sprint-oriented coding plan. diff --git a/docs/Tenders/1-12496_17042026052201/001.12496eli.pdf b/docs/Tenders/1-12496_17042026052201/001.12496eli.pdf new file mode 100644 index 0000000..4a472ec Binary files /dev/null and b/docs/Tenders/1-12496_17042026052201/001.12496eli.pdf differ diff --git a/docs/Tenders/1-12496_17042026052201/002.12496esw.pdf b/docs/Tenders/1-12496_17042026052201/002.12496esw.pdf new file mode 100644 index 0000000..0077382 Binary files /dev/null and b/docs/Tenders/1-12496_17042026052201/002.12496esw.pdf differ diff --git a/docs/Tenders/1-12496_17042026052201/003.12496ecc.pdf b/docs/Tenders/1-12496_17042026052201/003.12496ecc.pdf new file mode 100644 index 0000000..6925a04 Binary files /dev/null and b/docs/Tenders/1-12496_17042026052201/003.12496ecc.pdf differ diff --git a/docs/Tenders/1-12496_17042026052201/004.12496etc.pdf b/docs/Tenders/1-12496_17042026052201/004.12496etc.pdf new file mode 100644 index 0000000..f7f4882 Binary files /dev/null and b/docs/Tenders/1-12496_17042026052201/004.12496etc.pdf differ diff --git a/docs/Tenders/1-12496_17042026052201/005.12496ept.docx b/docs/Tenders/1-12496_17042026052201/005.12496ept.docx new file mode 100644 index 0000000..a32ae6b Binary files /dev/null and b/docs/Tenders/1-12496_17042026052201/005.12496ept.docx differ diff --git a/docs/Tenders/1-13038_17042026052212/001.1-13038eli.pdf b/docs/Tenders/1-13038_17042026052212/001.1-13038eli.pdf new file mode 100644 index 0000000..6084f1f Binary files /dev/null and b/docs/Tenders/1-13038_17042026052212/001.1-13038eli.pdf differ diff --git a/docs/Tenders/1-13038_17042026052212/002.1-13038ews.pdf b/docs/Tenders/1-13038_17042026052212/002.1-13038ews.pdf new file mode 100644 index 0000000..8a5ffb4 Binary files /dev/null and b/docs/Tenders/1-13038_17042026052212/002.1-13038ews.pdf differ diff --git a/docs/Tenders/1-13038_17042026052212/003.1-13038ecc.pdf b/docs/Tenders/1-13038_17042026052212/003.1-13038ecc.pdf new file mode 100644 index 0000000..2cdcea2 Binary files /dev/null and b/docs/Tenders/1-13038_17042026052212/003.1-13038ecc.pdf differ diff --git a/docs/Tenders/1-13038_17042026052212/004.1-13038etc.pdf b/docs/Tenders/1-13038_17042026052212/004.1-13038etc.pdf new file mode 100644 index 0000000..a75feb7 Binary files /dev/null and b/docs/Tenders/1-13038_17042026052212/004.1-13038etc.pdf differ diff --git a/docs/Tenders/1-13038_17042026052212/005.1-13038ept.docx b/docs/Tenders/1-13038_17042026052212/005.1-13038ept.docx new file mode 100644 index 0000000..ffcfcc0 Binary files /dev/null and b/docs/Tenders/1-13038_17042026052212/005.1-13038ept.docx differ diff --git a/docs/Tenders/1-13038_17042026052212/006.AD.zip b/docs/Tenders/1-13038_17042026052212/006.AD.zip new file mode 100644 index 0000000..7ecc50f Binary files /dev/null and b/docs/Tenders/1-13038_17042026052212/006.AD.zip differ diff --git a/docs/Tenders/1-13283_17042026052220/001.1-13283eli.pdf b/docs/Tenders/1-13283_17042026052220/001.1-13283eli.pdf new file mode 100644 index 0000000..3367b25 Binary files /dev/null and b/docs/Tenders/1-13283_17042026052220/001.1-13283eli.pdf differ diff --git a/docs/Tenders/1-13283_17042026052220/002.1-13283ews.pdf b/docs/Tenders/1-13283_17042026052220/002.1-13283ews.pdf new file mode 100644 index 0000000..859f938 Binary files /dev/null and b/docs/Tenders/1-13283_17042026052220/002.1-13283ews.pdf differ diff --git a/docs/Tenders/1-13283_17042026052220/003.1-13283ecc.pdf b/docs/Tenders/1-13283_17042026052220/003.1-13283ecc.pdf new file mode 100644 index 0000000..1979ee9 Binary files /dev/null and b/docs/Tenders/1-13283_17042026052220/003.1-13283ecc.pdf differ diff --git a/docs/Tenders/1-13283_17042026052220/004.1-13283etc.pdf b/docs/Tenders/1-13283_17042026052220/004.1-13283etc.pdf new file mode 100644 index 0000000..a75feb7 Binary files /dev/null and b/docs/Tenders/1-13283_17042026052220/004.1-13283etc.pdf differ diff --git a/docs/Tenders/1-13283_17042026052220/005.1-13283ecc.docx b/docs/Tenders/1-13283_17042026052220/005.1-13283ecc.docx new file mode 100644 index 0000000..f69f338 Binary files /dev/null and b/docs/Tenders/1-13283_17042026052220/005.1-13283ecc.docx differ diff --git a/docs/Tenders/1-13283_17042026052220/006.1-13283ept.docx b/docs/Tenders/1-13283_17042026052220/006.1-13283ept.docx new file mode 100644 index 0000000..3116657 Binary files /dev/null and b/docs/Tenders/1-13283_17042026052220/006.1-13283ept.docx differ diff --git a/docs/Tenders/1-13283_17042026052220/007.ADs_RDs_BIs 1-13283.zip b/docs/Tenders/1-13283_17042026052220/007.ADs_RDs_BIs 1-13283.zip new file mode 100644 index 0000000..1860652 Binary files /dev/null and b/docs/Tenders/1-13283_17042026052220/007.ADs_RDs_BIs 1-13283.zip differ diff --git a/docs/Tenders/1-13285_17042026052227/001.1-13285eli.pdf b/docs/Tenders/1-13285_17042026052227/001.1-13285eli.pdf new file mode 100644 index 0000000..c2852f2 Binary files /dev/null and b/docs/Tenders/1-13285_17042026052227/001.1-13285eli.pdf differ diff --git a/docs/Tenders/1-13285_17042026052227/002.1-13285ews.pdf b/docs/Tenders/1-13285_17042026052227/002.1-13285ews.pdf new file mode 100644 index 0000000..a0a7793 Binary files /dev/null and b/docs/Tenders/1-13285_17042026052227/002.1-13285ews.pdf differ diff --git a/docs/Tenders/1-13285_17042026052227/003.1-13285ecc.pdf b/docs/Tenders/1-13285_17042026052227/003.1-13285ecc.pdf new file mode 100644 index 0000000..d588a1e Binary files /dev/null and b/docs/Tenders/1-13285_17042026052227/003.1-13285ecc.pdf differ diff --git a/docs/Tenders/1-13285_17042026052227/004.1-13285etc.pdf b/docs/Tenders/1-13285_17042026052227/004.1-13285etc.pdf new file mode 100644 index 0000000..a75feb7 Binary files /dev/null and b/docs/Tenders/1-13285_17042026052227/004.1-13285etc.pdf differ diff --git a/docs/Tenders/1-13285_17042026052227/005.ADRD.zip b/docs/Tenders/1-13285_17042026052227/005.ADRD.zip new file mode 100644 index 0000000..5677ddc Binary files /dev/null and b/docs/Tenders/1-13285_17042026052227/005.ADRD.zip differ diff --git a/docs/Tenders/1-13285_17042026052227/006.1-13285ept.docx b/docs/Tenders/1-13285_17042026052227/006.1-13285ept.docx new file mode 100644 index 0000000..bc13850 Binary files /dev/null and b/docs/Tenders/1-13285_17042026052227/006.1-13285ept.docx differ diff --git a/docs/Tenders/BID_RULES_182213.md b/docs/Tenders/BID_RULES_182213.md new file mode 100644 index 0000000..7950917 --- /dev/null +++ b/docs/Tenders/BID_RULES_182213.md @@ -0,0 +1,386 @@ +# Bid Rules for ESA Tender 182213 + +## Purpose + +This note converts the lessons from prior SESAR tender feedback into a practical checklist for bidding ESA tender `182213`, whose objective is to characterise and assess risks from subsonic space debris re-entry fragments crossing airspace. + +The core rule is simple: + +**Do not submit a broad "interesting concept" proposal. Submit a measurable, validation-led, operationally grounded proposal with explicit impact logic, clear task ownership, and a direct line from physics to airspace decision support.** + +--- + +## Why 182213 Fits SpaceCom + +Tender `182213` is unusually well aligned with the strongest part of the SpaceCom plan: + +- uncontrolled re-entry risk +- airspace hazard from debris +- aircraft vulnerability +- operational disruption and conservative closures +- the need to improve decision-making under uncertainty + +This matches the core SpaceCom positioning in `docs/MASTER_PLAN.md`: + +- space-domain prediction plus aviation-domain decision support +- FIR intersection analysis +- hazard corridors +- NOTAM drafting support +- multi-ANSP coordination + +The proposal should therefore be framed as: + +**an operational risk-assessment and decision-support capability for uncontrolled re-entry debris in airspace, not merely an orbital analysis tool** + +--- + +## Lessons from Past ESRs + +## 1. Objectives must be measurable + +Past proposals were repeatedly marked down for objectives that were broad, brief, or hard to verify. + +Do: + +- define 3 to 5 concrete objectives +- attach each objective to an observable output +- state how success will be measured at project end + +Do not: + +- use vague wording like "improve awareness", "support resilience", or "enable better decisions" without measurement logic + +For 182213, every objective should have: + +- a technical metric +- an operational metric +- a validation method + +Example pattern: + +- improve prediction of subsonic fragment airspace exposure +- quantify uncertainty bounds for aircraft encounter risk +- reduce unnecessary airspace restriction area and/or duration versus conservative baseline methods + +--- + +## 2. KPIs and performance logic must appear early + +The strongest prior bid, SCAN, was praised for quantitative KPI-based validation. The weaker bids were criticised for qualitative impact claims without traceable performance logic. + +For 182213, include a KPI table in the first substantive section, not as an afterthought. + +Minimum KPI families: + +- hazard prediction accuracy +- uncertainty calibration +- aircraft exposure estimation accuracy +- operational usefulness for ANSP decision-making +- reduction in unnecessary conservatism +- timeliness of updates during active events + +Suggested KPI examples: + +- error in predicted affected airspace footprint versus reconstructed event outcome +- calibration of risk bands against back-tested scenarios +- false positive and false negative rates for affected airspace warnings +- percentage reduction in precautionary closure area relative to current conservative practice +- time from updated re-entry assessment to updated operational recommendation + +--- + +## 3. Methodology must be technically specific + +Previous weaker bids were penalised when methods, candidate models, datasets, and technical assumptions were under-specified. + +For 182213, specify: + +- breakup and fragment descent modelling approach +- treatment of subsonic fragment regimes +- atmospheric assumptions and data sources +- aircraft vulnerability / encounter model +- air traffic density or exposure model +- uncertainty propagation method +- validation dataset strategy +- comparison baseline + +The evaluators should never have to guess: + +- which models you will test +- which data you will use +- how uncertainty is handled +- what the benchmark is + +If multiple methods are possible, state the decision logic up front: + +- baseline method +- advanced method +- selection criteria + +--- + +## 4. Validation must be concrete, not deferred + +One repeated weakness in earlier bids was saying that validation detail would be defined later. + +For 182213, validation must already be visible in the bid. + +State: + +- the scenarios to be tested +- the data sources for those scenarios +- the validation environment +- the comparison cases +- the acceptance criteria + +Recommended validation structure: + +1. Historical case back-testing +2. Monte Carlo scenario testing +3. Operational replay with airspace and flight-density overlays +4. Expert review with aviation stakeholders + +If possible, include a headline validation case: + +- Long March 5B / Spanish airspace closure style scenario + +That immediately shows operational relevance and mirrors the tender text. + +--- + +## 5. Trace every claim to operational impact + +Past bids lost marks when impact was credible but too qualitative. + +For 182213, every technical output should map to an operational outcome: + +- fragment model improvement -> better hazard corridor definition +- aircraft encounter modelling -> clearer risk thresholds for operators +- uncertainty modelling -> more defensible airspace restrictions +- event updates -> better timing of restrictions and release decisions + +The impact section should explicitly answer: + +- what will change for ANSPs +- what will change for airlines +- what will change for regulators +- what will change for re-entry risk assessment practice + +Do not leave impact at the level of "better safety awareness". + +Use impact language such as: + +- fewer unnecessary closures +- more targeted restrictions +- faster updates under uncertainty +- more defensible criteria for action +- stronger basis for future regulatory guidance + +--- + +## 6. Show the path to standards, regulation, and adoption + +Winning bids are not just technically strong; they show where the outputs go next. + +For 182213, spell out the route from project outputs to: + +- ESA / space safety use +- aviation authority acceptance +- ANSP procedures +- future standardisation and guidance material + +Potential channels to mention, if justified in the consortium and work plan: + +- ICAO-related airspace risk handling +- EASA / national authority guidance +- EUROCONTROL / ANSP operational procedures +- future ATM / STM coordination frameworks + +The key is not to overclaim, but to show a credible uptake path. + +--- + +## 7. Be explicit about automation, human decision support, and cybersecurity + +Past proposals were criticised when automation levels or cybersecurity handling were unclear. + +For 182213: + +- state clearly whether the output is advisory decision support, not automated airspace command +- define the human decision-maker in the loop +- state how integrity, traceability, and update provenance are maintained +- describe cybersecurity proportionately if software or data exchange are in scope + +Useful framing: + +- the system supports, but does not replace, authorised aviation decision-makers +- all operational recommendations are traceable to model version, inputs, and timestamped assumptions + +--- + +## 8. Work packages must be concrete at task level + +Several past bids were penalised for vague WPs, missing sub-tasks, unclear milestones, and unclear partner roles. + +For 182213, each WP should show: + +- purpose +- tasks +- lead +- contributors +- outputs +- milestone(s) +- acceptance criteria + +No partner should appear as a name in the consortium without a visible task-level role. + +Minimum good structure: + +- WP1 Project management and quality assurance +- WP2 Requirements, scenarios, and operational criteria +- WP3 Physics and fragment risk modelling +- WP4 Aircraft vulnerability and airspace exposure modelling +- WP5 Integrated platform / demonstrator and validation +- WP6 Exploitation, standards, and regulatory uptake + +If the tender scope is smaller, compress the WPs but keep the same traceability. + +--- + +## 9. Milestones must align with the handbook and the internal logic + +Earlier feedback repeatedly picked up avoidable issues: + +- inconsistent durations +- missing maturity gate +- deliverables landing after the logical close of technical work +- unclear PM tables + +Before submission, run a consistency check on: + +- project duration +- WP dates +- milestone dates +- deliverable dates +- PM totals +- partner PM subtotals +- budget tables versus narrative tables + +This is not cosmetic. Evaluators treat these errors as evidence that delivery control may be weak. + +--- + +## 10. Exploitation must be concrete, not generic + +Weak bids often described dissemination reasonably well but exploitation too vaguely. + +For 182213, separate these clearly: + +- communication: who hears about the project +- dissemination: who receives results +- exploitation: who uses what, how, and why + +Exploitation should identify: + +- primary users +- adoption pathway +- productisation or service pathway +- next-phase funding or procurement path +- what SkyNav will own or commercialise after the project + +For SpaceCom, exploitation should be tied to: + +- aviation safety decision support for re-entry events +- ANSP-facing operational tooling +- integration into broader SpaceCom platform modules +- future institutional and commercial deployments + +--- + +## 11. The bid should feel smaller, sharper, and more provable than the broad SESAR bids + +The prior feedback suggests a recurring risk: trying to sound system-level and strategic without enough measurable technical substance. + +For 182213, the better move is: + +- narrower scope +- sharper technical method +- stronger validation +- clearer operational end user +- simpler consortium story + +This tender appears to reward a focused, technically credible, high-clarity proposal more than a sprawling programme narrative. + +That should favour an SME-led or SME-prominent bid if the scope is disciplined. + +--- + +## Recommended Proposal Spine for 182213 + +## One-sentence positioning + +SpaceCom will deliver a validated risk-assessment and decision-support capability for subsonic re-entry debris in airspace, combining fragment modelling, aircraft exposure assessment, and operational airspace impact logic to support safer and less conservative response decisions. + +## Core objectives + +- characterise subsonic fragment behaviour after destructive re-entry +- quantify aircraft exposure and vulnerability to subsonic debris in airspace +- integrate airspace and traffic-density context into re-entry debris risk assessment +- validate operationally useful decision criteria for airspace restrictions and release +- produce a pathway toward institutional adoption and future standardisation + +## Core outputs + +- fragment risk model +- aircraft encounter / vulnerability model +- integrated risk engine +- operational decision criteria +- validation report using historical and synthetic scenarios +- regulator / operator uptake package + +--- + +## Red Flags to Avoid + +- objectives that cannot be measured +- qualitative impact claims without KPIs +- saying validation will be defined later +- vague references to AI or analytics without specific methods +- unclear partner roles +- weak or generic exploitation language +- no explicit operational decision-maker or user +- no cyber / integrity treatment if software exchange is involved +- no benchmark against current conservative practice + +--- + +## Submission Gate Checklist + +- [ ] Objectives are specific, measurable, and testable +- [ ] Each objective has at least one KPI and one validation method +- [ ] Methodology names the models, datasets, assumptions, and baselines +- [ ] Validation cases are already defined in the proposal +- [ ] Impact is quantified wherever possible +- [ ] SESAR-style performance logic is mirrored even if this is not a SESAR call +- [ ] Operational user and decision context are explicit +- [ ] Standards / regulatory uptake path is credible and specific +- [ ] Automation and human-in-the-loop position are explicit +- [ ] Cybersecurity / integrity handling is addressed if relevant +- [ ] WPs include task-level detail and named partner roles +- [ ] Milestones, deliverables, PMs, and budget are internally consistent +- [ ] Exploitation is concrete and linked to SpaceCom's roadmap + +--- + +## Bottom Line + +The lesson from the past tenders is not that the concepts were weak. + +The lesson is that evaluators rewarded proposals that were: + +- more measurable +- more technically explicit +- more validation-led +- more traceable from task to output to KPI to impact + +For tender `182213`, SpaceCom has a strong thematic fit. The decisive factor will be whether the bid reads like a precise operational science-and-software programme with defensible metrics, rather than a broad strategic vision. diff --git a/docs/Tenders/ESA_182213_PROPOSAL_DRAFT.md b/docs/Tenders/ESA_182213_PROPOSAL_DRAFT.md new file mode 100644 index 0000000..4faaaee --- /dev/null +++ b/docs/Tenders/ESA_182213_PROPOSAL_DRAFT.md @@ -0,0 +1,662 @@ +# ESA Tender 182213 Proposal Draft + +## 1. Proposal Overview + +**Project Title:** SpaceCom AIRSAFE + +**Acronym:** AIRSAFE + +**Call / Topic:** ESA Tender 182213 - Characterisation and assessment of risks due to subsonic space debris re-entry fragments crossing airspace + +**Duration:** 24 months + +**Coordinator:** SkyNav Europe + +**Consortium Partners:** Proposed prime-led consortium with SkyNav Europe as coordinator and software owner and DLR as the preferred technical and validation partner. Additional specialist support to be added only where needed for aircraft vulnerability or debris / re-entry modelling depth. + +--- + +## 2. Strategic Framing + +### Problem Statement + +Europe is entering an era in which uncontrolled satellite and launch-vehicle re-entries are no longer rare exceptions but an increasingly frequent operational hazard. Existing assessment methods are still oriented toward ground casualty or broad debris-footprint questions and remain weak in one of the most operationally consequential areas: the risk posed to aircraft and managed airspace by subsonic debris fragments after the main break-up phase. + +The result is a dangerous decision gap. Air navigation stakeholders are forced to choose between under-reaction and overly conservative closure under conditions of limited evidence, uncertain fragment behaviour, incomplete aircraft-vulnerability logic, and poorly integrated air-traffic exposure data. The 2022 Spanish airspace closure during the Long March 5B re-entry is the clearest example of this gap: a major network-level decision taken under time pressure with limited criteria, uncertain fragment risk, and substantial economic consequence. + +Tender 182213 addresses exactly this gap. The activity is not simply about improving re-entry physics in isolation. It is about making fragment risk credible enough, operationally interpretable enough, and airspace-aware enough to support better aviation decisions. + +### Strategic Context + +This proposal sits at the interface between space safety and aviation operations. That is the central strategic thesis of SpaceCom. + +SpaceCom has been defined as a dual-domain re-entry debris hazard analysis platform that bridges the space and aviation domains. In the space domain, it provides decay prediction, uncertainty quantification, and corridor planning. In the aviation domain, it translates those predictions into operational outputs such as hazard corridors, FIR intersection analysis, decision prompts, and draft NOTAM support. + +The project therefore aligns with the broader European need to connect space situational awareness with practical ATM and ANSP action. It also complements earlier SESAR and higher-airspace work without merely repeating it. Prior programmes have progressed launch, re-entry, HAO, and STM integration. The remaining unsolved operational issue is the decision-quality layer for aviation stakeholders confronting uncertain re-entry debris in active airspace. + +### Value Proposition + +This proposal fills the missing operational layer between re-entry hazard modelling and airspace action. + +SkyNav is uniquely positioned because it is not approaching this challenge as a generic software integrator, nor as a space-only analysis house. The SpaceCom roadmap was explicitly designed around the translation problem: + +- from orbital and atmospheric uncertainty to plain-language operational risk +- from fragment and corridor physics to FIR and route impact +- from raw Monte Carlo outputs to defensible action criteria +- from space-domain alerts to aviation decision support + +The value proposition is therefore: + +**a validated, airspace-aware subsonic debris risk-assessment capability that helps aviation stakeholders act safely with less unnecessary conservatism** + +The preferred consortium design reinforces this positioning: + +- SkyNav owns the software, integration logic, and exploitation pathway +- SkyNav brings demonstrated ATM, regulatory, validation-planning, and stakeholder-engagement capability from prior higher-airspace and space-transport work +- DLR contributes technical depth and validation credibility + +This is the right balance for an SME-led bid: enough specialist depth to strengthen the science, while keeping the resulting capability clearly owned by SkyNav. + +--- + +## 3. Objectives + +### Primary Objective + +To develop and validate an operationally usable risk-assessment framework for subsonic space debris re-entry fragments crossing airspace, combining fragment behaviour, aircraft exposure, and airspace impact logic into decision-support outputs for aviation stakeholders. + +### Supporting Objectives + +- Objective 1: Characterise the post-breakup behaviour of subsonic re-entry debris fragments relevant to aircraft encounter risk, including uncertainty bounds and scenario variability. +- Objective 2: Develop an aircraft exposure and vulnerability assessment layer that translates debris trajectories into aviation-relevant risk metrics. +- Objective 3: Integrate traffic-density, route structure, and managed airspace context into re-entry debris risk assessment to produce actionable airspace impact outputs. +- Objective 4: Validate the resulting framework against historical cases, replay scenarios, and stakeholder review to demonstrate more targeted and less overly conservative decision support. +- Objective 5: Produce a pathway for institutional use, future standardisation, and productisation within the broader SpaceCom platform. + +### Proposed Success Metrics + +- Demonstrate quantified improvement in identifying affected airspace versus a conservative baseline closure model. +- Demonstrate traceable uncertainty ranges for fragment-aircraft encounter assessment. +- Demonstrate operationally interpretable outputs for ANSP-style users, including affected FIRs, time windows, and graded risk bands. +- Demonstrate a validation package suitable for future institutional review and regulatory discussion. + +### Placeholder KPI Table + +This table is intentionally provisional and should be aligned to the formal tender documentation, statement of work, and evaluation criteria once the full ESA pack is available. + +| KPI Area | Indicative KPI | Baseline | Target | Validation Method | Notes | +|------|------|------|------|------|------| +| Airspace impact accuracy | Accuracy of predicted affected airspace footprint versus replay case | TBD | TBD | Historical replay / scenario replay | Define once tender datasets are known | +| Conservatism reduction | Reduction in precautionary closure area or duration versus conservative baseline method | TBD | TBD | Comparative scenario analysis | Must remain safety-consistent | +| Uncertainty quality | Calibration of uncertainty bands for fragment-airspace exposure | TBD | TBD | Monte Carlo back-test / sensitivity analysis | Formal metric to be selected | +| Aircraft exposure logic | Accuracy or usefulness of aircraft exposure ranking by airspace/time slice | TBD | TBD | Expert review + scenario replay | Depends on available traffic inputs | +| Operational usability | Share of stakeholder review cases judged decision-useful | TBD | TBD | Structured operator review | To be defined with end-user criteria | +| Timeliness | Time from event update to updated operational output | TBD | TBD | Demonstrator timing test | Relevant if near-real-time updates are in scope | +| Uptake pathway | Number and quality of actionable recommendations for institutional / regulatory use | TBD | TBD | Stakeholder review and final uptake brief | May be qualitative with structured scoring | + +--- + +## 4. Concept of Operations (CONOPS) + +### Operational Concept + +The proposed system operates as a decision-support layer above the fragment-risk engine. + +When an uncontrolled re-entry event is identified, the system ingests available object, trajectory, atmospheric, and event-state data. It then generates a probabilistic assessment of post-breakup fragment behaviour, with explicit treatment of the subsonic fragment regime identified in the tender. That output is combined with aircraft exposure and managed airspace context to produce time- and location-specific aviation risk products. + +These products are not intended to automate airspace closure. They are intended to support authorised aviation decision-makers with a clearer answer to the operational question: + +**Which airspace is credibly affected, when, with what level of confidence, and how does that compare with a conservative precautionary action boundary?** + +### Key Features + +- Real-time or near-real-time ingestion of re-entry event information +- Subsonic fragment behaviour modelling with uncertainty propagation +- Airspace intersection logic using FIR and route-aware geospatial layers +- Aircraft exposure modelling using traffic-density and operational context +- Decision-support outputs for aviation stakeholders, not raw physics alone +- Plain-language uncertainty communication for operators and incident leads +- Traceable update chain linking every operational recommendation to model version, assumptions, and timestamped inputs + +### Operational Outputs + +- affected FIRs and time windows +- dynamic hazard corridors and confidence bands +- aircraft exposure estimates by airspace/time slice +- graded advisory thresholds +- comparison between conservative precautionary area and refined risk-informed area +- validation replay outputs for post-event review + +### Operational Impact + +The expected operational outcome is not the elimination of uncertainty. It is better action under uncertainty. + +Specifically, the project aims to enable: + +- safer and more defensible airspace risk decisions +- fewer unnecessarily broad restrictions where evidence supports narrower action +- clearer coordination between space-domain analysts and aviation stakeholders +- a stronger basis for regulatory and procedural development in Europe + +--- + +## 5. Technical Approach + +### Architecture + +The proposal uses a modular architecture aligned with the SpaceCom roadmap. The technical stack is built around a physics core, an airspace-impact layer, and an operational decision-support layer. + +The architecture has three main layers: + +- Event and data ingestion +- Fragment and exposure analytics +- Operational visualisation and decision-support outputs + +This architecture is API-driven and designed so that each analytical component can be validated independently before integration into an end-to-end demonstrator. + +### Core Modules + +#### Module 1 - Event and Context Ingestion + +- re-entry event ingestion +- orbit / decay state updates +- atmospheric and space-weather context +- airspace and FIR boundary data +- air traffic density and route context + +#### Module 2 - Fragment Risk Engine + +- breakup and descent scenario generation +- subsonic fragment regime treatment +- uncertainty propagation and Monte Carlo analysis +- hazard corridor and confidence-band generation + +#### Module 3 - Aircraft Exposure and Vulnerability Layer + +- aircraft encounter likelihood estimation +- aircraft vulnerability logic for debris interaction scenarios +- mapping from fragment trajectories to aviation-relevant risk indicators + +#### Module 4 - Airspace Impact and Decision Layer + +- FIR and route intersection analysis +- time-windowed operational impact assessment +- graded risk outputs +- comparative conservative-baseline analysis +- draft operational products for aviation stakeholders + +#### Module 5 - Validation and Replay Toolkit + +- historical event back-testing +- scenario replay +- operator-facing demonstration views +- post-event assessment and evidence packaging + +### Methodological Principles + +The technical method will be explicit and testable from the start of the activity. + +The proposal will define: + +- baseline and advanced fragment-modelling approaches +- assumptions and limits for atmospheric and subsonic fragment modelling +- uncertainty treatment and convergence logic +- aircraft exposure modelling inputs and abstractions +- validation baselines and comparison cases + +This is critical because the past tender feedback shows that evaluators penalise proposals that defer the method, the validation detail, or the KPI logic to later phases. + +### Innovation Elements + +The innovation is not merely better debris analysis in isolation. It is the integration of four elements that are currently weakly connected: + +- subsonic fragment behaviour after breakup +- aircraft risk logic +- managed-airspace context +- operational decision products for aviation actors + +What is new versus current practice is the shift from broad, precautionary, often opaque airspace reactions to a more evidence-based and traceable approach that still remains conservative where the uncertainty demands it. + +This is also where SpaceCom is differentiated. The broader platform roadmap already includes: + +- Monte Carlo-based uncertainty handling +- hazard corridors +- FIR intersection analysis +- NOTAM-adjacent drafting support +- operator-oriented uncertainty communication + +This tender allows those concepts to be developed in a focused way around one of the most urgent European operational questions. + +--- + +## 6. Work Packages (WPs) + +### Why SkyNav + DLR + +This section is intentionally concise and can be expanded once the full tender documents clarify the expected consortium profile, evidence requirements, and any mandatory competency areas. + +SkyNav + DLR is a strong fit for tender `182213` because it combines: + +- SkyNav's operational ATM, regulatory, validation-planning, and software-integration capability +- DLR's technical and scientific credibility in modelling and ATM validation +- a compact consortium structure that keeps ownership, accountability, and exploitation clear + +This pairing is also strategically coherent. SkyNav leads the translation of technical outputs into decision-support software and operational artefacts. DLR strengthens the modelling and validation case. Together, the team can present a bid that is both technically credible and clearly product-led. + +Most importantly, this structure avoids one of the recurring weaknesses seen in broader tenders: diffuse roles and overbuilt consortia. For this activity, clarity is likely to score better than scale. + +### WP1 - Project Management and Quality Assurance + +Purpose: +Ensure disciplined delivery, technical integration control, risk management, reporting, and quality assurance. + +Key tasks: + +- governance and reporting +- technical quality reviews +- risk and issue management +- milestone and deliverable consistency control + +Outputs: + +- project management plan +- quality assurance plan +- periodic progress reporting + +### WP2 - Requirements, Operational Scenarios, and Evaluation Framework + +Purpose: +Define the operational decision problem in aviation terms and establish measurable success criteria from day one. + +Key tasks: + +- stakeholder needs analysis +- operational scenario definition +- Long March 5B-style reference scenario definition +- KPI framework and baseline definition +- validation and acceptance criteria + +Outputs: + +- operational requirements specification +- scenario catalogue +- KPI and validation framework + +### WP3 - Subsonic Fragment Modelling and Uncertainty Analysis + +Purpose: +Develop the technical core for assessing subsonic debris fragment behaviour after breakup. + +Key tasks: + +- fragmentation and descent modelling approach selection +- uncertainty propagation design +- Monte Carlo and confidence-band generation +- sensitivity analysis + +Outputs: + +- fragment modelling specification +- uncertainty and sensitivity report +- technical prototype of fragment risk engine + +### WP4 - Aircraft Exposure, Airspace Impact, and Decision Logic + +Purpose: +Translate fragment behaviour into aviation-relevant risk outputs and decision-support products. + +Key tasks: + +- aircraft exposure logic +- aircraft vulnerability model integration +- airspace and FIR impact mapping +- route and traffic-density integration +- advisory threshold definition + +Outputs: + +- aircraft exposure module +- airspace impact module +- decision-support logic and output specification + +### WP5 - Integrated Demonstrator and Validation + +Purpose: +Demonstrate the end-to-end capability and prove its operational usefulness. + +Key tasks: + +- system integration +- historical case replay +- scenario-based testing +- comparison with conservative baseline decisions +- stakeholder review sessions + +Outputs: + +- integrated demonstrator +- validation report +- operational lessons learned report + +### WP6 - Dissemination, Exploitation, and Uptake Pathway + +Purpose: +Ensure the project has a credible route beyond the study itself. + +Key tasks: + +- dissemination to technical and institutional audiences +- engagement with aviation and space safety stakeholders +- uptake pathway definition +- productisation pathway into SpaceCom + +Outputs: + +- dissemination and exploitation plan +- institutional uptake brief +- SpaceCom integration roadmap for follow-on deployment + +### Placeholder Deliverables Table + +This table is provisional and should be updated once the ESA tender pack confirms the formal work structure, milestone logic, and expected deliverable types. + +| ID | Deliverable Title | Indicative WP | Type | Timing | Lead | Status | +|------|------|------|------|------|------|------| +| D1.1 | Project Management and Quality Plan | WP1 | Report | TBD | SkyNav | Placeholder | +| D2.1 | Requirements, Scenarios, and Evaluation Framework | WP2 | Report | TBD | SkyNav | Placeholder | +| D2.2 | KPI Baseline and Validation Methodology | WP2 | Report | TBD | SkyNav | Placeholder | +| D3.1 | Subsonic Fragment Modelling Specification | WP3 | Technical Report | TBD | DLR | Placeholder | +| D3.2 | Uncertainty and Sensitivity Analysis Report | WP3 | Technical Report | TBD | DLR | Placeholder | +| D4.1 | Aircraft Exposure and Vulnerability Method | WP4 | Technical Report | TBD | SkyNav / DLR | Placeholder | +| D4.2 | Airspace Impact and Decision Logic Specification | WP4 | Technical Report | TBD | SkyNav | Placeholder | +| D5.1 | Integrated Demonstrator | WP5 | Demonstrator | TBD | SkyNav | Placeholder | +| D5.2 | Validation and Replay Report | WP5 | Report | TBD | DLR / SkyNav | Placeholder | +| D6.1 | Dissemination and Exploitation Plan | WP6 | Report | TBD | SkyNav | Placeholder | +| D6.2 | Institutional Uptake and Follow-On Roadmap | WP6 | Report | TBD | SkyNav | Placeholder | + +--- + +## 7. Consortium Structure + +### Partner Roles + +- **Coordinator - SkyNav Europe:** Overall project leadership, system architecture, software ownership, operational translation layer, demonstrator integration, exploitation pathway, aviation-facing decision-support design, and post-project productisation into SpaceCom. SkyNav also leads the operational scenario framing, requirements traceability, validation planning, stakeholder coordination, and regulatory translation needed to turn technical analysis into usable aviation outputs. +- **DLR - Preferred technical partner:** Fragment-modelling support, ATM simulation and validation methodology, scientific credibility, and evidence-based assessment of operational usefulness. +- **Optional specialist partner(s):** Only where needed for aircraft vulnerability modelling or highly specific debris / re-entry modelling tasks not already covered by SkyNav and DLR. + +### Why SkyNav Should Lead + +SkyNav should not position itself as a peripheral software subcontractor in this bid. It should lead the bid because the strongest differentiator is not a single algorithm; it is the operational integration of fragmented technical domains into an airspace decision-support product. + +That integration problem is exactly what SpaceCom was designed to solve. + +The prior proposal material and SkyNav's public positioning show a consistent company profile: + +- decades of operational ATM experience +- regulatory drafting and international aviation-policy capability +- project leadership and cross-border stakeholder coordination +- work on ECHO / ECHO2 and higher-airspace integration +- strength in operational scenarios, validation planning, OSED-style concept work, and standards / regulatory translation + +That means SkyNav is not just commercially motivated to lead. It is substantively well placed to lead. + +### Consortium Design Principle + +The consortium should be compact, high-credibility, and easy to explain. The past ESR lessons show that diffuse task ownership and unclear partner roles are penalised. Every partner must have a visible task-level reason to exist. + +The recommended narrative is: + +- SkyNav leads and owns the resulting capability +- DLR strengthens the scientific and validation case +- the consortium stays small enough to remain product-led, measurable, and easy to evaluate + +That is a stronger structure than building a broad consortium too early or allowing the bid to drift away from SkyNav's ownership and exploitation path. + +--- + +## 8. Impact + +### Scientific and Technical Impact + +The project will advance understanding in one of the least mature parts of uncontrolled re-entry risk assessment: the subsonic fragment regime as it relates to aircraft and managed airspace. + +It will also contribute an integrated framework joining: + +- fragment behaviour +- uncertainty analysis +- aircraft exposure and vulnerability +- airspace operational interpretation + +### Operational Impact + +The direct operational benefit is improved decision quality for aviation stakeholders during re-entry events. + +Expected benefits include: + +- clearer identification of airspace genuinely at risk +- stronger justification for precautionary measures +- fewer unnecessarily broad closures where a narrower action is defensible +- better coordination between technical and operational actors + +### Economic Impact + +The project targets a real economic pain point: high-cost operational disruption caused by blunt or poorly evidenced precautionary airspace decisions. + +Even modest improvements in targeted restriction logic can produce: + +- reduced network disruption +- reduced airline and ANSP cost exposure +- lower indirect cost from unnecessary precautionary action + +### Regulatory and Institutional Impact + +The project will provide a stronger evidence base for future European guidance and institutional decision criteria regarding re-entry debris in airspace. + +It is particularly well placed to support: + +- future aviation safety doctrine around re-entry events +- better harmonisation of decision criteria across states +- stronger institutional confidence in risk-informed rather than purely ad hoc closure responses + +--- + +## 9. Exploitation Strategy + +### Commercialisation Path + +The outputs of this project are designed to flow directly into SpaceCom. + +This is important strategically: the project is not a one-off study disconnected from a product path. It strengthens a defined platform roadmap already oriented toward ANSP-facing re-entry decision support. + +The main exploitation route is: + +- integrate the validated outputs into the SpaceCom aviation-domain product layer +- package them for ANSP shadow-mode and institutional demonstration use +- expand toward operational deployments and support services + +### Revenue and Follow-On Path + +Potential follow-on routes include: + +- ANSP-facing software subscriptions or institutional deployments +- funded pilot or shadow trials +- follow-on institutional studies and validation activities +- consulting and integration support around re-entry event readiness and operational procedures + +### Market Entry + +The first target users are: + +- ANSPs +- aviation authorities +- network-level operational safety stakeholders +- space safety and civil protection actors needing aviation-facing interpretation of re-entry risk + +This sequence is stronger than trying to market a generic debris-analysis engine. The commercial edge lies in the decision-support layer. + +The market-entry logic is strongest when framed around SkyNav's existing positioning: operationally grounded aviation expertise, regulatory fluency, and the ability to convert a technically complex problem into a deployable, decision-support product rather than a stand-alone research model. + +--- + +## 10. Risk Management + +| Risk | Probability | Impact | Mitigation | +|------|------------|--------|-----------| +| Subsonic fragment behaviour is more uncertain than expected | Medium | High | Use a baseline-plus-advanced modelling strategy, expose uncertainty explicitly, and validate against replay scenarios rather than overclaiming precision | +| Aircraft vulnerability modelling requires assumptions that are hard to validate directly | Medium | High | Bound assumptions clearly, involve specialist partner input, and publish decision limits and sensitivity analysis | +| Operational users reject outputs as too technical or not decision-ready | Medium | High | Define operator-facing products in WP2, include ANSP review in validation, and test outputs against real operational questions | +| Impact claims are criticised as qualitative | Medium | High | Put KPI logic and conservative-baseline comparison into the proposal early and carry them through all WPs | +| Consortium roles become diffuse | Low | High | Assign task-level ownership in each WP and keep the consortium compact | +| Data availability for historical validation is limited | Medium | Medium | Use mixed validation strategy: historical replay where possible, synthetic scenario set where needed, and explicit evidence grading | +| Regulatory pathway is slower than expected | Medium | Medium | Treat project outputs as evidence-building and decision-support input, not immediate regulatory replacement | + +### Software Delivery Risks + +This subsection is intentionally candid and should be refined once the final delivery model, staffing plan, and partner commitments are confirmed. + +| Risk | Probability | Impact | Mitigation | +|------|------------|--------|-----------| +| Prime has limited practical in-house software delivery track record relative to its strength in operations, regulation, and project leadership | Medium | High | Keep scope tightly controlled, structure delivery around clearly bounded modules, bring in technical partner support where needed, and use formal acceptance criteria for each software increment | +| Project leadership is strong in programme management but not yet backed by extensive hands-on software product delivery experience | Medium | High | Use a delivery model with explicit technical ownership, sprint-level review gates, external code review, and milestone-based demo acceptance rather than relying on informal oversight | +| Requirements may drift from implementable software scope because the domain problem is richer than the initial delivery capacity | Medium | High | Prioritise a minimal demonstrator around the tender's core problem, freeze scope early, and defer non-essential platform features to post-project SpaceCom phases | +| Over-reliance on contractors or external contributors for core software build could weaken continuity after project close | Medium | Medium | Retain software architecture, requirements traceability, and integration ownership inside SkyNav; ensure all external work is documented, reviewed, and absorbed into the product roadmap | +| The team may overestimate internal capacity to turn domain expertise into production-grade software artefacts | Medium | High | Make software engineering maturity an explicit management topic, schedule integration and test effort early, and require working prototypes and acceptance tests at each major stage | +| Validation artefacts may be stronger than the demonstrator itself if software build effort slips | Medium | Medium | Tie validation planning to actual implemented increments, require demonstrable end-to-end workflows before major review points, and avoid producing paper outputs disconnected from working capability | + +The proposal should not attempt to hide this risk. A stronger position is to show that SkyNav understands where its core strengths lie, where support is needed, and how software delivery will be governed so that the project remains credible and controlled. + +--- + +## 11. Implementation Timeline + +### Phase 1 - Setup and Requirements (Months 1-4) + +- consortium mobilisation +- project governance setup +- requirements and stakeholder framing +- scenario and KPI framework finalisation + +### Phase 2 - Core Model Development (Months 5-11) + +- fragment-regime modelling +- uncertainty analysis framework +- aircraft exposure and vulnerability logic +- baseline model comparison + +### Phase 3 - Integration and Validation (Months 12-19) + +- integration of core modules +- historical case replay +- scenario-driven validation +- stakeholder review cycles + +### Phase 4 - Exploitation and Final Packaging (Months 20-24) + +- final demonstrator refinement +- evidence package and final reporting +- uptake and exploitation package +- SpaceCom integration roadmap + +--- + +## 12. Key Success Factors + +- A narrowly focused, technically explicit scope rather than a sprawling concept bid +- Early KPI definition and clear validation logic +- Strong translation from physics to operational aviation use +- A compact consortium with visible task-level roles +- Credible institutional and commercial follow-on pathway +- Proposal language that shows measurable impact, not just strategic relevance + +--- + +## 13. Common Pitfalls to Avoid + +- presenting the project as a generic SSA or re-entry study without the aviation decision-support layer +- broad objectives without measurable outputs +- impact language without KPIs or baselines +- unclear distinction between scientific modelling and operator-facing outputs +- vague validation plan deferred to a later work package +- diffuse consortium roles +- overclaiming regulatory transformation instead of evidence-building + +--- + +## 14. Draft Bid Narrative + +### Executive Positioning + +AIRSAFE will address one of the most operationally urgent and technically underdeveloped problems in European space safety and aviation: how to assess, interpret, and act on the risk posed by subsonic space debris re-entry fragments crossing managed airspace. + +The project responds directly to the growing frequency of uncontrolled re-entries, the demonstrated operational disruption they can cause, and the recognised inadequacy of current assessment methods when aviation decision-makers need to determine whether, where, and for how long airspace restrictions are justified. + +AIRSAFE is built on a simple but powerful proposition: Europe does not only need better re-entry modelling; it needs better translation of re-entry risk into aviation action. + +### What the Project Will Deliver + +The project will deliver a validated framework that combines: + +- subsonic fragment behaviour modelling +- uncertainty-aware hazard generation +- aircraft exposure and vulnerability assessment +- managed-airspace and traffic-context integration +- operational decision-support outputs + +This will allow the project to move beyond broad hazard characterisation and toward practical airspace-relevant outputs such as: + +- likely affected FIRs +- time-windowed risk zones +- confidence-bounded airspace footprints +- comparison between conservative closure assumptions and refined risk-informed assessments + +### Why SkyNav Is Credible + +SkyNav's credibility comes from the fact that this is not a speculative pivot. The SpaceCom roadmap already defines the operational architecture needed to turn uncertain re-entry physics into aviation-facing action support. That includes hazard corridors, FIR intersection logic, uncertainty communication, and operator-oriented output design. + +In other words, AIRSAFE is not trying to invent a product direction from scratch. It is using a focused ESA activity to mature the most strategically valuable and operationally urgent component of an existing platform vision. + +SkyNav's existing company profile also supports this bid directly. Across previous proposals and its public-facing positioning, the company consistently presents strength in: + +- operational ATM practice +- regulatory drafting and implementation support +- validation planning and requirements traceability +- higher-airspace and space-transport integration work +- stakeholder engagement across ANSP, regulatory, and international coordination contexts + +With DLR alongside SkyNav, the bid can show a credible combination of: + +- product ownership and SME agility +- scientific and modelling depth +- operational and regulatory relevance + +That combination is exactly what a winning prime-led SME bid should look like. + +### Why This Matters to Europe + +Europe’s current exposure is not only technical. It is operational, regulatory, and economic. + +As re-entry events increase, European airspace managers will face more decisions in which the cost of over-reaction is high, but the cost of under-reaction is unacceptable. Current tools do not provide enough confidence in the subsonic fragment and aircraft-risk layer of the problem. AIRSAFE will address that exact deficiency. + +The outcome will not be a promise of perfect certainty. It will be a framework for safer, better-justified, and less unnecessarily disruptive decision-making under uncertainty. + +--- + +## 15. Final Checklist + +- [ ] Objectives are measurable and tied to validation +- [ ] KPI table is included early in the proposal +- [ ] Methodology names the actual modelling approaches and data assumptions +- [ ] Validation is defined in the bid, not deferred +- [ ] Operational users and decisions are explicit +- [ ] Consortium roles are concrete and defensible +- [ ] Impact includes reduction in unnecessary conservatism as well as safety benefit +- [ ] Exploitation is tied directly to SpaceCom productisation +- [ ] Proposal language remains sharp, evidence-led, and operationally grounded + +--- + +## Reflective Prompt + +Does this proposal read as a disciplined programme to improve aviation decision quality during uncontrolled re-entry events, or does it drift back into a broad and under-measured space safety concept? + +If the answer is the latter at any point, the draft should be tightened before submission. diff --git a/docs/Tenders/past tenders/Feedback documents/101288039_SPARTA_ESR.pdf b/docs/Tenders/past tenders/Feedback documents/101288039_SPARTA_ESR.pdf new file mode 100644 index 0000000..970ec9e Binary files /dev/null and b/docs/Tenders/past tenders/Feedback documents/101288039_SPARTA_ESR.pdf differ diff --git a/docs/Tenders/past tenders/Feedback documents/101289612_QUANTAIR_ESR.pdf b/docs/Tenders/past tenders/Feedback documents/101289612_QUANTAIR_ESR.pdf new file mode 100644 index 0000000..ee98ccb Binary files /dev/null and b/docs/Tenders/past tenders/Feedback documents/101289612_QUANTAIR_ESR.pdf differ diff --git a/docs/Tenders/past tenders/Feedback documents/101290642_STRATUS_ESR.pdf b/docs/Tenders/past tenders/Feedback documents/101290642_STRATUS_ESR.pdf new file mode 100644 index 0000000..8815448 Binary files /dev/null and b/docs/Tenders/past tenders/Feedback documents/101290642_STRATUS_ESR.pdf differ diff --git a/docs/Tenders/past tenders/Feedback documents/Rejection decision Information Letter - QUANTAIR.pdf b/docs/Tenders/past tenders/Feedback documents/Rejection decision Information Letter - QUANTAIR.pdf new file mode 100644 index 0000000..d7ca879 Binary files /dev/null and b/docs/Tenders/past tenders/Feedback documents/Rejection decision Information Letter - QUANTAIR.pdf differ diff --git a/docs/Tenders/past tenders/Feedback documents/Rejection decision Information Letter - SPARTA.pdf b/docs/Tenders/past tenders/Feedback documents/Rejection decision Information Letter - SPARTA.pdf new file mode 100644 index 0000000..30b6949 Binary files /dev/null and b/docs/Tenders/past tenders/Feedback documents/Rejection decision Information Letter - SPARTA.pdf differ diff --git a/docs/Tenders/past tenders/Feedback documents/Rejection decision Information Letter - STRATUS.pdf b/docs/Tenders/past tenders/Feedback documents/Rejection decision Information Letter - STRATUS.pdf new file mode 100644 index 0000000..325577a Binary files /dev/null and b/docs/Tenders/past tenders/Feedback documents/Rejection decision Information Letter - STRATUS.pdf differ diff --git a/docs/Tenders/past tenders/Feedback documents/SCAN/101288550_SCAN_ESR.pdf b/docs/Tenders/past tenders/Feedback documents/SCAN/101288550_SCAN_ESR.pdf new file mode 100644 index 0000000..3e3e0ad Binary files /dev/null and b/docs/Tenders/past tenders/Feedback documents/SCAN/101288550_SCAN_ESR.pdf differ diff --git a/docs/Tenders/past tenders/Feedback documents/SCAN/101288550_SCAN_EthSR.pdf b/docs/Tenders/past tenders/Feedback documents/SCAN/101288550_SCAN_EthSR.pdf new file mode 100644 index 0000000..b9dec3e Binary files /dev/null and b/docs/Tenders/past tenders/Feedback documents/SCAN/101288550_SCAN_EthSR.pdf differ diff --git a/docs/Tenders/past tenders/Feedback documents/SCAN/GA Declaration - GAP-101288550 - 870906450.pdf b/docs/Tenders/past tenders/Feedback documents/SCAN/GA Declaration - GAP-101288550 - 870906450.pdf new file mode 100644 index 0000000..7f8e028 Binary files /dev/null and b/docs/Tenders/past tenders/Feedback documents/SCAN/GA Declaration - GAP-101288550 - 870906450.pdf differ diff --git a/docs/Tenders/past tenders/Feedback documents/SCAN/Invitation Letter including the information out of ranking.pdf b/docs/Tenders/past tenders/Feedback documents/SCAN/Invitation Letter including the information out of ranking.pdf new file mode 100644 index 0000000..7f6f3da Binary files /dev/null and b/docs/Tenders/past tenders/Feedback documents/SCAN/Invitation Letter including the information out of ranking.pdf differ diff --git a/docs/Tenders/past tenders/Final bid submissions/QUANTAIR/QUANTAIR Proposal-SEP-211215087.pdf b/docs/Tenders/past tenders/Final bid submissions/QUANTAIR/QUANTAIR Proposal-SEP-211215087.pdf new file mode 100644 index 0000000..193cb11 --- /dev/null +++ b/docs/Tenders/past tenders/Final bid submissions/QUANTAIR/QUANTAIR Proposal-SEP-211215087.pdf @@ -0,0 +1,10107 @@ +%PDF-1.5 +% +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/AcroForm << +/Fields [3 0 R] +/DR 4 0 R +/SigFlags 2 +>> +>> +endobj +5 0 obj +<< +/ModDate (D:20250917065029+02'00') +/Producer (OpenPDF 1.3.43) +>> +endobj +2 0 obj +<< +/Kids [6 0 R 7 0 R 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R] +/Type /Pages +/Count 66 +/ITXT (1.3.23) +>> +endobj +3 0 obj +<< +/FT /Sig +/Type /Annot +/Subtype /Widget +/F 132 +/T (digit-ereceipt-sealing-field) +/Rect [95.0 551.0 520.0 606.0] +/P 13 0 R +>> +endobj +4 0 obj +<< +>> +endobj +6 0 obj +<< +/Kids [14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R] +/Type /Pages +/Count 10 +/Parent 2 0 R +>> +endobj +7 0 obj +<< +/Kids [24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R] +/Type /Pages +/Count 10 +/Parent 2 0 R +>> +endobj +8 0 obj +<< +/Kids [34 0 R 35 0 R 36 0 R 37 0 R 38 0 R 39 0 R 40 0 R 41 0 R 42 0 R 43 0 R] +/Type /Pages +/Count 10 +/Parent 2 0 R +>> +endobj +9 0 obj +<< +/Kids [44 0 R 45 0 R 46 0 R 47 0 R 48 0 R 49 0 R 50 0 R 51 0 R 52 0 R 53 0 R] +/Type /Pages +/Count 10 +/Parent 2 0 R +>> +endobj +10 0 obj +<< +/Kids [54 0 R 55 0 R 56 0 R 57 0 R 58 0 R 59 0 R 60 0 R 61 0 R 62 0 R 63 0 R] +/Type /Pages +/Count 10 +/Parent 2 0 R +>> +endobj +11 0 obj +<< +/Kids [64 0 R 65 0 R 66 0 R 67 0 R 68 0 R 69 0 R 70 0 R 71 0 R 72 0 R 73 0 R] +/Type /Pages +/Count 10 +/Parent 2 0 R +>> +endobj +12 0 obj +<< +/Kids [74 0 R 75 0 R 76 0 R 77 0 R 78 0 R 13 0 R] +/Type /Pages +/Count 6 +/Parent 2 0 R +>> +endobj +13 0 obj +<< +/Contents [79 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/XObject << +/Xi0 80 0 R +>> +>> +/Parent 12 0 R +/Rotate 0 +/MediaBox [0 0 595.32 841.92] +/Annots [3 0 R] +>> +endobj +14 0 obj +<< +/Contents [81 0 R 82 0 R 83 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/Shading << +/Sh2 84 0 R +/Sh0 85 0 R +/Sh1 86 0 R +>> +/ExtGState 87 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 90 0 R +>> +/Parent 6 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +15 0 obj +<< +/Contents [91 0 R 92 0 R 93 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 94 0 R +/Font << +/T1_0 88 0 R +/T1_2 95 0 R +/T1_1 89 0 R +/C0_0 96 0 R +>> +/XObject 97 0 R +>> +/Parent 6 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +16 0 obj +<< +/Contents [98 0 R 99 0 R 100 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 101 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 102 0 R +>> +/Annots [103 0 R 104 0 R 105 0 R 106 0 R 107 0 R 108 0 R 109 0 R 110 0 R 111 0 R 112 0 R] +/Parent 6 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +17 0 obj +<< +/Contents [113 0 R 114 0 R 115 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/Shading << +/Sh4 116 0 R +/Sh2 117 0 R +/Sh3 118 0 R +/Sh0 119 0 R +/Sh1 120 0 R +>> +/ExtGState 121 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 122 0 R +>> +/Parent 6 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +18 0 obj +<< +/Contents [123 0 R 124 0 R 125 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 126 0 R +/Font << +/T1_0 88 0 R +/T1_2 95 0 R +/T1_1 89 0 R +>> +/XObject 127 0 R +>> +/Parent 6 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +19 0 obj +<< +/Contents [128 0 R 129 0 R 130 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 131 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 132 0 R +>> +/Parent 6 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +20 0 obj +<< +/Contents [133 0 R 134 0 R 135 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 136 0 R +/Font << +/T1_0 88 0 R +/T1_2 95 0 R +/T1_1 89 0 R +>> +/XObject 137 0 R +>> +/Parent 6 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +21 0 obj +<< +/Contents [138 0 R 139 0 R 140 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 141 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 142 0 R +>> +/Parent 6 0 R +/MediaBox [0.0 0.0 841.89 595.276] +>> +endobj +22 0 obj +<< +/Contents [143 0 R 144 0 R 145 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 146 0 R +/Font << +/T1_0 88 0 R +>> +/XObject 147 0 R +>> +/Parent 6 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +23 0 obj +<< +/Contents [148 0 R 149 0 R 150 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 151 0 R +/Font << +/T1_0 88 0 R +/T1_2 95 0 R +/T1_1 89 0 R +/C0_0 152 0 R +/C0_1 153 0 R +>> +/XObject 154 0 R +>> +/Parent 6 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +24 0 obj +<< +/Contents [155 0 R 156 0 R 157 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 158 0 R +/Font << +/T1_0 88 0 R +/T1_1 95 0 R +>> +/XObject 159 0 R +>> +/Parent 7 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +25 0 obj +<< +/Contents [160 0 R 161 0 R 162 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 163 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 164 0 R +>> +/Parent 7 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +26 0 obj +<< +/Contents [165 0 R 166 0 R 167 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 168 0 R +/Font << +/T1_0 88 0 R +/T1_2 95 0 R +/T1_1 89 0 R +>> +/XObject 169 0 R +>> +/Parent 7 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +27 0 obj +<< +/Contents [170 0 R 171 0 R 172 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 173 0 R +/Font << +/T1_0 88 0 R +/T1_2 95 0 R +/T1_1 89 0 R +>> +/XObject 174 0 R +>> +/Parent 7 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +28 0 obj +<< +/Contents [175 0 R 176 0 R 177 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 178 0 R +/Font << +/T1_0 88 0 R +/T1_2 95 0 R +/T1_1 89 0 R +>> +/XObject 179 0 R +>> +/Parent 7 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +29 0 obj +<< +/Contents [180 0 R 181 0 R 182 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 183 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 184 0 R +>> +/Parent 7 0 R +/MediaBox [0.0 0.0 841.89 595.276] +>> +endobj +30 0 obj +<< +/Contents [185 0 R 186 0 R 187 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 188 0 R +/Font << +/T1_0 88 0 R +>> +/XObject 189 0 R +>> +/Parent 7 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +31 0 obj +<< +/Contents [190 0 R 191 0 R 192 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 193 0 R +/Font << +/T1_0 88 0 R +/T1_2 95 0 R +/T1_1 89 0 R +>> +/XObject 194 0 R +>> +/Parent 7 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +32 0 obj +<< +/Contents [195 0 R 196 0 R 197 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 198 0 R +/Font << +/T1_0 88 0 R +/T1_1 95 0 R +>> +/XObject 199 0 R +>> +/Parent 7 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +33 0 obj +<< +/Contents [200 0 R 201 0 R 202 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 203 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 204 0 R +>> +/Parent 7 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +34 0 obj +<< +/Contents [205 0 R 206 0 R 207 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 208 0 R +/Font << +/T1_0 88 0 R +/T1_2 95 0 R +/T1_1 89 0 R +>> +/XObject 209 0 R +>> +/Parent 8 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +35 0 obj +<< +/Contents [210 0 R 211 0 R 212 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 213 0 R +/Font << +/T1_0 88 0 R +/T1_2 95 0 R +/T1_1 89 0 R +>> +/XObject 214 0 R +>> +/Parent 8 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +36 0 obj +<< +/Contents [215 0 R 216 0 R 217 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 218 0 R +/Font << +/T1_0 88 0 R +/T1_2 95 0 R +/T1_1 89 0 R +>> +/XObject 219 0 R +>> +/Parent 8 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +37 0 obj +<< +/Contents [220 0 R 221 0 R 222 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 223 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 224 0 R +>> +/Parent 8 0 R +/MediaBox [0.0 0.0 841.89 595.276] +>> +endobj +38 0 obj +<< +/Contents [225 0 R 226 0 R 227 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 228 0 R +/Font << +/T1_0 88 0 R +>> +/XObject 229 0 R +>> +/Parent 8 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +39 0 obj +<< +/Contents [230 0 R 231 0 R 232 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 233 0 R +/Font << +/T1_0 88 0 R +/T1_2 95 0 R +/T1_1 89 0 R +>> +/XObject 234 0 R +>> +/Parent 8 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +40 0 obj +<< +/Contents [235 0 R 236 0 R 237 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 238 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 239 0 R +>> +/Parent 8 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +41 0 obj +<< +/Contents [240 0 R 241 0 R 242 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 243 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 244 0 R +>> +/Parent 8 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +42 0 obj +<< +/Contents [245 0 R 246 0 R 247 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 248 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 249 0 R +>> +/Parent 8 0 R +/MediaBox [0.0 0.0 1683.78 623.622] +>> +endobj +43 0 obj +<< +/Contents [250 0 R 251 0 R 252 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 253 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 254 0 R +>> +/Annots [255 0 R 256 0 R] +/Parent 8 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +44 0 obj +<< +/Contents [257 0 R 258 0 R 259 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 260 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 261 0 R +>> +/Annots [262 0 R 263 0 R] +/Parent 9 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +45 0 obj +<< +/Contents [264 0 R 265 0 R 266 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 267 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 268 0 R +>> +/Parent 9 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +46 0 obj +<< +/Contents [269 0 R 270 0 R 271 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text] +/ExtGState 272 0 R +/Font << +/T1_0 88 0 R +/T1_1 89 0 R +>> +/XObject 273 0 R +>> +/Parent 9 0 R +/MediaBox [0.0 0.0 595.276 841.89] +>> +endobj +47 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 274 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 0 +/Parent 9 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +48 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 283 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F7 284 0 R +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 1 +/Parent 9 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +49 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 285 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F7 284 0 R +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 2 +/Parent 9 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +50 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 286 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 3 +/Parent 9 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +51 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 287 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +/XObject << +/Image38 288 0 R +>> +>> +/StructParents 4 +/Parent 9 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +52 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 289 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 5 +/Parent 9 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +53 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 290 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +>> +>> +/StructParents 6 +/Parent 9 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +54 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 291 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +>> +>> +/StructParents 7 +/Parent 10 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +55 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 292 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 8 +/Parent 10 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +56 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 293 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 9 +/Parent 10 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +57 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 294 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 10 +/Parent 10 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +58 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 295 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F8 296 0 R +/F9 297 0 R +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 11 +/Parent 10 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +59 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 298 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F8 296 0 R +/F9 297 0 R +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 12 +/Parent 10 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +60 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 299 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F10 300 0 R +/F8 296 0 R +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 13 +/Parent 10 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +61 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 301 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 14 +/Parent 10 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +62 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 302 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 15 +/Parent 10 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +63 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 303 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F11 304 0 R +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 16 +/Parent 10 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +64 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 305 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F7 284 0 R +/F8 296 0 R +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 17 +/Parent 11 0 R +/MediaBox [0 0 841.8 595.2] +>> +endobj +65 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 306 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F7 284 0 R +/F8 296 0 R +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +>> +>> +/StructParents 18 +/Parent 11 0 R +/MediaBox [0 0 841.8 595.2] +>> +endobj +66 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 307 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F8 296 0 R +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F12 308 0 R +/F5 281 0 R +/F6 282 0 R +>> +/XObject << +/Image85 309 0 R +>> +>> +/StructParents 19 +/Parent 11 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +67 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 310 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 20 +/Parent 11 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +68 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 311 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 21 +/Parent 11 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +69 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 312 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 22 +/Parent 11 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +70 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 313 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 23 +/Parent 11 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +71 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 314 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 24 +/Parent 11 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +72 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 315 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 25 +/Parent 11 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +73 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 316 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 26 +/Parent 11 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +74 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 317 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 27 +/Parent 12 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +75 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 318 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F6 282 0 R +/F13 319 0 R +>> +>> +/StructParents 28 +/Parent 12 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +76 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 320 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +/F13 319 0 R +/F6 282 0 R +>> +>> +/StructParents 29 +/Parent 12 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +77 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 321 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F12 308 0 R +/F5 281 0 R +/F6 282 0 R +>> +>> +/StructParents 30 +/Parent 12 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +78 0 obj +<< +/Tabs /S +/Group << +/S /Transparency +/Type /Group +/CS /DeviceRGB +>> +/Contents 322 0 R +/Type /Page +/Resources << +/ExtGState << +/GS7 275 0 R +/GS8 276 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F10 300 0 R +/F1 277 0 R +/F2 278 0 R +/F3 279 0 R +/F4 280 0 R +/F5 281 0 R +>> +>> +/StructParents 31 +/Parent 12 0 R +/MediaBox [0 0 595.2 841.8] +>> +endobj +79 0 obj +<< +/Length 33 +/Filter /FlateDecode +>> +stream +x+*T0T0BiiD +endstream +endobj +80 0 obj +<< +/Length 2024 +/Subtype /Form +/Filter /FlateDecode +/Type /XObject +/Matrix [1 0 0 1 0 0] +/FormType 1 +/Resources << +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << +/F1 323 0 R +/F2 324 0 R +/F3 325 0 R +>> +/XObject << +/Image9 326 0 R +>> +>> +/BBox [0 0 595.32 841.92] +>> +stream +xَ8> ٘Ib0@ I-,9lqdbn[q( ZMu*ue=or؇=|mQW^ܳۛ`B`1,\iL,8nobo7q{7,a|Wm:o9;r3KHHu8"؅BCg" ST`y8K.ipg;e: #6d}qai-CMEIeDf'PMs/k|nD{*i;U1O#QJry +b'\~Q$˅}DNnNr-ԁ…$mPhC(̯Fɕ&i% P +xs)2w8Ip-Wʍ3x{3?mX/`Js!ϬIژ| qL%[n-{Qw*T`&2)0 RͤU4E۫m,XKvyzrb6_9*bj_wS.B +p ^ "A]a갔2v k!zI:r?ےjհhЀ#~[Xᣝ-Il."K& 'ӟ2OGR|'&vcܞs "OKŹ6u2؄"*2_p ڶww]8Tkj^ھ[2[N_%-혐)8(Ey4oj"! 1 +_@'fKeU./]>LEQo,!1B!Btx_q*&`1^u@OW>*<|Vf}*q!4$*0 i Ц&iv84S'?T -z!v^z;sDX`]Cq(TR7tOz{MCyL}VJsQR֕X-(㸷^< Ubj/CZ9ء+@U ln HuW~j4@E0>Ԩ>"}ǧ6/_[Y5ί6u(kb4x:IcW,<(QѳM/%)ҟ^-~{Wu}J%饶r˼kUp`PnRG^@1pII umOԓ11uݟۜz^a-o!>wCi>$ 9yܣ9/{w?N,1cw@yOջ2"l6Uʥ4߬~cAg\BN"| +~B\ce3Af$Opy5Z,=6=]dڛ}RET9T#{NT"u7<ˮv/W2IyNmՏp&{皝Un)&}[ҟlh90j=f=}B&16~.W@A![2$OUn§e1OU\5bLOk7-ϐi +endstream +endobj +81 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +82 0 obj +<< +/Length 1215 +/Filter /FlateDecode +>> +stream +H]oH+ez|y>rGZ ZUZ$;5N_g`HD9ṣ~{|-<~ަ4WQsb|`v1Y_0TnVhxg.pf%c]b# \s˜AKxapLe]) 4p:|.p/ Ԟsʨ(4VGk 1(F(r^ + +w$(pS`U +L`hA F.Կ xyrOt<M|'7OP}D B"|?+m]v1X aHew}F'ihha#YblkojA?"Td)4xo:b~L/5hií?A'F4jyHdƀB2 LU‡ۍ0Yuϡk\_w T[C`(1APk ;yZ `qc+`sBeg>gi򲺀ѧzmbGHUH0atE*J&7zӪ\v cZd +:7'=H W@ 7n˙ǰ~ku.H2YcYȞIBו.Qp`8T\E +WXɖ=64kYI87mw uam^q5e :ax$5>oNqʶntPH:$0e8u7^9ֈS $vw1 -F(NK}X|8_Dk "VAUA#Oi"VS3(j^RYZ| +69N}r]NF7z,kD]D׼@׊*J 8qcؠYp+|BkM DyՔߢ[PuU%"Rղf鰩,صK_GPJ:V_,cyZI=lr({*v=MQʶn@J>jl3 "o1> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +84 0 obj +<< +/ColorSpace /DeviceRGB +/Coords [498.077 413.863 498.077 385.517] +/ShadingType 2 +/Function 327 0 R +>> +endobj +85 0 obj +<< +/ColorSpace /DeviceRGB +/Coords [50.358 413.863 50.358 385.517] +/ShadingType 2 +/Function 328 0 R +>> +endobj +86 0 obj +<< +/ColorSpace /DeviceRGB +/Coords [144.086 413.863 144.086 385.517] +/ShadingType 2 +/Function 329 0 R +>> +endobj +87 0 obj +<< +/GS1 330 0 R +>> +endobj +88 0 obj +<< +/FirstChar 0 +/Subtype /Type1 +/BaseFont /MyriadPro-Regular +/FontDescriptor 331 0 R +/Type /Font +/Encoding /WinAnsiEncoding +/LastChar 255 +/Widths [500 500 500 500 500 500 500 500 500 500 +500 500 500 500 500 500 500 500 500 500 +500 500 500 500 500 500 500 500 500 500 +500 500 212 230 337 497 513 792 605 188 +284 284 415 596 207 307 207 343 513 513 +513 513 513 513 513 513 513 513 207 207 +596 596 596 406 737 612 542 580 666 492 +487 646 652 239 370 542 472 804 658 689 +532 689 538 493 497 647 558 846 571 541 +553 284 341 284 596 500 300 482 569 448 +564 501 292 559 555 234 243 469 236 834 +555 549 569 563 327 396 331 551 481 736 +463 471 428 284 239 284 596 282 513 282 +207 513 356 1000 500 500 300 1156 493 255 +894 282 553 282 282 207 207 354 354 282 +500 1000 300 619 396 255 863 282 428 541 +212 230 513 513 513 513 239 519 300 677 +346 419 596 307 419 300 318 596 311 305 +300 553 512 207 300 244 355 419 759 759 +759 406 612 612 612 612 612 612 788 585 +492 492 492 492 239 239 239 239 671 658 +689 689 689 689 689 596 689 647 647 647 +647 541 531 548 482 482 482 482 482 482 +773 447 501 501 501 501 234 234 234 234 +541 555 549 549 549 549 549 596 549 551 +551 551 551 471 569 471] +>> +endobj +89 0 obj +<< +/FirstChar 0 +/Subtype /Type1 +/BaseFont /MyriadPro-Bold +/FontDescriptor 332 0 R +/Type /Font +/Encoding /WinAnsiEncoding +/LastChar 255 +/Widths [500 500 500 500 500 500 500 500 500 500 +500 500 500 500 500 500 500 500 500 500 +500 500 500 500 500 500 500 500 500 500 +500 500 202 268 397 550 555 880 678 205 +314 314 454 596 260 322 260 331 555 555 +555 555 555 555 555 555 555 555 260 260 +596 596 596 445 770 656 604 595 696 534 +527 682 689 285 411 614 511 846 690 717 +581 717 593 540 548 682 636 888 613 603 +577 314 330 314 596 500 300 528 598 451 +596 528 341 585 586 274 291 542 275 860 +586 577 598 595 380 434 367 583 530 759 +519 523 469 314 283 314 596 338 555 338 +260 555 459 1000 524 524 300 1285 540 270 +936 338 577 338 338 260 260 454 454 338 +500 1000 300 650 434 270 868 338 469 603 +202 268 555 555 555 555 283 561 300 677 +378 465 596 322 459 300 356 596 352 347 +300 585 542 260 300 300 386 465 831 831 +831 445 656 656 656 656 656 656 868 597 +534 534 534 534 285 285 285 285 704 690 +717 717 717 717 717 596 717 682 682 682 +682 603 580 600 528 528 528 528 528 528 +803 451 528 528 528 528 274 274 274 274 +574 586 577 577 577 577 577 596 577 583 +583 583 583 523 598 523] +>> +endobj +90 0 obj +<< +/Fm1 333 0 R +>> +endobj +91 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +92 0 obj +<< +/Length 3011 +/Filter /FlateDecode +>> +stream +HWko8n L p͢m Zmn*%9{.)r7 f@VD>=j1;Y^eS6ZU*gZ-^ygn^,fjq,*UF +4~Y{1ǹ2#(c<'\b+g͆9?YFxflU`nڦ%do-8&|fϧ=7nj-sO |]~Z-o~ש'Ie%K|x{F%Y'%LN%5F̋%,4)6\_W$p9(ekˈ{"%7Haa|W@ch62Ӈ8pe fՍn0&SPA`  6HF׫0v b+jVɎ-ZKvSޔ7C);٩R:7,I4,<7,7jz荼vh).F_ͣ, -^}Ll33+rN`k U~gcyhJ~X'/6s$bQ⻁gx5hgj 4 [4USDß'p U1r[:&]tS▄ct1͜0V` 6}Nrr%ze>h?] 3l/'jIm!m] + 6DW7un^nWi{Un<|SIpYk@2VWw?k w ,>zq |0OG"< +9ddhP˧yPКfg#9C3M89=͝@+Kq^rA+3/2%dƓ +gXFuq9qx½g`3ԳYgH e6 |oj]ot7tnS7Rb!; +0j` Ga*6Tf̛U91/^'om)t +==ul':v(Z"XՖB+ikOLz8:b v0,hp<˝K"Q deSoYPt֖77 sAhv'~FoPF t2"o=|=tߔwNi6GDߠ]ۃkB1c#|lwzY^jz]N`/d2aM6Cu>^iwBq`+V6a"V(n h5 +? w(A[w6b*˥mD97CUcݣw&Ea +SKNt:JdRB2 [P^{4E^;;GHl^61Œc=?#vtF4;\> dZm03XYJ@$ V?a<Y/]S tR0:Xȍ d-f: ha#`zlhLeqeFBzjMW"76͠ VXio?}gCn0 `*nkMpV<Fg;AlYהQSG{z+ɤ5jzȠ ?Lb|pq Z:U%Akf^su,TBէ7s,M!F=U t3LQ׿ N8Kpisu=5~_;ݱ@Ԩ. bM-5uX?^Z4G'`Ӑ_ +NhaRձFq +>#=%a xW$$Yĝ^8Q&P[@%OOXN6dHijsPܲBJ+DՕJ2=ߐ_5lQAcvh_ 3YT_w[}&.Lb:&X~,P֭|5A[ aDԑ|ii0Iͺ[gB3\Ga ÊW[Q=:zV)뀈m+ZQ6/]K'CUd +Xqݱ:BT7-&ĸx&OǐJ..(C-2*]Cf\M>k+ߧ^k41VoL w}\p'[5۸N["qhWF-gߝ,j%@I+y%q +Oš$U扮=Y$d)0L;hwF>;C(hDB}?|{Kp89 +ÑGKIOn'p8O2/": \T~ wG=P%yBFzX-^5 +endstream +endobj +93 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +94 0 obj +<< +/GS1 330 0 R +>> +endobj +95 0 obj +<< +/FirstChar 0 +/Subtype /Type1 +/BaseFont /MyriadPro-It +/FontDescriptor 334 0 R +/Type /Font +/Encoding /WinAnsiEncoding +/LastChar 255 +/Widths [500 500 500 500 500 500 500 500 500 500 +500 500 500 500 500 500 500 500 500 500 +500 500 500 500 500 500 500 500 500 500 +500 500 182 236 304 492 492 773 589 166 +284 284 414 596 211 307 211 326 492 492 +492 492 492 492 492 492 492 492 211 211 +596 596 596 384 720 568 519 555 647 470 +465 623 627 233 364 515 442 780 632 668 +507 668 523 466 474 621 539 829 521 517 +523 284 329 284 596 500 383 522 525 423 +525 453 283 524 534 229 227 456 229 808 +534 522 525 525 318 373 313 526 455 707 +441 441 415 284 217 284 596 277 492 277 +194 492 342 1000 483 483 383 1124 466 245 +867 277 523 277 277 194 194 342 342 277 +500 1000 383 669 373 245 800 277 415 517 +182 236 492 492 492 492 217 501 383 675 +350 409 596 307 395 383 318 596 298 291 +383 525 494 211 383 228 345 408 751 751 +751 384 568 568 568 568 568 568 773 558 +470 470 470 470 233 233 233 233 654 632 +668 668 668 668 668 596 667 621 621 621 +621 517 507 538 522 522 522 522 522 522 +718 423 453 453 453 453 229 229 229 229 +516 534 522 522 522 522 522 596 523 526 +526 526 526 441 526 441] +>> +endobj +96 0 obj +<< +/Subtype /Type0 +/BaseFont /PPCZHT+MyriadPro-Regular +/Type /Font +/Encoding /Identity-H +/DescendantFonts [335 0 R] +/ToUnicode 336 0 R +>> +endobj +97 0 obj +<< +/Fm1 333 0 R +>> +endobj +98 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +99 0 obj +<< +/Length 3420 +/Filter /FlateDecode +>> +stream +HWn9}SiXڗ'wL Ҏ~0(ZdԚsɪjGmuIs/M\Fj9%oFoFJJL<6[LXKЏX&lVMnJR_׉};xi(c~;0/s\3|K,XS?u܀^36+`uy>} KԳFNd幞f6}4Sk4nUlǷ>=i;Y!kjq6B1q]~蹾q0/K>s27Ga0ܻ=F̍\1^7<#|[>(_d0NM?T~l  {$,#iKQ;Vq]gƕmvmBC'=N!W%q' JY;EL_Ox3,q='I?a +VBRYL.e.[#pQ<^w^bo\^<1?m]I=4k1F^d(d9aHe9qtd,=?$ؖlu764bQ(qS2{U(4c%l8D,NGa4[HU!s5ٔ5ɇM2e qn>R"ߴySK +V7E/̪ +xV~%[)EnQd,V\3=W%mWBk `T +qknƾLW_*h Y_W3Â^g=?kAO_Lyf?On͇{śmXI6've\ʥ|lXV(ədTb~SAq᰺iQo|N2B3@i_>~ce\9ObٕѾGͺ87>GOȱA0Sx(da<0bE{<\< +Ny޳e~R(*^d^@⒋C+isjD  ٖX +^V7ъ vʊd.-?z~b3AKZ^%Js@5;݊j>87/vi +9ߚZ빚M?XTĕƒ w6hi|$w/ +1E wk$'N ݪ(p#,CغS]1wH-͢$kICw2:8C}H@:BBVͶ+8o +y3R=s}ņ8䡟)λmx-WV8F;qgSh#@̈́VhzfCK9,ۣ Վ7px1E^fNoҐ%50RCNԉzG~m;(fDߨP(8[Z˕- kG -W[T4ҧ#<|;$x ) Hk:@Ӱacj@НR}.qF85*J!R^էc!j?at;G;%BB&fVDo5 Mi7":q؋ր9k ~r_T6ySj.kB &C=uP$zpK c(/kĻIB?;ζ%N^1mx g Iq&9oJPK\xmTRw4E)`/KcOyF IJ(3cƞ56 AΖ\0 L*3 +8G@^1I2G"MK冚]ibI.7Tm~K`.&bD(T,!X}d+.+CʧphW\]7-viu݌4E)'-jGPsB'J}{ _lIkh+ƻv(r\JTTM4fd菲FlN+.=@M@/uۨ隷pk[. kz7F. 0Ii'xG3VQocْK b;_3뷌h:fjuTp39bb #LMB)1alj3nJ`=)1sǿFTO{ +9~)jf.4i~Y(Λ,0~'~^/]H b]nIÍ'l08qZ(|;̺5nNCwf%]/DծԔ0^Anu^Nurkpyޱ +ciT8%]^;/rɽxd\ a>iao)B*E_,pܨU:s~z 舋FIbW㪕Sjqw9ƎE@B""q1{fƓ='v<վJ9P%|7󞞈B$!Kmz%t/A~sF,ݿ ]zvyx ew 7iwj_E`iڜN-I9*r1&mč?3Ձp}DIBD F5Pq>.gA + 5S9}ռGħZ Kijш2pt$gN&ed`2b`pB}1TgF +\J(~'Ԙ*Ree+)_61v +RG"7L[FƏ`!;d52ṏ .v$K`ȍ_bcr46  +GTA\sSS]>mB3`=ߜUcg%^67a`D)H/ Ek99&^ݫZWGä&IkP +(N'BF{\[g+?NMI R0_Z%U'%X9^ b_PU\M ߭'jJQL:ՓSҒMۊ0!kԞao =Ūa [uy uf $+"F +endstream +endobj +100 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +101 0 obj +<< +/GS1 330 0 R +>> +endobj +102 0 obj +<< +/Fm1 333 0 R +>> +endobj +103 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 16 0 R +/A << +/S /URI +/URI (https://eur-lex.europa.eu/legal-content/EN/ALL/?uri=CELEX:32018R1046&qid=1535046024012) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [282.124 609.031 426.834 621.051] +>> +endobj +104 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 16 0 R +/A << +/S /URI +/URI (https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/common/ftp/tc_en.pdf) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [363.873 564.314 499.103 576.334] +>> +endobj +105 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 16 0 R +/A << +/S /URI +/URI (https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/common/ftp/tc_en.pdf) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [18.428 552.314 82.028 564.334] +>> +endobj +106 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 16 0 R +/A << +/S /URI +/URI (https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/common/ftp/tc_en.pdf) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [82.027 552.314 96.727 564.334] +>> +endobj +107 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 16 0 R +/A << +/S /URI +/URI (https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/common/ftp/tc_en.pdf) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [215.015 533.617 403.885 545.637] +>> +endobj +108 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 16 0 R +/A << +/S /URI +/URI (https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/common/ftp/privacy-statement_en.pdf) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [18.428 521.617 93.888 533.637] +>> +endobj +109 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 16 0 R +/A << +/S /URI +/URI (https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/horizon/guidance/european-code-of-conduct-for-research-integrity_horizon_en.pdf) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [86.157 452.017 318.627 464.037] +>> +endobj +110 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 16 0 R +/A << +/S /URI +/URI (https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/horizon/guidance/guideline-for-promoting-research-integrity-in-research-performing-organisations_horizon_en.pdf) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [219.075 428.017 416.925 440.037] +>> +endobj +111 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 16 0 R +/A << +/S /URI +/URI (https://eur-lex.europa.eu/eli/reg/2021/821/oj) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [31.078 350.617 117.898 362.637] +>> +endobj +112 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 16 0 R +/A << +/S /URI +/URI (https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/common/guidance/aga_en.pdf) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [186.708 147.583 355.218 159.603] +>> +endobj +113 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +114 0 obj +<< +/Length 943 +/Filter /FlateDecode +>> +stream +HV]sF}ׯ3}iXKaǙj@4d4 Z$9Bv//&gd,v9瞳w}zOxS|"IHVP$0d_(07j C5၂0~$KeQUM^w%>hAU(9aLD}AB!-7 +0H@ƥE|+-QVR®bq(5AhˍVE=gJ͖i80?)밼xo) t7%죧xmE+Ji0č>POг%469%g+FR `?$އ}7{_6j}* +Py o]a|UȉpǢn 66Z2YaQQ&! %JV:%)Z)nrUMA bur'ZFd[ȋmy?e#A 30BV.p<]}+WxƱ Vg*=p\aZRT-(5\7cTIEy$"iWSE4Dz]8v$XFiUt %A ޢVf!ر4È m8y%:⹣/T@8b0! 'y{izB.-ĥCRxF`p2a1[ә+7>:XnGg#!0Ye >[wPnpq}7^_i8_~&rznsCP:J)N]bR"sp]5sЮX'YTٖkiSXYzWdu,/r=M¤\_n]w%juTLmNM5޻ԯ؈ Lm`z,yFO8@v_h_Q kG` +endstream +endobj +115 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +116 0 obj +<< +/ColorSpace /DeviceRGB +/Coords [450.376 678.416 450.376 650.07] +/ShadingType 2 +/Function 337 0 R +>> +endobj +117 0 obj +<< +/ColorSpace /DeviceRGB +/Coords [288.39 678.416 288.39 650.07] +/ShadingType 2 +/Function 338 0 R +>> +endobj +118 0 obj +<< +/ColorSpace /DeviceRGB +/Coords [369.383 678.416 369.383 650.07] +/ShadingType 2 +/Function 339 0 R +>> +endobj +119 0 obj +<< +/ColorSpace /DeviceRGB +/Coords [17.008 678.416 17.008 650.07] +/ShadingType 2 +/Function 340 0 R +>> +endobj +120 0 obj +<< +/ColorSpace /DeviceRGB +/Coords [47.19 678.416 47.19 650.07] +/ShadingType 2 +/Function 341 0 R +>> +endobj +121 0 obj +<< +/GS1 330 0 R +>> +endobj +122 0 obj +<< +/Fm1 333 0 R +>> +endobj +123 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +124 0 obj +<< +/Length 1025 +/Filter /FlateDecode +>> +stream +HVkoFnia~$MT(V"U<[?wv,-%„ysgp8̟^;e=*tVFgKЙ3J_$+yv5~x܇$svYՍQ`UPp7x"ZlCN AP"yk>T+g!懐T Yf'̰pDȌ| |40,jDB?"-{QF0`4 Ba> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +126 0 obj +<< +/GS1 330 0 R +>> +endobj +127 0 obj +<< +/Fm1 333 0 R +>> +endobj +128 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +129 0 obj +<< +/Length 951 +/Filter /FlateDecode +>> +stream +HVM6W̭\~S-I\Rd5KBi[->R-{7q$!pޛ'wa[ݶޅ> uq3p4_BgkDɴ4TrǤ4Ϟ/wuSw}^h]߂3+nrώ3z$UbwJÑSwDE`2N44%9/FSBb#a"Л}HifIϡy f} >g%?(&4!lJ|0Hj1FZuFcUZf2{)G'YBremoVQJޣGޙ,)f[G?ֈuIBBDQ@Tu6S\Whv~C,1tݥAQdE )A3V )sB_ WyBckoڞ~[/ވ~/M.ѫwUp@K }E|4;J)~aj0L9F8yT4L\-Arn>ut_jqZN +׎ A$ ,>jC\;8g"<}΃aґ +Sۧ( 잠z⧄gmB(VX +endstream +endobj +130 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +131 0 obj +<< +/GS1 330 0 R +>> +endobj +132 0 obj +<< +/Fm1 333 0 R +>> +endobj +133 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +134 0 obj +<< +/Length 2485 +/Filter /FlateDecode +>> +stream +HWے6}Wu&$)[qd嗩Jq$̈D*$g<$o%U;!}tx9}:k;\UM/HϞ/1ad~=cKR*"iPn4ofO_,7yM嵐_Tsf"Cx)c 1x=KR^!z8ԫvt.᭏e- | WNu{ڹ Ȫ%>+Zɐp00u-8<)Q*=$ + 3<$)T7_"X"u'v.Q b/ e䭲кZi"NSY낛,庢K5o1ɁQOd;4X)G$!8Ig\ 4>ZRT4TZP _j{]_bUb>K!5ʢ})4l +|u(1<Ӷײvb2v^2 -#\ȇᴡRQT4N5vrCK #׻KbD2Kx< GJ;!tPDB!hjTtumH8 2 `?7Oq":6*vqcCNR# ')jX\ߊ]7*^@TPovKw9 P"^ +d8@g\׮77%Fvf Kޣ]Gl" W轓0D2QsGs,ق`%jT}X%'s-t{r= kM(86` -Vg!U * G=)$<ޡ،m:AƈSq@WƘdKW K8!v +6sw#?a1*Ѿ@34v$j HKԩ ~ *V~, a$8N 8PFI_4MX|JBݷ ܊gǙC:yI0G !|0A@pGGmIX5;b\!V_+v1C #{yvF1bS`@8ڏ&+[cp a?]>=">SǂG[ĸ%8E}Y ?U. \L> +03[,W~h,̢ (zmRAiMVFKbswSx*rk,: =4 P{S 5?.Qzpu44v}/ >6niگS,N-vmEW_! j4,$ނKE$ɶ*e7n"&/$[.+[ jN p:! )ж"{U)M؊_ES}&BlV8iާT;2'K ҟ*F0ZBJ(nHjF:xَ?RkʘsGxcJ9!<WiQ@n,AN W9qu alnLom;~)R*9N „fYي,ʢ ڪ. c-T(S`,F0kTBƣ3;Z-Z~5G-s.v<_\tN\TnȏCPE9er!{@=!\v.qFɎ7&cR *!O\Ǫ?ʢ` +۬`gm]MMd/>v%[Y*ryIPTreUc:*6{*;)wG~Vcl.v*njiJpJ@')® `<rlE1/>HxIH8FzEeo[)6N˝1ڇvdSN~9)-$)'"Nf˫_Y> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +136 0 obj +<< +/GS1 330 0 R +>> +endobj +137 0 obj +<< +/Fm1 333 0 R +>> +endobj +138 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +139 0 obj +<< +/Length 1101 +/Filter /FlateDecode +>> +stream +HV]o6}ׯ; )KnK lզu(!C(J@rs8G%u!EOC]./m=ryrDPFS,DRIlG2t(*oZQбven=!X187B6 )Jk8fy߲RTyN +wd%kZdO=8e<<+FQ?J=K( #՘ Jq*9)&QF1Qacr RbM?Y_wdw7{ku ʫr\}d6RuBLbH +$PD;_0T +i?R ]6SYV֜'d,(dfeK1RT6c)F,8}MBT KΈ}(+m`㭊 F_*+9FKzV4&Bk|?n,QMAiפ.E !gF{9kkb$UP =ƨ.EII_{ yrmKӇFDp`/TG"K50]tT3[1KKS\QVaU~>Qy /`^g|%+,XMMTgfuUdtϕruր5ˠe/K%f3F~pcgMveV=OaGg[U?".9I6ოfm+d *KQYv;[CFP$TR2}!fW5M(5bp[viQOAjxʖY(Esi}~@o)M04ؗ! +VcޒKSYx@[q@#D񘹼U +uTfQt'QoIYJ[~FڨI@9 +sjXbSm|RJw6" \b +endstream +endobj +140 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +141 0 obj +<< +/GS1 330 0 R +>> +endobj +142 0 obj +<< +/Fm1 333 0 R +>> +endobj +143 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +144 0 obj +<< +/Length 1177 +/Filter /FlateDecode +>> +stream +HWێF}+qVifEJ?1ж{[ Y¶:UuǽGPGoӨ6gH k2][#kݞEEG/`$ +Y>~J2nt(lV}V ޻zn[(DgRq:OQ8 Lw{Tը:iZ;Ȉz{- _JLBRQ _K9;xL,Yd]lW \Ex&6%Qa'J[|qEp)]?bd!7t!{o~T]5Pgz fNv[-+0D?м7,"A: "3V~Q +_1s#mʱ]ڟ,kr;QbJC[vExPaм&V0v8$VQ> **Zl a+u|ʁhM\7Vanb +mvmͣ24C@b-0~5ʵNe9YlYQ^`ˁ>+s6)mVyXz61_@MBT&ߵ% ?NS0l2k\fSH:ڱfQ[ucM+}e2,> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +146 0 obj +<< +/GS1 330 0 R +>> +endobj +147 0 obj +<< +/Fm1 333 0 R +>> +endobj +148 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +149 0 obj +<< +/Length 3221 +/Filter /FlateDecode +>> +stream +HkoH#J-^+gF+eQmҹL42v5v̯/8$;c\ꜧ}#ORlEHyYw65ҙacxm:]lq*2!Byʏӿ{661 kZgkj2K,W܇ sfYj l7, 7<3-,F:\ǿ8:}9~aV-1ײ5õ簂߻9AFz]tP. lwbeZ!y&C',blGkce(y)L9,-<؈)/XmY^.9򠟕>'|f%, +EyVuG溟T?{jhe2Fߙ +U*Tnf^8h\_l'˼(YeT%stE˰2CG>{~5-reBn5r +6z_1Y4mA)L,7=h,2IX 1"UydcG}]4[eqlW@ GtDx}Ə[yȂ‡MlD`U%{X/)FԕhuQPE`=цl/A_cdanCFf'8#@O#V6,\-yrU^o^.SZ;<]!de GߤB&EJ\R\ +&@تg OYX*\" 3$!Mv[bWƦ&u%jK!At&2'#LkNAE66a+2^Gfd.پ/}YέHїn)>[84`-X(`IjG#DZ5;BdՌ c-Rq|u6ƉÓ9ήnj$ɉIB c?^MX`\dPKT5jvRV7\}4vnCOFS5?~e]`80̱ ` MQ +z.`eQ" +s1\˝0|!]0_95deᏠ2Y[ w lʖ^-$&s}@֬'=a( G3\xO3jsF-1ۦƭ:bR_|Av+x +? +kSqF; 4 g?ϰhPaUa/AsxyPҸ,W򗳳n=Pg1z񁤁j,Hk!*(G3`!$fSyޔ: 5ђp8]!8A9q(;J..Y{V@I!ͯA<|<S] K4XR] ̲5W-Ut~FQ-Y.&KqSj oD [%EF`'0HSfz0ܯ0u0i"5qYchoczh#ǢCv0}}4TmxӰ7n;‡2/Jsb%܆ߘ$ +||!4zkuhPLlRk(o>卉QN6^ uiص# 6mkoWH8BVODDIDIw'薭kU5tDBo0a(Y6q7S7.[ >f? b$y'E:HI^ bIҾs5걷a2z΋$n~Zx%Vcݫ'8_ }[R_S^d㞲yiEu!9S;L +k!zeܕRN%#Դ A +}g|LI 1l<ɟeͷgq'|_ eWd\ԥkjBvعmlte3jlxc'*ݮϼ<ڽ;J33&&5M:͆xI*uCV @uЧNY8#D0ɣu钘R!t"HOR=kW0a#. B]K/&qY3ωl]UJc{y3o+f+OƝzv Q-9ꑵ, \t0 <_anj)칃cdy o=tjIB):NUKt%邠WVKVٶIFӺ>@چFN,oskB-,p9K\^n?134`2^w|8ҙ̈pNt8;/Dq |?_sXú M&WZTj>*g9+kI+i?@.-*!Tͫ-EiīFP4)*_x˰ћKUuh툉)kŽB-$5: kwD~-9ޜ6E]5_Df +=`թ̅os[cy϶9|6[Z5Y7a?Lb#p sfNQLVeQ틠h[4Ո+HzLdƮp \Z>Ac> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +151 0 obj +<< +/GS1 330 0 R +>> +endobj +152 0 obj +<< +/Subtype /Type0 +/BaseFont /KozGoProVI-Medium +/Type /Font +/Encoding /UniJIS-UTF16-H +/DescendantFonts [342 0 R] +>> +endobj +153 0 obj +<< +/Subtype /Type0 +/BaseFont /PPCZHT+MyriadPro-It +/Type /Font +/Encoding /Identity-H +/DescendantFonts [343 0 R] +/ToUnicode 344 0 R +>> +endobj +154 0 obj +<< +/Fm1 333 0 R +>> +endobj +155 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +156 0 obj +<< +/Length 542 +/Filter /FlateDecode +>> +stream +H|]o e:5J&4QLH'ݿ߁:QڦoJ%j{N9+0,J!< q9Mr&hTdPvdt3tC"ԝ=1FD" "[@{.(c(<Pd~/+)ͣ + V,"kpcU"Լp*RN3Ff/#S8yFq87"yZ@ՅhF Z&S⧊Vpu Sq=wcF5d݈@$ͩHNŢy% @v8-/!_ L'JD| TAJ}*Iaye -p7W v8 j3^/a/Vl̟/6Ğ:ҪZ72wp> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +158 0 obj +<< +/GS1 330 0 R +>> +endobj +159 0 obj +<< +/Fm1 333 0 R +>> +endobj +160 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +161 0 obj +<< +/Length 1393 +/Filter /FlateDecode +>> +stream +HWKo6 [7EEHEF"-t/(w$IN;CR뵝[ )q8}3ћempQt|ꔖl@tA MgVbYC, XuAQ[-Q7/+3z- +8aIYC^D M~Vs#ǻ8եN N[>j8|W/QBakOI'z1: ha-:u{du$2A(riL/ n3 &A +!>)vhG;4AXLFY"/lx%8DV=;?SShYHz+H84:YFTaJqU,G^v~r^OM :p|푸qרL֭x%RcUl/l==0a/ +Bcb.X[%+J];<rHovlƭC ԉgfE\W Z0O1Էt̢1Qjɍ:|ceBɇ7mR8CuSߨXU{<+ֽy(7 v*+*V9[1K +H7:QuR,dWldV0&cC$oV$ڧuO*lz:;BzU9, ! ǵ8֝ll򖒅myj&{6;5qr0':+6r6ph@=[z>`m5N@NѺĨImTj^~7kqiSy/( ] +rdLJ𑣹}Iw9*n"3J÷[-MKP1jDQ,ȭW'.i4jhFcb> ؄ +Rp"'N :BR2Ǣ}RsLׯ|}ŵ0E ^֐aDm&3W':H}b݊m!']ުaDW?( +zP nĤY;Z췍B!m#ѶKI34Z5Q}n\omt5AV#G?fY_))F`x[q}{1+{As8V9@'81;6=1\tU=K`MܒГ,H VoS,TWm>Df xҸx'Si&Cw.eMce;CԙWsC +endstream +endobj +162 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +163 0 obj +<< +/GS1 330 0 R +>> +endobj +164 0 obj +<< +/Fm1 333 0 R +>> +endobj +165 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +166 0 obj +<< +/Length 984 +/Filter /FlateDecode +>> +stream +HV[o6~pӡyD)oIڭŲ5]Ƣm$ ;TKmtnPBhv+ͭ>k֚Z{k`M4[)0X"o$ ^0W`g=ޝbF2b6:%L$瞀*$St?9\THsV4O-~.[epiϾz=dJT|w*k71<A=rpڙ4 mmV7~`  gmx{Sc.wTwzKlqoߺ+rN/H)'ӂ,_NE2LV/ +' ̹Ws:nƄ% CM[m]y4>p?TLJM[D=B_lK6ֶ+"|xm< nZnqp^M=Vft-byM]N+ܼ*=?dM'\ 3v;xcDPt<*]wPjL`e:<r8RDJcHOwK3hx\VUj;$G_ +endstream +endobj +167 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +168 0 obj +<< +/GS1 330 0 R +>> +endobj +169 0 obj +<< +/Fm1 333 0 R +>> +endobj +170 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +171 0 obj +<< +/Length 1005 +/Filter /FlateDecode +>> +stream +HVr8+ك!AdS{IX#6Ԓ]mD=loMI&iq=3e)~ڛl9TE_އwMմ&mK񅓠u&tMLKC9wLzKMzSe׷ vqf%ͮ'$‘Lip.]4פTqLGuCa_KF A׆{&s6rP"'% +0Љ_a[&}Gm@۶6]XC~Du$FvNF9&'0LsImPXr`c1"*ży1d7əL$cC*~7J6@?LhLx$Mb8KUv}ɞf:'2d"Ku cy7* X1{IibzNjymȹU9n.ngT*42W}BO]e.$au >EKVĽRX壔ePzP}wemǑw|gb'cwb*(XUƏH"W^i@g ?cϯG"iFj'WIpESo+J=pu1JeMIi3 +,T3lo + bnC6h*vBQLƎ'(= {"0)~kQhIWZJR4ꦧbU +6XJ<_vfœ+ Ju5#Ozw]ݷ?PA=#͈JO'%MU :6bprᘥ1JO.as1$C|(=-5$-_mKG0pbN4(TPb_:# ÓXOi~>nYF3((Y/ٝ秄gyFrˑ߿  +endstream +endobj +172 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +173 0 obj +<< +/GS1 330 0 R +>> +endobj +174 0 obj +<< +/Fm1 333 0 R +>> +endobj +175 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +176 0 obj +<< +/Length 2351 +/Filter /FlateDecode +>> +stream +HWr6}**vlĝاؖԮ_4AU)zKܝ!e#$s쭤J4Own糔Os>{-r/eݔ+54FgLiXF%W$K VjY*횠|UhYJ5ǺlPd 72fH6y;?!fhbeʐy1{:o;Wӊf\@aijRpZlfDdfi* i B S([I5Pi< V2CX ]1/+._t5m],3A#JCuf6$acDFlu\t/&kʅELx/\S9\m$g=>$/+ +{= c O`*0:{s(BE'*_Ƶey˛7y52o#JpȻg*avI]-?Sr⺼\@_+|,pɏI^%+L=Br^@ +sa [Kڋz,|0w l;wIy 墼-L?ʶn\yS#e`T+~cD N<uF/ɩFk,c*Ơ|bPC W }U+b=H+;)QA5%fB U/Mmݧ?nhcP"d *B,Ք#1d +SytaVg%Euyb%Aj6!or9*8DrTZPl^O`n}G7x4=;È($.B*fq>RŲ`kb8[-y.9'"ؗ#A$|~qZTIخLULfѩj Fw^ÉfZ6f.TV< d7S=7ohOɫz]9 +I" + J\[N<jZ9C]qL*, {}:Ic~ %KP HRGo/ʑ>WB@\M%; kM=`[Ay kUcՏm1=ȷ JG777fp&4 CnO;+SiD$lb!C7\ ,1TOy?L$Q6hI5QAw|OH7wNR/'dhM ˢOU^v{B1&F C_6x#kG(_ @-S[(j,{\O;bX#ƶfH)L ˕ycD 5"#8&bǽOA$B[椕j֐ ڧRj;n .1:t]?E|[]1.V cdzȏ_W,JL>[O+>CY6ETX$F09'[ʒQ[ PEG +/t;]? ߻tڙ2} e7\2*.n`ZWGod4t et +M 9X ʷGOq(3 (Ixf08D `IMQL5džtyxKz^x͎; N؉Z2,RjVml=orU D.h!b\̱w!}1716;N_t~8"XE*#?dqn]&w: +1SDŨݡK~2YrZBۍnƱJ;tKtKlSo/j}0۩C據;*w${^Jx7^x?;p> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +178 0 obj +<< +/GS1 330 0 R +>> +endobj +179 0 obj +<< +/Fm1 333 0 R +>> +endobj +180 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +181 0 obj +<< +/Length 1223 +/Filter /FlateDecode +>> +stream +HW]S6}#e|lLm eg:j ÿ,+68 1=ꞣbԾLjWya:_:OVo(Zm*\4> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +183 0 obj +<< +/GS1 330 0 R +>> +endobj +184 0 obj +<< +/Fm1 333 0 R +>> +endobj +185 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +186 0 obj +<< +/Length 1178 +/Filter /FlateDecode +>> +stream +HWnF }WcHsv[hl +E۳[GrFrʖ*<$9AcYIkSW&E- + _4‚IXm4Mkl|~ V ޻xi7#2Li8\SU 1!2D,=iZ$G9`Ih!pGI6}Xo*B0 sdu >$(0Yd}z8y\;Ķ&55 PQe T%2%jնvB|^bLl2c9e_gxԟ@ ]c0x0s'q8ޢޔ?7+0D?дK7 :%'imB[z[B?;7¦+ч*4Gei4e̐.Moi!cKnWG/BuTqA [ĦVC |?A,Ҷz +;I4vWUЦ9!; EbZgͤ2Ɯ̸8,. p`hM*5=l=N9Lc"I3TIOwmľQ{(4Ǩifg{Ӥ0)Ęd..Ceu Lx>NWNy/# %\oQ?z%\iD)#L޾wq:Ha4ߌTIHګO2"VwiܴdəU&utyd:$ :!+M`t;B6^YDf jOX\.r2dq8=W!v^, yJ^[Mҁ {zؤWJfJi^~xdvl8+FYacjڝ_'cJV;c$`׻Gb{ä{~ҽ|P~Z1VCκ}]OECL_o5:?~Y_i6.Φb ΅۠ + s{Vl[RXAn'K/ۓKrJ[px%99Op"1ApE۟v褛{T0 Zfwz +#]ʮx,=$6I[mayCgӅ2[cKҕ2 +endstream +endobj +187 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +188 0 obj +<< +/GS1 330 0 R +>> +endobj +189 0 obj +<< +/Fm1 333 0 R +>> +endobj +190 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +191 0 obj +<< +/Length 2969 +/Filter /FlateDecode +>> +stream +HW]oH|09({p/#r$MLrW=䐔lttu|\lF?fOJōJU!3Q2f}X8a- -7E6N2˲*tVEV_źodtk9N y5li<ğv7%z*W 0=Di]%⥨ +պz䅘R =^Tx~` +|RE&*Qs*<(1g1OSye۷  9ԱBe1 + +a'̼z`n L^Ys;Y a**2.g˫' l[^E|RA5{}Es~Tn᠇pYy)A"Go,֛0 hZ.,ݏ?_a2S^r k/ +r|#s33OSڵ&rlqKӎšfq.X*xSmc2;p +"g帍ߐX 6 Q:,7 +)?Xu-mq&AW$Y;7@ᄶ6@Xե1d.Zϸ$ߚ;+ӛrcށ׃Vx6/$+x +«~ -ټC3j5-;AiG7TZfhv%.c/Z ~ɦnHr|{z&x= fW 5OvӾo@CEЇn2"2GvЋ+-ǻBqy:&Eķ?>NG:~ypYaR\J'qC%3ЦGs'(i3|_"V4s" dE>Td r6l|H?yj l̪WZR^lĴ$ lY[c"z5X8a@%|nr16^&yă8֖w6.d x{ -|o h9fZ>5\+1:,Lh0 ߰X)RL=' +FŞv/Ώ,p$O? +r -1 GV +eCz6H"GKHSK'?w7S37Di^8l-,?:vfM# Nz~޶ԃgQ6@j m5c`tw0Ev9s ^ѫ/fG!YusO9; gBË40Ξf +&0<~1J;˫'f1.ThonPrÂ6;Gg kR?r)GGl:hA;^3_|{>%FmLI7f +:,O20 A; ɒɲD)Y`vb-P|;s SmE90zq]޴ϝLUՏGł)bUr. x +̫z 0-́VdnnG:Ru==)A|t{׮UB:+Z/LLuV.Ǵ[0#h~Rlh4܋P\(ѭ r˚K{9nNRFj: eA2Sz|#ec/iVp 9f8fSß-Ʈ婋)|]Fx{.bs0W. `%5aַ?&+u>X7n,y=7|wi9q! ~Sy{y2 :W O{?TF:UJ4oqZ4T'X-,i ?e E/sTS)ҥ3~4 iDޗaHe0!Ƚ=fUrFazmt/x04sd`vbA.Fx6pܦ>IJљVR(H`U?񤬵÷NJQeԙ,"c#4]/%X0H~ +ǹbt. ת/>!gnlSb?bF_|(pt[rMy,Py/LqĔZ}w|Yut4scZ1-g6YU5ͥ;GP1ac +99U#dI P> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +193 0 obj +<< +/GS1 330 0 R +>> +endobj +194 0 obj +<< +/Fm1 333 0 R +>> +endobj +195 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +196 0 obj +<< +/Length 520 +/Filter /FlateDecode +>> +stream +H|Mo0ƂX?8F[%u$MXmi,%Qfw-aVؒյ;;g 8jW Ei!Jm7)d0ė7h%PwjM6j@(A9W E}.oo@de  +ڎ,>8AwKBYpbJ0lUoJZ!-,jP nS%V +%~8,Y=[}*Q$̐#@#=LPUc錝D5cWp +_km=N2{Xr*}O 8(UCB>P@Y)ʧ(̊)_RD;*D=UªG-6éGc36m-[(eHQM5 sSZOfQ09?;\7Gw +^w6밵hYvsShѠUp>R[- +endstream +endobj +197 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +198 0 obj +<< +/GS1 330 0 R +>> +endobj +199 0 obj +<< +/Fm1 333 0 R +>> +endobj +200 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +201 0 obj +<< +/Length 1391 +/Filter /FlateDecode +>> +stream +HWKo6 [7EEHEF"-t/(w$IN;CR];z37zjD@? ߋZVҲ h/"a JW,Kr%u>Xl{9H3j6J bEFV[E5$e⸄4biV[=|+ @m MIA\(,KX7#~-ZYv<ϓE2}Z ?ȪءWqXa" Ip GtSQ7X1܈*LIP2hON؋ z.(-0`{$n@-jӽuk'$/DbmVcأ(O 8fH+E]ʮݵ!'9A.`vh8@_{fV$<7Y`|rm)̽oӬSpoAJA T3JSO[(EHnr:b=!pпvቲY +g(iq"NeEŊ:v+fIIBG5w}w;YW$WldV0&cC$oV$ڧu*lz纸 +QgE7_H,q-.u'=dajA@aGM(ljN`F Z0r;PO VgFl[MS&׀|#Zh]bԤK6hc/ڭŴuͩz@ 92gycp\׉Wunۭ[˦%E5 ([SkNf3 HY?F54B11H l{l)mqu҆Y!)c>B~9hZ "EG/kӀ0N6T׫3@wX/nE&B0_̈]G=7hbҬ=-}!HH-&"9ZR X&=j͑#v'$%,<? /~k5ܧe9L݈^8ӏ*:ɽqy(?䂤Rm7 ;qKCCO 1[M:PhU%*\7;JΞ`6[NW7ʻΗM7ٛo" +endstream +endobj +202 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +203 0 obj +<< +/GS1 330 0 R +>> +endobj +204 0 obj +<< +/Fm1 333 0 R +>> +endobj +205 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +206 0 obj +<< +/Length 949 +/Filter /FlateDecode +>> +stream +HV]o6}pbH-i6#ѶIH9wIɉ:<:<2v]uA_غսKutd_)0X"&B6^XNO!"e~ں]oCXۺ˿#J2uOVFp cJQ>7j30+H߀IB)JXVr=8+NIl#L^SF)k\$)tBd‰Ҍ y +VGoT$ŵD\@ن6*"__-? > Ixtt>SɐhKZL<㘚t"MM +{ " >jS~nK4[Ygp9Ϟg^ 6 %$@p}a DOߓ"Enj7 +  iD4n'k:ܼ;t +1#2\ח'uR:DAjݟwv;,{6I-XH2SY׻ w[|'UCoHi3mROYvpOh* +`*.ѠEӁ壅@B$ҭt@SxG"xrʋygO#μ>58~k觮׶C7lZ㇟g8{B=^o]avBݦqgk-7oI{i%bQ!/?XPL<]*+@dFÝn*ݫq o*da=di:]p$!"Ɲ2r:@8!ۙkUĠ +Z]mĮ!i/}0\rda;4):xrWlŮ.lʈ~1%@ @x&#DJ/%AxzBOQY% +endstream +endobj +207 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +208 0 obj +<< +/GS1 330 0 R +>> +endobj +209 0 obj +<< +/Fm1 333 0 R +>> +endobj +210 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +211 0 obj +<< +/Length 1005 +/Filter /FlateDecode +>> +stream +HVr8+ك!AdS{IX#6Ԓ]mD=loMI&iq=3e)~ڛl9TE_އwMմ&mK񅓠u&tMLKC9wLzKMzSe׷ vqf%ͮ'$‘Lip.@RRsMJEXq\g>]O]qaTo[pԸ}m[g2:n!%rREoBw*o멿 mmӅ5=4Ad^GktidcBz2p !@ +4Ԇ  6H#RR;?ؾ' 9cNqk)ͤHB>6io1h'kC̄<τ'^AM2d*&#TeW٧HJ`A isr\!C(T0M29!1؏3(/>)چ[%zN0vFbNL#jyշ!]VARhVQQ| 3ZdE[.EeY>JY6OYgy5>xG_}I}w&v2vx'6)2"\et!-?qh t8p3z$ff|r?!4\[4\Wx^k9,>H%܍=3h?:*6tqQhvbq[/dx2ߊB(3F1+?pE0m!Osnz*۪\_pi:yeA;Z.tQ~Pog\χCRAR8t7 *N(fqDBŌ %&%>90< q6 +j4rZ{~Jxќg/+ +endstream +endobj +212 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +213 0 obj +<< +/GS1 330 0 R +>> +endobj +214 0 obj +<< +/Fm1 333 0 R +>> +endobj +215 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +216 0 obj +<< +/Length 2342 +/Filter /FlateDecode +>> +stream +HWs6~LL_.iBAuvIX7}LTIڱﯿIQd'71 ow]#\NUѕer\p28*Js&9T8C*ۮZǺY1jM"GsK$R]qቐH +aڒrH[\e443ܞ0w"1fa5N' D999DN! ʔ%_>[Y9@AVjI +3BEn3X)RD +t`\pMQVdQW]7m]X*cFn-IڧʜZeْjE>x]^'i}s].|/2`{ᛪ. >bEΟzzACI\]YWBދ\]&h}['!Ǒ"$[dj_ժpUU;*@d"ѨMv %/e`@4FZ>6d0 6;N",I$0X(<6κ.BʁDQ/ƣ9Aq*43s7"[ZA@@7EKڄ6w''99 +(^h +bY3􏺹 uMQ*ϕo"SF*d`0+sUhW]f|mqM^_5E¤#ccgqkw_$ub%I'+OIӣx.9ifN!&;ф AE.Rc\s3'v,ε$777fK;pBSTt'c )\3E1QmrNPJ!B4s:,Y|bY*'Pǃ|0Yc&ZAMҟ,Į+>_Z6R9}\4P*5F 49:uPSN5곗%^-"ozJaYj Czҗ-0I0IHqa<<׳Ʃy?6ao +Y$g+ +n1CM#GYqSvF=T1@{o1(+s8%0Fg.>="~( +>"d*tyu%qt9NH,3Zd)NEo4|,%K_t w/O3=ә L} )NjBUTr\=]tHǬ,ve> +xO.(cspwNIthFQ[Qg6IxpfĐ ]"A0]$ͩDQd8h(%{/Xǝ'~,O޵%cQac[[mN\Rg`F !gړ%mY](-֒bl| gI`!6:K_N%΀(GqT{須BxU5TzEyHBrMU~vIOc}UD>hr\,i!}ܕ<^|"w԰d&XE%X6mGegC&Z )S? Q`=](z:[jZAJn.Jt+IS.j}0C;=v'{g<UfA|僂`NSQPj +>h z# =(w/0j1jOUq]V݊.@!(1>,@x]Ji\)777fGAr +endstream +endobj +217 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +218 0 obj +<< +/GS1 330 0 R +>> +endobj +219 0 obj +<< +/Fm1 333 0 R +>> +endobj +220 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +221 0 obj +<< +/Length 983 +/Filter /FlateDecode +>> +stream +HVn8}W] ivmע]JjQ,€d3gs}%f\߻vţ˺)k-j:_(%Thx &TQvH67k< +͡}}KV ͞x xʰ1fwK <˓{v.$N+T_s"wI7YBQTcBR$(ũHDDAKv-4~$f)Ě( mRO޵6ۯiQQ=%/CS?ԭ-hS ) tGPt'_x6 N}ؖjedEWOMYḖoRC~sh})::јH]09LC]nWm]`M%;3wUW슸8hL"2:Ӄ?ℝp9/<ӕ@W `ɱ +3x4 4=ڭ> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +223 0 obj +<< +/GS1 330 0 R +>> +endobj +224 0 obj +<< +/Fm1 333 0 R +>> +endobj +225 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +226 0 obj +<< +/Length 1165 +/Filter /FlateDecode +>> +stream +HW]6}WqVq [w*t&+U 8wl{m`&"D{}|qd?U7>Yitdӿ hF  +IY$>~Js]1nt(M^ ޻zj(B,`qyB0wy@ h 0ڧqݠ:>Ԇl;׉|?=uS(&$rG bJxD7Y:R$Ǿ2SoF'#*1BOY ]Peʯ*iz\G +#09;d_&a!r4$i%D*2]( V9=lTbYJN |0L4QsP`湛_VW6 P߇T@h[x|S *JY"œ,@oWAZWm党lcy9bS:Cuh\RV4NgIpq|UIAL'(7e@)ac OiӒ &L/h +vvYR*%TRp,m%IrCW؃V9jDHXI5"nuLFoSs!BL{eڿO*+LP 3uvmg:Ɋ+qrR-xV؀`A&_VdS4es*/"lʄ`A{&%HF7`J{Iuu:BJE}oNpA&5z ,ht +jedzO6kf;G 0Ng!oNDF.&a_E+aXE|A_i8q~8bH砶Pe%?moKǹ xc'5s*9.ET)swOn%证흃 S 쟚 +ςN[gebL;t@ uϠ*tQ=28 J%py&#Wm6vBrM4ew>+b?6Y +endstream +endobj +227 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +228 0 obj +<< +/GS1 330 0 R +>> +endobj +229 0 obj +<< +/Fm1 333 0 R +>> +endobj +230 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +231 0 obj +<< +/Length 2875 +/Filter /FlateDecode +>> +stream +HWn}G?S+}D_0IgzZtrFijT$]IH Z{oGE\7:Q܉k9΄yB.ZqYdG efHLE}+p=$Oɥ^6Zmz6pN7Ɉ~hBkLr[ݩnğ/-DZߪ`e|VTC!=O HR ʗs$|Aop1ǫ\(۲\sׂoxgYs7QVRa|(IXg%J>m@Mx5\x@.6P̶'(6.ƒh&]J`Mĩ~ +D6KG4h[a$v@Fyx[3)#)4<h{'` / e {X+Xα ;n .5գMg7 3-±\628IX%c`!LF%t + yO2W3b bQ$"C,rK5. +C6<ۘG!% -,OFT$ōQOd[?a߽5V ;p:ƞM~D)Fj64r>mm8NkzXB&zam pbjˇCh; +- vvPR+}JhJF8 +wwPDz톖7.uzw>-yo`fvfn="'cE\@PFe`ko?|[:u'\1i3S1")rƎg+- 5Mva7?ono돵d׻s8?e?oavm("i\`q!OOw;ڤ ߑ}'PD4%N #j٧3d?o 鮹wp-WLiQ}L͑:/ {OV /׆I%ܻ;sJOUR\0Kz٭ Q |@ 񶋠n4K,u߿$?28g"K1MwYe+QKDF(VJzXF|B`.G{UJ,^8있2h>mM8gԝ5 +%)i JyM)P'TR5\6oG+)Ji}7oCa Wˌ'~WDKEf԰p&4Tih"4>-aĉiQtiԼc| +endstream +endobj +232 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +233 0 obj +<< +/GS1 330 0 R +>> +endobj +234 0 obj +<< +/Fm1 333 0 R +>> +endobj +235 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +236 0 obj +<< +/Length 545 +/Filter /FlateDecode +>> +stream +H|Mo0 xLчeɻ6lQuJQv8M[I/tY2 wl~U;[w7._Cl^K&4 b&5XnP9 }Z4} CXv/{1)[1*@BPUV q~Vw֡[R)09 Ph;U}ڹEh`iG9/?jL@(ʂQLf:!9ǖrR1h5B3ڽr}&MUz6o0öh{1pik$}]jIƵ=.ĕM6]؅?űLB`Vj@$HK~cjط̮,pA͞<ɨ-Q1Nd7.DXLq;^+š^U [> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +238 0 obj +<< +/GS1 330 0 R +>> +endobj +239 0 obj +<< +/Fm1 333 0 R +>> +endobj +240 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +241 0 obj +<< +/Length 1393 +/Filter /FlateDecode +>> +stream +HWKo6 [7EEHEF"-t/(w$IN;CR뵝[ )q8}3ћempQt|ꔖl@tA MgVbYC, XuAQ[-Q7/+3z- +8aIYC^D M~Vs#ǻ8եN N[>j8|W/QBakOI'z1: ha-:u{du$2A(riL/ n3 &A +!>)vhG;4AXLFY"/lx%8DV=;?SShYHz+H84:YFTaJqU,G^v~r^OM :p|푸qרL֭x%RcUl/l==0a/ +Bcb.X[%+J];<rHovlƭC ԉgfE\W Z0O1Էt̢1Qjɍ:|ceBɇ7mR8CuSߨXU{<+ֽy(7 v*+*V9[1K +H7:QuR,dWldV0&cC$oV$ڧuO*lz:;BzU9, ! ǵ8֝ll򖒅myj&{6;5qr0':+6r6ph@=[z>`m5N@NѺĨImTj^~7kqiSy/( ] +rdLJ𑣹}Iw9*n"3J÷[-MKP1jDQ,ȭW'.i4jhFcb> ؄ +Rp"'N :BR2Ǣ}RsLׯ|}ŵ0E ^֐aDm&3W':H}b݊m!']ުaDW?( +zP nĤY;Z췍B!m#ѶKI34Z5Q}n\omt5AV#G?fY_))F`x[q}{1+{As8V9@'81;6=1\tU=K`MܒГ,H VoS,TWm>Df xҸx'Si&Cw.eMce;CԙW4 +endstream +endobj +242 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +243 0 obj +<< +/GS1 330 0 R +>> +endobj +244 0 obj +<< +/Fm1 333 0 R +>> +endobj +245 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +246 0 obj +<< +/Length 1598 +/Filter /FlateDecode +>> +stream +H̗rF|>&f_rl9qX}% lK~`ť*R*327?.]T$OlIy^_]s T7LlG4S#\bLAUwѡCo4Z6Q+p%J/VF[jo٪lT6U,y ;'phA*A`#IP/ ۺH/ .T _1 41ʂbLX>](D[<,Z 4nmHZ@10<8 ZQh"0FT >k2eoB`87> w֗37N' +&9vߦxouÁyLȬ"Jj~`sяLplhݩЫ/ƢޘQD# R_uЏF2N jEsP1Z PaeCo1B+ +Q+1l^ K*4<}av?~bx_gx#QՁ2|zs ѺH0>@!V]t).Oԏ_ -qVk&G{鮬kKB)tE8Tk:t6#f<_~(_gp;;o{@1_#68/,p¼ ye \Xe27I[7SdIE攁gkjK[b mER5KZ@.YM=4q#!K=;F:^176p2 -/!(=P2Ȯېf;PILڎ^eYAY޾ibJj֝10O\5fT{#B@i*_?I^XO\첮8Q?A6¢ .j|N> @&c-MB%ZcBNH5 RKD}M 618 +aP@o 8#9knD5A::>>taC ,1C8eA9`>p_zY)P c;܈j:~F!́ܔ_6ªQ ta0,kB5tHk tnX4M:aQ=sHW4AUtJx? ny% &0gLͬy.lhB5smG!ƜߗV(bsa f`gsAa MhVMr#6„ ZP \Y 'gupâNÝZ4BX&oE^2t77p뻁 V4,’;"j=됩}/[{=?.6`洢￷Ь[l99v@832gF]iDdZⶇaU:Te:8|KPNlN tX܇u¢fVªэ2v5zX+d +endstream +endobj +247 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +248 0 obj +<< +/GS1 330 0 R +>> +endobj +249 0 obj +<< +/Fm1 333 0 R +>> +endobj +250 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +251 0 obj +<< +/Length 4797 +/Filter /FlateDecode +>> +stream +HܗK8xZt1H=dd簀Zfwk!K=ܳ~$K^6 HT"Ub~"HWe$?dI{Yqxu&݊rm 'cY~unӸ(s= +}z.ZG-y S!`BKx/CPvGPK\36"LRIF&QVP.eM)p88o⾏ÞKgU 0alt+Vp2Ì  "nDP(nOY%3ۇbmI+A\) X8` Bhj F=TՑuB +U?^>DϩX꒨b]4(z3z! ȿoO ku"VП_Q]RZAJdŞc1TqeVշL^k^sndWJ̩bU殹6/%w TWT[]W#hu¾u{P|HWF?Շ̄|^Nit&=J{*dKUvJG*2ݯhE$9ƀB#S+snugu3i]K^7xTjrVu&NRo}Pg+y MW ѡAc4hYk*]22xo] Ptrڛ<6q7t[|J}i.w`Bڨ{DbI8KAlxϮn}1[jw.r_5<"^ Z%<\]. 8DqtS̥ L`C}NR ͰiǑP ~[ 1sp蓂zR!/iq tM* ` %Kx/-ׂ`s<fICa^Qe# ct>#ϱd}KK=-e*ֵ)ֶ + l1KRJx'Kx.T+)֖pM®oF[@jg'F4PnȰ`فTOR2igiWE +"Qr=}}W, h 6WW!|C = \A5R!QQvσt'd N >` ;3,àhoh [Z\>N0ѝwXAs'BZKTI#X]ݎtN87Vܒ԰U8.vi8|S̥G9Aj@@!` Qĩ?Ciav.N>+z۾BjM0 1Ov٭C*D A0Gm@;G﹀A8^3BuT-P^?>>TnƊo?y,G)L# k /p+<||F{jN!yVnW@pI7 P23hԿ0:v6@=\k/~{D,=鬀zv-kP/aUs@Ҁڡ*v\XQ`,;JkUԟ3o2͸?<Dz1t Kl9|x>?v4h. [׎Zێ* 6%Dy1%<%<{Jx*֕XkK"v eϷ #JpĽF&C*䇡{PIWqȼ0A2\{W u$=Y$"N=LeĸOַt&l]kmIOURһK=%<dJxJ%\^HۥgsbN'nAes=&aٕpc&<7Jt]٤Y(;e-eF; p`1 cgjCB57H]ݎtV6Rڂ԰]*9PvaP-PNcZa0cS` )W}, "2/<4;i;qx9->8 ع@`> +y'B<ͮ3yc{vu;9AXyK[R\zܶ8~cUJ")( +ڠ6KԦl4߾CC=W|Y$M΃8y] /@{<Жp yJ1b1\ǀ΁תYzپWY}z槫,z +qʪ [y>WW GQ(8j "]%h' '$pu͇3H7\אnP.s?"`x7i6tsp 馂$M2aГҍvoHү!! 9C%% )!ux}uE:0g섅wF\ hQp|GaA˸coٳІX*1A:s!eY Wo%'TLD}r,Ý&2dȜ6́1L3Y  O伄ᎄ위uV<= OqowƁa +?4s Ʌג\݇OEU\;tW"].D:0=q!r߭ast, (c/?x0T=Zo#јuXk8?tiW<Ӧy\3֭3R%,E2g(r҃[&6[+QKpDٹ5g[%j;q ![ Hca +%]8"};W?K0(&>R?ޒ>/R=v%|N:p":^#kͲYR2@|@a?Oӆ~7Y)5(;id ȧq{/^Pbd0,6kR]U L,iBmb:ڜ@"E$V9s-X{uEgL()[Xz+*1$6(~=shcԷs4w  G:Mb\vWSKhGG ^ "#(0@)+4<|!ؙ4uwg+> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +253 0 obj +<< +/GS1 330 0 R +>> +endobj +254 0 obj +<< +/Fm1 333 0 R +>> +endobj +255 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 43 0 R +/A << +/S /URI +/URI (https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32014R0536) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [362.459 556.953 409.939 568.973] +>> +endobj +256 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 43 0 R +/A << +/S /URI +/URI (https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32014R0536) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [18.425 544.953 76.955 556.973] +>> +endobj +257 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +258 0 obj +<< +/Length 3314 +/Filter /FlateDecode +>> +stream +HW[~7Y`!%fE>X]I"iYl'y1!swݯ*dnRuMFM&͊F~h㐡$8ݗ̫mlgE0NF@abJD&=BEEQ aIRO3mm}|%5TCes}4t2֜ +(N{uw릮^>_f ;T + ЇWE5bBPH˜"]jV9["nC #zJcM@q̋)C!ÌQ뗿K0~M8a=㠇uiU$Xz7H! +zV~L4}Z=-kȒ{EyR/.MQEn+̳P KTۃA7:T'SQUjwuQ;Ct=@4LY6ydLm YU*[ V@jRUÛq$cALb\(ɡIZ 'mBޢ_Wb.B! SBB46tCW je4*J"!ׯD.@K{ϗ#!> x[u` O@iOޞ$DV [16A8 OL>}{|k_{^w$8nOᙤ4bBX91ԾCS6:Efɼ2f<~#АiT|c=l8#=S>K"#3Ke d)ЭWW6MK)sᘆg)'O4?O(Ɍc +zPœbP?տD>$,a} A2[U^>8PxmIb?:,bE+sԼ&Mc5iNGh@I z'{Z&LR0nG|-K|J`' zw;=}E]gϫ qPef[twjOeYZŞMFc7 M֘%0 f &Ԥ)cSh#Ы#t'z FRU[EdFu6Pqs0s8r4N@?'刣5>@3>g{[$ UMgz#EN:^E{-*I[۵n-e]7vNVk ANq©65HVXG qQR5k-,.r#C(Na +*4jX%DcE%Y奞"'hBV]n]'ϝy-O3zq(界` ]+Jّ ϺPFk""u_@=Ac[:撜 V]:=lWBMY<4ruɋ#W.\M\[nNcdPL+υc9|ɋS`UǃҰLJ71)9Nb!'C#{?;T ؎wO$iLuc(u4~>0g~LHkC2Y=Feh#wS-MQ7"`Zw-kl E0XNC$zh ɄC!b1('O꾎+cޞ+c)ũ0bW)N\ˠ|cğN[|/|SYs^*)r +y9b^9wh۷,o€<%1Iw0{hzg2#&Rgc~8y xYsǠz}cc#.v8A\1&.`9%S viTZɎ6靑k">50pޱ0GH4O׍Id;Q'G<7Y> 6V|9FQLl޵$V6BF[ᭇRb_̣fq>H^7@U%/mGʦHwoZ{ ;@ + =я+{=śæT+uڲ"5WYy > Fo@)J?̻ ֓=ۍ uF\Xw))Bc>h re[XL1`vxO^Nx* i> +endstream +endobj +259 0 obj +<< +/Length 41 +/Filter /FlateDecode +>> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +260 0 obj +<< +/GS1 330 0 R +>> +endobj +261 0 obj +<< +/Fm1 333 0 R +>> +endobj +262 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 44 0 R +/A << +/S /URI +/URI (https://datahelpdesk.worldbank.org/knowledgebase/articles/906519) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [123.676 744.245 302.706 756.265] +>> +endobj +263 0 obj +<< +/BS << +/S /S +/Type /Border +/W 0 +>> +/P 44 0 R +/A << +/S /URI +/URI (https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/common/guidance/how-to-complete-your-ethics-self-assessment_en.pdf) +>> +/Subtype /Link +/Type /Annot +/Border [0 0 0] +/Rect [239.674 456.744 430.464 468.764] +>> +endobj +264 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +265 0 obj +<< +/Length 1220 +/Filter /FlateDecode +>> +stream +HVko6. ~Le=ep` m``%f+*)9~iu$[y!YwF57$9;$NUcoY%Mp>*V4}4 +(񂅜8Z4"KD9 '4`ktYRԄKxȣHy4ڙ&pv|'ԛ٫=GMEn.i+ qQ'!Ka{b++Meaq DŽ$WxϢ<5 SWCơeqi7V֫Zim#źzGD9Or;ZL聂(&,)q<87pܭ$Ÿ=B"A4PKTru]BTfW+僩uֲ-Z#;HhGvk뽒[Yn_T%ZX>jw=#lLs{fhٝes_+eÐC姞 D +Gr+KV_)\WMg + /5l ~hϨFj UD(-{ Clcϥ;ˍ0E> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +267 0 obj +<< +/GS1 330 0 R +>> +endobj +268 0 obj +<< +/Fm1 333 0 R +>> +endobj +269 0 obj +<< +/Length 2 +>> +stream +q +endstream +endobj +270 0 obj +<< +/Length 2796 +/Filter /FlateDecode +>> +stream +HW[o8}7t1bHޗAYLgga UmR_$˶U.?~fƈ'I^/6EmeUf)) #,g3O"Rf;;\l ⌋(hes+pYuiYU^~sya#'4Y7x?ENj^Sƈ`LOy6^.'m +/X|>a[YD,w*א6h Z C2ˬz$RTJlVuu3!E$uv7h)r"D&6Hk7\,b ꖼ$JeL.uyWϯn_MLcn*U%lzУ^{QD]_tQHÀ?iۅB,Svj$>si`~(t֙"I"2q ),EI$,(l,_d:?r$ˑ?H:OjLT"SPu)Hzkkaמ!m"$8=mey1I4g}gJ|v\ҙ"CLV^2]8K+8io0b 3Y03U鯰"w3GQY<7W`9<4䑵,>mp#7w cAb a´o^F#b4#)쌡 hqE ys`! 0+sgeWsAאw1H[|Ec;ĎjŚ2#nDaöS LE?"/OBJL><UvPށG "?{5v-"e>Enfi^[ygOi;9-f~m3N]f0 kLKz f:hǴ:w/}7!{TiC1- p2 +)^ruY& +RMN#MvlJ,$q l2i{TXi11܁1 wt`2tʷi:އV75/=uJ?a?=Qb̈Fz%;1´ $1N38Ŧ2L L1LiCVױP/zݓ4fz<롡6(:iC'O< E Ljshm6dLӞH3z>D{`n:+Iokjd߷s*,D)VUK,<Ljd <H1,"+%^8H0gwAOcʽ5dt4B{.Ad]1GךeDmR~ Ukae +c'MW0HNg`\%IʢGs.ɢs o<ϫRrqƚ,Ër䙲 c~ҊgIF;kej@F}EFQray TlkUurK}kWC3?ɲ,^2@oNZj!5$ "r +s6&DhV.dYHgD +օ갛N +^RSR@ L&| 4)pHO.)9e@bx^ӀBANb^PH]^X|8奦C6Zv'lGSR3bxF+> +stream +x -53P0bdvr.{Bz1[K>o / +" +endstream +endobj +272 0 obj +<< +/GS1 330 0 R +>> +endobj +273 0 obj +<< +/Fm1 333 0 R +>> +endobj +274 0 obj +<< +/Length 7126 +/Filter /FlateDecode +>> +stream +x=rG? /hǠUէR=#ɲ${#Eǘ"i}ʬ+BDC0tWWe}U^_,g=zwqѻǧק|K?,W;;'g>|P0fД|׬gWˇ{>x=|jf5/[znm7;$g^{ogE3?+w0gSlNӗЋV06XE=S,UZ]|5)8f1Juۂ5E>m )Wg.ۯQƺ- +A>i٥hʶ,DntZJOnщTހD +{Mo;ZJtΤ{luZǺ6-J{\,p-q'P uS󫂵 yR~Y00-n_r +GR'qkьV*$?6zz9F`*6Gqȱ9P\H3*f}%ʪWP#d/D `I1ۦLSq |@`$Uo@1\H>d#r ԛ"Kxy j?p q{ g|Jα w]sԄrGOI~|܂Tj L.ܾTKcK]Rih8r_u4ƣknêFw<[TRٻie&nךe-\ '`nm+8T5HY JW>: ؛n p}I]߆5&NGd1]ec:hd=-(v}ZM'Yd2?e7iӗg2麽닏ݳeO%Oں*p0Ie8ǿ8ufw;ߓx^r\H5rYe:sGR~јώ|Q+Ak\2{?.(k!>4}wk'^\A(w], 2j#p7͠74S㦁$<ƿK;-IJ6-4LŽ@z) 0QC➀G6մ`I^*QՐgr9{r?>U^>汞*4%pԧOOg2Z !:@!˳Uu)OƼb\R]agjDD ),uP(+jaQ82rB}[SUX . hlj:Lf6$: MŢ[~]w$M@ D@p?O=s*5rCAwSԣ(Z4w`\{] </? ~X=-VTBSow0]0A{&M +=*Kzzaxށ7K7׳z6!":pQg4!Z) k/Rnw/챷No{wq6+2eRr0vrC唫#r4~}aʛPb4fJȤF; p2ɝg% %=xtL"pjR-0[G~zr`F0pzM0,Wlt[ .Dd +u +e*mK"q tzrd|uJL"T]zEr(:ByAyXK|`+p/ިą?p!$ҬSbojIGsp*/2(;ͻ!eN=k8-7hBwBZ3D~5 Vx fcY_g1UxF`/Ps[v:@bH`!5+Xx$\=٘P IjBY}-1nq5%֯VnKo1mȵ;GgU?JO)Y|Wrpn;+ oLצs ]")^R(r=б#d /Xnpyd&|^/رbq֐w`oz7pLDa :OܑwUc4%ܨw^l̳Ŋ䕦$l |w( dg%~k M$!AN +Ӟkdn6t +Hew+`w_!M/JLa.-E'^,$`lYy? -nxj048:DI+!+E!,s`X>arK{(g-G*áu]rpH2a}ATJMO^գȀ]Ktj9o u{jjN%j߾ծQ1HW,pqV!?B.Mhz9nBF'*Mf'p0=Yp*mu+w9h93Ad+hR>ro`h1uO͚Fpcb YiRZ +xG> b ɪ\8J%Y=ūnOvbTbCP +8JjB܏\a|XWO(,以)EFfnУV="ڌ;9 b0.~ $MNO`d?7լBj\['g+m8#Y0m ѵЊFQ&PkCTítL)7ܭCӖL(pr8#{{.`Ql`É 9ׄT=n2qY;̾vQ0eNBwHL$DHp7uw=m8b\x;h2R)a;gk)fC6(G>7㘗66 +&l- Vtr-;>Կɼap[@0z_ DGI?D; JϽZ1r1\akePbÔQDw$QcN$-g2~;kF}&Ptppp\VN4n.SE¯Nyg: +Dڴj3.hKFtiwQN!Ҷ¢q(0d6|,?~-5AzLHQ:bvD1=o ֘n4=q w"W=5DCU\B6/Ѷ*7r֥4 hfZ {K[#C\2>*/Jo:oʹH_uu"\C烌)@4 +NaQɚ- 0d +ϖU}h#I:"l]k6L{*R'ucR@eQ[M}MgKmQ28].iJP MÃ9V0cߖC:|Nc-떸^8ᰦ 97&iKS&yafb䀮HPCe .Ml7gcqc©i[ p[gsEwk+1 L$xWku.ϑ? գ@?"m:ꃮn f?e/Mg}*DzsH sw&&&/b"' +hVfdjnGD;Yu߱HPԬOtݑm\GyrQߊ8A/50$a2L,rς f +x!< +Dwz ZdmC +ʰxeI qc$RFJ9^A2Z]%ůM\SdiGY/o:X)mB1N=oƤ" +1gީ >Y=u %x֫+^&; La4^O"ʢ? +-f^_7u@ 0ɼdDaxK.Bv}g$f*>J%z]9f,>Sn^H  +y_d +r,`pbɭ ldԸ(> e.|8{.DXYWو0"wkGB?fVI')~i1 ;aAH`Lø.C +J_n]R<݄vA>W]R! +y.Lcj*gTvrZW^snNvMHV.M x +sQӢtĭ@'a+%bNHFyYĐ+хmHb*b޶S1m񎷼vjH!jxˋ/fHV1|Ϧ&>Z?ecscuz谌9"h@smL\mqTIF:dO4$2bHbd * )<q.BV ;KLVpKR7E1Mkd״ULL 7|%nuH*w>HwQX3a)%KKo$nM Hw 'PS{+ DzNΫIv5z{V[KT +.*9ڔc.X+?6Te:{VPnEJ)ef=OP&b_$HNP Aw_绅qQyZKD$t^g]?:uct +c8C.Y.&U;cc,}mlT+F'4Hb*$sSAVN ;j9AsaʩYsI6N6h dkED6WێzkjJTe2DhPą8u0ľw}XEG7WA_vM昵;7LLs(aX'%uCSI&T{ó+aY؃vdlX+JHǒ<@%qoT-]޵|=V At>sK*h_76[:e~DCX4jN&6v(Z8`dԡf16EU'6;8lp*uu#[ɥk_ $_/ڢ;_#it"wO;-tF_J 5!x6S-u8V0(rt`yw-WŤ<_x$ȫ3sDP1i"2|_UM3zqN/Ď +z3;P7 \q `J6xS ];}y>L}kk0FgkvwN%Ǻˍpt>6ZP k۱8M'@.N:Fu ߇XM  w;Gbl\l,I)$!G0/&$-.UȽǑiEx?\\L.#rmn-7Q7&ÝVz6AHW;f)>ŌՕv:fἏc2p:DsJoN\u/X O> +endobj +276 0 obj +<< +/Type /ExtGState +/BM /Normal +/CA 1 +>> +endobj +277 0 obj +<< +/Name /F1 +/Subtype /TrueType +/FirstChar 32 +/Type /Font +/BaseFont /BCDEEE+Calibri +/FontDescriptor 345 0 R +/Encoding /WinAnsiEncoding +/LastChar 167 +/Widths [226 0 0 498 0 0 0 0 303 303 +0 0 0 306 252 0 507 507 507 507 +507 507 0 0 507 0 268 268 0 0 +0 0 894 579 544 533 615 488 459 631 +623 252 319 520 420 855 646 662 517 673 +543 459 487 642 567 890 0 0 468 307 +0 307 0 0 0 479 0 423 525 498 +305 471 525 230 0 455 230 799 525 527 +525 0 349 391 335 525 0 0 433 453 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 498] +>> +endobj +278 0 obj +<< +/Subtype /Type0 +/Type /Font +/BaseFont /BCDFEE+Calibri +/Encoding /Identity-H +/DescendantFonts [346 0 R] +/ToUnicode 347 0 R +>> +endobj +279 0 obj +<< +/Name /F3 +/Subtype /TrueType +/FirstChar 32 +/Type /Font +/BaseFont /ArialMT +/FontDescriptor 348 0 R +/Encoding /WinAnsiEncoding +/LastChar 122 +/Widths [278 0 355 0 0 0 0 0 333 333 +0 0 278 333 278 0 556 556 556 556 +556 556 556 556 556 556 278 0 0 0 +0 0 0 667 667 722 0 667 0 0 +0 0 500 0 556 833 0 0 667 778 +722 667 611 722 0 0 0 0 0 278 +0 278 0 0 0 556 556 500 556 556 +278 556 556 222 0 500 222 833 556 556 +556 556 333 500 278 556 500 722 500 500 +500] +>> +endobj +280 0 obj +<< +/Name /F4 +/Subtype /TrueType +/FirstChar 32 +/Type /Font +/BaseFont /TimesNewRomanPS-BoldMT +/FontDescriptor 349 0 R +/Encoding /WinAnsiEncoding +/LastChar 121 +/Widths [250 0 0 0 0 1000 833 0 333 333 +500 0 250 333 250 278 0 500 500 500 +500 500 500 500 500 0 333 0 570 0 +0 0 0 722 667 722 722 667 611 778 +778 389 500 778 667 944 722 778 611 778 +722 556 667 722 0 1000 722 722 0 0 +0 0 0 0 0 500 556 444 556 444 +333 500 556 278 333 556 278 833 556 500 +556 556 444 389 333 556 500 722 500 500] +>> +endobj +281 0 obj +<< +/Name /F5 +/Subtype /TrueType +/FirstChar 32 +/Type /Font +/BaseFont /TimesNewRomanPSMT +/FontDescriptor 350 0 R +/Encoding /WinAnsiEncoding +/LastChar 252 +/Widths [250 0 0 0 0 0 778 0 333 333 +0 0 250 333 250 278 500 500 500 500 +500 500 500 500 500 500 278 278 564 0 +0 444 0 722 667 667 722 611 556 722 +722 333 389 722 611 889 722 722 556 722 +667 556 611 722 722 944 722 722 611 333 +0 333 0 0 0 444 500 444 500 444 +333 500 500 278 278 500 278 778 500 500 +500 500 333 389 278 500 500 722 500 500 +444 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +500] +>> +endobj +282 0 obj +<< +/Subtype /Type0 +/Type /Font +/BaseFont /TimesNewRomanPSMT +/Encoding /Identity-H +/DescendantFonts [351 0 R] +/ToUnicode 352 0 R +>> +endobj +283 0 obj +<< +/Length 6717 +/Filter /FlateDecode +>> +stream +x=n78Zf_@-I:I0}mK4?,ުH="Owbb>^,W~}Z-ώf\^{pwub:}a~:^_͞؟IY_߷ì5CSTE?>~]<}WbbvpP-˙UVͬU>F?f7٩ՏO>_zh0-铗jߞ>/*BOvvS-vD5wQQT4;Ty_frљԴ Q]Q憪U;/)Zʢ,eS}fj]Qy~Mp+'6bo;hRvިsLu\'67-# +{􏕒Ɲ_/D;TBtz M=im^z-ukb?]k#ru7gcWmNacHV}!sJ*5*g})7PkP xWfu3*)dÁi?40%5Pա!s1]'ϚY)٭Cs6^ZFf>pO@.?-6 BuĄb-$+o'RIsC 0Z7S̊z-#]1+-Kf\ JrtRkǜªϸxS*/gJˌLJ5zJ 리r)H,U +m@tkӷmD!1ט.@ 4Ny_F4>2-lSDYl,XiʢkiTLju9{uyz\NTdŠ$TCN CQUo3>M}qʢWƩgaTὓ@J~϶|oQ@k i[V2 l,CjpRʭ;?3b+p7[|44c㦁(KyB)㡬ƅa hFMGCsp਀ ~)K"e q-֪Y?gﯖ<_bV8͏/v~|xzl_&HAt^4կ 2Ouˊ#A ޼r>\}nHÓl5YJ{7 W}EZ 'ρzp ,^1qt3Π- z6f6paZGMv6X8?MA4#}fȔy(8v(.!bxzW:@> ]xNZ)A3j60FB4-.Mpx;N0'?mmrQ~J-h80"b$@SjRӭqJxRu+J(S|zg۾R"1rb*QUe](MP+>sn&UDю?/*Gu`6)333ųT23GZTN!`DSb$ʙ`6g9#QDDs ZqPH(蓰yʈ F]k _ZlݬjD+􌳾A )_j͹t⓺@: pS I_2fK/TS?s1$("jP]oq78Vz8(n]Ss; \y :-_LN2C!CLD +D̸x"*v]MpV 9ڂuD@?ݸZqh!Y I + (^nOl\O'~=lM Q2KدDwE 0O- .{~H:<` CCKF~*o7 -M\a]gEj8B=VOL`t̜f 팋Pa"Rr2Blg&q82ͼTj.eh:h(I#Iwq{Ejv}GX\c'_z8 Gp(.}TcSP(-z’dl뛗"YNvZ +Nr\Lh(*󩝮 +uKEuE5_4n0;/k\Pd ?0SE.F5[Vur#֎p {"snޠ&X'cPy;>+3q$w.=jx 6M@D섎K +.奃.8-|^J$&`:e#&ܲi +)C ;Af&R7PĐI-4:ߎth.8C!z=R+!O؉ 0âC݃ %hTy礋ȯ'|Z;( Zko"5ybsVte ݀ѫjK,,~o-\rkdF,:MJj_5_%p(|ߚAۑt!+珹PԵMPdQcm"Ɂ CrZa_gW*=]eEw\y{V SciV߼4A^WNK+BcxʍI6F{iO{& j7+7]QnNٵŐfnS$PMRLN+Cʼnz'Jw.$)e}pZv{``[!Mԛ,$?- nI.;G\ 2):8䀫ȡ-}˗F=KQGo:8r쾄|Gխ2C%|ӌHfaT_d+5"}G_ R]!fdꡟyc$7 $H_q Ɏ:1rJ%F\p@U!T3um%uM\Z+v78iG@1k¼>ҍyi22zELBrc'VXD^k(芯AknxȓoT ZԳfv5kI @]MȸINm 0Nc'TR%:eEͽZټ5nbnrz$7&X.YRl58 >]ͺu;4qym区6ϼ8 rdjO܌DuɷRޚyY#+$4!c8|o`0A:OwUR +KuG<=ȑ,ۢI7/n-!Dk|R{tƿ^CpV&P5mi rn,14hR 2iv2!dqLFG pK§%3uӉ#k>2AL0_+7 7ӀMόP[e;pO9o MZR,ˏۭA:vXKܹ%yFi[( "N6^![x# ;hF#Хulb9do.K'֤ǝ_V!Vo_{5ޫ\hX;ʒVڤ|}l"1km UɨPjQ~C*|vsѦ&ydCեh4,% I lӖ5Ef.I4C"T:, Fe +n>GZ;XY3o79g\C~ Q@O"V3ow }ZMA/5,db-υu)&5OuC"/!.Eg}m7?tm O9:tMKJXܓN;yڭ#|k#wHrI%xLwWrAcFI9>a9(DXίGi9IxA`o*0\6VpK ͶzCe=u.GY4"8%?, +2a5[d89n"%\/V%"t w=5DpN&:,Rqm ׯ7MDp²I囵QZpQ Bd!27 uҀM"ˌ~|KhZILӕc,%M"+ny!'"7If4g  !mZ}K:[\hfbsk, giw+C/;P%;7_s,#FJnP808z NqhsUEb2dfbEJL &1 v9TLBB"fAI-/cYgBpHÓH +[`-(h jfPMhݭLCLUyO ]F]_Z*8w`M[E s<T.<5[Z°pK<6O4` NjXEu.G4y5 ?%8~%$z6H\4Ϟ;3$^OANF] WWهYh]$9e^vJ.0dnkt,F2WͳN[p{ +TD iP=V'*6 a \ ~fخ|Cץ{ګug_s񛽁ݴʽ7ov̥!cXӫCf̦Fo%{Y\k-7]ɱ/}v2!ؗ5{g9j#[hx;-S2\#[j3nɹ o\a4,qQP6",W)+c)+)& +$EFZщ/l٘l;gtnM7Io:HC +Oo |Ѯ^~[̀"tMԟuc z _* S=_]Ptrlٸ,PQYH?LVs-򅫡OS&Y=eM墦z}±H*8,1~<5fRsXZ`MrD<7R=xJ gwqTYڸgn+K"DhܥE\.r.HCR%TJbVVXJOqquUg'4H XFpt9Be?"Aּ<sꍬS*_lxSXƩ|ӛSa'vq9e GyM<6=U[_9<3Y!i>tQ4cY f4 hANw#@Xs$zA3Nz##sG%]M'J67MY,/DBrL:pw*$sO2>-\*'ddvCTj rGEfS%BRW$۽Mdw.5$y%7vIiCߎvv;P#m;ZNxTq‰п[oH͢wR"6. H9XUj }vbcB`ݫ>BAblZ{D޿^IJ_H"ވjލd؇}Ȓ0˧p4irY~k&I|/&ݩ99? w=L/ß*i|~K-Jg_"]5(A@4y- ؙn* +Q_p̞8"6}gxLk3T;}6:NB{ B1#%6j1S}vD:F,ħI} eګJYUgYS.Gy(lPJ9Xj6L}F=b}QǼd`:e%9D\7󮋡?pslGv%ج٬ =\|t +Z, ۄ\uZMaգ;I33!&d k^;T>f#L'\h|!ju qwx͋[YBKz^:1༑ӕEvr؇#,<52ƺ (?8Q +endstream +endobj +284 0 obj +<< +/Subtype /Type0 +/Type /Font +/BaseFont /SymbolMT +/Encoding /Identity-H +/DescendantFonts [353 0 R] +/ToUnicode 354 0 R +>> +endobj +285 0 obj +<< +/Length 7182 +/Filter /FlateDecode +>> +stream +x=r6?̖EI|M٪a}HZ[FиvJC: Fx/?ٞ;;]/^=a{r{OoogӳǫϟA]oqUЊjX}8{[]>|_P՛nYĪmVh*znk{]]o?mDֿmqz^tCp n7B7G͑h֯6Mk~7+8nVhޑڪ8ѭ_lDO[9m +4Tiu'(G9RV<] nAgջ4`f?Žf%m{h{ѿgj0yP}iZYyYh4n47VKP6F+ӵrj?C@~n /{Mk`b{>֖>?ꏝ^hNw ?'d3TDy[Ájr5Բ UՎ|⧍F `aen>Ί*Q`nI8Tub ཆ-~)|SC.po؍Q|\o>\r*J j/$'ZIqE 0 j7SՊv/3]1kФn^ ƨru{\Jj{g܏{g:5˗7'ZLݚu{ʚr-5Kd?P*`VW@ި=Ϊvafa=LW ل3- e'fqG4Q[K-CzYF\q]N!,췕 ?9'~3f|=N@;ȺCVStox=LtS"2h@L iFP0TTlP2U]0Y#5,JۥR<Ybzrz$epBlZhA>5tXC೩5BKcLlF-kAd瘉n^u`Q_߆x0_2 {oቬ]ٖIOo:;GV^3aL{ ! trJ)r;xtG#n%v$`pd37;8F7vmbZ}r}3Ă|81ZRXD+~{yЁU!*jaqQlYV^%䂨X<`sS( f"H|o"c;" *7̩dA:0h'Ior8.G97KՃ݆^R-m,r|K밑5"OB0fvHE" gCB]C 9T1"N*"Eeajs>!p2ߋf-b=B;֙)֘UQ=2=,Dpm_|px^ C|5`~@i\#<!ML{nF;D+Pҍa zE<}t 4u$[Srf +5Z&b@MЀ%IPqwlW?!.G,+m H7XyaTe:ܶ]ݔ`w :F2; ~A0 BXρ8,}73 +Pάs2`'񱛠F&miZ%#xuŹD"2`2e*|J]VjR .YdHWͽ;3XcXky~C. ܴ_26]xᢈHgbzh~b\nb_74Ug$74B-o^x,\ qkDSy9FW#Gx;L9Q2%(H"y]\FkߠJ({xHUp"$51 +y3gG&2n0̶5d?md, (uPnp޼J21 3KD9 襏6FCBmO0)&' wkL9199&-{8rC +l ͈*Hz'm6)H!7A,NE3;w-yuN#{*ٕIqSJ3fw2i’)ES'k(nI,|L~0&H32KytFc{o츍P/8G2FKMQU=Ð>C`›/9@x2>3.mMg + uTF~nAϚh%!͑saIU=JQYOboxHM]µKzN<)yGoO9Rd$ze~ jWQD;9%SlE^z؃̚`QDk, '))N!kAe ЂۛhSI Smj"Eyrryi-MRC{Hݻecqܹd2n8ELTN5'jOUO1F3h43JRD|_ ,&ZԋrO!+lveU@(W%hX(רƿIR 4C;{QG!s!0pb(yadW('4\P-*WҬK< rGY[#"WaΦŴb! %r]û*fGkj> +ȠhR2}Jf)g_S1Ii>"Q򛛽KnA?1hd5=M/)hlj[lXwaeQ>v\|rZNxA PAovj*W>8pĹK'60RUGQS|IDqhH헒/-rojȲϷmy~eo;H]s.-S"M +YzX)8!t),ɏKnT$-s˺~*8㎳lJ~%c0U΄e CYiݯXm30S݋V;o7R$u%5z rbK Ac 8Va>C[#lLkT2F":]68sS1M#@,Xh>I[Mُ1 qni%X^@ijڡJ)TJhf UH uw*"*G\풃iW{{%?{P2dqztQ\iMWuv8 |W|}zAͱhc!<>RX'C[A Kcu#~>~[@P8V;E!s9Dn(d9#nvy#j 2NmO{:˿g:Ɓ;~.q ᖵ B1hSrKqfI2=|W 6h I(NHW!7Ov\x?#8 Vݽ*zQ䥍PW H?#x8h-LSlË"N&f\GQE֤.tDwU2 פAZĨ_f}+3 ~r焪[p=w~ _+쭙}n gv- ֘us9ཪ>D>/I7MyKLǂp8l~sMMyfQ44Eįn >n  rRb?0oǝcco[#3xzv`NӮw>;u3)^Qk/03Gܾksf A&Dl0>'֗>w1rNe分<#vޗ=2$0d| }8}D$ " +;PJ"U +&gD, +m{ ݰ)M#" +yOy~ej[H`|Hu̙SG:9DMnL^p6u\hF, @SABz4x46kOHlH;$lƺ!y_)QÏAZPKVBmCߒ6VBTئLdEܝ.MZOjC8d\]`b92K#Y=i ;#-јHq$U˦{=ŽmŢ+kSy(1I,7qiCu@z|F(fw6$W(|AѮdS<ܰ$PW:-Ώ$yJ7D +Ń^mqQ瞄ʘhumi;>{g71~D[ʒف¯!KΏ  +:t選I5S`d^J@,{ri̅] g9d݇pqc.<1끲ܱ[bhٞDQx荩W}@rybttb0Ô|f娿-+=şC »3X +)x@0.bh|I* .WFf:"d;nUGVݽ&Jy7@ gǪJVZZb^Sfz%ހ}LY`i~ЈOE*<0r8$էQ5SP8nwez3`y&5k~oKGIdez$wu}q``Z'osz62"йsFIKPѳETr:5ZIؖPKC('LȞf}iE{7,&FE(.JR.QlnYAFS|g=~2a1Շ>^}M æ]#!pc$xc_7QYN GԜU4KG1QW4Δ&vO2hNq.Rr5lDn +f-\e{[K.]}dMOfB\SՋ9|-ƥ时3F`՚枠iwPS& [SZ +X`mu)h퐌:RV2hUCQ~>=T4\WIঞrWHwM(,>9 IaRdwAxDNsGIH>ey's~/*ƥP')HB^/|v 5Jk솘Z{* 3~y,-jS{]q9,':gF$kw0:qBz&OtHOGIP;'X޸IdV呋O@`dH8L.| Lh*$?ٝ,Z(7W +I%U81HwŰW; +-[ٕN4%wCZ)z+[8nŤduv50.Z860X$DwG 4"]39*u4üdj> +stream +x=n7ezi5/^±l'EsaGȞ͌8;zBk1;~/;}J.>Qg[o}я廪a>~N4@GaaX2K|Z:En(:fQ~Uv9m&'_:!gɁ捜 YYЌT,Y[w}39An6(P.OOhM~~0p"ɟ&|'w +W aѹ +^Tr?"ܴ4Ӕs)YEԇB co*ͯk"b\E10'źK670uxS \fjck}:@G}\#F(n۱?RI1f}X|f; +}svf +ѮY"6T#26[ l%Mc s#ʞF%K) +vT=hSk{1'O|KĘ Q0`bѓuzk'P8iv8ee'szKoţܥ~nIm@۲HTr:V +0Ұx'ݰuƳE#Y>H)S%_k{ʒ ۦ, LOaE`hj_P8}*-!P}yQշ%-۲]0 ,wVF,s$/ej:G#$QϧfђF;Dc(5jz}}uNT ( 9TmaB2CBn.R/\%%J8\.f- F,7ٞJT8W'Ϥ@ʎrG;>}_+~T rjsa{+|c6 wƦڴ,[KFXj 6׆*\:'(b⎈GMY$\x4LY+?g+/~l|\]g7GZCRej Zw*ܾw`iK] nC`?c)'m3| FpzKl1E=EdoRyU*oQb$]`1~DR>ߵ(i~SfbnP?p9$)Ks5-$l]!mt\mqIljn7{BMRnl;b/`_DJ#-m[a6;Qx^vPݮ̎qt҅-]2HnP8Jl⻲W! |o:aAc0'ZK/Ogui>>G" L3 L^MFU4 #hN& o*~Ïl/Zj^xLC3su?Ѫ_Z5]Yq&kʧxIN,B}*W5ZTA^O- +c*L o$}6&&*E,!x~ֈFga=b`ydPU$D Αu1;3B}8ìI[+BU㍧R&+Oa*)vRXXYvTPX1IHYf[t/v4bRACEu}ك13 +͢ j>8`b!$3,G=Pq88RdY~/2p~+CzGёn"JM"s6%s.FPhDYshbi vlx)ҋ1D :ޭU:!j5cAe }1[K@֍1\s,Ԗ)kuhɲ<$?]vq3/FK&Shaapŧq-5xOR{".;^̆y-iec&ν+e 5iX>l, b sb ּ-alm:(W1"1KgTP3eg𪪐Z qJR搣dl{<)ٚ.\^Ȓ4]۽n5ǻ 9M ;.|)N3X1}4ߔpiRm-pwGzvr +W[恗?j*8W,u$4.tRK b@ ]s=N@LM!a"m;i ,<zahנLD=1=&nRpHď  G) !q'- +={YwKѭL^ +)A~X-!Rp{)P9r^/V +Vs9ip Fn`Y>, -E9H 6P8>4i{-H;^"P7nn C>Pr > $.X2$W?١t}ʁh23 5OiMS +VC@ϭQrgH!q@rC`ߐA{H>@6P:pҘ+$&H CN,]:0xrTe|uP:pw3%jjTҁlH76loʁHL摞Cm;Hd{ė9r9=`eƣDv,zt kX90}KB̆yiQN2&[W|b ƣKaCU: @˭k&U=!T?w|imOt{V>"*s&F8_Ae |zfs; ༠tMB$-sq4,T0aȋ"&SXIj$w]y +m]iՠL`"6đ5 ߻h7 y#tQ'ݮaYV33y˖G4D',d MEh{@0S~"U`|MoL[1AP!4LA"u%d#Jn2A2QDN y$ ,Rdn]q}/UN[ciw M xPUM?F%\ +Lqx*-J:e֎,biʏNu@]}-7Xӹ֣4ɼ=\a ׅr؇:ڰ]tCQTOW-#"R"$W@\4H}(AP/pzJ8X:vJ(U!$20[ֲ*c> +stream +xioF~p8( vf4Ļ lو#9&~罹 9jQcw_g|jz~}yvx|YX.ˣ$W%׶MDQem͊6[^lw|wem=Fh**dvI zNf/jlw{$gdzmN~ȻIc{[#ڢ +A(M~ɛX5yͫZ?eTp:5,;Ew9\!?E42&2UWͤT2}ݚO%E&:UֆnZ+Im:2~LAm1UF,lFUE@u\dBK?-97/VK,sL՝̙L5 AV[OV-q4uKLWҎ&.Y^sxZ-Ǥڂ$q+7ʳEjk2pz\(r82*F\av'|+ UZn s+5 'q5Wnu|?Qpa > 4> i{!g\Rkl8c1RLpkid$^8*NJ5+7Pq}Pfպ=w<*12*kIK1.PIsWVȧǸb\y[5(+׭CYmqrɕI,.Pՠe] +7r @֣ o F.hɀ-RLXrz\(/ݸ^haj4R eżITB52{$;LSbbX=bb*|E,Taq!*r6v{̏ʢU3vD2]}++|r;CZJ]#GVJLxPl8,EAEudRU~9NU*/CЌM5QX9KJΔhe?b +*-6Ff8*`*#Kr\ 7T(k3MZy>yu?Olr9?xy?=WF~v!$EWj% +ߜϵ)@p*p  eK]4[p\܍'u3󾆔!]"z#Ǫ["yKa8PiȠYCSļc >7É2*xKg!2esνXY%^eWxޘ<Ӝ,:8Sˤ}ө1/B]a#v +bS3S^1{w&?^}T C%ʦ"tː:~K2ţ ,&qb|cH 4B +^9-shty$냸{Ks''`+#ƨ^9Cւ6ƦDcptp?"6x%v!MB˲C6':vJƫQe  S:]p_{3P}5sRTA)K39+n#ȚZES>_{_=Td}' $q?5S(aed_|3PADAYSHAdo1 wۻzXhyl xEW9f]!xj3BN¡۾8w҅^QS$=ӭelz(_Hj&WU3Q Ah"sLW9 Z\F:DY]t %E* #%E}.8\1-궂_fukpB#.֎]XD 8gGaws<@f-۹ҼkxSVyAuzxf;n=7YlE2˚Օ&|3Gb-CKe Mc6Ѥ]Kr'0t"ǵ%D!g6©߉h{aSL 1 Y5։GN=D #CLp NlyA|>s`2Krޕyb߄u ^ Xػ;X"? ĩ?Qa+ڈ>Er$S~F|guU_`zAj'!K&YG$?'ҹ\Eu?eg02.Zm3Ձ&5I䴇|X#}=E=xܙ %_ɨbw~CI"AJe@ωQҥA"Ӿ"spbf ; vzw]tR k,*Ev(Jӫ.EZÁ +D{l~d*ƙ漶;@HB.*6C[jc~$PQ5ړx1u7B +#ҵհ̒4[;W=]D4EOnЎFi]O{‰ܚ{OZuQ@{M%lpKi0F?V,~a6PHJl&+/הSv|Y1bI'fv:_MzZV-҂y } +|ւPˉ-mĒ~l. 6.(ކhNdwn/pT_9:#A#RKP޹ UCI;3ʼn͈*v}v[zb曈$\ +\&Q'}蜔lEɃ:vNKs0ڀ.m.%rOMH{&MAH`Lv"/FHWl¿kUʂ;~xcƗsЗfqH#HBh`ClJEZjHϡTJOvxrUنטQ.9h5Uw*'iíLr`?t DiQWb ;u gXzWܥpۏF+}SEGLr_ysU(oH')x8BIl.+㠋hHQ̃{`B:D7AܴT$zY"FP1f$*:'"y"jw$t(F-Ǝj[vp/څ%މ1c|DX1A|D@!+׫:P^^4%o󣸠oq@H*^448|;ghY6꺆O840A$+:O%oEf +endstream +endobj +288 0 obj +<< +/Length 71169 +/ColorSpace /DeviceRGB +/Subtype /Image +/Height 1008 +/Filter /DCTDecode +/Type /XObject +/Width 1235 +/BitsPerComponent 8 +/Interpolate true +>> +stream +JFIFC  +   $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222" + }!1AQa"q2#BR$3br +%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz + w!1AQaq"2B #3Rbr +$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +L[TK@#/jAVPs K\mrm7{WL&wd<WV3<6*;eE,$ҀA Mt }a۳}|XbM6,OԩT;\ڮkE 5 +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +)2)hLހ(|wezUu l {#] + S]!J尹gPH 7'NzD0q#U*G׽z4R$"}Κ UӰ(:((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\&G#֬TSBQA_Rgw9w֦. n}KJ&Pib JOCXzTMY,exg'vk𦈚b`}֬?s:j}Bcic,Fc۞q^k6{P*5'd.Ƣ )i3K\pQEGɴp<~5:wחU`4.zgWjQm4sk8;DOP#>lc\yb,j:tڵ[`zDh7VofXYCP/ +zj=7H!xXw.V5 =Jx:q[aj3< Vݽw3;0ͥ*W\+DѾpw[g%QЭ + V +(;Š(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((rDh>b^Z%B=zkENnWɹXCItʦ\'i},^6 i(H>Rs7l{ׯַE[Fكz4(pRNWw0I#sVM/ڄ_#hI+]ԫ(*F"4K[['Ut죋P$yXUk/BLћ !V)-pwsۊQEQ@!PEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPE! u5 +fBށى'Š((((((((((((((((((((((((((((((((((((((((((((((((((()lp2O:S.L?)@/lkԿ!-j͑"tW7KKQ\/KG/KG{X%R}R{ Q\/KG/KG{X%R}R{ Q\/KG/KG{X%R}R{ Q\/KG/KG{X%R}R{ Q\/KG/KG{X%R}R{ Q\/KG/KG{X%R}R{ QXvpnLr*9AN[5M5tQE!Q@Q@Q@Q@Q@Q@Q@jqWwG&Y|߮8nz[Ѥ{xLEno^f%TVECғڊTUr摿a[*境p֯ U +$`iWj66KYL;ǡ8YX;PIETQ@Q@Q@Q@Q@Q@Rfhu=hh((((((((((((((((((Km0[$~~cޚWv@h\5KG5KZ{Q\5KG5KGQ}Q{Q\5KG5KGQ}Q{Q\5KG5KGQ}Q{Q\5KG5KGQ}Q{Q\5KG5KGQ}Q{Q\5KG5KGQ}Q{Q\5K@AȼVf`Xct/-`I$28#b(((((((ڏ.#Vj ˿ ~1)ŀ@?G K#clˉXawrkէgcNv e=?y׆\Eꖺmkn3`sn4)fkVYqq޵T5RAkf 8>Ќ$RF]v x{KVɲ8<87;ۿryFEt pi~ikx".rWoҹ j3~=F\u+[sH :k5ַCr FE-qm: !玕5J~VQ X(AEPEPEPEPEPEP A]if f[QH((((((j? /U]Ms&uxJ-Dq'ˀ7du0OR2qwGW*-vĬBq\Eo³C=Ss,zxdסQUqL7_t=4Iaʾjaٵ]PҢ J85QCuk [}XxDm":c}) 7^*w?Gӭ d +쨦Ȏ)=jO[[78_ҭ, mkq@-ruTP_F[_jwDpyo)iNFW*Iv)-nQE!Q@Q@Q@Q@Q@Q@Q@ t)륮j +ٿSK\U3QEbhQEQEQEQEQEQEQEfj{ʭsqבXdpFk\8TMkGԢHMꒌ0NJ/6=,<,}l/oC~9i7"9>rz((*1-2(78*NiӋFccH5(TaYV'_RϡUkBS+9R#N@A:B((((((((((((((u_ Z ?$-k\$ВƀMK\SgMΖf6nSg8]%Ƭ9{Icww~KAL΁pHPj񖣤c˦AWٮb{cgb/z|_hkiU楹ﴟAhKyeʘ$Šqs~8W} yLz ⑴{ziy8 ܏S5OR­k[^1{5۹b6 u+TZO)yvU7S RGH|F ZULNGp6gECͶm'_˩I"?o+]YM(AEPEPEPEPEPEP A]if f_QE((((((* ˿ 5[Qeq?d?ctS8Š(EPEPEPEPEPEPEPEPEPEPEPEP!];7zkBwvoQXQ@Q@Q@Q@Q@Q@Q@Q<JrR*Z(Ni=bKL  nyw'=(yP~ʏUB=A[=zӪ_ʗbt~U`9eQZz9Qlxڜ͝ʸ89Qm}cpGb(V<*Q<ߡ#4@5*u?꡵Xl'ɶG_sBU9Vee'N`I'$,)CU-C]q沌\uqguZM,@BJWκ^k$Ťcrw?}'koVШX@].kٓ{e98=UPjƛNTˠޣaH;tt{t@g]MfqFwW9?GUЮy g}PʼcH$q3$PO6f~ZFsnN(܎( ((аXZXv9rjBnQ-QYQ@Q@UMSPIo5+HwTK3ߊE`+' 3$\og=;zJ|@G4]4P$,(}M*%1G#*H}..yc۞ [2OUVș~vp=}+cx铊r(A֊޲=qXo 40-Y`$ vSZg9^&܇tWCXv\G:jM5tQE!aD_6EnUMN-WJӧ.@HPYH8| Onhg2Ǚ6ۆvR`~+>n>^9{H6)'<3B +xtjc7q7'n16ƭKh$A >o[G2Ѥ5Ɓ$d{wχGl&]k Fۜi:ct]P߽Α _?1Eyw|j?|Cau%ǧIy}U|?].R7 95 +MKkjmn`Q_ 5uٵyt*K둂y84կ,>xiI/ r~5W~}ZyY^ty2sGlg{~Vh%Ķ:9d3_j7k~P6+ڞ<֡a[Cg @1n>bOjǼ7.ǩǭ=`Ka=Թ:+uoQ&2 {ֆ}{@.$]+LmD`d~T\w[_ޟcMbLIgKYƗ/Z]Ril6~ByXbqɨZ],D+6` WuEOEsеs‹6Kii$/1+N7A>Fiu2A#] 4i !ǯ.[t Av YWd -k 2-P> slvdĪ;=3Z0k +R0fjBdrBH^*)!swxs\GDVr W1@$kҨ7u[VҞ{BR%P^C) ޵m}XxL!H]6bF|Hi#Uhȅ285xK[KY,,`co@+Czmޜ5cF,e܄.JG[x#NҼ)mg{ $Et4QTŠ(!];7zkBwvoQXQ@Q@Q@Q@Q@Q@Q@Q@Q@&jΥkh&+zI+2YL#(ci[#ק ަ_[#iN "9 kYв0敥E29T OB)vQ@Q@Q@%-KRm? +ĭ=__fWmh\q2n(bH*pr*`r3YEETQOr= cɫX +$Fa>^HL|ZAgN696ZX(S{ mW?[j笵L=(N((kWfqyka5.R!A\^"OZKR#@X:zRוoZӬj}κ[ntKݤE`hh6ĝgķKiiIo+ rsν@o>+^{Xt _i0SSfW)?]k~q=ի2 O~:~&/l?vm*K䓀Ӟ(8>'ܯ ~XY +p@>s].iۮ<ӷcxJ;:>"ԯ}CLL,@imݷ?ƀ +( +( +( +-k\$ВUpBJ(DCwܶ,l#F7#?k`f~~skIv-k@M-N GL`ztuOxV(Xm:u#Ic1ʊUA|7"/c{M$2@ۇSh wina6A 95 HQEQ)Ԕ@䇃 &KH.7ɁfGp? +{xe$(%~IE7,?⺒SDM$H +;޺7tvYӕb2WO^q*&go ޙpB ybIIoK~%:5[wp#hOrkT|"i?8O8l!C'l"h[x] r2EWLZCGhm|[vsX LҾl5|$rgں(@dz"Z~g1>V \ܥqkm#GuxiM+Iyc8r zUA% $tfqs? mH F~񮶊*ES f3B{y3Zu/(@QEQEQEQEQEQE[Qeq՚2hL}21+'P=?J nKiu^{U/o3<3TgJv4Y,YPazRְu-&-Ru$Hhs%gew§ `+ q|<1BTz<0Cnn%4FpJq%dA] qVZk{{CSazT'5P 5+ť׹[d-Zvbe,A遚}BԺ]D +Usy}敡AzP(!X)#IF=N}2 k⥢jp Dz:ʳ;q;Tw3juW3_[G1WV& 0wmǮzbFiN%*1E +A UkCd:^4 cq%[yY(G}ʎR\Qj-=WF yA<`~a{qsyE4p,v0vak4[ aP/U5)-rږ^J cKr[ҞW5;60Kru=>V:==$r:A,ʇ$eT9=mQ " +p89NzP8ΥfP kX皽^UJo3]=/rgdq1^H:tŝbf'**&I袊Q@Q@ t)륮j +ٿSK\U3QEbhQEQEQEQEQEQEQEQEQEq:ȺL.O>FJ&~$|tȨ4BEu5esbErtp-q3C7EG 6#p J3FA~梢-66-zaQV+ S+WFu(͂(( +EAcWL +F `Z'LddzAdU] +qFdPw5*gI{ +YT37XQEflQEQEp5GNgܐ@'q\ዱ zw5 'M ]rퟺ9t5tP>Ծ&u)|u_gºLJȜ;3J] ⯌nmXȏ'B_l`20~ rm/W.Ix@Ty=y.aW#$'jt}285J'T ߐ~k 1!GM#оwi6{h8SH<}}ݠ7=f;-Ω8»68'XԼ]icoe}ā-P=7@W+-֭S1H. &6 l"Z^xM^9R.-cV zQwi7ȡ?xX. +*;XMim5illsg@+S/xF68O19+8&D\ +9U^Ŧ71[ҸABW5-1 eDq3V?O_s|3ݝlmcp7✤aaꫦ=쐉-@Ix2Vlfq}$"y-!4鿜횧 ]аE cg<jo5+RVՀbQ SC2ѿ:Ljc(ɉfgsZQ?-RRӤkf?62 gj[ [_hCP-P,p)^sWE +˦[nZP`9'*\ 3Y4e83 6@6} hZЀeVddc5]i7ڕ kh7q3hҺŚ^XZhN$<!Zi|cqx:Ȉ'r jl4G2)h=IЭd[t5@aw`g +ݢU.̻:oYD#shqK{Kѣ,mvֻ;;f$δ裕nf|Z4t#9sޮ[Vآ@ IE; +(Q@Q@ t)륮j iُCzktRB(M(((((((( &T"E]L c'`*5G]SNkVHI7v#"ӏMsVj%;Fg>k~t2@H ԈjQfr}֯V dVsՊ7%QEQES5 +S-s2]$Pe\g~uEjM<561?=S*?:ۢL̝NIZǚ͚#ښ縝%EDHڣCDSU}i%QH( V*8SbsjJm(0(((((((((((]WBֿO +ju_ Z ?$ !+AHA$ :REA@!PEP-b-#70*=2:+Z?]-5ԎHV~ktQg=Nk+Z?GV~Z('5~+Z?]-{Ygֿa~=ek_ֿ߰aKE}濲ek_߰륢k>s_Z??Gpq9kZ?hϸ{8V~ktQg=Nk+Z?GV~Z('5~+Z?]-{Ygֿa~=ek_ֿ߰aKE}t-Mܩ$JƸT^I>|ECm(C +( +( +( +( +( +( +( +( +hдmхKE A5ucǿG]3*(#Њ$kb;XMtf1W֙D +ѶbUOa.4pGOPSZ$*Ta!Cp޴jۈVk9;HE$QEIaEPEPEPEPMtWaN*$'"KU*<*}|T}|Un9rD!S:?Yfaҏ~b\9Q_ߥH*O(j)QHaEPEPEPEPEPEPEPEPEPEPEPEPT#sǟ-g#8\sٺ?7 +?uX~oQGp9kٺ?7 +訣ϸnktTQgw7ZGnº*(;z7Z]{YֿaQz𮊊=f_ް(ֿaWEE}uX~of_ް+k>sٺ?7 +?uX~oQGp9k94YlYAgk[ŒݎK'ܜ*(((((((((((((((((((((((((((((((((((MQ?*Z(0=PEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPNjzع8ǖWkΗNe خc9qsTȔmsh;z>d;w݆j5rT3IEt4W)o^*C[vBݮ8O6?:n- +3R&)8R%7jZ,R?qč[x.^VCDQ[ (.Ue8֋Y\ӕ6袊Š((((((((((LEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPE^->v O`MDƘڏr}Lfq6g^DuV A3~WxwV d *L"RF_ ZOiIYKuTt7mG"x[6]vsp~+5|/qciiP$цyr'i5?Z ĮTDt=_ȑ2vכ[xZNĹQ; ʺzw7i )20rKiu0iF=2z֍q(E +0Ec)4NI"7[rGSu48vSɊY +Wm%bI$ 7sy[X>#np>wVE$$ <>+vQEIQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEW/H]iZ1n.3]E|OMVQ lZfW/^>+?Pw⻯ x_ʺMoAvZBQ :` +(4~#Y7 $y)UUsƋx=5N:^x'fc½NKC;k ^ExIq»:l^Ez.V(p{>TPzNj<#5dpb2Jw!jIJl~SyNaZ(4~OeGX(Qy9j<J-51Vm~D8;W@Ak8`_ʍSsul f(((4}Bⵞ|,­$WQv_g%p[ ЌGZS<_3-;35UV9a>SVwxrm{R@ vTSw/* - 0Ģ55=TQEQE5'g[Q\VՔ&j t!6}tw;!y%r'.Vzmi5P_~-ft NBR)\hFS?0NEkHc~cOCBDחg$r2%8ӭ^b@k>$E%c{xxvRЭf045e4dkQE%Q@Rxm~(Jjf\kuI*ol͡MYCjP1=yN|axwJ55eIg8@9:6g%'h'p< Kq{kenlb,vOO^sFM}>"2[HP<+jKڪMt'WWCqk {8ͅvӐs׭{QEQEQEQEQEQEQEQEQEIuW¡M~ؘY>h~im:8#NRzԕ((( +0h}qClypQOz( Qt}?V6&EPtR-o[tȦYW*EO6Anmߌnیg޵ +76Z@r9WU8m7XMcoXi?BIZP^F4+9XaLҵ( +( +( +( +( +( +( +( +( +( +JZ(AucSdmq>Ai,R6W! E;yUbh,c$UY=Я64dpA?ʺ(ÑZ g-R((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((JM"|Cu5mDg|%Ih(ܲZ3t̐HQFI=X: ̊ݣӡ>=|T:iMp6w4}BAm^GOլD-i:_~*KM;2M] ERQEQEuK;QԚ_3ad}XdWRS̹AۜчS$*XdxV7̍PR+NgU* ǰ^og&5(R\Ka$1ñb4QEQEQEQEQEQEQEQEQEQ\-'QMOԵ+i!gpz(*Ls$Z͞څHoQDWFVFVSE:((((((((((((((((((((((((((((((((((((((((((((((((((((((((k"2:V*GW9sg(ѱI'hY%RҰV;565ymfBf2sys+E|\i + +@a\|DZq̲:@ckݴst2?s>qoڍ=x%DIɰ3+"+!kk'ǧi5H2 +!SQ4ֶK22 :RPTsA 1RKuicE`)m-Y$:K% mfV1|َwgisI#zy7AŽ{BM m%vO  G^VӬsca%˭yK}~Fhx*{vzޫ?7W[)2?Z(qʳ>nǺd x均C>J<5W^8#I UcO{ڰ{g;WQ6,PDFTT1qpJJU%e +Z(3((((((((Z<=*i$Hi$uDQf8z@x!Y%Uу=(Bp3@ EW5m8#X(((((((((((((((((((((((((*Lṣ&8ـ>4 +gqwM@EF/= )嫺gv,}MIG<9/6Ə/6ư"*?ȣ FΗAOGΗAOX^T?GOQFΗAOGΗAOX^T?GOQFΗAOGΗAOX^T?GOQFΗAOGΗAOX^T?GOQFΗAOGΗAOX^T?GOQFΗAOGΗAOX^T?GOQFΗAOGΗAOX^T?GOQFΗAOGΗAOX^T?GOQFΗAOGΗAOX^T?GOQFΗAOGΗAOX^T?GOQFΗAOGΗAOX^T?GOQFΗAOGΗAOX^T?GOQGM 71J8܌~bgO?eխ@*3$8,]5ZwW:T +(QEQEQEQExS:Vn@Y=5|y7q֍jǥ4VztdJPQڏ7R?YfhnvÑ+`(Z,lBvQ^Xwy$(~Ku5F+VDž# A +=zZСJSOcJuF?enG%z+cipƻTE 78k6VF=@O@Gr¤ߩzFV^w-X2Qe?3Si^m(P_s]z[E,xdJ}޿j%1 +uuх[.ghVvII$5~ +( +( +(9?x9<[@c BQ=7:Ã,&71i'9ڿhCo)bP6 ׫t=K:7u) Bz.&rSku)l-gi-i$j\µFR-SQ`EjbGݍ}q5/ K/z+[[j9d=uQHaEP^IJY$^ds^^;?x*Ylw>hgD߾h񇎯4m~ú5b<ō؈O}8=Qtz -14\ @)"%Hn.sd:_Mr-R.-3) n':/-Υxѡ8`Db}h.Z3iZ|wJM%u~8;i>+߀a/ JfKC:xJ? +^6},p# ?C[_}HkzEZ[j ymnč8xQkLe^.t[VS7 +˄U3~l~ Jd4nGk,!QmAƩM{mQ@Q@#:v +dp-`xV%^GCш*}G$I+ID?#ih#ikɋy(bi|~FFO&/>ol4l5<ɋyGy:_m?:_m?`14hbi|fΗAOGΗAOX>L_?<4{@FFOQ<L_?<4{@FFO&/>ol4l5<ɋy(O3{gK_M[Nՙ)$u<ַԫEQO g[Egh#MW2wVIK_)_Rs|7XQ;|uNЍ7D;`%s)?jZLݕD2H:jmMx@rZԓPRo1H.|uoKO6=fm3=Kw0tKFI60HN:WCzOhX2I2<sGhQ9;'x °1OR&2wW;((QE +(Q@Q@Š(AEPEP0Bwvo1)맭aQEYQEQEQEQE%a ։+x +Ijݢ2qؙAKs2F{k@ɹ3do|ի8}fNM + l&*92pjZ) -ܞvڬE  +(Q@Q@oI5'<IokpzE +Z((((k?uԼʃr1|d*GnxCүEvFeVzyӵuMa(0##6?5}Rigѭzt~Mr=T|.Y|mK]H%{v7wp +(Q@Q@T77vqyS}7Ghj*:][݄V\ X|A*ڣme}ŗ{teMy"r ? +>KC$ qcP-㇤]{5|uma⣣\[2ܠ{֦iocf=hvD7EjϨÖc3&߅N̯STk]3>ra@LHf8⧺̶:*Z-,HFO˝܎ď?4|S%:ej +ٮ_44Ewŧ_i67aW|S☼35I؅@O+>?ēokQqy뺰)olHnھi٭sqr?uE-?i:]cl)/"\,Јc"L|}Mt4Qd.X0`o\h}H cW&cy )8#"j(X9Oy%̱L#aNMoXZmgCU4QK`((((((((([_Oz ]E=t6=,/Š(:B(((((((((((((((((kw%],d tPNU7w=¬>b:d R9KI𶤺իj7[N 7)>rr||ޘ{EMu&"I3Cs$jXN`MD !esH#7TԚؗZ+BV  +4mA/m9|t9U%Zb⛳ +(QEQEQEQEQEQEwC5Y^ky3Zж_g55 QI3@ E%EsuoenS(2HU~ QHC)H#- +( +)3Uԭ-mlRp3};M E%T[Aq EӒ"|  PE(_Nz ]E=t6=,/Š(:B((((((((((((((((((((((((((((((((((((((u +?$ֿ+i\dВ_ "QXQEQEQEQEQLicWHEڥluO((a5b2 U 䏥> +( +( +( +( +(4? fk+ o/kVǑ?QL((((((ڏ.#Vj ˿;ZcL6jA&RuVaQUx: uk$R^@5xu915!' JmMѴ)5" ?Qe9mGnAmxJl,FŭW[%} 8fh$Gi}KYIyrA-BQam ]^|sVu}+ea_m!r [4mKR7kGu4▟֦ǃ۫kxE#gY2Acg$ZhN=ͽJ|b("㟭UlmkhK@ݹ~R}\O]|C൶(.mydcЫEgEQE_Nz ]E=t6=,/Š(:B((((((((((((((((((((((((((((((((((((((u +?$ֿ+i\dВ_ "h:jY@#{Kt}>;$d\IQ-gBs18}[ź(k~. Qlu;jxPЛIw,0}jj뺧/JKkip] pO7|BJt8 JT/DLpVZ'6\iwTeb6=>Uҥ{GHm- qJ4 B(Zɢ+$[Kte$0pqVob2>kx<^vH qֺk_h7:>^pkѵ< +j,-dKq`x?B 6%S /$XnCeci +nɐ]FFc{r"Pgbpw~)!Ao no5L0Yw; .]Rrk6yoX8z=ͽ [q$oP$wC\Ԏ+F^-vS#G zUi?MF; "X)$FR'۵$ڷR] Yb9]:Nޭ7mZ̗H@&ϸ@\yϊ"5 ٣ibazЍ@1Y^zg`V76<ҷQlKWQ%Х׭sAj $Ny 6|vQ%H<Ї+}Tվi<\qG̓=Q[Ιޜm-&{S.UU* BPZ5Ř(#e9 ##RNYTͽ02ac`7`OJ,ܮL|mŦk7>h'ځUc>ڸsJg෷Sr2? KP(hQEiA]jW_ ֭t-" +(!EPEPEPEPEPEPU]FmGAv?IQ?G+#ksF.'!?0 1ߊ/U,"fV} +LVZqDb@Hv}kDjVGRm8]DoU</=(E*łfX˝ˀ#oB}ifk%Ɲ[ܔ7 =hQYM]n!:4(#^+?úϤjWڵIUEl.i|:jJlR0hC+l^%gTkD(_ʐe7L,ť^\!'$W$mѝޟ_jv-Ha5+{yn=qF4謉O2Hk+ݳ;(\/gڰCOc ynƀ7cׯ; A_~mڕ+;cq5.M,In#4/YPxC>i%J@I>֤'Gd]GQgVG,ÖW5]"[k-FOn1BHt9=z.r:}cJ}2UwJ⿸-㵘5+-R\]Es 8dgҍGy%n(!EP)맮b ٿSO[Cc (((((((((((((((((((((((((((((((((((((((+ZqBJެkBO *e"*E!PZ+L<7-e"*cF~h-ռ%&)HD͒3fGWe<#R:8&4x5My ёs3Wh?1dFNd~t i<"q@՘TtQu5̣=2iMu}KE"F  xdvHGe"QQ [ʛRxBZ] Iӭ4i #ߊ>M4ienABsفzQ5U-?_<;kU@ wH N_7fLXwczWa-f[x+ +ǥAhf:c .'U=}Nch-kmq&pFP[ +}?Ƹ5 UVo C bRw!c$WZ[Y%®FXX?SQbZvf/,mrx4s}(Ȭ#*Aۻ(Jf) QxP zEmpA k@)V ;x"P'p)\+&$4i5ChkwI[bh =Һ_L5'TӤҲ^s$~I1\). dhT}O:Ú&u*|I$>Tɶ{KźM$D:&#V5?įQ6lma-m /4cnb2t1JrùUR\u?6YZgLų!m0_aU]_H}3>*;;t#h'I'ڦtD?fo;sۦq]ŝiżrnV_Q\tkOe1%TV8y,-M Inb!/ gns[~uZMN6xر0g qvX[Kk!xULԺ~14Z},!@>}l]*L( ٿSO\ӿ觮ǥQEgHQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEU^zUHb\'Wş+?!Mn'Ź|_n?\7/”|Clӣ8W0ڐd+F9?jk2[<*N.VdNS{R2[y?\W}cs {|M23kSRkqZ'A̛wЭпESQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEV![O'X:m댟TcZF.wY,f9p=aۛN=M.OmB7,N4K>aV'mnyFiڽ?'r Iׅ"֞T,n4:\fuMǀsۡ:[ N5[-J=ݑ&FW20tև {AE[6r3q@{TPx[:Z ʥǙ7ۚui%N'>THș)*>$2m;$wr;#Cn%Ӽ}!4e{0ʡApK)an'' Ѯ'>}QLpdN0c'J|1Gɪēq+oc9&pN(l6 EƓ?«JkEʓ;d/iRk3>ͭc#=ZO Eǹ=m; ] hbabѼf=䝯#P^cJ4]>ܘmvW*`QFtŒ\i~qGkb$qEt4麊@K%(;s8{Vt[+P.e?*s5û2d:gi vV#XRsMvw8Xéxv$1A#rSqP~'^idOK FMwm?wzEexď[E/"(g v\&QiA9E?7>zV4w%B?DgGG]'Keϔ]Hc'*S] זݾyrn_1i s qG2v9GH>(G Bh#DS@v=Ah"cu'=R?MF:LТYzg|ό?hQ@r?L? +(TgaG>05Eʌ=3|ah?(9Qό?zg|օ*3LТF>04aZP?=3|akBzg|ό?hQ@r?L? +(TgaG>05Eʌ=3|ah?(9Qό?zg|օ*" XxR$v*Z(aEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPYh7/ +N9gS[x֡l׺N+GS=V̗ GB Ow2_ӓH d[B$w.y4ѕ:`vT#I);#:-w'BT8 ktΛk:#Dt\q^Ο-(#ӥ{f -?EUXk +m4_+p((((((((((((((((J"0VEP?h?@ؚg|ό?_(biG&>05~ό?ؚg|( &>04biW.ؚg|ό?_(biG&>05~ό?ؚg|( &>04biW.ؚg|ό?_(biG&>05~ό?ؚg|( &>04biW.ؚg|ҦQ@]J(Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@5Ye<aiPO?|mG5oMihF%=*s4ЯKᛍ",ec@؏<1`3qncV.f17~bO&%eaAzW΋ž)p![_3;FXn=?Zz<7 |V)U +?SJƣi:s 5¿WBU-QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE^cD +f1E{QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQETq[l$j2}P?]]?]le@(leG.s}'37y++:dgO?oGg w? O? e.ESe.O\2 T6Q܆YaҦ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( +!Cke>c~Uz'tКEP)-O lI"HOC9P1׵U>$zƛWIc"2X3;յkTմ[[$flr!zvi͢f_qC䢮;uG]UB_$"Om1YZ}3Pu RX,R3V+|;K}MדWS7aYvgqڠ:ԚL[S"H`]Sf:KKkaVGc18:b~ݶp-\IJi@*2O˓WEP.o|7uv '{*QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQERO K^5]''R_ KnTm6lYt>g^5Y7/pz%t[V"ʸFڠgxOP#K} +[Y-nl +qk* qE[@n  4%T9g_ +CI,$5 (Bp 9g#CMgOHYjrK6>)ŶFgϥ۬v~us=;I⿇RZuޗytV-i-Iu*A=ѯ5'O#,E.4ꅔwg jt 4eBR:Onegt:"#'zWXX[G/ĉU 'CI^ +Tv +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +( +(+\yΒ\c##jE$FG͑ +,AA44Eԅoj@WVqvOKӞhFK6:oR֟f1E{S۩kOUu?i~P=MRl罠Xvkh<)iH`:;jPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPXW3>mV=@k5Vo[)WK/廗%a@$m$ 31u$. ]{=;S{`ಏ\*MwEm_—2\ՠYO8$c']f~!R>Xe-;# Ta <Ʒh6&Ss1OF4~ew0n(Y*è#>|Cm-7QEh;Km+m.̃}M;uH\E-mnC<€;Z( +( +( +( +( +( +( +( +( +( +(<~?9^^??H`(((((((((( +֚u\Cm&p?EjV7Pۿݖ|CGff3ylHJHpJZ>*lk֖cjvE]! +p@^iZIj:ʛO5uY]V+|QuooZ֒5KmbyF(0bbAȮZE=2RIS$}@qLvo|zgS sW,-t$ZB[NKEY01[;Ho((((((((((((((((((((((((((((((((((((((( H{i$`RjίZiW487NIv@APA{sj~?tљMNt\ӻ;WXY[YZ#qy4x;Cs}n[t&EǍ|4ֆy }Ffz$=sEz7 + EqmqO,x9VM[J6>3 bb!889w@|E xSx툚 G@xqֽ Ş$k)qyI +2k'iB!G}"88@\m;QƤowwfi+5w=9Ij7S>6ֆ/5sm9Z:m jva0"?̩*W µ(((((:fךV@iep 8}-'MQldXPY\3ր5(6Ņާwpyf)e}}j"w8*NAtEQ R[W8:^(((((((((((((((((((((((((((((((.ɭj7 %ȅK89$\ ?.E$+s$'ӊ|;Mu-wjpac#|s;{qxZ֡s{(tD(!R + +#=rj&վ$]h6[Ct*?JdhDDȕ*Or9nt]jmbmBI.9A`v ?um0{@P:МIB˝֫:Fn0Lw9$Fzye!zT+{(ntEBwI4zb> ]׾\>Tr 3UӴ]'O/*ډ^@Q@Q@Q@Q@Q@Q@Q@Kcao-I<,JFEzVZ+ Q='I'9Dž=>#ק ĤPxOʾysg7$?W8^um ̅$F2+|IѾ-6=.e|7@Ey7#?qclh&c6_t1s/+ɿC?|\n=f+"ɾ#H9S5g=1e'ß +h((((((*Uƛkp]s ]'b'Z~$Y"RI\DpѶ0G#;%SB~2Ф7{ހ3[,]Rտ}w<ʾ: +~-=χ4SH&[+$NW-|r? H*#J}629>ܒIQ@Q@Q@Q@Q@Q@McS[wD𰲼אY5 +r2]'M9b-9k,Jv#juѴ_W[8Mq}8N>Jyn]deoWַDl6O̡ꯉ4^jzƣq}0es9WΉzs)./Kuiwsc:l8$|K[h>-R+$8ȄߥY[|Im3bTKm@n%$㑁Ӓq^/9M2ݣ\ΥxQяX:.u9u#e "I>?\=]\&[iehN+3zbi5G`z(((((((((((((((((((((((((((((((?x/ۆ!Ov?OEJWE|/|A4;.3]{zҹg4 y{.6s%OJۙ[ װ3i`(QEQEQEQEQEQEQExx7TͱA'$Ө>זXEOw=C>eoE[^0k+|igj3g٤y2yhKy7vQ5|L&oe51ȱ:X}h$}}OQR8LҷeQܟxuki_ҩw4X-B %-15"6. OP^K04ߏ>+pW>ߝzy6'#=?\T4QEQEQEQEQEQEQExm|.OxQIw_(7~.CgḶ1K"H#Ԟ# nY%HrH$ڸ/i 񆟣zo$aUQr+@>/t['b`i)B|L4F4gkaZ̷ >bN@ֻ/PŪ&^ܥ0uSbTRǡ;KVմƣ2Gc$pJ`s@Q@Q@Q@Q@Q@Q@RgWxm̷oh0JtzC觰\>NNgi\SmP^?y:ķ.f?pzth h\ZΩuku;m6H=hK/Z5dM:ݾU(I~@eEHcUF4`W4vI<(Ի&sfN^Z#n$ .[p#z׍xR_m.It7 AeĚ3x]/FU-ŒFߙNsۭt-"TĻ+1EW=Wy h*u/hƥA9ZNLh9>Mahsi;wzsǡʖиK}hu{%Q@y6'#=?\U5W`qP\O(h>/m+ޢuں .k`ky%]c#%I QFh((J4֭0SrW=HR}|IUS'yo/t[ˈc 8h/_ς}|PiA0Z~6Yڴ.aeB\-m;-VQ+K+L`FsGJ{[^?ގYQeme#EU3@}> Q_?­"H +@*j|73 g]3!ńch@=^]bm!.Hv1W2T;-$Ħ0*QEQFh3@s?FuM*-,~/dҬwYe@I8_;>e3Ep?3^A +l &$ +2xWm$z1v!Լ!ip+%z]dk2ɰsQT҅hpqr +V%'c0[ajʢ| qVEqQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@bk~o^א'12@>hI +M]Xia%!L@%$־Wr]F7X}j8 +W8MJyΝF6M:؟* %c肳D60h+}kք9"ys41#5T|ګRyiycj764WY{zk`}s=qWAEQ''|D +Iڳ1+y\ݜc>uV5M Z ֓Yȍu2D3tg\IEa]:-^2Y&dL8l#M5[OjwZԗV7!~f[zݢ9}7u >ij]j g'yO+2M)E(#?Oʺ(SkkJ%$ڬ`NIՓꏬo4,mFii~!]͌@@A=qsti3͍3s]]G.{[%yb묪o6uk +s+h\PyZeށM+=2ēCBe+il"M;`ڏfҴ^_ܗkԘ*\qUEKYƦ"8}8h KG.]٭%Fa?jPA?&h}Ƞ':X/%ed)$n2OPh=R񷋯$ޜA-ʇ;RK2=^izKu6nӾic6ǩ潧N,t4"OJWZ<-@EPmB-KM>MM`:7][\i:T%CIe(0a8sEVQӮlgsk$Mϥi2$6%$cۭwCYl4 .mGRX-,ǒ{;@<%ſ4CG J@С Lvov?89 +9>𾳡ߊ[%|H6sGp;MtY2Z?H^mjIen*r72VoEֻ:}"G`ߐZ^ԓK|@){F(4LJl2"J@EP^:v:NeGu\Y\׺Wi_r:E@%xoY𶺰0 =}Q:-=ΑeB=֞XoiZsnU *k{xm-c$ (T ()tPx39 4,mLѵIuץ[&1Q8?*(Pxs__IuVbWR1 n1N3z톓 e7S,@7dvs]sjTZ-6LriX'vZֵ%͕_Z޷(^>O}p_y@4-|K4 k( Zh +:8#G䈆OrXGKiX1H+i!Cj괧Qh-{CE^1Om5y4Y5MBPIbup  W=kk2i>*u-"X|˘L+oyw+ֽ ou!ĦUZEy)-&IJ\F26/5`QYUDP?xך-5Y uSWJ\%,C=kܩ1@>5km.pUL$\3sZ¶zao%a N@ֽ`Px@^7ĩ漗k!UzeZL#Q4ɣ ]bo$&=3W-V$ͳuv0>Zzlon.U-:ğٿg򆟰mߟnw:kr]w){Th*=z[P-6%MY٩ gϧ{ՍKE֮tm5-7D U0#k1nNojP ,X?RήW!~fPo|/SҬUSK%t D?yy+c`\OJD,rY3󠨴CXLj!HVC"Xg<ұyk{-QT'OxwTp;y8Bu:z޷cofoG$B*O]^D8?Ҷ|'y? )_(8kǁ4_ MO2{|_$p+ x9+ɩZGUEWAQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEe]LEʌcڀr2*i=BXP7VJĴ  i-B@Oʏʋ mb.$N]#19O +̽-ԨQv":,(((((*u%b&Q@td*O'O(?M}3MUFI(0^w&/ OiZIpʲK ?M:ԉU` ̸y Wi\$Z]a/4QEWi_r:E^^Mߴ~G X&q\Y((((( n7JW]"ӿERӿ?4b@4b/Ɠ +\]ۦDK]yx jϑ + G$2{PYvh:QK@ (&yw߱^O|˼5Iso(v9=6Z@F2*QEQEQEQEVC^wx@z}8@2sҪ--wVuFCX%+]_I3VuhҪ#JuS&]ZǎՆ!]b|cʶ3٠* +-@Š((((((((((((((((((((((((((((((((((((((((((M|LIVlY=<ºcgODZls ͣ!uٜtsE@Q@Q@Q@Q@Q@Q@Q@Q@xgſ y@I?J:%Hx3[Ĥ[f{\u.v4W +_ ەմ!vמ +KKifIO쀲j(u/iк-yHp1;1ޚkJiehlm"4QrjDE.G#{qn+?KDK&begK6pʀ +(kϊ0堍a~u_pMVqiO Oֶ&ǟu} uQEQEQEQEQEQEQEX\n"o4\=A{'cq)@#f*zESvM,9ko E{=.Hm& \" ((((((((((((((((((((((((((((((((((((((((((((((((((((Zhj!A$=׊Z5+|_qXk(88‹[Zayn/ӥO0d%rPy(Yx*mo/Lg;9;iztj:u{nQ<=AI1**kw]unā$Ndur((((((((+J o!=gOpx?^-F,u'*Υ",:~ƽ&nIԵyu+{k(ܑބ袊b ++м}x_Ѭcuit+m%NyӃPOEqN4%Հhk8XwK,UeĽ"DTաI. {]w}y7/+r,%Ӭ0:Ϻy3 Ա-:O0ɱqN\iֶk۸Wک9]T5[Jgڎqnq$5 x~+Ar oH s Q>紶s,<\>$=lQEYEPEPEPEPEPEPEPEPEPEyƯ{x=džtb]"gH%vOA o5hP!vQ@Es 4d~8c='\~-oXZ].6}z喿鈴%Ǥx, rH\d?>+B#iMt=3h!|۸zg{iZXO>s~JUkskLI c$AuxFu OYg^<78$x +( +( +( +( +( +( +( +(~K)[sxL\&Q==mxDUY&ۨ Vr*~sc!\ӝqx'K -ϵsoUYof` ЁwMy|7GS݉cGoQTI日𖽩YbYVif,ِVH7^(>4=v[Qǝ?x؏^E|K?~<֗ky';Q=yKˈe䕂IOĞ +!54\[$s(o \vx+=fIsy*l&0 +^xF׌I X2+J/Q|I-[Ej6+=MA*G{uş,:GXA-rs^Ep o-<7ߋϴ}amۻsVm^75s "^phU0UQ@[ +?Ki{kcfaH-'2x~, Mgϑ{+t7Mn--Hm8 Z+[|RtludG[^'[0~QEQEQEQEQEQEQEQEQE2XTWԫ+ 5rxoE$ #K q/0Fp=ISOf1$d㊙ Լ=,iTʠ6vA kQ+khku) +jz~He'}DAQT ((((((((((((((((((((((((((((((((((((((((((((((((((5_ڎzU7B.F,jaTƽ*OU#s\+S~ѼKeM*0ʶw3HR!ףJøQEQEQEQEQEQEQEQEQE5>/}?somz*l䴼9x\yu7I^y>Ls`PQ±4[]t]k6mx.dh&3Wt[[ *.F'EN$שXx_Cm,tk{{Dȉ @/fywx-nq^xkEm -\ :OG&fK qxNi5$3nn>MwzT|Gشcl. >2['Rx;ò{+%1 *ky,aU}8%5 x[eR]su $w:ڜvځdݹ8#kxsiZ3[vxy :~׉=wwf=#Tz +((((((((.qxkQmeXؐ܎*U'<:I9$\}~z<ms2H9uQ+Nw "y IJ5fʠ, +ESQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE +endstream +endobj +289 0 obj +<< +/Length 7189 +/Filter /FlateDecode +>> +stream +x=ks6]0g" H̹T%)v䒍UX/lKZg~IwSkGnώ>n.֧ώ6^g?/כgḷog_,I]aEƮjC+aeqOOݲ^ET}-Tjn+MO~^D\_uaj\.V.^z=}Hpj8 +?+!߬v@4o]5{ߓ3f%h~JGzR/~مh,TUեU/k@>ijY~(L^`7tI[=I'^_WgVHiwWöM:}LkIתڪ-,uZ'T_Z~r\FKcpuW_nP4ݮӟzڶ6BC7chD76ryjՃO# ,Qö@5RQjYՃjBf?DJ#`qg6M*Q`q/:ub6?SGWbC~[/tH,LrSB/K 5^xڷƚn=홃\Y^z.\RlbBډ#o'&Iv8ԊzVBOs~fE׮n眍nZ ƚruV;j{W܏;W8ȗקZLLZu{Z'[r-H*A.uϴog1}IMNtfx8 j90,+لw /N e'fu>F4Q>vZ@zYF\d;ln>#v/on6iJ;s0Mc/sOzau5hJɋNϰyMcGm-mhb3@ef%55tG+Oּh\x GA#ML,'KwZ(Кcx84M5>qXp8)`5Qf>:K"ukLm_TA.]_ɷ_-g߭/냯WQ]Yk]ӥ \,?R7U[1NRn˓f^ڨk3Jv4 )k8>U'QWVx0a@h%Fi_ؐmvnhKm, _Lk o$ n+Gw#64v(X}{?6OL׷? %Z=#bD'UnTFs2lyMIvyմؚ n@s(CBڦc(i򖲧%}*D6P} &n"i ƛ8Ԃ-,3m2rsFߩA< 0DrY󀋾d8;p}0Ŵ/W @fhU<ߏ8,l9H"De ߴ<$F^q0P M"Bw٥4!2xx j3Y/4 -Bab`T`f'w Md՛<|+Vwͦ3NH^dJ/`1wN䈣%I/Ȕ?1XB4{FkND&I0k: #QP݈e}L}AZڧ̬óICʬ#c^eq7k)YtOS{L l@@Jbag%;Ȼk*>*Qcbr.3OMɨ: DiaZM5J]]_ e8iݦf=VL¸]<0E F$u{fAKŌƻֱM;<洪j(}]T6<p,߫ij7#'sR&UJJ+uq1 L$I G τMxM.k +y0aX,c%ȜFc1eyKg(BI|aq +ü/R3QrI(Hhˠ{5kK.lC߳#3s]-ηanwtHFC&ɢ[a;}80!GG_UWI|y]whף/J:W!if<i~ +4G:Cׇ0eᥛw_bG;?'vN? {۪~qMmGߡ^q(tcʑ n4A:@"61*u;% m{GePpghЧSu'c|=J =#*N(]1X`Wߌc)gIv1_ZJNUhTNaȀ-PP>nZB 41f@1g;09㤓i-iνJQʛĩ)Jfiks8$֋/$t"UE=m]2,&N@uٹn=g2{ۮJC OSw8?Ea'?Fy .Ex +S @X&c!|UB[̙CJyh9qXh;0uF`81Չ!WӉuBB<eEf6K@_ߠG$+Llc|C*wG\[B׬P `3bqQ#@j,!,A?p11:KהA!gu;H-!Tqx B;] V=.V8~AJM4uG#L@aR }" Z| #Fzmr4o}J},X׵@eTBkGYt_D_x(#Yc-?:R#7SoU[BEȳ䋣C`~ҋl{$CZ"⣐ q1N& +NF|̹%٦@YN@f.T20f+-iڸ{{< ~Pk64MgNNҡeVd;^՚)Fd!a*[%7" xbJTla'!u +#-8Ui[&ťhͥʅɢFkjrBv?x;nmU1Խ%0vXm+:sޞ|`'Y TDd],NBm=<9D~\E>Fl!h=x;WwJh+mϟFFҬ:I\sUΘPeܹ+?Xºػvtf1vL½Z|`Ju_>EXuА@$&J;LċP鰭Izs0]H $Ʈ)ZIshRs+=9E.0S#+&I %XqR,1p^Ҕ7+I: + *x=AeL*)Q>fA~_p&xg9Ocqxr3V;<´zrv$`l +!d%7? wRJ5X5I.ELp QpP-Q:4h-vݫي9HDg>PQj[νt]8,DAs1魹Ī'[:k[vǂ%8|DŽ⹉RpB;q F4(HBRQP"v _,^dMeTbRcA2t0=xIeT+gtG=*Qa\BP>\v-X;'a:UX~v -Z溞ܩ͐VkTG +;ec㘤4֜KU)@¤ )Ŋ]и8?(=V +讌|N^D/QQ{ 9Uǽw Cx=S+4RIl+gXKn">B,)@%ɄQ@hd3uewq,]ڬiL^(,X|rs,*\tQ4lQE!18}!AҪAծ1/H̯ٹܶF2vL4[tۼtN`6/;M'MCvn^3DځP2@g\>&wc~00nK>enfgLbl<0q.v,"prFfν#v߳Sd9#4 9eABfֲ{wН?w,-@5ÛOJ'Z#r.Ny vM\n,K1l49cEC2!C\^sGב +&;yl6\feT9pNl̙K)!]_vt76c4y.Ѓ?/7n05#fWr9p " `FzZf{S@~sH^234pȝ;Jz߯-8~іR^( K"&ɱ_8P #.LB̡C5t?n)B]< +&`RNO2"o Tz̝ #p?&5}v$d2D2aV0FRifd|6@R$ih3d<`d1ob4[%n4oxIIT%]yBKlM%0O=*;mnBkDg7C:@hU_~2 J&6ǤhL$=̱aNsL6j<+ [^{"X9z%n w_/`֣ww̧Kœf&/5꣢ʽ6-z$ϱ]a7ӛbm~T3Jdw?+{XR%[/K֍5baV֟5T]jph̫$ (HV.ى+!U}9'}wdNܢbx5_vY}5[mQ0ٛ[k44{*IlR)smW'$ph.D2.s~-p'7vy}P vWވk6G/b9hּKnCnyr,uS%{G˭/3 EI"*O߹mK)ܡ6Fd+\i)LVV2o/"įyaG͸s=Y^K2Kە}fkq]] l$K8Am';yzYn`ДTF^Sڤ]t\m 0 +h)nyc%&W0Y,6X޷#1nv +endstream +endobj +290 0 obj +<< +/Length 6601 +/Filter /FlateDecode +>> +stream +x]Ys7~WC?vOBY#$7Ɩeiw"CK$\I$M5ek~Gw]ىYD_&OogwW_?nOO͗כۭ~t}rz׋g<_QY}r MQ-Zmqѳ7'}!o?e*ڪY*śu1?u|%êY~X˿b>~GE1T] |:j/WGՑ?gUO3f9j.~Ug?6{F.aSHV}!sw8J*3*})TR VfiRUmSȆӔ%F0-5'zhzgBQ-z ⣑iw1򷥢8:7Ƹv>퉥\/[T.DHy\fSr-F)}>o, jeM4/3pݳcj{?NT*dŠ4T7R̿fzaǙ?S|(^IVL^4jESCh;Y?-_;*RPژ~\<")#W}hWο>YFrՑ@?2j rՖo 76ˇQ#5HyojM1Irc=5NKr*7.M͕Y3'%L'aKrZw^ +(k3mz8~}?|(,G?[<6ylMva, y)5'RuPV,ߚ0;k,rR1悍ubY* o5y<ˍiSo ;M,٪Fo5W+v%7<0}"uoaPԝaLs'{=|\5՚Nߒk{Cڧg&FSJ;ì8QSJN= +,q2;WvڼkSwEEy#bp3iv o?- +_ 6+0/ZK zWtR_6fпt {sE`zJBl^:d2 ];i퐵v0}w3ʪv(pފz7A|:5|;IfDngejΉSJhړIg( `f.SsKζ3q%obZfȲ-DvJ*bFWzH݃`őc8{sA@T0~3 Np<$HoF)MBZU0nIg_m?0)3j-L,5Ej-<sGp]q\喃 X/D\ #=+e"#~,_IGrZi},-<{ 3=Vd폘aϚrȉ9C1<܎U=88JsFbL$oJY 򎡡z§LBES-JōMŏO 1wkC>[G\s9)W *fe(rGȋz63_||K: К-O'[;K)L*lh́JG`QA%3oH pW\C]j,&NjlI9kgvh6qoMw\ zm'WO_ +CޣcΞMМniI Cv9QdqxM43+GHwzHCV[B3p?'pie6i7П,=T*wI^`J&v1n|l寓oq1v&n=mQfn[x؃nbm3Y ]#P?i +_>(i]ֶ'BDdW*P0 f9Ҝhn^b7otɪH ~9aLW]rG* ǀ!IH4RG KrI$qq)7Sc:krX?AڏW)j][3;9g3DD֘ydQ>"[6& +'eRxDcN)^d,NVd"(Qbͷ)A*J,RS = j{eckJnδ[#!XݾWQhR/ T \h2y~CxzHN+txpwTԼ||y!afUmf9#c $N p&?OSyW2jTCcpY2F'МPdi";_3Xv-؀:y_0a!@45,;sgY=26GH¨K6sg=/,;MW UjUݽB.u:@,tX<̞liR;433uե1mт˗"lų +۟.R^q0'i7|ٺ +/)W>;c7s6ql'M#g@T=Fl|hMꄨtxS\IbOp\HZ=M KAQ 2yV|9sύfR q;CV9u>)SGBl&曁ya{1Ú 3 +_;&wipAN"V$eO2ѹ)F$^e6 Bͧ >EcV=ɰ!c)*œ))t [dD d;ȁ|-x}<,;avs#FטƍhbFLv{Iٚw^i"@i|Թ|1|M}I=."f2$<0ZIbő!#Mk믟Bk zq8d)pٵ3YwMQܻp ݠʧw7 !% gt⤼ll5cxFU\:rwoq$!ߟqo]H!VDȃ[m_m#D b & gJ'QYj: ĠAH"\zK+0/acT=" + ᴀ*2i1 \1trWDBfݾMLM%| 8Sc-UJD)!0e2T ;pnxr} +N酾,/VOfE Uߩlj+Vx.PĒHVqi$'"jՉ$#¶[^.'77-mw3FUM$eP6KrU|UK0<U8x<S9'=U VهnY3M#z3ĥ7'ݑ(ȟ>7.9m!Vߛ!#pS_(ɪ +%z+i̓oVbL`%NLJ)M!&JT[1dJ u* v/y1AHwmq +9kiϸ逛&HQ]WS})?}GdmGtÕe(XH%UQoU~1 q`nGNԴB'n%w)s~O5&s)ELL3!׬6Rthkp &Ud8*X{C`I7PA`Ka0e;ƅr^a8:#ЩqK?Hx.7蛼c圸1`,ĒHhP0k ,-;곙oӐ8a4J,Mvt]}`2AԩIӦ!UV[;@K2L$To*lعު w'z+}3;X%)u1|xz_9S+NfUf(+ȣʇ !򾚃9/:uD uQp?}Tt93DLYV2Rge:F `;^ۗ +*@Dv ~whrH5jS DX-W=3c/jmi*FbZrWkO@7J> ßDAjt n5c膹є%<pé@ѿ} +$s|eD6G!B B9+)Rã t$h/t:X6on1#-)*A/IxbGa\1subƌL};3Xh.]HSS6E. \+UfW8g +I`i! X@=- |fB~n<8JÈ#-6Aij`f;AH;,L-P V.ZfɦVf`Yz0”/9*9dg,r噳׭$j':kZ{tl"Ls.w`86!5-& gf1f0jf)RBS[Ia csI!Z$2&;Mz;oOisߓ/viʹC]T .&c>ڟY7taduK F$ DM|! z&N2,$m~5œ->Qg.lp6ZAQѣf]p*{a_P+8C`z4c?N\])rO +endstream +endobj +291 0 obj +<< +/Length 6672 +/Filter /FlateDecode +>> +stream +x]oFn|YD47A_9n6^cIV$E'J"/@ dWWW擧7woǻ_~↓.?z'_P뷏)ݲ\US]ծUׯ٭~5~jۋM 7zeoE%1T(fsԭ9j?nTM؛Q7Qs4oOMj/7x]ٻRM}*ejSuRPzޮ뺨O3ʺ-! =M謝6z:y|mGX_`>DMTq]SQ}c훢 u^.7,Ӫls4ƽ +ԇM٨n}nT^꟡Q MZ֠I/}kr;oe^chx_ ?'j(o:NTUk3Z.RU4`(3.ggfw;+-VӖ%. 1)& HձwbK7oC( wԕ֛!FtG॓}n+` oO,F?• +)BJbj TW'եrGQ0 j:S݊ 3]>+Ke;/me\O:V}.a5]G܍G:*ʯWY^k? Yw0veUeO6UVҵϼo ?@ͬoZfTW Tp˦\Ј7Xʶ.e}Z8B|,Y:hE?薫?_=uϮv_WWW!vڧ)F +8TkeۮnRw|i4bВi4WaV:P`ṷ7k|+ZMJJ[Ӳ>x 2YyUg܇v(蓭q/n m <˨|rc0jj)Mܼie*̿y楦̛x[g%n'apiҶ,C[B<p+Yo?WO^]o/x~w˳g6oic}*`];jo`-ܽ4MݺnZxSFn!h(mo:ҁ} 8T 7S ]V9h(1 ; `sR+D9yH2R3þ ;u'cP"s@}[?``<@Hx惉%J\+$7l_lVMoϩhC\9Bg t8f||(SN0U2w׬+ށWq뭟&N5zܸ m K*p)3}xyD13/hICktH÷1\75UC*"Ģj;(3nXU9p}ktioT`Hdtʰkoÿݒ}ZW5hU-.Yҧ^xRkrCu 8nUE/xNnm2UHVsp;x +0@;C[I/"TAmnf|Grl&Imsv'8BcѻOG5+"ϸJ'طwkPr ؖݞ|9ReB){_|c[Q&#0~ -N!U7P $SBD*vLw&j\L/u}z\k0(;\k) &#-46;֏r::!2'Z^6SbtwզFi4wcubY^yhqwȔ2ϼTMXՒ R_.f߹5->2^'1[/DIxS"64a##-I#r}"$Jk5p.ݣw&I:dϜ9n}5MA i+G%^59V O$i%^2[r,CAmv(vG s͢ghj qj ~Ȱ]-s%5W-s4rɮ(N~JW.6P#"߇ +%@⊽Aȁk<Ǵxgb|,OhUJU,ipF^rڳ>s؛O0]ٺݳH⼱pc3[C'ұiǥ`:/K\Ez߻VZ`;4Ygܲ7ݢO|Xh42=uAJŁ¿cjUH][!*f%XP3"~L +.gtrHq03cASTŸڎ]3)&x=np/Dz c^aMj]nDMft5T]8=!n,b=Uv:17 |gF^uDµ>h# [,Hl4n _ +ʵӌ Fs/0PtfgS+bf"--5rI]㬰,3oF&}XdY$ I [D]bKhI`ʧ?U>@*<!_ &EMA6q2N_Tf &>4ќy +I@ i~v=2ԉ"93]c 9 !~<}a2ǬJm} ([y"jT +&[梍InfY TG|!3W dDeVg@ۂQ#j< ڔl#)ϡD^wb7bϴ}YЯ9!Y 8vPriYYh\u()/KA ]  +`{% ®zXJdՐ*gdvߧÝ9W԰Ⱥ75S&.G, ~H+iO6C0~ h`|tEsl/HքypdWb^m@=pa#IamQFQ3#K/0*W>D$}m¥w敥̊AYƙ~BY̷U牠@\7{F(:q.w[$S4/|Ƈ\R9#:Vp4iI-vATA$l;HjgTqw@<}X*z+QS9;ZBjA1$c=|s&ez,{Ka"RT;*"Qq.7YXo| #ql躈(6&FQ(wSbq|c' l . Q*^{.XxK̵{DY!?l18=GdtU1hXh=T=l: EuPf+Do&pwWzE8M0O։X燓<Ӊ #LZaCآ@d aoRqpI'xݓh3Su)6 jR%"هBK)ns~+Z_Ӕ;z)]*-"ؾ Ӧژ 3@0 9.<!/ZZ|B_Kfvh{Mp~2_1.œMYid(泸5sƃXyR%2g{AE E?]AR0o\e8cQTyeŞ%A `m8F,Y\<z#xkofƢ8"ľd❷{~ +0!!\ƪMTc 3 nATS::p޳#8Г"Q6/(Y,S;8y OXd[81k +#9pBkhۨ5|^cVq0)8mo9֖ +=QHD񒰋Q"(b/,Qҙ*YgmH(NJ](uAy"(vL`ɈAI;pus041:Ӥޖٺ/긜2,FD:9͋hM:cb L,`?jUfW㾽$>s5 4p(8O$ENޠ}K+F;dh"Q +eY4IY@;Uf+^Zg>Q-a9@խnf'bH;I[N%-~N>'Q@LTr?(YȳvpOfH<@vE%'5pNC}@q?9I0\ֺ<5(ൢz(,)sJ ,Y2 R;-D/ a=Gi?Ă})4YUG%̒UuRLtÅu>拖$CwO$Ma0Ж4L-!nEյѡ%޹ ?ĩmJ} ?",|J #?Į:HDDm"<>]?f UXPe9?; ̃ȌkB1Vfp6cL G&c BM2E)cDɊsyq9§(4Bfqv,LNqA4=b_?߉}w- $dL{}\c] Jt(٨D@s`ϧM;}u”#ZdJi6x7ɧ_Tz)C`z[e5P&>€\q"QHAןx(gNqXQ vvB>lfO]~]W(toLCi`s# r&0}QYWmAPѷF&d)Uc)H?Q0X"RZSH; Ԍe1j0 JTӤazNwAkiA^NnO=[d [e5 dGl43s1([$t1oco›O2JU*(tFqإ<їk#o6Iz_:X-la$qM ystOy4ιfFb'hyI0sEhАh>y.4lO+IZ|? C0ܝڶ.$(#)d4 +endstream +endobj +292 0 obj +<< +/Length 6697 +/Filter /FlateDecode +>> +stream +x]Y7~W 5Et8׬CݍXPvmKđZ,jnU( Helz3ˇ77'__]ß×6pͣG'Ϟo\}լe5kg7?f=9j/=eZfjVW˶jfw蛗uvn72P|n-a>[6;{_~oOr~Y r,~_JͿ]GHU-]aRrӬDѴ#_.T3jѹʹ+U/3Q4TLPzڡ^V癥nm_ꙙ`tAk{JN)jٍ6U l J>: ؛nA֓j`|P9vKlx!>%il:O\ tF([$- Y^vS-i9\j}}u4T&heJwFyO3bZF8a1#̚D +#47ο>Y[B"IAEfy?j4LԼid)SwZ*2t*i5'SseI 5H|t~i,C]C<6eolMUTU2J1U}cSՀJ.y[{q .B7Ʒ}ЃE .w8Œp#{0 MƐg?lhN#kc[Ȇ<7n;0>ܓt9fc ; `-n1p1/oNai!J N)yyq=Kql|5[ȫQp)FX=UuW|=z.vRhd^Kco<=k$yX[ 'eOwp`3'أ֑I.❉V7ike״qw4xF:\ h/γqP۩Dmadޯ ʶ~;yU+wI;` c^T|=O*lf6YV3#k=)t)ƶ{7[إB-fx|ި=J7W$#vZY.q,gpH]<ϤcxV +ۂ]^3*Yc!_حyJF + >spDKx1S:pbm4#c[HT?_3C %7E2= Ed=HC9d" U +n4BQU޻'_XG|nxO~m;8Gywؿkޘ^% +6I3ĽI:܎7uy~'!<7}ah&~8/{E6a\f"q$cv-2RWj$dN=Z@>ѩZ/*GPA1 ]湗8qKh#5XH4WΆtd U􋾧y‚V{A +\d8F3p;cx (䘻: +AA1fTl2:((UR) $u¿pcF":F+t[?29"t^h$ a$FNNX1&"B2ʔq+gnxX=ĺ:rifQ]kR$ lW=Ƃ˽ HlA|lPߵRP<`Y9TU@}GaU5G +ؖSE?(^ڒV=l;!&}x!XF?K)mJE8  +gI},CjꙆmZEdy m4f֘P)ʑtNL +]'*k##33V Nc q/eVg@ 62hiGi0J@ x,Ԏ<-K1I +vfXz-@,X7 +V24'8#?rK|q +3ݘOφ+9sn&^,laO1viHOH[Hm0x1q@X Kc a[$D&3u.욵j Q/ Th]zI;r#0bWUBmב-O͑.P63Kl!mfbEi|>s˸{|IՅ̗\=玭!oO +Ow`y/1=8s(!66qgS(sR\rW;Y\/蚁0 r$3ҡT:﫧9qtxkVn2zڮ^ Sp)Wz0Gwm37`Sfw;ONeObIGrkѠwA溹+8r/0'R4PiuUÅa)> W+A'x|:,VjPc@&'eǻ >ЦhkxkDIIr:ST'='/,ߔ=F)TS``128;pHi7ʾ:Sg]i0aḇkσya|HMl!3s+SmAзb}SI8%@;QЍn(AsbtkmJFs\]OUg'WL /R]Ӆ +mk{ _ԕTʝ>|a c/yjw>*F>ETu5ϝ}Dnƾ{SXv6y^$ 0Xr(XB*s#-E]pٌzbJYsdgӺsHıC7@^7?b4nsZC t&3A-^rdyZI([, 7Az.26h޳EDE#2;z E)վ@``±[J kOڲUz?[︣3|fhҥ]߰EscUih8J k vW| *cVT*ѫH`*z,IyvY_ UKD9ĊM*.IܒG\lxc]N|zFKcrrYOmk~ؚf,؎ę¡Ӣ;#oYl:KZ_&IJ -1ev2uy8M׹t^p9q&hb)ob/Pپ0NT-_ +i}80J-(J \EQlBVpH|$]{K]_s'b(U9uaF]u;܎/>1i1&Kï&hx=*c(ڮ4`@ P *}Zak^V<#[ۄuEÜ%9}"c\ލpGorM3> +stream +x=isǒ߉?Ǚhw;EF.,6뷲ys~q-[uá^v?J,Tn]*We,X;uU۬jm^`6tIk=Ig^_S+{Y>bo;hqQukuYOumnYVYʹТ|7ZwKPVfZ9]n?C#@H_趝֣5uiGڊ\3Gq6Ӄ@C~QU*GywێUVZVEoZCo 3/sw*f]5(-0RN`=U[\m=ӝ(00/T6DpC}#n)` nO,JcpBȻn-)`gbV9;*N +m'J*&0:Vzrۜ7jmV[yھhY[%e?6єƔ o2:,a{ͱ23Skͷ^pö% .HXwUAUAZg^}mLzVӷQ ̷3TΩݽ4rN#>}z^(j]FGt(͛K;-Cj͵5ˣ~&\|"vڦΧ^ZB=sP,nSO_o'źה5aєP?`d-Br϶|PAkicZ6 HLlC^ٖ5?y1 r=@'/pt4q3T`̲;/fZCJhMU ;5VVeCse6̲⬀U=V6`nmۗ}5HU V5bˣ.n.˽(%ND=ߙU5$O+5,rzW~yϞ³gi} 6#4̅ ПiE!=k`1ؠ zc<̓t7`xU 'êjpV-: кO1BĵpU|OPؠ~@fE,H]kNfԻ[ jlV>k6dJX!7h{l<-8eYi'~@2_Rq +kl&A&0f;>CzG +_ F\f?pldϦ;ll  $@\#5~B<e=mB_%@xE4!\m1f!f<ۧ! (H/Ou[\>U3,m9)Ao9m%Eg yIcU4dFWU5PNqNpY( (&OBS77%3د.9Ia6P% Ǹ X$0?1'rC9?UmN ĴMp(wO9A-Yh8 ~Dsc(B;o *?SVGL4?ӒwC0@THc'ZtJ=%ңg V5hb6ј]?΋3! gֲ 򓙌sGJ*)TDžvOHp&c>;f&8/3ېO󁶡&LCz" b3BH@HݺȖ@9PsΊ4lELoe)"D:=S-* =_ TW +Df+s:3'UMrse6DAr84nUR_ǜי3e6ݨn(mG թBRbCD 4 IfS,ټLϚ(H[q!iq<ZgY[X|jyH p^fvҩh턢BM}^2 hpbkUy:j+F*7cumڌ;VrKU5[{](8z<n{*6iNT?$oe:f2ȌetS״FhyLG@mQًn73'UߩMH\&Zaj BA*;A3߄egc>Ԫl6AHggQܦ4c6*I6_U@{2Ľ )[\/nxP %dcJܸl┯(N)]$ yy!Y0N`G.QTMNZyiJӄ6!R0R*P<~Ф; 1o|OD-MQpP}x VN6҆qM7(/,S&lTo%t#mM(`X 9 +ٮ ] V%x?p#Z)(1Ғż?s¶kտVQd2_{Ս瓱 ~ViL@f6ePk@4hg?p'QW:pmJUyaf"'Ӑ[[G tڜuMy4Pi31]`E']BB`)$r(ޑ U?ǩNDe+0IQ7f5U WkdsuHOl'oD Ur/;ƢBjEPީ@}N S:iu+RޭsbG]XnQE3gP|6]l~( z|*3EpY̲DΟᐶ`-7md9+C@p;c +nCj:6u+㹫>;"Fhe5YBd^c8m/͊KpA閂.M9.h/$ tTe3缣0Sgw~2Fr} #i*^:LyܐtJTrNFЦ <2!>4zǙO$)x7Cf.ɒ*" XO#8g^c0dQ+Zskt3r@PLC"V)_ 9RƓ< 2lR8膺#AI ]\`oef~֟!G dd@TE=q:B5v|CT E%f/YBRA`Ḙ5BqaI\#8C7/\{ʑɂ:*;$"S;ukCɤ,OVo,fBܺaܺRUh?}%^P7J:w^oco?&/.״]K6JI]TfN;9O'hGWC,Zy4)bYlfߡGV53񪻬DDp'<J3̥jFHxc"yIKS&9O("FC^Ł>gH-(=?vWA|*hoQ8gD_pvo,-^w4. A 6?%!8 œH:nv_be(SpSO t[b*2fArNu>- * ӵ!ddS۔  N3߂@c +]JFO4`*>=.A)tS?4偪`U¿GG\A'F(ۃ=hQWa>4 +t-;۠]Mi n[=PJ tIЅr=]]u58zVk +xsk3$*|K4Aܐ0I 9X?#hWQC +=xq͎2k(J CS϶`tJ;&QI~8㣢V@nȘ*-#j'"+:b +Īh%VDf=:b#Zޕ4i$7I}HU&"i;!Dv uLlInUvg`#rdLZ2FIVCB$z.v!;aЯ7Ҙ`EhrAB39^T02XPu|)wh4 K_F q8d'#y#㈯гT6鰐p^0 DqTnd(\yfWM[}^M}?D4g4+``g@N(L.w*(#&> +ʰtqnsVen*E+{*/HNݬּwjym-U$aΌ죔7Ɔ0C{e [`NG?HOҗ2#J~ +2jF8Ur!8(=pu<*qڱd=^VSY[WU$;f 1c:lQ)R?;a:5_iYv0U AP fSa#\S<4qw|Uo#NP3wHQcD*7GyBO/Id;ʘ] +ʼ`=UG2YP@qGǔLچƍd!*}lWEUC;ثudNcuaA|oS-jMQJvLpNU.uXMky#wBΝeݙ D37ܨ·)xAݰh cZ r~KJqJ2X;\p43RtQn6%M-㢇mԍxA%g6}uiM"}?U[ +endstream +endobj +294 0 obj +<< +/Length 6501 +/Filter /FlateDecode +>> +stream +x]YsG~WAY#DY1{%nz E[&h +[YGVf8n:]gVV_N_oo쫯N_lՇN[]no6.r}v6;ʢf(ϟ~#f}!fﯞ?d9*ڪ*_UouOٵo>˹Oyp24{ϟRgONǹ'E}vk?61pU,7Ÿ=Ev9y5̇jRM~ޅLT(s]U=)(Zʢ,eS}kvZݓt5e~~0#^ɟ`>ELTqmSUʮ=u]]ԙ+De%zA*iܩqz'sўlԫ;e=V"Z-}֢TSZ ԡnbŏOccWe + +~P@AI#Yq郪Rr֗({3z=2Bl?Jm +4ee`fԨX|U+7jvYT%d_5df nπG5}@{0r@EO5 l:>%qGȢFGt)͛rZjeэ4՛L|n~Gl)J9ں*SPTSO>m~e+NTԊȳF0k*yЎP/вXgKUCk=F3eA<b9UmQ*<~d͋{px yF?i}ÍF3ьLAa2R^kwQJ͔x(1qwXϖK)ǏflQ&' re5be RU jutvny j_ӿ/og'ŷ(:o ({?_F/!u'0A5å~r+Wr"O %q%;@Ne:}*aAxr=+Ώ$`/'RJBF0K<,$l-1еc0 ʼ7 5gewrݱ=4viDo-<5!jTvl5yP2sVF[]7Y˯Hiz؝!\"BͺR1]4??pڌD2ݭl='lZ";ٱmN6W>[`JQ1tUKW)uci"PmxFC"DT.|o*7'UٌC-W⌬$%zȳؑ,4̵dyPfLEr3 Kc'͛" +vgP=}=bX0ϣz W$z#a?aWt訒C%u1do2;f:ZIL»(wM$5_\T%S&tXF&R,y]#j2Y.{Q \-3&䅩[gkgBED7p~Κ*a>&j#QdB=I@B7\j$aeozS؊D.G(aBe>*sLؒ ̝_ыdl1!M"UkݢKS{Gf EdOɾ-ؖSLwa,@oD(K{,jk2͏>!QrhisIO_.(cx,\iR eW 2 >ג@lSқPP&Ę{Dz2+%Cٹ]X|M־=k& hb_gpwշUOh04m\75mvG4w:4e2h > -[\25=C1 +K!3̀lHiXҽƭ_,QF`$A QG hqY"Cjn$8Ve4N1C.XM^\&_GyGw?&H9CshxORhbS7OO6笍 *"ʀ t IHX{ZLjV8IH E|(0td=V%r[#GbоnWH22zڐ^ Yɬq3p-֨+ T4~ 01{5O"fQlIwѧ@W,8'@@DJοT Pۨ'$Qx Dg壮ᆳODy/)@-RJuvΣZ*<(әhi\J9\w%x§m^45ۏn+ewȤ>ꃄԿZ5皩_z,kRlFqtgJ4{v%@IHqQv +AF٢#=$Pe2M٤Ӹ[3>6XDlLIwĐ)0: H, k7li97Y;zBPF^[施Y GFn>\ Y|^6g ;h9}0{,fg'=TsZp +3)1=k\unQP +l#0`9Pa)g}[΄%Rp)d!R9N34 Nl?K=m,r.6ᱼQjZ%j)&ό~;3+U|MJ"!Q ?{[+_m=ȅ)P5Z|8Ql{dHN9Zc=']iXO&n_@ qpyc݂5@Hysnv9"TM H3!N5DQo)BPI[-k,\g$XH1 O1n?iP,\9 +@r휜 uoiI@S^:Z;17{x#А- +ldCI#6R{b?:% בF`H2$N054 +Jt˜q"\96׵H\@4(w t1KP3gMg:pXӨ,:m8((T7aG_j¾9"e~8o|%-@ap&^$`LěL-}œv}LFI H)7hg4U +U{XB#2dz刭q3.amJ6bq~wOA.YSzq~s^)S> +stream +x=ioF ?A`E,C$ۉq.;3&Б,YGRdɱoWmllXǫw'7ӧOnnޞ,~~'o>_}b}s~yo7o'oώ>~ToqQ.ڱ-TŰ~ѿxGO^ToN?trQ-v1Tu/}_}н.񣟗GY߯հj\.V.G?<~tCQY^U^n,\U?q7t:n޴#5EvݯWU|Ł^ҋrjaZU}Q憪Wu,+wZf-!33o褃6zrN̯ϬGC䯆l&t7џ']kMfrrraιfg^hny8]uU-/+ 4 wg˺Ktmmyvc6jylӝO #Uaݶj1(7;3{⧕Wqgn>L +k ɴe&c.dԉ V;836HpTR5򗥞U{ܷƪn=枅퉛yo>33bllBcF^ORuԓT$s9T0 j*=XmFyLv_[Ǭ--&.i'V{ЅZos. _q7n]b,_-k)31vk>5-Y0*Ri>Ʋw4 +Uc0L>*7 շTm֌Yp҅l7-L;V<>Q-Ht촴2?V~-_-du77=v/./o:6> uM1jUTaUo>x5bИi4at4Y_ٖ=hTδ-kBxSٱYxuWۨAr}oڪƔY D9̰{MwtS|ٌ1a3*Lg[wY*-ʹ,ͥSqzii;[yZSo>Kq'&kl_[N;m(U + IO^_/}u٢|l|{.kZnVuu>̍,Ru+q7 ۿnyboWj\?V{kvaa2w:Lvt4kmAРqbٺ=qMz:_OM~vM샋ę9Fp[yeٶ2w7.@%E@3 oZz6ڸXDFFw~y Ǫ<l۲bZ,AMb +՜LA?YRz#U"b{b,@ F~Jp[{(i. `2 g5^Tui֚c}pj; * ^}t<*1%U^[̊xu3%Mo)&4ÙG+Kc: eT!q[lrLXষ%0;-PYt5ޘ?1?gB^_ G IsH6"x1cPKQL-~VrqD*Z 8H]Dz:/iYLtEcuZ!xB_UۋDkU;mUBv~EwF5qa/3wJ)*jf*D 󤻣o^1E(`pS^d yt>'dZ?=2FqK/h%4}1 M&:1E c_~7sgUAc }61 f:1\+Ƈ7w2cQ6nƊ?ӒH0ص[s}"#B ȶ?~t!`T FaDQ5k̋̓SiM[&MdHle'T[U3N MkVbSj4Z1]E^s= <:2 .N̈́y`x2DiBVVUf>F`$g#OID'S04 U$E+PeoU; (7h01@: 5ju1Leu reFѺ2G+ 8v|= +Hg }/4e偓Bb0JKgmYPD~C[`JL b4Q3aF۪Ʉ"AbBX Q#|}-1u}.dƍ2߼)} +YFŸ|X 8ǣ7ƙ!BCxЖ'~S983RHC/y~Y%@^H|͇h8ڕ|BkE+as[yZf{s"륊)~tSmPMf0!8\nH}B끛BD!qQ۸J/pJ\$;./BQ +!!IH$霣t4aժCPYZrެ6òA@N*9`A{N) Vᙔo>F(| cБ~<mM/!{v܊aK:fQdqP pJI mŝ`}D3W#u!q /YDDD|h+{ΫH)d.`a"4^plVO2ry@$v",8 q +-8X^ƕl3 w)3:ms~OSm8θZ<4Kjf!S9V`C8C-%d;YdĘuӀ`ށ3x&&nI# :E\c 1:&io쐎ө OpI{k`W0k&iL9bTFb ^I-]"I%Rz"(A)r;lu_e0:F[ HL9>5TncMMvO"@/ ](T5;)1)֧a]"7J){S^!m#X +p` DɄ'p5vL*t4$& lbU"`&6is p7@/496cS)OP ZGpDRaԌ*хNP24OK=4#5櫜KOjm>3L2mts<1R)=JKY5ư-&>[-CX`ж-]/yCՌЦl6w(zu+lfʎeC?Bbڷ`zOB1LO1b2zz 6ь63I& +$+zK24$ϛ`X5[NRɣʷvMBMBQC,[H\B +DEXKɲTsJrS'm +m~O%x4o +{a1eո$j}ų5u|}uyebg]ܺ'm.7a$f#.{[YNo*8@6PLJsz悔BEUـŞTi$j#.0"0^"(\%ȹ{`")u+a$"GINBŷ\D&GWHy74vjqVJ9, iX'LH^^9!E!; Z!s0U5S^N;l[Ž '_7gd_{Gf?}ǴVRR=օWP(?7^T)͟ڢNz6kSjsteyX[fU;Unt;bD +eE}Y.> Wm2ȿ +cHv8gqZlpN/7g6d.\XKg57Π2ska!=ƽ(x\_띅zL.GO=~!lzin0WyяIVI`A*h볠eY +B^] "րQ&U)K yZKQe7ڦ΍E} ("h]*%RKJ$SOM칯3iMixjdž!wKw~`{D!A19+ynTFw1;)En +Hkz:Ei|S;QB>ҥU#O![ Yзo3ܮ Z!)nQZ2 IR}BԒ(J-de7cni6 +I* lU]xt$vm;idZ^}Ici'3Ӳlվ^hUg;`aMnq4wۇm8иK3ߨCUlo h^Ða,?k9>s kDC&k|C{-jWpVU4dW|qlqܞENqeK` $=UKgƪLat39ke{@!ɿ l3#$Ct#9 p4ʕ3ڀY>$2О܎Ld4$t.^S.cH$+ٍ0h1Q5+m(:ibuh#nCN ćC[+s<\B౔S,Mj$ ؉p>Ɇy\3mU +5%rX&-^ɏ!ؒ綆Yt|8XIB$LZļu_$y7TN| lĥ!+}9. @U&*h͂wl ~#C+vfmfrҙ/Agt| ~7umH~ +Fg.͖obR{[1ј,]LSV *=n,z)V$*!O`/T^&_`ʰ'DJ }Iİ>/A]]2)$zB'(MS">uOR{7u98qHBdYv0qn>kj3QrcIX]9Axc@, zjQR=&dfW06fiEۂ:ܡBw~NRSR n:'?48z>/,v*%jsqMR5\< ! 2(ͪMȳ]kUCDHNZ(WQ1ocҶHD2iQ!Ӓ B:×MA +YU# +S%fLic'%A!D t{Z7ȍ/yH)~8T-7F$$ďyimT +endstream +endobj +296 0 obj +<< +/Name /F8 +/Subtype /TrueType +/FirstChar 32 +/Type /Font +/BaseFont /TimesNewRomanPS-ItalicMT +/FontDescriptor 355 0 R +/Encoding /WinAnsiEncoding +/LastChar 121 +/Widths [250 0 0 0 0 0 0 0 333 333 +0 0 250 333 250 0 500 0 500 0 +500 500 0 0 0 0 0 0 0 0 +0 500 0 611 0 667 722 611 611 722 +722 333 0 0 556 833 667 722 611 0 +611 500 556 722 0 833 0 0 556 0 +0 0 0 0 0 500 500 444 500 444 +278 500 500 278 278 444 278 722 500 500 +500 0 389 389 278 500 444 667 444 444] +>> +endobj +297 0 obj +<< +/Subtype /Type0 +/Type /Font +/BaseFont /TimesNewRomanPS-ItalicMT +/Encoding /Identity-H +/DescendantFonts [356 0 R] +/ToUnicode 357 0 R +>> +endobj +298 0 obj +<< +/Length 6179 +/Filter /FlateDecode +>> +stream +x][s7~wN[`0lJU|8X9&y$ZR,KL)?h\q!)TE& t9r~z8|s%\z-&/^M~,JaRN)I_-?M?{qk6 69- UVͤgUM?Fo>t/⩓s<hjLf0~W?q8M_Td8rgMzlUw?Vg FHÌ5WN}8b9{g.ڧ(c]QfU;-vyQuO3Km꥘`4kTה~r%EMTamc[=:׮.Tj?ֵi)8R ?,68C݌ӭn:?C@>JխnS=!PɰY4U_mŒI_ըz+?Bo,dP6o`Rr0%U0pթbK1b`kM)>K+z[G_b\xy_ +5I35re&e#ﺂrhjwCFOx)$8Trkj&:9T ^;sEJ<);ܓNxmcyXu=a'{P|r|*Lfzy) 7`j%*=66 U RVUO^{ӭuV׷a !>.14 FX;ʆ8>p-4F :79, ˵4wG\fF^,CO%Oym] BCF82dU%6w A'~jAI#z4<XGB)lAV HٲOxʆRī +b/z's^A(A"H`nhw dmd1ɲB;J.[>*PNq6zXW]uۏF.G%Yƻ^p`2/[Q֠UŠ\cI'n`F;zrRk~}>.޼mc(' N xK f cVB?g{Vꦷ.סRc{Lc^ +m_jHڵw_o v>wDQ#.fTxBTDwPkLR,f|Dk6@uG2hKdʇy\YpY\Ҭ<yw1ש?I/hSBJkhu.9z%JP@]:`q },gq-\n4Ex)0%\Mk`RNDQ#WG:<V3`ON#W̰1͌ +G%‚^+Ȉ@ӯ A:36l[1|!|zeN~7㭺`%VPnO+ufhn'?`NM޲d[ iɌqM,(>z%%_ܜh[Q]XW+Nǐv9j%{O%2Xlb: Տ; 얠vq4]1BXgJ!K3sqϭ[d}+,†ʫ%WOѫUm01Kb>G#6b4aeD`cX*v]a)q*V{8iH jzbgb}; xQ]Eqt5Ffwkp˜ڿͤPg 1RUNEVVRxjG`oH瞠JꚈ Ӭ[{QHAB&xUCaNv:앮2t`ce/=8֩bIs}5[hn˫1zbA%YS38U֧B=Z"C:[y@ҩ ,m; K{c䵮 ^q d a\V|x.3"0tEZܑqR=)n6D~aʉec(Ӗi0,<0,w- qooW#-E_R"Y4xGZFCw7Z 8>CPYAW5:scwf +H 0he; t4RaxXQL$-M*zgTB}IR->0љ$խjy-f>`veH[s|QV7XFݸq4 ꭋJP4ۈЋuΤGP9,yj_9k=ONh`4=k,'%(B<*(XwrOיa+\b)rKmIB`\踠,86Cۮkorxk<7Q]RԵ0|%o5uA CFf4=5*!\CZdcFg(eSyX𦧤9`$QtEBӽ<#{Uz_8QD6'Pf$vI@Eb%@ix +lm ^+,y{ R|֒ Bs׋_i%?? +]h{v}yksM0#}?tE:#&)*M$h)14-0U-"sFXswiZ;67AO8Hکxg=O-Ŏ' BB;y\wZgV (63076!Ӽ.KkK|ǰ5⺹ E%.QY<+Ԗ^8 x!쿇GT KxħL7ay5vT80Hh2>HFUC`<+dq$n|nCe@ 9[B FB>#8CG uvϪKrՠQC s'a]SHIKi%d)5hYtbU +F`͓z4:U϶-س-x +(h#HdoiɩGI Plt4oݚF. b3˅ d(԰<] C@6~>S%{@S⧿`rL!s{-e^ʒz׼xo-=8-xh} A`ʴc5q-n +֭ƃnBiXnʢJvDs%KoO[K ,FIXfmm]Ojkt h`,:%>_9/8806:J Gu%t/3`]b~}*+6ȠHN'Հ*Ͼ˛C.1 fD/szXJt* +2z+ 48qNǢG{pGJ##%;C[i*',xW$D,xJ/#쮆W#sLOtr+<xݫ7%(l<&pO@qִBd}l J ?`qd$8i=6)㤒HJvuۍ"4L4DAH(%b|/k+~w' BsRPpǂ8їM# JSi獡uJ$j+ 0>]*mUQᲑ!y _܁+y|]bȬݰT w \AI6XG bc]Y46"pgl!CR[)t;̜g=qOYx~rfÄœ#TXArKXPiwSiRy7=mtWRxc#Y|h_PrOJ3N) .2gj17-ie9Άdʥ;I/R0beb +n+t$4['F1'd*NAT- n @cӲ ̰SUu/gԩuJkjztJ,iEAyxt\Wz~xkFx;[̐RZXnjsc. qod< v==HM_ԅS - 5dž{L;ư +]S b?H{zH܈q UF*/y6Oi3r[& +7\i֖CD`0q&J^;GѲrh(]@Y߸zHX|85qXuumeha|ʀOܜ4lm;k} )s%eMYG[{QI8pǙ5lr^ޛ1ZoYagY*I@ވf $D^Bk}(eeOuMOV<DċԝgB$k8"0an iJQcq8خ]N,}[Y5|ؿ=4),R`T7gM]>-,=^=w[le:3:_jIH3A ֶueNrb_EE@{4w9MD$J9;;Urc]#g0VcSldWR||iokoxE+ZP>C0ut;}~o?k{7p\GN;>ܶ{$Kѓ>$gš J+`f*/L|$3Ќluc^tܔZoyǢ$ێz;AgX珡T#4fGw&0Fp</SwzamO*":/JPfbT]hL̜`#UKܫ8u0pֆ=-qⴀ,CIQIM^w7Vx I̍(dOAӧY{ +.{m}d? +endstream +endobj +299 0 obj +<< +/Length 5910 +/Filter /FlateDecode +>> +stream +xr*r2[J +Ifʴ,+}W1@%3?LW`Hс fo|~x\O>N~:ulb^l;^­ogۓoϟUe'դO:nr{O,?=zlt%?ؓM(.\O:vr=};F\O{UQOnN_'G|%gSw%vP.~S̚bFSq432ӗE+.vڄ!svh< e +V A$.Iީ )q4XlT A*uRVOjU?H9+,MoZx:6vV\[ZyjZB ɹdbɴquW45k pVv:_@>H\u~gViP&bԗire-gϐ < 5Fw%IIر9P03J&]EʪP8dB +F@[͙M].80,D%`!z^BK@@0ӛ:B2epqG॔}n+ {rdKbcl8B>m[0 m_~#8JU@^D s|2#3̿Ήu^ j]'EfxcyXi_dV1O&G'dnF)~l+TzVlJP`o5K5a5tȜ@M٭;N,At%i^(kRq}ZM˄y>o,`5ls=9yy7JvOݫ2v̧b#y -{J8i2D"vfwc桌ȓ01<XGx02S_%OeP! {7a. (K7b+;='s^B(,f? ]fy#hz6&3mzIV^go^( fB<J. +F`8<ܬ$-\sƝ0n@&ʙ쫫pOc_,QQЪ WYvL׻c eթC<pV&Q+\vW!m0-En M}-PA>"F5= ,5 h7 vɎyѐgf4@)l_fwH +M%:$ +y4/ ))]AoRf}g~ +Ո}^| K⢓@,&1 U?ԋ{ MONGNg_2oݘGN?rPS}P8Ν ?5csF[Y)T/MPVڷBIjՀ Ϲfno ƀ`wpuՉ:`O+f@B +qIi,AQccW\+/Yj|w~.H'8To0ٝAPbDvP2i8!I7R[F=x+L|)NZ1U(hzVfjAWjzÓ_EcGS,J3ũ%R2 +$0! ܑ;3غHYW4#4LXw!B.6.O7)Rg(/6w{EU r1Q1( ւ0Ps1,m0d6|,488\VXxAz;e^(qrLu! 3)\0J2}U+Mܸ0ǚ- (63QZqJv}*jj~D!lBx(q[a*KzՑ+699B%u_AclK3#fa$%{r)Ě8IJySfPOKpN:a/dvq8.a#կ,it#=҂d]:|X,$eN>UbЦf|Kr*`@u$XFlȒ$.8Y" -ԮBcao8ynLZHɻUFPT^{^ʅcRm$*JOPNPXYm[ +!xynzSZ>abQ_ VX!ѯ˞ɧr]UU_3 A6NDŚH+ٙK*jL4q @̒7)O/K6lazh;nǗ:_*[C-^$Hbᾙ&ڪDu;e3i#~.T`c/d_ݳYT"ᛗ| 6 +3T^B7mÖ |eө_IU#4U^߬gWXŠPӌ˹oSlKLE{~W)HsSU#f^UpHauxHmIWlL$F%qmu|y&{.ki]͡㒲rCYS8(xvK:V-Pg%Är + A5tW_?I 1oahlkMqiO5Sڒ՝J :܎7708rc^jkSHN4pfNM9)Ye?&pk>RW3ԱVИ} +s=L ?=#[L39َNdL9ǒF9+xTvו53mx2y@@:A嚎ϒNZjIXh6픫<7[Tx?ۄ&agYޮF ߊ}RҹYaqɨ f:7 _!-td w`k)7\z"jc4w)r˾p罷s- &[mAMl?wbkr9 <831tE1hOxIG9D9 2&"eӓwg 5qjV] +_=ʨic?DoLl&oeC5߱ alK%im!vv_B7\s +ȼc#?RM D*8xqrNjXZɊl Hsyu38ODZMu@jXkc;¤͡W.YPqY)s/RbZxD{Սh4ҀN++x458o97vbzvO>Qi',+!yu vLM~7-j|دOׯ\XiJ`;PNJLHl0G/fWeՔ%LH3٣(X]Ш(ZVn7, RAxH0UNIjZ'k(8YCWf95-ޏ)eK9'ԕXػ '+:[ˆQym;#$>{CWhGpZMQF$tHqߑ1 ?v"Nc׳:X4N,ppK939Q~ #M+;qwd⎖fo +t[ʲ У}w%`Y;}J΁j\>E;f1*PW\y0Kǵp&NrGѨ=ae 9-QW$6Ik&H]w6 3uw $2ᇜsNfv=u=hP{ ;zWI0Pʜh!:l~+QPkeq_(fdiܹjr~I)px×GgAOh7zCnU v?;"{:!Q{u/Pǘ،S BOjC^i5!imI7M?H0@51Zm15%y:nj͚sN6_8b YTiި p%ԓ0Jx/)2k*5fK92Yہ Lu (j-cV0P_@}v b89{%y-o oXӷF鰄Y3kp\a&7&<&Qa+tXR pW^%0v]%Xt2jb|vQ o_'F~ۻ fw"-|3r8F5|ٞ{DzHaWK[97nq0 7Or7*oP.-e:9h0NII3h#Hn "xݩ^ ? TtB6gj}۳d +p +C.6LtV>gpiImdg }"z"|UMAj=9cHJ/d^b!>ŘhbZ}ݙ:kYؔℑ4BGN!osKf^颰RdE(*GZÉNPGʛ)k5wrX)^]?a>ʐb3JY~.kA9+19iK"N6NHIncx΢iqvjZ$~,M[cநK[Rl$ETE[+$ + +f d߽l1x-I@^hq}[PY-ئB跼̐[ׅO_.̕H+~ |/ Xg +Lfw=)ÙSCץnDPۈygf5Q!H7#!3+W=&q1sYzו˟ GV;:< W^AHkH[:};D:% _Ρk5zkZֱxROKo`xrnI^BwR| GO%ޖ#HO|*5w ,zHht=, ChGhNaYPq^i܂TCSUi돸sƴif`|`ۓާd2H(?N +endstream +endobj +300 0 obj +<< +/Subtype /Type0 +/Type /Font +/BaseFont /TimesNewRomanPS-BoldMT +/Encoding /Identity-H +/DescendantFonts [358 0 R] +/ToUnicode 359 0 R +>> +endobj +301 0 obj +<< +/Length 7321 +/Filter /FlateDecode +>> +stream +x]YsF~WC?vOLC(FPd{÷4;CK<5Mrh+3³ۻww/|v|wyt˳77>{ُWW^߿G_mNn_,I]0^tcW5հ={[\=}'^PśO.Y/Ģmh*x.kC0 >eyrsꖗaj\.V.'/u?=}tCհQY z?Z4oY5}uhVy^nrc=m'?eBUy&*RWͪ闵?]KY5RvU?z'غVRϯ ;RcDv+(Zhҹj SV ՗eZ^֣q uꗷ+/JJ"F-}2Vn6ACM.5mvy]F.A(h_)i$%{r<~PǨ\ j+M@WaeBMU~|'YG Lp\W +LiwlTQ^:7ƨv>Ԏ\ЗZZ \xJUfRN9=I6AO֓ R+=6gP+tgͮ>WZV;1ܵ~1MDUNӇ>Ұ^}/ֵr>e&n-׺=e-]SNZO:GB.@ZgZFo':o&vv)܃t'pFcxe_%iGɪOT Q)ۿN-K-aRS-.xY]mSq3\(?$qN¶oZ<O3 +pNm(t^7>amofިbf?NvX x)^mHqimme~m,FȖ4a,bg(_]Ƽ}')2d隥fNc;2+~{;EqUϐߦ}Nxa|ejIwcz-|iVS3 +ugg +E\@ƍ:%@Z1i W^5oƶeXz]]0[:ǥb tUsw=n֣3H| ,ƬwHکxE'6A48a Mf4jMN0\XLx+HoϙZۧ( !tu뢒]3Ж&}7Nlb^wڸ-t?QUq} /&^<݄= kn.-l2Eڿ +s]5- D8/؉G+v}qkjg:Ih~ GѺN7}ө莏ʾ#}_GBĚ] +}Q5"e۳l柋#*1n;ؓ9cTp?l nO] BnѮݤrҴ*94|(~Jҍ'/R`JlcKHi# F>'K6VB%@BE7~B)Zx*g.tˤ-Øn0bȴ)f(jJ$4޷;ډFo+vQd]n ;\"517mZKX/k_] 9&G gͳ~lp90JIf$–hOP$rg0I;'^ʳGK^tEQ/O2sh罒`#T~q &QR3o{.0Q&[y%g0NƹSѐAٿW > X;D}n.B'xBcЧo@ݟVNiem=]0̉1,K>Av#==Կ!H<EpbD$uT1 &1Y1{)!OFk䄢}U9hy6M +e\3k1@_Ozfl%t`{hyMF7)#s2Yv´P>r$n@Әk$Cg48FǗ>జLnKU2. + A%ro*#.Dկ@oQRӺ8iE>FDHBu.f[ +gDv^Nt=C)-YS˟@"( Z/:?h?%pABQo0 dcV}^9zo&R_ۑU#R4e||7)qrȬU:\-aGþ^%%İc`XβZJL: P-CX.ƨ":f@Zse7[Mq ,{}D sU d#ɓ:GĠablϕ! YAHH ʇfs⠀8eD:@Z(6 "h!1xqFl^Nq~=ܮe%3mm*9T()OE.Vp b܎AUB<&) ^/5wp(~": +%xGyԦ -u3GLXb"x;vfc^2z!7zdA *I4@r{q14sT@ mKa]/*ö1M1†[=٦Ѥm\IC~rPec8?!:wJ6c~A,tזV8W>ѮKVew"9./?R-vܼЦk˄ m? ތu~GP,$Û gOӊBWS>q5NiIG9:So^nŹ/+B>Lꬦ-bkZ:又i=`&v T=|qFޖ&Âs 4(uHJtQ3ܨf׾@SMv$zG4yB: [qJB$'-?~[<Cs822 阱d,2A飉@P_<@*[mͣBW,JJBg(1+eIIs,eo>YƷwp;rx7=*b/Ӏ5eb.8awT+lSdt7g p9hJ 2/EL "-nk/} gnD ` +i/^]01oBfR'f|k + ;kdETcNV<0@afiIazӍ,ٰQ8:sbx- +fnw? +,a߇"/ IdH2md$rK<52Su9O$5Eoj/8)w՞d}T~ Rb&olk6TlC}tܐ#m:ޖLbm})!RoHysN T +IѧPr`kc—>Zc6)3sO`18gA`U.Hr{=v:J>u^UEUrʼnUS}مH, i+ɣWc.ڣV%E`GSvGkipڨ[u3Fk7DfC?/7:֘I\p}JC~Low~.TRA1]aJt{ 9W7~4Ӓ-vyLmڵDQtW1 եi_KK•p M=tҥŽ˵X GS0*,=2?o`=1Su:'%;,1_DO͊8G =9z$s vuՔR_Q=!W0Q-C|AKK y&ʇk-U%Z(@8YDU0=ZyQг>>:kͦ6H ,{y+kq"vCefNİP3R'=")ku !7baw*}C|hKm \8l^]҄[طV(fHZL&ԵSh'/qҼ0ʇ>|vr5m&Ub`&iW 0 +v"lNEIP}|81tQLtp, A'Yx%*c)8aV⬮%_KH-_NCh2 A_>(۵t)]8a%) Ga 쒉u +MP]k? K0-|i*!RzQC/jDZ3t-߹ԟF,WoԬ0'mf,D }-Oqwڕw89],|+_>X ŜVL>N^18)B舆H69}>o1L>b"Eb;M7L1dF9)KUϬ5eg$_ %!JYĩwP:D3E=2PC<{&0&Jur%-MghzfN*ʈUiN:]C'~L+{r8@u_k L֣P?:g#|sOJPy6WcƖauKJ;A6)5(0~Ņv8N)(J2c*ou.hQx3 m*Z]K(dyg̖\d,ۋ2L> +stream +x]DZ.@|YhzzQ%J{Hjwڕ꣎>HJ*π:~Uۛ?xts~xחWzg/7//}st>>~půU c?-E7uU[U{_߿ZZ>OB-ڦn1?B?gL3m~'Kϗr؍\YZ}TytQ?lqtrkeWҁ}-5׉Vjr.,Zp_?.ute?bد5jUN0ؿ s3phiڂ/#B؋}nKT{X5%z]^5U\FCd.#;K!ONŹ:V Hq|(3L1yIT] Jy +&+F؃+xi6ǒ8?- ?QcRwӬ pZ`, tBYUga咞:kPc]5ZYxs ~fؚϗms[Ԃg'__d&!u釦k=O㿷Og|ۻ`P ʷONjl&4[?\u4xf4j>to(`5{B\ӷ|zPb|dOjwjd;IyG-aCh;%b~-CssBc0͖%y~Oh>Kh"D7@һMlN\Fy̍腡_+S0L'Zqf̭T{cD?Pwd.YW*vg"Y +J3; jW4Ǹw^ j{_7Aڧ~i- m\۴,UtĂnx~)*n '> v5[S}(ܶi!šY+u'x$r `FcĆea`X32׊QWCws4s5oŪAs J./F1[hX4ZO#7Pe&M|x>fj:hK.zDXV0 +hk7ȍVEVSdo'T0Ccy;J!^c>P.Ma;BQ!g7T%m6:5AȝzsKԋd8Œ%2-)m8%+@J4,>$+WN #"\r}<k[*ƭ{CH%l]&&iv,<AE1_$d;F[5sVeu&s2c yX[i RF;tMN'\Frlj{lM),HgSMΜ h!\f}>0辦]?}y_BfB\cy* `dA6d&%k$! uXxiXzk>3SfjX5ƦPF0+DaW"fm<dT(H z胗-[1A]6 P m|4SLo۵( 4J!ˍ{s8Ei~Y42ց|LEPTR +X0k]u!;KT*/ +JZoa\."qN¬HwRv[|W m<Жf,ݳ%mJZBv3guKmO*h7 ,N0SfP sl)gCMWR6sC$+UƝk[al2$蜔'Ǭe Y&DrjJxu.oOHhc4DW%uGe,֤b `[΅~e@}e6Mn 58j"p\iBs Q[4soB +v/-H`Y+$': pos*|1.$?0o2bIø>q(1n'!k6"^&|am!>~y,~1#SvAPWiPﯳ|~IPso`!Y!ئ@X}@ku&4b%C b:+Zj RMTy>(l]Q5q=N#!6l 9b־\!~vdvl(P l{S%ԓK@{0hE8~%U +iPh{.f(G8ɘdf)SA +*]dx'%۞6ĩj̥c$/I1DR, +L;1ؾPrOu\'㭕13)^뭐I4%2喴HVu +6DG}-y\ +#_P5%1 +ӜJs-@eHy`v:I 62bP$e?@I|]r'1\e+  +5 +#gbwO-/+aSum|qVE:+ +?6ыMq0{B&"^%mL+R^Qcynm']Ur*Sd( 7xo)iC)I,"lGs*yL(w̝SCڄJr%'K b0ǫn)=!Yfj3@w19C.5ɉ _!eH]QF!AX3RwEŊ Ra-OfQw隶"|(EX>ω u{"s'CP6րLUT"#q=8+r[މ`n.Bj4a]sv%h17Hg3O‘ 2"wmAly9q,gD Vzz#YB 7wm&s<^sDAV3 ]LC~xDBwBh9m 32GT.䄲`{>6'[u)R[%0ziEm1*&v p'莘p /ZhzOW xdJ,2m\padg;kQel-t4@Q2.2 -/G]PTÅ5! D=P.KP aBWIgc)8zE3>w/pO/{] qVl)% ta, o6nH6LUp_귛?,ͬ&[{Wn[5g3dLԴL?lAPMnH4kzG%( R;!{X(t 3h:i3H,;>`AI8:5CcF(TON6*3_{d['*IDgY.s΂xd*Xv2*7Ej&D a?X1;pûRGE|w' bVb>^-jcӧPl)Txhr'$)[^L7ļH,B|oET! +xo8-qH ԡ+%w|kqPIm:D }tLWդK$ՙ}F~d;e,ܾx6O"ӕn8c2$ &"]fm ZeC߮y)h^'@MN? +b\ t 9^Tf22_oWK T7 !4g'QY@/ePhb+qh`[|$@>ܐ^^MBkD(=3lvp`:66]s/Sr3 P2snC_ܥ)IRu#nI1[?pg eVvg(;"%H^3rp)A &rLR*b;쩽wE GEmo02;V-05w3m|<ZzUP'wH8 䵙lC'X@iTd60Tb1e l4]&C,bCq͇q|&2N;rw-q +{ 礫f,in?Pp,v'oopB +i↉tGg:Q}򭡥}[$7 }E,-"/0؄&+ĢŞ7@2fADL=M9&4^ 2[ۖ蒨nZGY#n:wCOb/8.T\r֖TB1.Gΐ.{AN12Aql)V3w)P?~X싏c'/ whfQD[ ! vEm5,23Vh`'p03Uɼ<&‘o}s_<*SW˳t/5-5Gr@ (yb֌d; {lsgR!"3HkD߳zOF[ySBM +V}UTCS@oJ\>(>轧uTx჊BdcoY Aw摍NeKܶq|RTX[J 3*1UÓGE9N›.3.6YpS@>MSt!Pxx%N)]H|op3r]C +]c&^g3#m o.̶E RgQɣ$qo, +E -+S[QbqFsUuwɝJ̑Q^a@+ж=^AJNhw2!$.2>MNtsZ3՛Rgh4EJht j/#M(vFӇi)ef}dO$pݦeb'"A`*ݍ^ĴU! F27l|Sw҂}P2NC,)> b=4Ĝ \#ț_Wס~)A3gpvpĜs+bS~ݛ} Q%rʘmz3S?2i*i^-cG& -)CQ̑q q> +stream +x=nG pX^@$;8Jh27ΩjZlz]ٷv˳jwdnї׳luy=}{a~8.&'<~Tkۺr>iKGdG߳IGL,&lRդeͺ${?9r_?͹B16!۩vlKߌϣn}쌻R6cy֨}ȏ:ce^Dko)zZH.-DΛoYD uRjOߢ#Wfo@#r=&f N]!zoT\2/{PCK?%9g;^5n$JnzX=M74ct6 G n5O9kHb28R^VzzGLㅜ:*6F蓼csnTLBEˮEů$ PrfBrQTWTT`c%bfdJ !J0xe  +x=Q3{&G96} ؚMHI8I2N-J%+Pq}Pb|hO +A8F]o}S+VUͷǸ1ѱ2#KkշFYne@'ʅ&}T"ovA@U`tU3n[iз5X avpMn9x6F>KBYoG4R(^ LZ`"ob9ypS;^?W쾿^=b'c*|zWy'-TnFC9~VywH:y+%QSJ"O*¤2`a?`fiB?k|I+A)Kž\ +{;!(kv#9FU5ړ HVd onۂ0[NЌLN@`2 ++?DžRHo&=Kf\d- جɛ\#Δ* +h6 D2hUŸp}GQU@ :\I'oofsp_>?|AGYGT1`ϱ'lh`U@? +LYxUs]]i3\e8STylR ]1 +[<P/HKr| $qmު2Zj,. `D?[CM:wԂE>lFOe2.h!".\igEY ?r哹 Õn5ᖄ(UYb4zi" +4"KsLɟD\0S#rC*VwVwuL^0Њ K1>$qD +0n)ܸ HlULIJyOU9хS7 홢 .qPBtvQۋ.j7<*|z?굌WGzD$zYGEhӰC#_rt{uR T_fC3yu2L&a͉= C&K2]YPr.R-7sj-Y"G(;G 3(5^ @$y%`9d8742Q<॔'Zosv"Me;s*oȶYzSgLKnB.ks_z=PTҐ1qY諎)ݸ'?#{TT>gI +;ں-/^L߱mp9%gȅ;pk^fc.FզB#jeFTaDjp?[Ԏ02y"_Xk &K(YME5գ\iz|Nw\I(ZRN91D}}S^St7'Ke`'j3*0)aMX-V,8ܸҰ_T.*Z/33I9mu3RQRzEo+EWJXkOvy'1T#3Do1yF9o>PotU &")5m[^yc%^š^+_G_vmxveIF"928<t.HGcypZ` vï@5kNqo GקּsOōNl>[&@4q51?7@fNƯE&2v:<7H^%R1].+,df<Cuv϶v +ʼ(2ZXYB"S>݋,#oL}hLcVw[7 Epmd_nI`mCp4=74zz7R=0$$u$Ov 7>I.ʆ9'(z[ +ٲ+|mPRMäw#x{ì vGə38o@la{E.ApĿhIr0; +[#8hEB>Lr]w>M+C6r3IAH?po?4$_#-ee w|`v mB%EC̜QH gUu:ů XZtM.;!< M1`1gr΄ `~c$ʟO0^%zy ++{WaQvu70q.Xa 1LL5dUx.kZ1C<|YF~Y^Ǜhm,e[@b\(LOXX>J=æVٸ+6l;d} t'd%;M\x4 IJ0|ƛ`O=<26|Mo$Z`$ƚF7*nέ :S[캳]sWXͬQ9YߢE-E +#ABZh<%*cy> +c3ddX8#X©u pqj?0@-y}7&S[~t@Vºu5\܊%sgr06 aSw![6d!5RoU Řﵐ(v<2*¬ ~kВ7$p;>ȪVIEXX2cƾxh>#W|XIxaS> +endobj +305 0 obj +<< +/Length 5298 +/Filter /FlateDecode +>> +stream +xksܶgs( 2QGV$m8t,ɒ[Rbo8$^b߀WoW/YO/VW׫7kxqGuU?)kH-?Ǐ<~t]EY.HЪU8y/+}JduǏ^/K,VJxWv/~Q?'yǏfû z%!oe\6ŷ6߲Ipyj&f$|HNj?L U]rD=C3V}$`4M`f/aO2\ɟ`at<|+*˚0dES.1ټ"*⹒\,YH@Mݗ$FʗZC!@OF^k Zb}4>?Gu*^NƆr"Ѯb,z}EE[VBAU5}/%C_ٕY+H 0 +x@`K$ +,!SEWb koe#K2+e݀,TjGꀚ|CԞ)_c)[>-QRV4|o|-ni,imQ-ZjKu4LyP{Cc_j:"AR^煫ig5o"Սֈdo*Vzr)٤"e0~JL{G'܃=Hޗ"`UwW"p[ +`1=b8U]|-[[F!ߖ;OKJ/N }_Rxhx=ߨto/?at'vWm:pyY.h=A[,'b*"=vPMvPv30g`DRHŮ3X p% +YA$0D8xa#4>8U Z,4~R6T +T 1MY"ʲXdǦ/;<**.ҝATA%eGMHePB+} +-' +'Xn( IBuQ2~:JnYMR]+KTWʾUu?$ƟsDF mtdٍRQ$]G]8wh:%T5t|f7 yĽ=0ŌMl„תf +> *@NJUss 3% ~PgKPv_();bRJh7<U?%pKӛor;fYJZJE iֱ cd߲瑬Dpx4 +ކ%jen׻ {L,nIP y4{,.ܚEhڕ"- C|g_.j]ToZbC֤)0Y#n=jeXrؕYkG4+M_ E!U~*J_$[LyS7p).bqʟ.Pz;^c!K%T-O"+UC,}(L4_~&S2?HM! 58~B@E6[ӧ< ;WXgiҡ=qR;{\{pʿzkR[`%ػK5Me\o?a`O@~О^p>[jKHIq)巜DJ30+;jIP&` +~6DֿՋ5$ 7< e9ӋRd'1c:"[:=uCr8'~~poL kn_N[ȧ,,VDlб% 0;/W9CڐV@"C;[n=$q [w.ǨZxiw#{G7Yk3ԲU__I+ĝhL&r3_o!@ȏ̎T H['h8KVF<` o[ unw5a:86' gCmlw=hZitvO68d1j)CͫxF"3d_.)k^0\;}m߹cpΒcU^H Ya)MFTa"j0son~9IS +k*)=)]SQ*6r1!=i0گA_B?v vVɘ/ICl ;e{b }1/rUbkth5ApF|:' {]d'0ڎƆB[:rHl0QUN^Jf٦$CҖhiBj0XON# ʟ00l9TG)i<ŽM v2 i%iNöM24mƺ6 rTOּ f!-hv?'GFɚDucT?=n/R 'j(fUE GYkC˺fRY^@¢pg N":ܜ.py&ײi- w1CY3+|[67ĸ t|Wa613Q*_*De`mFGwtvsS!pGޔ'#xߠcIǍ4S8xإycBs/{"tndO +UHjB9X5֜%d$>٬_O:v @ZjRV.i(&~Wʊ=5yn2tёռ{X Fٚʻ4ƘCՈ/]#> +A+.I(#]퓘r^./ڰU' +jp9wL ytN)0K.u->t zGg +FioG.N랟̪qƼv +mRܚT\BE벡BR28`{b!^*{EqևyV|lLL ByC +lV;g'FRlW:cmkߒtn`'y`bQLiIފyGH,4uC c9<3MWyVWbܗ8{E$~Πw.7Q6껸lr@[p6@KJ|^FtHb{0!(@\H \ѱ0+Ȋ)ޱ +Zlj)iLrcl"hqpx4}1<$YS>h6\TcI8Yvhj)gcO_<  ĸgUՏ%{e0midVg.ns[m`0m "^6!Ѩ1aU ZRP"hÆB-)=*xydNt[dbb0S@Yl jj:uWnHx|!Ff GUn 1XG:} ^Ybcab&k1fKkbR1ļ<'{a*CCPJ}j֓f`9{6Q:L}6n3ASzSK|jFw VV)YI=X$ڜ<6yMO;C93-drSb/EdupPN Xji*(΄8;R쇀 ?).r(Ȥ@T{%PݡMMW xS>PaXK]Q~+kJzPhP= y&N,{^EcC6/#yB/,pN މ^=w3l*= J=֋C+"D <̻<4aؾP߂ lɛ2!=,CKB :S ;!.Mo!6G<߄!f!{zYnG8wp+@o~w 9L{:y156+_wp6 Z7>iUhEҮ;{B"n姆"Ň&#kj~NXGN?XMY Ɲݙ`ۄ< #~8+a5^9@f~) n |=eq~ gd+jc= $KK(0X6/aO2wNd^0"eȭu!{UcknyYg_8bV j, CCuc FsgԷKn"G-=^yPuZ8TnϪ:=\X|պ>#ʙN#7ëAAeMA>"&#?"sW^^2=AEOpI|!i!?\v+ofj%BHf YEgjvr :݊C@pzH:݁]POMOa۰>~73̚gFC(XNѐTp` [{v'R)y#Ϟ2KUi:hw5IsFRAj-=)>Yh? J +endstream +endobj +306 0 obj +<< +/Length 5135 +/Filter /FlateDecode +>> +stream +xkܶeUt")TuQ'N|&o/罸E WfW$p3?]]lNw>~mNߜ~>>z|z^{G9ߜ~᷏VݿWЦWJԤkJ=W=<;%Y\ܿGdjEV5-[ڬJ:y/;=yW[WK_Oy zh +֫_{,'48炐_vCqT*]?(h~NvNswzd/ +Ҭ\}y sNOH]_fJME ڮ+@S3V~$I#[ZohIkT~dt8}KuDby% mIRSTs%eqᗝ\hh׷i[t#7ײ y o[ |kAH|fgJ;?ȯ~֧| tTllH '%cYc>P5JWMʖ+ʺ~ =;WR)`*` RQ` U*\m,QG +lp*uYKxIj9 Q{'~/%1n𖲲ɉXZbRpT?0CmӡsyZ5_t킢R_@tb]8d/eeq¾IwūdTRnN yR5{JN1IꛦCU \VUO^KZ%00u^(qa"5}f&%Z=~hu=vwW6r[5b¸RlV?[[C5֬A?(*gxGx5oV5]_hJ`am+@K 1n)] Gs(/nGȏ ? ZOvg Lftl%~g^ nP(2pH,ڔ`r$Ҷ7BaV +08 PJ*8@*8afU{ZT+,v@!>zLl86ڣHZG1 nI2+>NWR%"EޯW|y4[@Zw{0  x\UIu.m^ᣝfI恋%m_l8Ow^<#昰>9BG`Sä ?¯MJ +m`bo/-٥R(.NRℵ<+*OR$R%1jsE.R9F$xƫr ݵ㮌EvAq(ȴZkkS(B=X\45qwx͓sB^#ĒkC vka-ېOfIfrL: Ko}A;y(O4^=Go0Ԁ?GuЏ IR1HvfIhiIY{O" gM[ +b33SPjU!/OVnz*u>Ƚ XW7 +T}UMlp?6R_,fTyʻ5E2&$7V?h<#9 sϰsm"29"pnl)<]wjWp &B?qJy&}SͿX.EXnVO5OO7U~2xxǬ_> 18 . C] >A?7~]L)NGJקC15T4 ;{h? ע&~`,0-;)ʨ4.9DnʝWՅ^VVy`9a0#; w 2I R?1mLS{x9bL4 Z*ї-5<6WB8d7l ^-r+LVxOw!q̩0̞uC9aaKEA%~c+ôӜlC&D:oNM bcw* +%p'Ç85e7^`(e^A[<AobUPY&3pth +,p8 +7#czV},nHz\Idk7et1}{$`alBK؉ ֌ҁAM?:bϫA*-%QW bgv'6[K0̳<{$Bj5*h7xGhC@7ݕ'ܗ(N6JSvCW֗ q.h;Xm29^b;~됯T;k2l pwO`J(eXE݋؍=nt=0{5[x'3%<˱im~$h*oM~b6G[m%0%\Xc2V U+ؔ] lp&ը= ̪ TƓjɲ `$-+gSgP4MU䑎߈QYppdqU_{Zq $:5zQOʚrj>D{jz)/KռXw3o2VZ M%I,~cR ̃G,ybm fZ+yny֊JLzb ^R]50l &*8-ӻG ~96MA"80)(.c BI:$Qpi#ZIGYg}B@ u>lөċ>`w/a6\Ż.HWӚ nAMbTSѶ 5^G֋PLfSs7z[<5ltsG) * +R*> b fU]QX$5ٹeE<_)/'Q% l4L٫qaXOu *Z+ؾX `qas݁w?9>Ժ~$t+nw5q=5f^u{dh~;WuL`GbVX7,(gՍ $fwPMVE¿7bA*pMCxb9!f_8LsGVű0ɐTNoQ™4"R.#+%J{#%zUpRKX5db]ه2rG-{Ċ*SnT}}8 +Qa؉pg}^ySQ"s|0gb\ȡ1OE0VmTtTYwg.=Pr v9)A!6*qcNq bU$;X@ S(it>rg}ɞd~_h"sn1O"D[,Jh*Rń=ZL8ިq5)ث +E +endstream +endobj +307 0 obj +<< +/Length 4969 +/Filter /FlateDecode +>> +stream +x=ms63~ojHtGN$Ţ|Ogj .}frϖ͟7g|?LNIUV_׵4}SIWܞ?}&O?}t%{ՄMj^trr|:|+'ը ˧O~ήfzUto~:)j7Ol Nӕ<0^06k?{b+wkӨ[qg,o L_R_HKQ+ J!fKwi{kc~T^SxZI#R8a˱=P\(3*&]%ʪPu!dxB(֭mS&.o̒jsoT3{10,;ckq%@p7:B1Up#>t4>І=Ӑ3Bpbȥ,Cؙ/I;?ITO8J56qmPd|ݜwjVkw_4k+e3. GWQo1^;/b*/%ML I0v +[*/$DmΡߙҠc4l]K ,P걮!asWvDl#c8=frL̷Fؤd?WHگh*`9{͕ouਬ[T>qnQu +=B Pf>XSA`hKf +\N/G$yە^c]|LIWF0WN+"V0TDlۥhhgCM!wbQ{NNnH>V&@dx?Ө?(o (@_㒶|iZgXf#lT&eTB̀s1#y:Dˉ8B.c< iB즠(+_(_x5. of1rH b(e/F(bv'];[=^uĕ nnf_ +\4"+ՠW{.]G;n9(XG qʂ`Aq5|>F7)Fiww'y9WG6"5@nӔ +cOAaO4;ieP&isR;Bًi|8&M߱=V \v}8F@ Qbڌ}i]a*Ew"X%kLVN|˸ĀN5J- [((r疥!bOMms&idi4W}!؜(wٔ׷T`?ElRYU/2Mxxsa"l׈_4Y5D6*cUc=#cwLYK +SRU'|*Y*x34hx.|vIIY ҶӶ\PL{T.F9xD;T k? +CϒCcu\ŕ{N ýL +3wq(R4TYbW=WjYㆀM˄]eLbިWH<&WLGzБf- J_nogeZfepzՈSLmGШSpcY/8LPT?}Id$MyعpCE_ܨ:ַx!Dc`25{;چi|>JRξ<QZKa +p/S]ynM;>1tcC767au®|X)2IF'ohT_T-qI[5wͰNaOVZL tsa'dhS]e N?.aZ_zn+-zm鱧63Htۻz5?p<xjŹbRx iF@'%2ƴ;baR€Iz|xػkT4(mdz6h??, +i6~ J$j_3pƩSmB,.Nx3Y6m"6*'Lŝ+$vYtԕO&"}hdz0DUG0?@J"[`NzWUA[gm~`dY[xHbzkr!Q(3 +J~msJT3-.{;w|? ^Nl8fbXTjfЦF[x.oX'0ggN4'p|[nJ#%$|ܯeil܏-MUg4~jKC;v?6eR>8WRje Vć_8 ke/¿Lzvq5_:) +endstream +endobj +308 0 obj +<< +/Name /F12 +/Subtype /TrueType +/FirstChar 32 +/Type /Font +/BaseFont /TimesNewRomanPS-BoldItalicMT +/FontDescriptor 361 0 R +/Encoding /WinAnsiEncoding +/LastChar 32 +/Widths [250] +>> +endobj +309 0 obj +<< +/Length 217673 +/ColorSpace /DeviceRGB +/Subtype /Image +/Height 777 +/Filter /FlateDecode +/Type /XObject +/Width 1417 +/BitsPerComponent 8 +/Interpolate false +>> +stream +xgX[ٹˤs#ɓ9{2;Lf2w2 閄.$z416`L1b{G$PE]E4rmd3ck޽9qDfffnnn&٨&_{0~Tʗ7?9o2KOSΠ"?v,_W@E@v,g?׾5pAXYv _(?AAя~9]??ǘ/ C@H.g[ww 8$-h] 7MR@8"8HxpLʼ~࠵AwDp3 +d):"%WU  a٬#@8nlA hvGDnpA`}NE.48HeO~uDI 3No!{=P?3"OHuuN3@ `lD._yyy;]/Fn>ǰ/2{̙1 BQQRXYY|&<==AE@ovDdw}iGdu@Q_}U^* +$BpDpP )??D":"xqq]@;"(8vD%̯~GWoVMM#@$'';(xBB7#"8Â7G +#7***###ݻ๹#"Z[[_:(ggg,~zzo[n9"xKKK/ G  +LM`jb`jb`j& &쁩 `j &쁩 E F~B`E@E6_oiaj2@Am1Y5j5&xUz^%^*m,/@ؼJjd<3T-&4Z!fFx&Ppb^ ړ?E`[9Ĥc̛.ϧ  tɚb6(;ZYƵOpm(l^pQM5?-ZO,5aA&O54&٨jd)b%\L_5|.Ҵ"f  {`j&&l {`j&&lm QɷvxjDx,.f]>9&||HtQ|GHv*9mZL6PS.?Ch;\=bq5MDx.aCc3LҜ_96xf<͂i#sD[y5a^&,MGɌІVz3U?Vif9{#)3Qޭj.&>v"|fDMM%ej1tW^>7<-`!cKgDj 8>ƎTi̫Si|fyx҇Y[Դ bOMj /OT7(Y)cj˧0Ǖ *gQ꧆J06{Ԅ=05aLMS6Ԅ=05aLMS661WO(3Tx14Trzo(Z#bJe +1BȚYRZ4e"ԙ-("*PkTc(UB3=xHM4Go* L\>LKùE$ĄGܽvPebɳrhJ2e"(O1rMy5۲iK i9Oу|I&]q7yтDOC}C}hsnxӋ* cz8xDQpǛ372tH ktjbj~/bm .aJt?\͵ +ghԀP/>0\35FPhx?צ$`~1X#P#t]oUs9L߀0&8!i- bV5Kd\H:RMFҳC +6;O&)sz#0da;-C+y>D?ײo#H1>v@ +f+QD [x‘+"P#8"gQ:Lh%%I!ٗ{}@LVުP<.F ye"i !0>qe`>[MMˣNZE1!x :34/ɋGD%Cd?#W'R`h&!3Nr o\+Wj3ne:9/7&>|v>|T&wT`_/J +zE + qu#ٸqYjz~hrAF 51_Pz.3*ffxY#|o؄`A%IqzpLGg2)o8EU) ~a3 i!KX=$|hh5tU05aLMSԄM05aLMSԄM05=5ON665T{/zgOwCCуMœb H. tK/O}3Aj8A)G븈ֶhƉW(=}p_XyR{}^m+ I"'B )dڮCmF3nrE-.2UCfuI{\PCY^15iDZL ú\a#dQw;]W@q[ +ҝg;!yw¬ƹV8R?k!%'(dwJ1vSJGW'#3uFrW`|it*PDwVQhĩ9?;te>B{oߍK9^U$\04uЉqޞsƇ 6 Y.ewKxF|v|Z}7u *јn tkIRF7e g>ХeN#K"r=I5a1q'%I$׺4Ydj= ww>vc\7u \mmػm`z ToI ~̒$~nR1^pPKj@˖Xۓ{.ax1'J582CfMCO\ImZ A\ͩ KXBld%?,XW +߂FW\ +]H=z?#Vu7Jj4FI>A1U:(v}֭CNwjŞ=UOLMS6Ԅ=05aLMS6Ԅ=05aLMl[Mh!}(ZFak":sMM(Q fg p<՜O*{nۍ΢gNUԨ[ӼD⡆iіʳu5*ٍ.na'|}OrjjJr"#\:HM\UNRJd,[_}9>95%%!1`!BBWx=JzAzIj zWӼwBAbF/"*1++5v 3x78T(&uTD*}rfg OB͞sܐm}6 㢳w+y!ƱlSҨro@u5QM(j7f= BآYSBv[ڼq%כY:t] +f‘YqKo#^h+,-L*`Ë7\f\* >5z+ք__/E7t &TW^(o<ݫEX`I>@B"dÍ2?~&εB_fG4n>Yˠ Op!XKXj:㥱 +/Q=dI%d> %)!,vy xȣc]Q8qm?.zwa>+}15S9acǒw\Cξ +Oބf Oo)+Qm֑(l8x=NsnE5v\ +Y'9jB}%F䎳:va1`JH K&1%X 3n'~&*"} Lf9Lk0/XsüZ7Mދikk5 W}S.ceQ )5.&JZ|w1@KǞT2Rի#7#~rm]GxV{1%䍓G;sP[5dzWs.I9yVحl_i fBt.SK_`j &쁩 `j &쁩 `jbjBZ8^{iϦG|<& O V + T 31f!IM3-gj"7T"e].pSRdTsy"jBG!F.j͊R=lTr%fWbB]KU+{Oէ/\jz1F[thf]+D([d~ !kt@ R@G`6*T2'uFlaqQe<1ylhb{xܡ']/KLJv;qC}Į̂F.HU +Pg4 uOJ'4fTfR Di^|#bj=EH2ͷ{1Xd f.PyjZLĔL8)[S jb1锘`$_vEf8t5~]73O!4]vŅ .k'5_]10}ne0Ĵ2Rf͠zy5 +?c~f'۪&V5{-ZVӭjoƺ&cM.yɬWq=BsN8>QMԌO$_ Y\N|Rߙ7ޥި93F/6&MG^^NiC0- ;@n Br퍒HR-hd&6ďB]X-eS@ %E^kb, }0T4%RM7j])oCckyvq :*j,5gq|v} x1sc+:X~EvC \"TZXB+ϋ#I!ty OMeQD`_ +)(ȸPq`zVAaDNqy")ke*^::뺓Ʈ QGFxC ̵ET`zvqjS +dq(HB4l7WPݭ,MQDYƃբH:$sਞAι4S/JϽ[tz _Ee&n^ZXq۲LE1Ր ߤThq3֚NS~HXr.'kWPMe~mFMF$.(iىɅ$25U5TVbrr[ m\ :4oyiǫR 80Fl^L (3{\(-(n,e^@DNJ ]:Z0§?y}eǖpoS e]f΋ :i.O'pG,20I&쁩 `j_Xp%7GNHIOO FnlT}UʟBcDq1ؖXO7<𔜊GW?Tm}^kKM"X3>o/)yքpPʹfef宑Ez=“voTwG+o +K$w|P Fj(O=zd;!1%1BX&r"U^NPwe×{B'PaDjRᖛݦPε1} ~~zeTm=m{Ȑգj(xs]m܆wg4++gFS +>Y٤l {fVo(l &&٠ͿlRMä׀boQN5VN j}&,150(\籛b=NW0ޮ*kh;Q15aLMSՄw?@|/l#F5E{$h>紡&V~)v]seC46\c]ho"eT"NcM [nKM4z3ko&vg^٭D3ߨ&p|/tNHgYrmߨ& ] -Qcհˆ/~ۇM5Qs},/DM;va^|QM~=I&]~Pͷ-meTOF^ !&^P>xqx poW2.m#:VNVFM6-5񷋩k@w:;₩-Seڙ"BIHޥ#]T +HޑBIC(i$dǙ,23/>?AO+{SJ"aA*yEBD'YUgM2'f(L +jrcCr{˽#p͉ ф5BE]mW2C +}*(1PJi7j[JR4)[/₲ZiBM' +x&ŠLӁ[_~:F≨>H:o\hVpn`: [|ԍ~ .hB<2]hxI'ĠڈƍфV%'LDhb%_ҝ:<&2hBNLOX?<>M{c X?M%tHqAI+JҺ.fBP>p]A5!24֛0Ӿ|&,$uq. 4aJhRh”w jm puu~I5SƗ>ȄTˣsTv;~P %n"H}-ccӵ&4J`-&RZkCMyiQN9~u{C՚ J@;|n^iEd C UyFwh_.J"jMh餰ԻݝS (Tf[LmO&z;;;0Dvb2QZnGy stwwusʩfAr@֚,-_v"C/X~Q3Wb{l$thM5R`3ד,5ڗtWt:lM|Ⱥ@t&>}e +MHX}/?i +vфO%e ߋ&'ϫAn4U{Gϋ}C*%;>>4!a?}3~`Mhy[lg%7&X#77?'(DhB}<98>Ǒ СQ}+RO^SV$RС9TUSo NoW~:t]"W{! Uz:#ی*9c1q)-6W$ITRC`*DL2S0? Fy9M?Cz_ 0)9ܘ!17eW@GhB.ć 4a~hB/qtqVnzR Zz.S#4 $P0&}]rY%!ЄF;PldD+ju%7h?ڰ0R Onؤͧ*r(4Ux=T<ֹP[nX}窹Ə!Єv5-NB9bJq $H D BWڹI٣ӄ `2`_|c|:MnB֚8h^/dYıJ,矟_u?}^!A֚- oN{#.(~b\kݛNyJgFCS҈ #BR ]k %DqW +b +-&Tp vt΢D(-Xso+бdRSC%>"hBsm'rY;Y`u&.A"hBcnhIhB&\&ɩeB*R>iijhsЄL$J82 mkC[1(BQ">@[DFm'tpЉsCEMbR7 7fԒBngVe\s"H4qrL+(LFo#((Fh~( TB0/fWsq`'HB.쑛@>=\Zo%GxΈNґC4ؼ_S?&3t8B5{PQr\^jZСqOy z2s)@o 2C7E2CɟG̰@Ҹ8jO @ СH!DV͟'D ;cՈ<47L8`x%=Q!w5'.AqyU-A"aLkJS,&Q~A|:˘M +nġ-SXAN 2UʩǮKHaZN/ \VhB,&a KlVVb9mIXR1ml>;>% 6h1 n!%B2^[AT ~x{y~' ~^t7 3޵BB՚Wr]9:999::!bI"dmc4U-~4qw !Ch]W{5&}c4!ej{pXm~4ZZ./pw'2Fڣ=h{kSueuUwrbuC?@EZ#\O]t5X؍KLhB3[U;-.A:P̿C ,zҭїSQ뫶QyO@hB} }`|6VkUcdlZ2 + kMqq# j}aQ|nbքȖT AI%Z2e=qZj}~n~гDC˜5".΋? +8l,p,PMh8UO9Z|G9ٮx`MXmu ;ruQ S5Utԏ|hԙ_l*CMm}1C5WhXy69Сٞ~l!R O x?JDbbҽ̓J%B?q%{x&~2&dB>_ 蜊1Ilbe:c6Pbͤ"/vE։g꼑wLWl0$stK\x~'dlQ(o/ЄLz'D_Kc<$.Rሀ@D#u),Q:F=ۚLz8Hnƅ`>)<1>7źeKF vsK(Y>Wv-#q7r"q$|d?A!afW7ގD̃? j/R!''*x`u7+06mmKzt;w!CpWl`y1A"P41yLpmio^ (<<|Bb}+{dU@1,FQd#.PPw=л)(Bx@}qUyLd6Hv1`àO3C +,s`d@ҋRilaPhB8FgT<\X}^Fylܢir(4>RStq"C r7+ hB_ˈНSi BTž먴5ЄfQ#dX{>):&V{;+xKI20kMYm?lZ k={EI5%f{G"AYY +6W:8ܛWtfz>4!_Ee2>sH ̕ob6t3+v{M*}{,Iw4lhA&}ag_4ⸯ]0>6\txD, +3N_(vs ]{wg&zFz7*[ReS Rdy>888O&d$uT swh[ >wt]X4z2yV;4 zWȫc~s$ٓ׳ޗ镀};3uʽ! +CF~^:Hmemڦƻ ҚV6)}I{ZEM(Rm._ņ5w nlH$*z`&S 7.Rz;,zH4!$\=tId%1L\vv֏.SĻ фFv3~:O + "c_t7%़g}4 t܏lY][2O!&m/aCKjͯnN m9`,>w}P67NAMl`ҺՓ9+,ӡC+?Ht!fqB"|a&ԇ,?AICSM\1СЄvKA]Kk9@ h *QSʺc11`͵, #4%ZLM'ք@? >$wdJh◡w c [3{M_*A 1Q_N/kץi%GKKeB֓[؀(/n9o ȉn]?AGnXIg΁YygFȰhXOlk YqLlW>׿t"`݂o ~4ݎB"ɬSh)(K7;NO#^w{)2׺i|!s6?Jk +[,#74ۊy\HF9M2~eGRm ^9E*񼩃JKh* I)x q?Jݔ(D5CHM.X,dBDZx~YJ8V9{@&CW-g{"|5Q*fH|~u@ DСOYͭ"`! -};t YL8tF_aPضC(t9868@SB m\Q@cq=;. Ehz#d Zڜ-ˉG77D`s +YkB7v.yA+.r+v=-Dp7VJ Ȝ5q| wF"1AϦ!kM˾x>)k]5USF R#}EքGx٭D'".RH-o;HtbLԚ8Pك քnqZEQ}ĨcȄCUՉ[ p_QpNф޸4?t;%}{f2Cg^@]yZ{Ee5СJrH hxPҽ962C'9P[gyx? p 7gW\/\l1c,hu#h p,6DdB c5rƗdyp&~zgWc|!>$uf'Zgcl:$b! zEKDE-,L8Y;8Z:_Zg+GXX@AP"aש|&t+cj8b$qeSBO h"HޠU(YD5 *+LĦo&>=\j=QS_M`3t;O+4!_;*lhg$5.id2S 60;Ǫ j_,l-ی$C&guh"n݀&F 'h5AZ6-BV],xL&nـ&,/c\M8OA/iT}79B(喇9uL)4JWM"rPh╴õ717GB?_N%f[7&^KD|NDqe0 O>y RMzݐ|Lj~gh╴݉׾NM7δ¿?M +Ha=/$x# u:aLMJIE77&^Is(n~\=HSjCVT5LP` d*{&^I"/oW,$x}vQ>o0H7h4 +^i?GA +@ԗ 4JZb+%IxK"}t5*)4JZ%cL& x#c!s$C7:P}WOl[ )i=eo# F??$Z&4K%_ϯaK{f@G51TV.pw=8F%[&_.y{L{Av05 2seQ6n~=3YakOp@1+H7721PBz'>{$S( '?p?9@//oo$>fƨǹ&h2Uɕ!Ij,_Ol`Om@RK*l+#홺GPpOvy:~OXSO2!Os?V08KPB^ZJ£43H + %t ]gLtF 1φ@&ЄpOBMEb*"e +M)H6vU;oUZcM<%Uf +MhG|Vg}D޸;JSd +MFġ2!I3{@q&ЄV!富w$bk^,qbpW:ݓ‡5 $I8H,W%bѸkTe: Ҩ䕦[X$*9bjq)4Q Xև :2pzvxk* o<sp&~z'p~8Cg3oNEX`rLw8,BI*f1h\Ȧ$2Egq?'Q?To +qS*^ے6YUhBnM݌ De5lf&7wq桻,Gޙ} +d&CX7K&T#%h/t`lcߜ - Є戶4B?l&XCqn 6HANDWHu&S/980sn =/7Wy辠m,=8GL4>XmG"% \9";1Զg;Cp4 ф\ sGo$(4oW'=3Lϱ@1<f`a9AhB7Q("uN1(c8/.yވMp7& +Q2@N&42gCھN8cG! cBo!@JU@@tQ`CTD.-((o=z7% -bsrggs>ztϐ}\OL51Kq 8W7ھ&]y-m|ws}5;R~XtG|F/Ϛ:[LrǯRiAo3 \z1ɊXYY C-"]B73m]\0o޼,p+5"d*MWM}8٩_%n^%5] vk;9NgX3O#([E&.G?$VDZY}cv%7аa \vm|˸y"0=mRRR&u +mPQ0tǠ{8-S))ӧO7&ЄnRRI:^>ӳ뛸HBRr\?z{KKU-BUya2.'%% O [|A5CEEEh9?##,M:1a讑\UmjjDrЄ/nT㮣~jBdzA>! ݨh9,)iӦ=իW/~_coE!=bŊi9KCC/ +h?%Ǒزf՛%=7{ڕ/ZV+Σct`oXpR?7mK.E kOb\G/o**^墸l2$.r/Y!(o޼OC?ڶ +,[4yЗbQmQ7<. {^ŅW5-ЄAk:kT{9j,_{$A`zncעE[lY:h +-}6t.h^O{;KWqst@ߙ0[]tR?.BBB__0~駢&t}%ѢF/!Onu֯q=ធR;Fz3&ܺB3(:?^8ml:9e)j\ӑ֬@%Qwl}m]s^"Y7EDT:&a:}} bSVV&lj(o߾͛79r^^^˗/$839?h1G#ODq-hQ۷;v+V 2Mף ֭[̈(@FCC~~~DGcMDTF:tHXXÃnnnⶶD044$8BFFD"QFm۶+++fIDqt%h9s| ϗU=#CKWt"lxYۄ<{O #b%npچX& +d--L?iOI[s| Qȣ׵]FO$"_m<ʾ Aq1whKPq& zL&֮][VVFDB4a3">%Ohh(Y,sGGG"#tttМimm%Ç%%% ů^W_Q(^\\V%DGڵ‚把uuuDGcl2"*#RSSϟCDLFpkjj6lCDqass3$$$Zx1Aƍׯ_'x~~ի(Ϛ51-5QjR*x.bu8u}aA+ UU=h+fVLp 3[j 5j@M`jP&&5&X) mV掾nc+]5 ٲ}--*4cދNL@'Z_]mao\]&3?5u#.$Gʮ9okdhy!{<̊WuH=3msoe< NsOaEW[K͹ }\nk01;FJ:U|d, .SrCB0rDYIcߦ媞y}"6Ԅb`}ZCP, 09~Fț-kΛ89|,j;/5> zp*sq5"[FKAHmۃ$Uc#ދ" J3aWmS]] M-Dj츚h+˵hzef#񌫉 'IYLS^$ikZ;XÜ&~G*.Uv;ȅ}ddҨ4/G9Q@*hcIU^4[qMLsbj9]c;,UyfWl_jYyy@aS(?]P4C]9W&kh)m WѶ`hJN{Yf_:<-aWB]8gc/)L<[n 'H;B:i +{}6EM7>]M\7R-#cVQ@MjPx&05 L@MLR;sleL3sfuݞ̦&:FjZAU\ R>(NU/}9ڂכ5=I)m)UWrmqTPPrK{{~>Pk`Rz`eE@LINeS!W#i_EDw,z* 152o! `1'Ԅ7s.]>VeY33u@XD{AFfdc nN4M5ֹҜ'NFN.zG v8]46q"k(ݪ2׷t^ঋjXWs+񐹳>2/YHb͒..^m8f6m;+]}E [ž7ҡ^g1L)Ghĝ=p"NSm-!)Y8ꤥKLl۩ T}Uuc1֭^`ct@@`ਚ(j~e0ϒuT)2-% [iP^>̆ s2E_7y@iڝ ).WuɚJImÌTMUm }##ҩG&SWZgv %' B]ѓՄG/h:Qy5$5Fe 6Ī+'wMД?Z1Tg+psRG=&@MLP&&5 <@M``YM띜降`ԄAIы ]WyTz݁ATӐ3:50WAѝ]Mo241+)XuW(E\MJӷK+9-)JUzIUCtDE# Swd.$d9oRθ[P$}2q`J!65(Yn%"Vܓh${v*I.d!f~.#Q*=0rv$~nfyn >Dj*}삚lmY7:tziI5̲'5e]:gᒎtg3w_W4\[h%aUzZ[?7Mk.&y\ +"KlU6SsWsL9E6 ,-nc]WU 7>Uν9>Vr eN(:7%k+ ]LPR{2iptlGՄRPa G )0]LzCf!%zpxj}s<}v]̢T ҮstZ-;dRSo{1*Q5tuw?vX&}D#o֩W& %1ᲞjtxZ2IMn۬sЈ./$kv=kB)6Ew%2g&PmAM*&05 L@MjPx V5i +fNc:bՄ. Ku>fˋ2io.n}kNs >j(8#N OE#`: (ݒap+iZP M5lmE- MpPmc] +E%7tHNE*H70*njY騐U\=:ƬvӲr1/LtJqrҒu#HD4ZR ¶$N +v\|Sfh?}1HW|WnG9SVSO8)Hu[Jldx5S4ԜU2_ T^xfdbl_'"'y_"z9M^mFUeQ7vgQ5rjj}*'/ rt2w+L7ʛYk=EڨbgdFV^yAW5wި Yh(ف2Vā9{Lz :ƟpPFNχ%Ԅ\P3}y$^ʾ&4$4i0 +&z}7\-{uVs<]E_~W{jb􂎖gه{SRK 2 +k +KvU}R$̈́"~7pu1鄂l7^jiY!T?JnC8kKt]k5g=Ͱwy/"BUMゎ)?賓r|EQ{vP5u}/J/ˑiFj*Ff]Ey:.j[{wj췹6'3ǃ/ѕOOxHAMAۄbpػ];mf4]cuLOJ6Ps(a%D?6?ilu_7y\%"ITXFa[rdZT{jQ\FhhKi~hhiݾϬd-떔uLp4ňbz̯uEC^ړN hjQf~ +IFXCEry-Y4Јf`۟e7&wW5=M7#%4IYmťAJ*{L(Trx+Я6Ό\]R-BJO8e6'2GݫN2QZw8c_G2j.dZw5}B]b'Y^EKf/,e!j6rJGmuHqhHGI6/?'Q:Fc_rB_/B&ċ|'#K=RIکLS%i؄F0?{OM:|4gJ~V&05 L@MjPx}KjsV"FwyO YSەx6?rf9yIӉ/th-zR]V2o̸+΢я̲ʜmd>)faFugA6}dk1VLqڇY]%-XUU>oN VV?.lؗ TT=.wGo+Uv-8R𼸾5CBTkz}?3&i̸kp5q~KƧxd5&05 L@MjPxL 51ݩHVi0<Kr|5vכvዚj/&05 L@MjP3V-rx;;STÌ҆;TƝ:3+&jӀ5 &05 L@MjPxČeq{@MpP&x&&5 <@M`jP̪{@MpP&x&&5 <@M`jP̪{@MpP&x&&5 <@M`jP̪{@MpP&x&&5 <@M`jP̪{@MpP&x&&5 <@M`jP̪{@MpP&x&&5 <@M`jP̪{@MpP&x&&5 <@M`jP̪{@MpP&x&&5 <@M`jP̪{@MpP&x&&5 <@M`jP̪{@MpP&x&&5 <@M`jP̪{@MpP&x&&5 <@M`jP̪{@MpP&x&&5 <@M`jP̪{@MpP&x&&5 <@M`jP̪{@MpP&x&&5 <@M`jP|*jBp ?/n| '^ܟ Ǭ~I{7f8IO?Moٹ~ן3t߿_=1kW׵9?~7wODiDTeO^H =zOBPq9s,Xso *$hDG}F=G'8s&4[М!8~C &_=o<wM/1o* ̄}~T~W"g0 h]G)AS :AGAAA4_MhȪ~14Z)]R{%_{O D'"3| npbc$6Oo͏ /s4v{Ox?{ڞ={‰۱ +W .P(\\\|'H֭ $ҥK}}}(& IDqe˖Q<((9y"#v؁LXXũT*z@Dq{{c-I(~ر+WQ&,AeddDEEO8ADq4&hFDe Z{zzQ㯿$xppi4bbbv + %huOltrrZd#ŏ9xb+++"߿￟jRkNW6v'<@M߄b@oiWOy/y4.??5]\L˘[5, [}j̵gl,a /{Ź+I91Ih=$&K,X@:.T^7ҋҖmtR 4d& 9}./wY}yoffWw6-W5b<ԕv jb5#&05 <@M`jP&&V-D5wqEIe9Qܑ$=uMOquM+vZ>Jz!)2B^J `?rw{Y.G⢌䕼ZR%$;^Uen 1Π9^Nh ,=~AukzڬuVzձ +eU/c- yBBf=]'Djd߱*dH~1WtS,.H?d"VCLL>*z/3^XH+/3ÙlT;D3q-?X75IV#=Y=zʓH6Tov>F~*ə<0Tpi $t4#Ee/:5j߀P&05 L@MjP&?X`jV8sNjIꃹ2.y5Ω +Ya-d$kTgiRfe&j<,4gX/U+VEGHR%> :yyc/I$*y[rf#05N:H(yɓmc+CIQaٶ'd^jVҔB"|}e_k}|&c3ɹL/34oWv̫DnjxQWskyLMߩg=)b'dJ5BR0٫KMl6յGuJ +냚X5o@M L@M`jP&&5 U?RM_kbE51HU?'9X` \Z80&|u*zќ> [-U= 7E:4eZQT7[({q+z2M:"tfoAbQ-L ~cL'Qd +zyMґxj)-^5QbW}s37G^DJ-~=q:rYmJH%u#م,[V_#Q@kL%⡎H?9YǮbw}AM7&x&&05 L@MjPxĪ埧&W5e_,LUQ's{2[ehk(o5^jȚ켕rF.~sjm8]H@{'%禊7_;\ī 9S\om=͞e=k-~uqztE[ϪZ3cٮ^VdNE8Fz'%c>LEGД} 66עO8h[ڛxZ)zdE_dvqgINiGLජX+GGSkeCEUi Wl]ºj2neOu%d7^յqɸxJMW=~əIɪ.=|heh\t݊`h&y@MP<jP&&5 <@M`jbSkr~_a Yzݹٓh4^йSK갧_L~W9‹i_~LgZ5QKhVߝݝê ` LMqV@M<& 5 L@MjPx&05j_SyVl'@P ~jG@M`jPx&05 L@MZ7dԄj߀P&05 L@MjPP5P ~jG@M`jPx&05 L@MZ@M@T@M<& 5 L@MjPx&05j5YS5!7&x&&05 L@MjPxĪdMԄj߀P&05 L@MjPP5P ~jG@M`jPx&05 L@MZ@M@T@M<& 5 L@MjPx&0Y/jBꜤߺ®;.eGt[@9;z ]?Pmrl}N9VIO?C/;mr;YfBkǎD !KBv+;q:GhCPq4ٳg-7oleeEDqsss˜Qu'8ڱGcFu⢢;w$hD)hUٸq#z +"[XXl߾L&QV'OT_(>#2B__MLLL(nllDGoFBB∃=zɉgϞݱc +O Zuuuk"-̗_~BDqmmm4#x[M>tQ?$tԺwn|g +ef˶lrZ;,'{|g'x'(?r'6V;"'/W?Nt x?;Yf +>׶m&D ΎڵĎ?hMDG'o_f=D9])4!c]QϨs?h1ߵkhʃvO>MDq4GF3'NQ|~BVoO?Q~(شiӷ~KPqT:uјa'2>Qȑ#6l(6hٷoEmv܉6DTF hm_І&8|04,E#60RMDETʖ uۖ{T/U`wHʋ}ih3IRgYx<[(DDq_@Pq h'J1AAAﯯ'xuu5Za(zFQU1$8BIIIJJdQ 큷Q<%%w!2*[nMNN&xMM͡C|}}(@sL}}}ꊉQ #QiӦR"}DhJDq #G ۲e Akcff}222(^YY{":tL^y=uv;Yf ';<.NPRc7l 6V9#K-4K]ٲQ!|uh-\?7 Z,32 5a>bgZ|wby"=xJAIgZ5\kp LZx&0Y/ךP) OFgѩn]ڈ@ Z[,idqo,iu&P5;&5 <@M`jP NYUV Ac~gzœVqĞIJ<[jb.%e^k4gd(ongj[u/:Y\tvöͯ:%dƘ;Y[GV.oD'rKm,pJMf1adLnv`]nG{{; +^biF҆޺.ۯwR?m H5˺?Y74y9z;fvwbVpP`aQM>k 17dba8F]p-jFb̍,,#n歯&X:fN})&7.NY]uCn%w^Xaw5wM xj%w+JZ@M Px&05 L@M`yȨ_ ̫KMt=T9!п0lc&g42 TEé-+/FML H.Ӗ[mNr:k{IsՖ꺹 ʢFvݣ1:zt{r*R" ^΂, V9&w:L OtRG~o0ش +悚61ɭKrw xs֟78gn6枢Xկ:cN+ZuYeDjՌ.w$}6419z]RL&RkAZ +ʧOuNf(ȃ +s5i9UZ5Kۇ{Ij[^iuF$!Č|BV7o jY:z/\VҶ eD2J. W 9ߤpCdNM 2JگHU 7j_&&5 <@M`jb%e9⹙,*RggYW [,wL+5u+/TM u$GZ]T[Du 17cVZ1&*:LV5!m:wdBwZ33\TTLX!€霚p2lEwF^L]Ƃ,Q]w՗H$>j.&ze +h]΂,Q#2~+nlOYH;YOe^TWP9:=K+)g"bF[JKua U-uJt;CES[3H~n#ȹQjKhuW&(h '䤆B{ -ۊLﬨn8/z>ndjC|}eƗ%YWuf̫vN^Igsz6%N+-l(g4,D?'` T]EjB +:z2;'rKı3BNd[nrң&kV[U(51Uf$.s*.BݭZ@M Px&05 L@M&'/Q#/׬4*V8a 5a.yvl`JMp7J厶hS +]3CSʁӒ5Ԙ%jعIaN8I۪i4]NU+-2֭o^M8h"lXάg KMH E[mĵޱ9lTOwo~clƗ&~ iiZ},q̪zu FG8^[8>\[JhsD'A̩c]p7%~ViE\gGmc{= +#4 +Jl{/]5ezxg RNN]15$)z1/-/3g7(avULCTQuIk~n9Yz-S*:w0qus$NMLvd8Y@6軟NS-(1Nl]D?nDR5!s) 4."Y&+'dy)(%u-PՄt5ҿvd0k5h#R],A+KauiSįu7 7j_&&5 <@M`jbEՄujnc}QKrIpQM ?oc<(uPsr|{pze&PW I jXY,}>&RdNsK{Ia?:oΫ $3Y^DLP]-^M,б &Ȳ95a(&nKKռ2^p1U{xsXjbŖΡ} NM%rN眚he$b͸GWu߭tP;wqh7M&)i4O+꼚9N>K}ԕJM{^28gYe_Yj+oʺy23\>`h]hpFϾMhKQ(mgUċ5åXQ˜rM -CMmksjBVz=K4tB't&ZNԄZCd?RMg>hQPQP{eTjuw ܯ?R- Tm ܲ|{)= ? 'tlGvtfADv:.7jb}H<:JVfj5j/@MjPx&05j"CS%(W{&^kR'enKU;G%kN2^[j@AJl`#\JQNgۑ]z'ڃDt :-uҙN$aEM}r8nׂhx&Q +vm=Md˶\ZcKTL\4cQMk,:G (ڜh4U#eVf80j ,ffY!cї(~Ⴅ7*nzn]OԢ*u[d%F֦P%lf8:15iaC%Y6Zs>((^E3NG'%&FɣI ejs.ˑN:fŧWW8*;7\V3V/ȥIJW5RV>m;^o-"-XU:3_ <$,|3\ZWг&OK))5yu]˹mDYsj^%EUxߒVT(+:-G7luD$5)GMdhW=MeK:u \M<4$>-'&$I1KU ƞ:z輼wvE*n,:ǚdl̿!dn&ECwFM)WPWl{ԽށrR'Uda֋u6to #㚹.Yٝhj_&&5 <@M`jb_gtyOo獚ϲ3Nɵ%jS:1c#3)RL<Æc?g g鸽iN3wCݟflTV+E5Sci3&;cþx.9P&&05 L@MjP& jbm5iNpsQsm2&'KfN^jJv̀x&u\kb 5 L@MjPx5AEM9zdSI۹ǀx@MP<j&&5 <@M`jbjjB5o@M PjP&&5 U Ț + 5#&@M <@M`jP&&V-& k*&P5;&5 <@M`jPXx@MP<j&&5 <@M`jbjjB5o@M PjP&&5 U Ț + 5#&@M <@M`jP&&V-& k*&P5;&5 <@M`jPXx@MP<j&&5 <@M`jbjjB5o@M PjP&&5 U Ț + 5#&@M <@M`jP&&V-& k*&P5;&5 <@M`jPXx@MP<j&&5 <@M`jbjjB5o@M PjP&&5zQjuXU N%I95`;,'6fGNc +O>Dmruh&,yfeFylٶ6T+\s|+$W,3皊 +{=X+tK#ۥlNQwGT\W4Ӭ#b}}}W^^NDb ]M";"FcfDGˋh4"!8~w@ʖ-[SQ$80ZZZill$8oʈ/"??999 %x}}(pႲ2J%Ç ܼy3Akcrr={(^XXk.Vu&:gu|ѿ?ڹ?dtㆍ}|Ѯ; [}]ng_ld+[v7__>x-dg}Дmn޳i?~1Q>7~HP hh1G3>`ΝD߱cZaпDG=2h1ߴi7nܰaݻ(_=d^m۶ה{^0S=A?CVZa>shCF v"*#o{?!~^ӭ[Q6*W_QÔ_|GQyϫO 6mѿDG槟~B}5ARL.í,̾;3Swguw㌳, @@M)RDJDz!N AA{)":ap>>!'Wp9:M[8doBQ[28攼x17ޛɼbby]߯lYN}d'!3zƏ%/}ƻkFFF[s$xIOʷh΍[RonݚFBӧOQ<..:abcc(j9FxJJ +D"عsgFFmmmꫤ$4khTN{ Fqh`P*nffm۶44C} Ѩ oGGGQ<22lQ<55>c0hؾ} (7oތFeOOw}1$$dÆ пh?uFq7xc 0 kkBsM,7` sM&t5kk0,` $\&X;jPzP P:P@M@M@MĪjbF;XkKLQh^0K˖/TiiߣQNȴnyj9hN:vLHk*:Yj~- j j &`j &`j &` E~5Y3ܙq9 *pt?d)RezYgVS51Up[JqS夬MQ.CÌu,lO +5jcR[8X":@vl,oXqv[Gr@zѼP\Nb@]@r kW{QN@DasX}>[5ʫhˎgJr^tfy}iww.kKddHo LpO20#H;xIr{_ Y&|E~L5;)G, #+6VV6nIY֖){zGZ +l* |I^]V ld$ظا4WLE5}ރy$ڲ(JOfcN=:ȵ%jBVU~E"ѬJKzכ9je@M@M@Mʩ PKfUyyS*jѢbc'SlP̢imk0fݲ,TMLa 0eZYϨsT("ifT#^jgB&Tת)Vk\ީ4%EOک̢Qq1%&nO:tkn},V:5j(l/yrKRzป1;#z;)vZ&lQJϵp~jn Tu_5hU=ޡֶ$ xHPئn(7wx}SJy{5)䤚B@cz{'l UIj?*nv᫧3p&Ρ6-nϤb`JT DQA"l@4m)G85NCnUINb#JK&d2mjR(jR]zZ /ЁwsE7ۺtc䩚j rrScՄ'Sh[[L32:ᡓG1"V#R?I _1]Q^Qb??mCi9}c-U܆4Vcgen/&:oVXX]V5'\d-'6mIzeePmc]ljbY5P5P5P5j"P~ܟa~S?~Q? ИʕԄZɠ:͟[Jjry'),*e (BQJ'F^SRyŊssŠ88ϵD܅eHÕsX{˷;.9r3zܨD +dU3jbRpsdt(2] 7*JY!Jr +;Qdy[]65%)tGkxxY}HԧE'rrUo7ݍJZTmIdcDŽoP6f3ׂPi +wn(뙜שU-Gh!^6WUɮayDy|ב5WuǠuT{[eb}j{<&L\8(+&$KސD=`/+&CP*}äo۲P $ $ $ tԄ[`l̙ 7F10x#vLl=y5Njr|jc|jpv=$G;s([{[D N45-U1nFKTM@|nd‚ū&M]>&E{w^q-aEGr̹FNA1!Ve:(JJ~~\;jЎqQr2( /kL\WfHsF%B`rE֡;&e\a>~c '_9݋7 ʌ(,HrTkCM +噚:ۺGg~^<`0qxmKZxsLiOoI[\)FXz|mi@takg8*Ee@0tl\gN>qZ]IGK+/]5S^v5';5{@ີ5D}\S?f,e.U?pUPqxLDQAU P@M, &j&j&j&Pj萹Gdzխ W&,FMx`"V]!zd̫ fSkjB^[ea}SM]rC2KHWM`ͱz?IN9,X9El &j"4H#ßS[ʢ=1'+2N<2 +jŵ=Rh7y95qMtΘ~tΪ ɍ@C>װgxw>xfɁ\df׸hFbAUKq U%X\2Z=Tam8S* ќTM D4`Wy5!GM.k'NKh Oh:6LHbyUU!ŊnIM7X%6NKt庺Z{ {2Ŝ({@I'TFsGϩff߸2sM̪ QqYUaiߍv~i.b|U&&A=M $:4 &PH5 PH5 PH5 P+&py7kO /-ᦖ~tN:*S?h +v׮ujjM6>&9LܐgmPbMnධ:q\vIp==A䬨Fv]1",^5pCBY5qdw T<^;). l-nT\YeO"O`_(;RNƩfTpa˺ Ǣç~ϗU? j1Eh۱@VM좇L/PPzP P:P@M@M@MĪS4^4u=:JqI>*xL+s(!ؓ*dz nBjfr\iPM'ԙ6ӳCr.'v$oZ~( rڶ#"ڙ/AՕ7U ApaFZcoKzf[;9B{yrP +aC#YEGFA4t8O_NrΈx)H=X<(h6hx暊cyvb~~/B{Xn&&j&j&j&V-6PL>ӛmen~|kj[uKST.|EXvE 1,٧%CcvP7m_1G}D~klÕAPpb(V&cm) lk{&Gt՗;ǎH P8"k&SVaz;:ɄTx9XI wd+3NQͿ4&̒-s_*BS{4ǝpiƢzw0GB#y5k #1V\hiSq{u[Wm'X\ ߹e/֌A.5`?2 +g;X#Q&{# ҳ&,3$*Pfvy5!h?m@S0gRz:P܏@;3p=";ԄrԄ5Ԅ5P5P5P5jyrgyyxya! +9A>6<մ(8,CJekAԝ +H>|gi\*'JAیlk{[$ĭU¸ +ʩ`cGO~+'ѷ;H"]7I*C+e0Py799v'Cu(͎bLaXU gj_UԟvXYbCKiNъ9ƻnܨr1K,SUX-$[Ov\91,jEU[Շlި6$RIgFryA_~QÕYZnKƩɐRSpy5u\PT| n0hjaG"K,={Xn&&j&j&j&V-^",nO*ᶟSM.:ꫣ$Cc}_)t< ^D3JR/if_fdk\--^PM!8㝓*6C`saGN6{qa uQXǪY5Vj;BeYO|LT*Զ#Xy51# q3eD!1,k1wՄɩ2n!}Rn@RB/RgDkIjו<{dQZPhL\gih݈8d+7ϪN{[榤P,_=gaC?=h&44{RiƸͲ95!~o7)>*ucXjbjBGjBw@ X@ X@ XXj]rnjIQ̪R8|T6 9%vl}Yx@S9D3JVͩ [,X5:&fDAE!ïk! Mhh8qYP +Y9RvC/&zL#6my5!UY}˳:_S1&LUю;ND{;92́fgDeY.0FP5kKW?&Shc$["|89l7&4-9QVY]ʞ4 V,ȶϩgD.K'} +o[:&56gڄ{Lfu&&t &t $ $ $U˫&oǐ1{Rpz +X2Xq6WWr1ŚI&X'rJD0 ۋx2Ƒhw8VS')Gqi ;^YBQv!1]ΛCK4kg*B#p<[|?D3)Jv5'c),#- j0-&+kH֦6,;օfHvs37 `!4p 99.Qq׃zfN3ņanw,\8*'4[D{ҥ)˞TwpOO ĚX8e?LuR~C5PL7!2e|mD[@wuգ''rͅ5>8 o"ms.u?hr +ӣm8j[Èr`ۉVjb j j &`j &`j &`jbꩉlZ51;8LIewS qDž:,!h&D!"ɒ7|ٰHG[޹2r w}7L--iBf{\CoyA]!>FyK+|_!p!+F%KN˕=)b{Xn&&j&j&j&V-,5E3l=kfE$LdM&&&t &t $ $ $e=:h?l[ͦ-nv{KV5,[?{g-l ,ߕkO6~lN1g7cǯ?-khͷ^ҡ:[;&8C%m573:?b:}ųw?y{Ӯhїo!Jſ7BbsCCCh@(nkk 0пh L&۷Qb˖-_~%B]>;;;4cX=E oB@8F?q4C@'Rqh;88Qꓷz ؠQ>055E8C?ܳg!7oqrrBm>c4*CCpF<ZYYQ ;QD"]jb-H:i{k=d6~C0{K@^&|x%P?zo*ǜhO?G+[ǟ߿/T\14onUu^^0߼ۿšJ? + }?FFFh700NQj3rhzn޼6l؀R߇hߵkQ:Ua, 4BC _TB#Mh Fv4*C@C/@o߾PoCح[QzC?S FqgC?oٸ{z O7|k_M0\(cuh{K^2=A1{K@^&;m6%P |ތUNލjlieOgh?z?OKgզ>O?d0k F':Or!uxN]ܱP~VcvCB!}~iC,Axcc#t444Qj34C /!lll,,,T*Ńw(~ҥ^{ ЩGQヒA8޽{Y,JMLL:::(Ɇ Ш QTT{AC34WTTlٲܹshD[n=~8!=NW(h޶m!t6lڴիh(u˺5vǜk kBsM,7` sM&t5k0` X\H&`Y/sMԄ{z(^ +*w 피toW=!u +Գ냈-iN{RE)BMh'һNrԄ5Ԅ5P5P5PԄ$=?;49E==BgϲqS/Uw32`ƒ_bFˈi4D6Qʢ~WHjoq=#-;|7a^ϣE #MK?VՍgN&fWHc +z evkl}lL1-W4\iȸ/5uA>.$H}*\] a ePkYixTaQTMLxGjI7M6'M&c;KED&zWtQ" uac;`_ؙIF{s> ;3WGwf,B*K#Cp񹾄Hvdžce7^cTRl}brڪBh1c%.geH//fSM\e_#b/fÆڨviWŽEM{ޖ6N߼_~ P@M&j&j&j&vOM "[S2/^JiF=e$[{\<_\>S+}6ޔjj {):¡*'Cիkn7[[&gV^W"7֔NPb#^5M>E ` rAgqZ.QulcU@WG0Mjze4vQ.Jŷ w#VeF:yc +j̦LVj)˛+|4Go5ֻVS 1.]QjUM;# #M Óď CUk=uҥ275CҖkejB:ݤq!.;;<2F2&ݘM!UZ𕰣<&**v5Ďj &`j &`j &`jb7D0ΣaUaS_"kr٪&VݭA$u,iՄlh}a/䒾}dCh#J)5cxqpCM&K;Fძ*ekL'gC#kȚ=NnQ>aXymO}ZJv00ң +燚(qmd}Pނxx)2llS|ؗff$OΘhpyC I #[ȸESBƐ3cl,(OjddS&I=LM #7brRm}ūeL705JS7' rՁ(khSK,9, +jF}-FXOmؽNV@];JmvL2Y?vjs\pjP]CƩCB1'لnNx&\ XyO|1#[c3{CCΛKkbjm=qrC3I5{=wV knq"]fww :ZpOFGWJ ٚ>(PQgB(HA{U7_VLS/F~W +Ta5A^3G;FZX:^Ǡ6&czndoNKOSCCd7s 哖yWY-A6o_xY ]$Rp75P7"{&c4 SUMh?ldq#[!^L>Q1nZW +_ ; \2iz;>P; $ $ $]UXע*jgsmT C qI^~1?8[wmWƌ'tOa4ӻVģw#&1YYa dv/Մ~hU21^oT5MSJ^̿6]/ 8L>P3 ⋤s-f*Ԋ@ta:ju m]9(~l^cReN M7Cl?@M5#@ X@ X@ XE5zY. +C^?zrC="RHa_NNe0_ V k:^٠n {}u5潮&\ՄÆ;HJhY+[95sYW p-u};ug$Zj@y}k)iVPh`M ^&x)uKo4ȋ?7ԚS*ƠAD10i-JQ=2!h4;[:*W +h#,/97JZSBTXc+sjx&h]aMNjz&\QamUE#;#%g;Yh4^'>TwPYƉjLҜuU&'jWӫY21 5UQ y{uLs^D4iu.~%^@` H0΃߸Ct C>SkH)M"s"2]aSML Ȇ6q)W &vPH5 PH5 PH5 P&~;\Ώzo$O3E/[P|>{pobejן6r{gXykzS;dWrov?Ilǝf]T|^wz9[+[^ +qMN, rgaYef_ʶ#[o2^|W +:{S {&l+daξ.RmG, }Edm B8=]:d|CΫ &vPH5 PH5 PH5 P{&mc_y(Ȟgߪ Ĭ +s쌗Kί:/\k P@M&j&j&j&Wّxj)e~K^Skvcj*55Mjb5P5P5P5gT 6xN6j@M@M@MĞ }&&v& P@Ml&j&j&j&,@M555Mjb5P5P5P5gjd_ mP $ $ $= P *@M(<@M4@Ml&>@M ,@M ,@M ,@MYWjBjbjb5j &`j &`j &`jbϲ&dqY??/!➚"Y ݽV+wEPkMj|[jl왙.ZO>llw3u + d1{ӮXX{:UKY jb/5(3:$պdy+%# )7?') ȹ,|EY3骄#* .IXLIq4*+.Gﴥ]HE} m]\b ߰555Mjb5P5P5P5gTrOǠʢZ> {T?0AVolBT9k Gԕ TsuGb3szXLL={\CK~f{>rW;(#bQ)͕zOMs9.Ȧ`XV5,aQz#-DvIZg3հʫtV.+]M WmlFhJqas[8NDğ=萞֗FKB"j %X̺S䇵.[UF|ԄN6j@M@M@MĞeƙ3ę:EFʙΩ5*QbS*+L62#+At\B@_vfQj!4zvcqIɔLP'w35Qf MYLu.UjpAŸ;lhG"qk^h}'\Fь3? 8Bm3@ʥ&*UÃSk<734W>~#Q?JԔ2 +K(~#IjBjbjb5j &`j &`j &`jbϲUMM7dKtZ I5 ƽιf2v~m}6/RtXMQrL[-CDjαԲA D/3$e@DwNM|KLm.mDGhI4v +RT#=M g* |FmZAd'mhi]]j&g#5r:fkp1MIJ1^!t1SP-&v5@M(<@M4@Ml&>@M ,@M ,@M ,@MY}Op&;8\x&$_ s;m;6gè +{KR-U zn6A j/jBP1w nRֳp*)5aueCvpmCMȖɁZf&6Wen^Z$9NrژGvO/woU*O4`j+)W,o7,@M(<@M4@Ml&>@M ,@M ,@M ,@MY άV*h<%wחDsd):u=,ޠrY7Enmdtq}:=pjU$έfNt-?d3͂fCld 6:%lE$7ު[RORq'xÍ.w}: [@Q95%ВxD̓u9+"ό]ԄN6j@M@M@MĞ噚v?x]ڛj0&:8 P +P; P &PH5 PH5 PH5&&fNkW[N/hf+I/5meZc_eMc|µ<rq8*F[%${GuZOnYJ䕏>;J )|σ( +o+FEw ~;btRi\QšU:p}PN/JB8pT ʣ8f>>>('OByJJJШMša,4(ɣ2U>裘y/..o!QwG?;>tH-yvȷ +o ȫO>>>@/~m7csȑ?ݲ}ps?O_|[9||+!?_z<_Mšw=+;t<~ +MAG(7@Wš6C-/~wa0_-T/?Oy:̇~(Pe>|XšuvyT8pZA;h)'*sʣ8AC.h' Gkr_}t+N*.?Xo9keYZءc5)U +o+FJ&=E-ypDCF[%=❿fq z(/n> V&ᮡ +o+}a JoɣrAAw}gff&ϟW9TW(#?~իh+4ΖG äˣ8fPQZD"Q!TUU>SQQ!PoϗG񐐐zK!Q<33(q ' ̙3(h$+~rr<'&&8pBȣ8믭Qڠh4\ 9"TN122?G񴴴O?TNYSM@è5k~8;~P7Ub#YY.+% 8Sg( u›Y,:tTq[4O>[/(|w=cG>RZbPxy_kɣ2χQ&]DOZ\k p X&ך\k p X^kM5f%%›J{_ͧ555Mjb5P5P5PO ZvGwRywr="#X iͨkl`dDLpW橉e.zuo40 —!5(iz냳-}QWb 8sܰf<>P}5jƫVz99Y9C{GQq*~ϫ٦Φey&v1jb7/.1pӤ@M ,@M ,@M ,@M ,@MK{4>fm7Ã_a} 鵥QzWΡ,dlZܡE<51~Ïm6ƳKڧ +o!&Gm_8t7hYt\/d%BKSJ +b86?{dia L&qC5QyE5=s]-x0!,7?jb("|&7 \\~8bN{.BMWk볚=u9>@M ,@M ,@M ,@M ,@M\QpxZˬ~G%'Dx]bv R]wSM +=>saTO;xSD5Ѧs$ +.`=]+!]D'r? ).nH w1&|ݓ8mW d5΋o51S\}<2mk-u Y۠k^A~[kb }J$fD7?0{ 1nNileqPmH_]h+ߡ]b5t6\|pc/sgձ}c% ъJږj +1'.kATP^V'exAKQW&YͶ%f:Tr:jJ%ŁQ~!WiUl Ԫ5pECEZgWfT$=Vž "'2晚W5jby{9j9jb5P5P5P /-BC=\OC4?](exb +wJ }AǢo0DG f-C Q˼{|F)#A_3N$ɍve^W"ݞVY<@/c;[:iq9ऩDߴ;{+9P;飍hLI{FpGz3s'G\z13Bֿ_+[t&hĄffv7S YMC޳QV5`ck=iA臺'O >WK5$Mg10=CŴvFf.xS鬭g=9<|*[S/+̰oոXX:]+78\-*}x/ ēj5JrL'ҌPڄ"kȚ}|`4cKZYԇ&/(=P;V58z$ev:?Jj &`j &`j &`j &`jb7V/v2t,+u5*Xe:4:ׯ 54#Mut,5UEP5]Pn7\QnI +ϳYWG&=9,tᅠ*5qV+֔@DRegn(tCk7άq6 + *̷0&&%@۽5]'zKeYXM$ߕo|C.U_ +,`;tV4osx jbPC>xmcMpJ'\)p83ZZlGpEh֝mj}8F2裆/,1 |E5Ϟ1 $>S2e`TVM1"kEUV-ADG#(65fΖ>>CΚ9?ZZ`I)8CBG fXil7`)m; +PH5 PH5 PH5 PH5 P&58L-mYjbE*\^bSϫUT*ļ} x7UM1&z&|BlE[gᆪ{5vML,1JXƆ";D!"(*" EzoK݅4)bAHY~wgEEv yrg7&I5};P&EvWCJN}jah N^(mGbui9eq$N/㉋jVj[:NZ Bʲ"%A~Je\YuHB-AN6+;De%*[ROа~ۚ|UcqΝ +ai+Rlnf DE3.tWz䂎hXGtX{QChqy*lzjPF\Ro$מYf{DJx)u˞Th;xf9abvuA؃^la^5Ō{aZa-4b$Tf=CypĤˑ&H/TM>ܰJMS6Mh M 4 d&4 Єh''_T|J'b&X/.#o^=Z41|q5V#ǼΝ9umnDk@kZ0Jzh31JJDGOi)XLPW  +~uQw4yingYUﭮacT2DDu@53sgg5Mtec5M;d/}@b2M0s}ye8M`+ +jB_: +z,y԰4Nۜ:m:E]しlOlߡG)O|\z]9cHK9/Rw?0 B\1(8?↢Ԍη쾶,kvwtdwnlez(ͥwRo?z2F,kZ[f7;.?7>KϸNg6<=m\zՐ*iʿZ[ݐyV=Yoҩy7f<`?zX^q*c`T{+ZiqGHYŻ=n{J/ + X@ggԿfֽiisF]sp۔U?ռE礅4캮n%+5r|_35g-i/f <ͭ{:e0^kPТ23"rُ'=cཡ@߁&2G%e+!Mh M 4 d&4 tibvtф@=~lҷI4An&ؿMih/@Mh M 4 d&&fUKUaQ>rost&H/T 4g&&^& 2@x@hb +4U @S-?@x@h/@Mh+tVhML@|hhMh M 4 d&f@YU 41M 4 d&4 ^&M@gU&H/T 4g&&^& 2@x@hb +4!2^w? @hb3@@h/@Mh M 41c4<R:<#_z(/LJG-;ahML@|hhMh M 4 d&f&x%euy/ˎQi!'̃M^hMM M 4 d&4 Ču>@o\P0r*!9k{#?Ss֖5gOt${{+1"½eyor +[CmT L 2KJY~&FfNFRr@)j&  2@x@h/@MXM vjhލfNi[FbE;lQ[Z^^z掝W(E4}yRe6o^TmkMIR{l(oW[Sz#2U PfW{}lsaK,Є` +4Az&Z >44&4 ^& 2@3G=i{oP4P,B|n|꼖J̽J3 q8Rmg=zn|f^kºm(-"eyตIKrcAhML@|hhMh M 4 d&f&j;O[ix? :*VWSTl)kP٠ЃaC"oAU?MԾ> +EA=)q󊾶~@+cJGy糂QN~^ΕS AhML@|hhMh M 4 d&f&zkO)e}."(v޽J:rjetr 󛞊Wn>l`Ec{\7WTe+%V?)X(g|#*gebbhB @S-?@x@h/@Mh~9(iGDCqK(۞W}-EJ/I_ @I_x ?l{/f:׫.ۥbib?׶l٢NLS|JJJW~$b8oZ2mw}Lʱ__.]Lp999Kplʱ1>zeӦM1C;wbG;v1{b)Gw{ `+Vػw/ñ`'k[n%h8v?1'HHH|222D ^l١C}X|]eݺui÷o߾j*"&c9p8%h_deee["c߾C}?t4tٳzd$歛MH_ t:ݽowkWk("_~%˘jlUhO? +v! -6U'}^˖:DJv`?װ_u_|: tv%b8U}yA7~oPڰpق=*D 0vGi/^Dk׮ݱcñ`$7n$hݻ׬Y1;S"&cQRRZp!%i\rD ǂ0 ߶m555|Xddd,X@pyy˗1&bŊ={1 v + ikk1;^z5>|{t4JII-]/ñ0K,!QTT4abnN7Ck:JI_4eg< }%A}엕Knmao$&%رa1Ak}2"}ު_7NFJYEMY/谏 isx/2lP#b8V+'biVQm~f䗱2k"n^ t|/pA2pA^d@@@hb3@M 4 d&4 ^&41jq&~t YF41iC9˽hp*lAS ~[^s>n袵 bU?v]ԹKw29m>DZ;rmjny<{n$i &/{]4N77\|<.'DR_ҰΊ +Jn_՝nvnP2f]yH^./WMg8M4w] :W|Zb{pe].lcO&š'OY^cO+@x@h/@Mh +[A_T+vba/+KKwhz[CӽAi<LRON7֮֊SN&;avUS6#Djޯ,GL8:+"/o#mQYI˄FeynsQ<ܓq`f}M-ϳl)>jISU(kX8qvvY>"za }_ ҌDִ_ 5Cf`epRb,,4|d]1sbI`S?K4֙e"w'-n3fԢdWUK.R-vݺrVEt'Dy5̛gՏ:7Nc8Mwd(M("Ӓs4~;'ENCw”:&8U j&Rro3V M 4 d&4 ^& M8:r;Lk#o氟f;y|`eK~=)z2Mbn ;}QgZ騨x[ԜYWeW1F6>LI4peVkLz{eRAyy:@Yaucյ< +9hZ(DϞw +q4v4Ȯ, 8 꺥!óRc\ h짦<8gqB:S8wuܓSU**^_s8zUޥIaH1+3jǖ6H3C]Y2sYuMeS +jŴe!N6Za8}l㶭Ⱦ}peYVfck~򘫻ZZt_ c=װ~NQ%KN.fn. 6v׬9:Vw1Soŭ>dO2&&uզX^P\#nd&`mzLgKzUQ)c-sԶ"N&>kV'?;hBA6wĔ5em"'ӄTӚ^bR,N kW\E,a2HJʕ/魽e檢&TΥS50 +4W d&4 ^& 2@ۺjeE]&D۩sC&-YrKKJ徨ɻkp:\BL3B%g+dOuZR)U9,fFohm5%IТ%%4WS)cK ]0;MW&#uU.!aer傔A^Co.w keU`6-+PTM֜d-RX}KϬ[u }jc$/S(ԭ3,aWn)q.5'6LL+18'#iWuM=LK̓^ьw̕cx6f'ot;'D2 xg5U<~WI/⓫fI5m45ƙ4G󄭽qLDĎ9Wtε'҄d\YBt~7{DkW.EcG=%3kR& +4,^& 2@x@h pOr.:O8![>̊n`&8-uUm}#4.() +v05TrP6:MRNόI{DSc!skQ(,y ^qKܞjZ; O|%:{lIc4Xh厱aC56FN[3 ;GTn?P:#𲕃A֍ؒC%<w7Pהj1Y,UPw`JŞCb 8c4Qә}Ͷ,4o4 5=U3-+\q)ZȦI4qXY==&e:c'҄W^;;P'~G榒qhy]l('Vb:˸$1c+@x@h/@Mh ҄STbC֜l){ASD[?U_4n^T#&G^""@Dd{(ґi*⎩YWTyCDRSP;U0:Ⅎ)z/s&b%TsTwtLsC4R>0BhqBA;(GGhB+M #?,X YCȫΗ{ TՓڙIYhW=.D{6hxhXauZaJ'LLBq&42ҸTWChk񐚂%rdմ^3[s]wyffzZ;މl+,˨b$ݱ6 Ǿ\rɵȶ@m;CB+ELjg ufIQ~ָYH^|`҄cRikY'FiBGo +ݏhB&Bv(Uݿ 2삎$]U;R,.`'G)se |>~zAǻO W_wLjd7wZpAG_b %u梳™46MhY M 4 d&4 Є _SRemy=ev߻ؿ NY|S % tA|i~i^J&&sY5d$ L,ԄJm'1V_5JɏE M4I(LkUI$UQ|VtJULS@霊,oIّelw[Nm̶hZ8#krm5%MVÜ6Z7-6vlvs?"So6Va"sG7gSOؙvJ v3V09 ߐwy]Y-i-oiC%U7+{2*ConR[ +ώ[NMw=zYsWEYs]dJFv,7r7UM,f?AUK㖌_z0wO9vnׇ^hCk;N#GcA:rtcc9Ah9F>y5Oi;}gh%W4>vYNKښWzқ̉~Üe-.=c+@x@h/@Mh @/f:@dD_ ttvUqa|ΕN R;&FH {ޏhb.h@Mh M 4 d&&fU+MeӛӢRoiݤM^hM 4,^& 2@x@hb +4U @S-@hY M 4 d&4 Čh: +4Az&Z >4,@x@h/@Mh+tVhML@|hY d&4 ^& 2@3V *j& @Mh M 4 dBƧ'~TQ 41M d& 2@x@h/@&bo:.?>+_lK @S-@hY M 4 d&4@hVCt+࿫v][ @S-@hY M 4 d&4^krsoY𯯖o MMekႎ9UQ 41M d& 2@x@h/@e0Ȃ}%W`~Z *j& @Mh M 4 d91?,ŸN=M|R *j& @Mh M 4 dH.;u +&&h: +4Az&Z >4,@x@h/@Mhcn));@ +4U @S-@hY M 4 d&4@iB @S-@hY M 4 d&4\ ]wtL*t# ++fJμEJө1E&~N,epco˫K;Gc<\"&6(^ ZWW2͊~^'b^[j붯9bX9W ~Pw[V'b14Tih*1wWq(FFFbg%:::D ")))""Cpcc۷ߺu_|\z;ž„lmmeΝ WTTܿ?vJEpl^X.\dɒ`"_|~rss#b8M677'b8&bֶmۈyŊ~~~֭%bxHH?Np L~u[tXE} +fX|2!}%,ZpBM밓)җ1ޱuK~+ر_[w7PL[N"LLS7,Iݴu7YJ"cvE˿Qx ]f_uW[ ﷬$bZUjwu,^|2"c]|⥋-ܺu+RLOe˖-_~ƍ.$$7D DzxUV4|ʕ >vIpl`X6m{D b'ׯ'b8k1 vt .$hu;`k ñ0 61|_}բEEbZϚ6nhTG`[iՅzщq4Rͥ?u:.H_4+,!.AM$}%|'Đ~^ -$}3lZaU$7PɎz+I_4+(\SUU&&׿sN"c%G =j=?:%1\M1x6v"b85?P9u>5ñV;.k"ƒvMQ]cC:;KQ ({_Kg齗mH_{}}ozPD3eq!|?2̙ٙ3?XJq':y4zhhxhJLh2eooFq('NF8-))A8'7oF2 6$''Q<11lQx޽hPUUՊ +4Bsa4*CشiJܹ3** +_;vQ5ja7G-_}bŊPW|j?_oxy 55!pZ֚csrrШuiwww4C>a&>Z}s)ZP+ٟC8ȅUEڢQ\C`֚@ +Xk6` &``kMw6]Jxk7lfW|5˅\]ͻş@Mת . xQ6[8_u L|wǖ u ڡ1Pom6w +~ +Ԅj_c X@ 5&`R~rYUr1 +Ǘ/[rAڨ O'2GX33[f S|oP[51VR|99jȠscP/_O09Ai2јQMiQ! Qy:^߭ۯXH~PH Mm3 3ȏ[zXTv5^wL#miIwa2 ^qMׯh/LoP.Af|`9dλ8 0/yWM=YCjǻjBM w+,&}fI9Л=xOw+#ΡH@k0>n;/f }P;;Q5&`j &`R PHj6K@M<{b*|ٲ x?=]]B+vx6>?A fU@M4F7%FIUt }3/C|dZeqqoXMLɉIuJCvEe }@ODFl5XrNM+ HWL?j`0%jAvdFM>˜u +wVQ ~.1!`QRn]NWfXzC>Mf~{VRY>Z=fczpe'\;QP)=2;ڂ{ظ^ +~E{WM0Z).Qh9)qa UaN7g25'f'Wv?iH.gxx2xL*+]g A]b.>B^5=CE V !#6>šjɌUH I X.s>/ ÷ 8dJrjuB@QG-]GYy ͲU-DY3;NiWܘQrY[ˎ:W HJOt!Q};1BDk@M  X@ 5&`RW }}ǩz?d7[[^,5=䴇蘑uo(& ʒZ1:W +{bjBS7;`7+"GLxÓjKH%g5/fZYZ&tW7.TiE]Q[i[I׳s#0\cMZg~s̪M?]7кjBAQ]WU.aXޙ&-" 4k;셏!D3V4WBW:HҺݔꩾ_ހLIkSڒYVMQ`{]jBDJ%Vp㽩LyVQVN_A*.@}7GIV77Ba%v*gpȣ`t]ItPkw 9=fTx`I'>rEx{*k5tuw=ݐi.jV2515.-5LԿ9-0x'#/]pQ]%3*XMQ:֚FLYfccrR}nzY9座QR F}:&o*~{9{ӽAŎKf&s"`Ar/@ +P5Pj)@M 5ů&94=k6#ןecкUO7Xv¨ VM 9'F|[x*">\% +6vZ. v Dk߰TR7'-JV2oe`TKt2Д$MݱpA>TV~%zڕlFS}R^VubƽP?w'76cet"xFyYcK2VCx 5G̕&ՄElc +i5!RI̢=y&'TJFs9i{޶#;@$DpTp08r: U[av!j;F#nyZ\<%eߪB+yYjEH6PY҄{^ݨS<&9𒊖E IR@M  X@ 5&`R͒Q7¨ =ܑ˄*_Dj;NpV2&O_Cइ^0KCh$\[E_qA#I$74NБ9坙\ܔUZ@}i/V mY]dzDʧq<;Z {&)uSw(*X0tL=Xj}N45Yq5D4:MUbhvUwuHQʘGa> :&鼬-jk)1jj &㲼s۵&X!jKHgfui5P(y8^WnoygIwTm-iRg~B +r?^QMÈpP=&tϘϗdInRz; +F k(( fh(n5AR'C|`fI}$CJjmk1}4qiy:AS">Ԑ-a51uA ]&hh꤇ +:_1RMU;tpy #/@ +P5Pj)@M 5&PMr5tYYͷogDGS]|+Q|I5P 5otBI)čpͼZwezJWS}']v}2F&^:pRUKA[;5U؄5yQܢрZSw-6 uV7GVG u]pJ@OR^?ajsQ6OV~xl}}S:op0:s߻SpYG#4>xq@H;MsQINxcyP:`d+Ky$3r~OM Ny]ײ 8—(mVu=y_MԾ0¢ ::Qb2 +^1ƪT|u:J(;{8~n(/Upf S qe]uu*hja7$~ x4wOw^MP|]¨kխȏؿUG'$[F2ZݑǠMꌶ sOl5~Y$ }Ph'=#17<D^׵g$ddvbY,jOAR6TAb 5 PH5&l@ +PY2jc"vxO&[5P5yL{cxJ'ޑ5!.̇Ԅ`yGMbE3u92[M, ߌ.X5&`j &`R PHj6_M߹ber,,( A`W%5`I7@M Ps P5 PH5&l@ +PY5@M,B{Ԅj_c X@ 5&`R P & +&P,@M@M 5&lDMPz=?&jjB5/@M1@M,@M l@ +Pj)@Mf?ge.Z:% R_> +;5XT5!p&&`j&j6@M  5&`:Z¦t&jjB5/@M1@M,@M l@ +Pj)@MfAXzqe#G|U+WLTx͗> ma[M" Ԅ[2ORM;S5!p&&`j&j6@M  5&``R45EE^˅fΤXaAq[Ά eFMp +rI 9 wh(1!SY=Ʌ`H)nayA@a)'1?,#gݓ㩣N|j8@M Ps P5 PH5&l@ +PA^Xy[W?Z3)Xz;+D&ujbi1&H*⣛*~vʗ"S(tI\$UkFR7aEA(<"މIzħ 515 P5Pj)@M 5OpPӱjfOJY 6mj͚U˗ ܰ)Η@M,%ުC8\ )M 30F_"11C|֥h|Kuk}lx Ԅj_c X@ 5&`R'P@!_fov)~oRbY~^!IkIzMK0auQ<>EcaA3#u[rUw'Emĸ Z{vV}&LhOZ$w&Qnf\Zn@J <>&)ZĒWmc"k/UOgghdpa6 &P,@M@M 5&lRRos mI˅W|}5sGXJ]sI|ԖZ7dkEq;9I1~ځ ⢮2+*BCb飂߯68@M Ps P5 PH5&l@ +PYh5gǃgYZϐ@E%m߬EЊ5~>!mfzHSA&!LFC &P,@M@M 5&lDM_O24pO޸rr+?߸gu#(彏Z/fԄ%>[2O/`ԙZ6eiOTp9%z @֮BptYW\ز[of=n.8$NvfG%DA< QFq(JJJ0B8VhpO";}گQ\?\aMMW(J :4Cm&04v\\ !NkFq(Ν355E,JE8'۷oG2¯ +u;;;8Fq(rrr/^d2hqƉ'Ш %::z(ݻwQv׮]8P_MrNo_ [^wKnmy^bFM?sTNMzIˑ} )/*̓m۱s;4xK{[q+VYUnoWY-"%\peϭ]Sޒyr/k,:<+%%%?3šlݺ_݃[lZR?Q[W[_b }b;(yͺUP(6[|Fqw|a:ohCc~I蘢Qի_Fqqq 6@4Cٴi?Rq-[( 4B23gά\RTT"""ׯ?vš/ߏFq(3=<š=GP= +OQO^vS(/P0RRRPhD?f{ZE^ "ם̖4 +b[[2O~>/jY-̇sg6Sk#B#rJ7s釅-+*vZ SctW6*j %׳Ǡ>| ,_\]]ʗ/_޾}s(e޽ Jšj ykCr{}144[sh&Fq>sz!vyM(ʀUcOrh^WhtdddPzBLhʃRqh2?Qu֡QΚ5k(~…oFYYW\o,š޽СCW^E84߶m(((]ш`k---4nܸ UVSMP>JCokV }v8oA&(M֚Xǵ&KքkM XkbYkMT5WZHhxH>#VyzЧeŋla:\]4< 5׀&`֚@ +Xk6 迈$CCL+>߸븤Of]iPo<jP ~jbj6@M@MR PHj6h<Z(!7;{9J|c˪τ -l7m?(1 H#PF#5a'cʎ|ߑ.֣AwdhEg#<&Q{jB5/@M1@M X@ X@ +Pj)@M 51?)O^R".\a?_-\h[P4u !Ht&Kc0>n =?0BihEd̲ˊ}|!nU|̨ Z\f<|Bό(D {I@^/ q +O!7TkiEg$B;^QOK:w [|FMi8bW`GBlq??ap_Žm62vG{s3<3B|5k@!߇𮱙QrJkb͗Wog׆EXC/)N'yղ jb Nñnۂ0&/[SS\m\cJ3dזLhG:m]Io'7t95%6&ԙ^5CCcy!{:,Nj;d#aX4v IY$5&g@M ,@M  5&`ĻKR<%Tٺ8Hˈn >~o"+l.&-}z2YUZ꨼cP٭쌪Č +e6E1[50UUŀ85SWQZ;Bo߀ +Cw3u4* 0Ee#Jb}5ڞvy_7汃J{'˟,->&Z){`oOXf!9h9d%;ܽWY +cajKX8'燘bNg#:WE{aV1K,~ӗX?=a1bD_7_jloҙ)brS} h\+2QSȺ8`&XRF3jbagѭļPjRLP\wxE}&V(Vl5B?I)uQ5G5}BQ^$2~VA0X#=aJ)5%&:Zz?>}Ֆ\$gJj)@M4@ X@ +Pj)@Mo&F8x^Fd릖jfS:9u&*Yyqxl04JiFM1N~ߌ 5->0ﺍk}ZZlF/x^hbo]jI5=>ǔb3ˋeWyGq}ś8yR$8M68qT $!!$zf齘{/#zMB$i` {{Ƅ8# {>ӝ;#;Ey^TGS@V5";5'԰c#1سXcp@w6BF)ٰ;(5!INpJ s!;G,O^mpscp^+g2׋e;*=#mji(ʑpɿڨxHuxSTq-j$Tt_0XGlw15w0d,K˦X?4R-s.4̿(,_>7tнKN("=~/RCMCR2~h7HNd/הMi#5&eќ4?߮wc-(ޱtx({WSC J}`gX3-hefO-`W4!0bh 2m|Ԇx+-lL}=^}zFrMM.ٹڕz7j}1.fV ƹ-jB54xI?ԄE'Z uҲ+ޮ&p?s5RRHmjBˆDcЭjc-poS9?984QJA-@/a+7J8@M  &P5 PHj6@M  h5YߡTY;Zw^?8SO=>^1gpMآ& 'G4 ֮`خ&$?z/H5`-/kgQBŻ{wL4&\"w7u6C HaG:jLF@<Ԭ|!#j964:TmUz1fZT[U~h:9wvy0[/ ٟDq {MҜ\^%vG&Vi3Q_HGB|)\ʪk/h4j:dN':C @dw׹jR=܆dʷ[.(]B7W)ePJYC1籆EC ́dNbf\Ӓ2ۆsX™Hw 5&S&$c4S+Mu +[dӐk݂JsC/U-;A#\٣R:XZƯWqRy4py o0R}.Qc6qrk,?Z#4T;vD\c꭭a\B29Z8϶SOO ywKXrx*xbtcN!qٛ4ě^vS1 VO|ض4?r < _oakԷQHmj┪O+㚝8S fh]E +Π]gR\hb+iV&1@M  &P5 PHj6@M  <5%?54y:3y?4\2Ws~\P{YUuV^}&b̵3xDL ձpTeV9F[-gӭ\)8ܣŋdA5~yl@Oʦ䋮~5W[E –,WFc&& D^SߟĠ(֙Mn V͘>z!~"HKF3P*Vl=#Db\P?7-vxkWtA!4 \T[dCf|::>9fhZ^4o27̘R b +ֆk;tHmؐ-uNEVfc ߀Д_{mGӐrg4 +5&*$%c|ʉtm XzhT5>Ot#:ҁbq391|#ϥVոvٞlnGж@i%T4~[  AS'ؓ)D%CJYpj`6+ԧSs6|rϞ%*Dvz zٺ;u5 Ɍr}/9j"7ʐ5q%-؁rț^QLmj,/?N٭j}(b`*/w{('7D&^ᝰ+&3bKH@P#M&j&l@ +P9jblH0"7^l˿g_x=*a1?;PnEw8&/[7ՄhyL 5\{7yx{-ܑ^EHY^*uMU^S#'QBi9AscסXeLGvI#Zr'\6:=m]$o,^S YS+$} 9ކ؜6jb߷0.^Alj?.z$?Δbr6 ڑT5me]Dc &:}+I&^aSmF3Eˮ]szqLXo9˂={_[a]⋖I;ths=A)oc#6'UCS^552Z_ ZaMMd-YFJѭ 8z*idj|nos5  < +o]kV;?9fiZMD"<~G  ES[Fk5ZBf{{0wMM䮩 !#݂)6't& +t%Pf?jdĽtUDz=\}C-0ZdP]%Soڹus9(5/kIOdNǟҠHV]Z4MTٚi[(ѭ|}Ʌf9?OT6_151Ǔ6!RQʩj&vn&&)VCmiewF=||$^C󼥇%V+؂ .g j&TYHz܍fc:c{jB8HBP"7X!vJ +FÂzaI cn/^v3>rf\kB&ʼndЯL.\IoDJuĨ}AI'? )k;8;jzf. +^M,tc0fֶKDO֚Xo(Vj1v458sVZ_DS0~F*誡I=S]"Z2\&$R.#Fwص&n64!B>?]S D0 }IMLIjqJP,􌨴+# +oj)@M4@ X@ +Pj)@Mf>!g/و;Nb}#jگ-;k ܝQh,ƿ>486嶃{;ܵ XGGgt5 I:;xMQY31¨H*/ImDʟyɵvN +f&S0yg "}=VP*MCKeLݖ_fͬβjB]Kc#s-Lq'&9m=[l\޵NçC}%vtjUU7 WgVdvg_b~k-?v0kO;}/;i탺{S¾>>Ԙvޢ}2g.wd^+ =Ot=:: <{/{6W3]K|)P˧Z{6+[B ^A홼-}2>y{\,{vtST.jY e/e_p6-7n ynaIu5AA{mjBI&}5__\?^Ck{yG>-]Wſ7׻,^G1z)9uqˇ_ɣIꭣ[ZZu_P(9oQ7xC:tˣxpp~$IIIG!H(:( QÇt6{(;8;;ˣ /?h~_zO(%^;k +o qx7^zţ}@`Jx@/^Cmwg}O +蓿?s}[Sk| y}yT>zK/oʣ8*Ш}|ƞ;y>:,o9 0п(矁/Po?򳯼|N:rj9t<_K?3o^Аɩ8TW^Qg}V|O?wy>HVšކFo4$g?:E&Uŭ2O=^oۯ2(Hw:=}4BSqSSS55ylʣ2ÇWWWˣxEEűcQ}&~řu&DA"of +Wwڣ-@n(2B3X?0jܿ;mDm8()$?}&Wr_?w9.T0-Z+r,,brd_p\ϓ]nۨjb&:.=@]{!#M$B݃=BzSRS%?qaE3RApsdE>O"w\rK.D=Pұh=ðtqpEECLM.O|#&#$+&c=7+>1f^MFv%ذ\d.wG*3GsY=a.A J˂ !ޭW8ItP*~[PL>egW>Rߖ#G2h9gs3Wv>bbt³&؂TRW1sO:r"H`zBi]=ҮV0=2t)?Eq /Ֆ4>%a'2?9ַgNhw \Gt\PacArdٛ3z2Uu_V767? $c_@^ {}5Plޮ2ѲeRҸ;64Yup?[a뛇R,emhb"iv "?>41> ueKH|&xp5;<{{D+Gw5 Lh~&eyʮyBժؚ9+Ra Gn̋^ 7SD=MMlMlQM + X4M mhVMh@hy :hd5 4!Thks0%#]46:*:57[˔?QAß=[ٗx󷇛s3P ئҡ+|͊L-DePGU+f*&S2ӈr4v[>yNl֗ߒiVcRBli,c9!KR3  l )!R]b|xqhDx/(CtSɝ)M;q,< g^Zz$vSNo 7 2)ͽ.֬)DF~8.c +1=2gH"w6#+:3"^Y +Z"OdUf3Gd +B'u ^~@33+s{Gw-䁪LtV '#@z7@5@[@hMh3@hB@xnތ&l:#JG;&ԣ6TALܒЃ_3 Yá &;)-FdѻѦI2&2 >]w/bђ $&>K }/x{<("r-I368Z։MA".d'ZL|YB{zX] $KǡpS`E41>\\QPQ~5wl,tik?gлخآ@hB5@&&`sf4aGm\3:E*ls6!\abraaLCwְhB}h0)ɍڄFt{gWe61lo=٨$[osZHl?7fbnq(ٔ-|&&\3qvK2"a׮>Є v 5@ &&`Є64+&a&tl>&]^H,|M+%K +_UP,wv;`-=C['3]vQdksĺ" Chqh@}{8;Up7cHH?$ęԉeRr *c4z9?&3#AQn$` lO?Dk0O`bic||OPjVmf%,5;;hOyucvk˰ ևd Ex] >S]B.1pM̳rO7Ji@pQ68`֫hf[euE1EU=hBśy3n Ch/elmM]h +cM<[UUgpMlMlQM + X4M mhVMh@h1XMԫV-A`yb~B%:9q}6T?N`4HwZ3ŵ9ꡋȢ|2}gnU9ԏ%(or8& `-fjF \2΄Nv$PŠôGkML^mhJˎ*lnLIC-nُ*,DSp&ZeuVY6~}kùܗ VdFg_iD&V(*EW9թqL+Y\6ݞY!aDK05?&S>~S:{{6P-:YXr?7"12OSzX%! PƉos:Ym{J/&vخآ@hB5@&&`sc4LяЄ3yV]9#OÈ3Vv2&@z7@5@[@hMh3@hB@^4"}Ź=gFZ#CzyZ*ӌCc՝qvQi2TMWsʈWI;6&w^ Ybǟ~X+{&hKSsC7E䡡!CCè(]U H$RG#"">=~pP8|oOHEX/ab>OtϳE EpOEan}#wSu<կ~f1}oߡJSG#G(8TÚr\]wEdHx<+BEp"矣P(]ꫯt@ E0]DT\\[o7677MMMN>C4%%%O bX{%h? ?lx@<ߠ~g,_WݧL 7zOyo;/˿?t?ϿT< sǷT@^{>EpHoo+~{;nA.h.a>4xG_zP6o.C +?'to可󫷡kfo_-t]h߻/_:zCx"'|K/"2$"~w^]oJ/Ep?}G ЇCtxWug}^G믿ta> 5 !9j⤵qZq m;W>z}I.{&b ~~\yg3套_{)q糝 |RqO o;=gCkLэ~_"rll|`aa}(ɓ'?ct߾p.GFFBܹs e寋qqqP kbb SN{,>9Fk-ë/"o5]S9rDG/LHHEpM^u]D kgΜE0EwyZ!Auĉ."Crss{Wuz뭀]>|MOOO]wZ<&nv ֚آZ122dF?s>ࣣPnt/@P.ˡ6EpHP1֚kMl]` X& 5+@M2 Є v @M4#hVMh@C +E&]3ˏ0u}VT4Cnh85ѰG(~|CSOo*x\YShzH^ݧ_Vk(̬3ϳP' +w\i 2#m)1PL]voכNGfב&ằzE:o>Dd[x*O_FQz' Є64+& &%&`Є64+&vMȰyNNNaHs1T19^cȴG|)_g?Eю܋>FT{bnZa P&*? /U-pǕPs. ;!6W_dgQh.=]몁jY%i[8dIxn;XB @ǻ-M(,wG!vV-ŏP~s >gQ" [׍gO~Y>v!~^OF+\T&!^hBh0r>,-'фtBәtAqa}Sps~+RBKLbIjR3-xSёlKXHA]:Jp}zeΞxbB@n@3ט}M 4է8PH3 ucGȢ[fU"\5Eauh*.T̶33?&L-کcZO [3*& mZ~AhboZM[q8'&&`Є64Ķ&&`Є-xM(GGmy#8$Ċ ?B͌bD@oHTzz ӢҘC5 ZC\N6q*O(VKk{9>x[!X"=wIh7>ؼlO00:**4\[+cYm/ૈ&'7es7L;/mCx{#&קL +M$vQD`Q6aaLo6Yus(+`]䵾”<f[ҩ{GxP`"?hI>F>(ƲB!.ė7煹ַ$HDQf}ncAQaRgرLيRw2$Y,,Kan:_OQՐdE("4krv!ONUS MYy!3͚aʘFwtF ]aNК)%3{o<31&՜z0UdW2r]YjAZeN]hFt H431kN&IR+Rˠ&zfGN۞NJ/UV?FL|2.#trqЋ5q/||kMs6hdM)/? _?Tz4Qknq:1!qlx ;=` Ң"!P}-m >TY"| 6q{;,HsڅuU>?_p;WYratz#.Y6y5uW[mm]ξZm}kxu%{CdɒFFaVA@`_{K>7)9Hr><99'9'v)NX91ͺg3Y/u5S[SK2u 32~TIFTfq\u&jNI+d]19en*ᰳ2zV=h̴y^)Lwikr5ë i vjGU6M6v1#HHM&?т*t YRR-O)ʑ10-~FE Y+*MV(CsP!1yFSc? e[jz)ĝeg̤U}êc\/I&*ihPU.ej"-B]w†Ǟ|B;4N萓|s58)T{vr y잕xMׄPM̶8([ڔz3. +jPX@MjOjPX@MSM8KQQ~F5s_nQMtUF*:|5s+j6Qhwc / xSe)'t+(^. 3䴨&\8眕RFyƷvAMfYKv^Md&7,,-n|d+f6u>T8O9Ew?:7{+kR#k=^&SN%gG{dQ=X ul&u'OZVVurbegSA1^M-!c "@M`5A P<j "@M`5/Z]IoX;%,o` Jw%^tCDSM^KhEI-?ͬgǣ +JV_47 K +l1-B[Qdz6vaDnRϳ?ue8ٙg TS}k})vveCdߐG56{(0P6C /0&815tA}`QM^dkqJ~O}9NuM(%= mc7ƛb3S,3%#&$?MIw_Ю<_3݋ҁ=6Wݛ}c%5?~WgDLb.2B^>57G^=ŸZμ)Ac5h>7V PD5& PSܤkhٛ3|KO5ō3y"Cg;0 khm/gI[8k`W49JjϽpݞ=¯/5g}\q7.z8V_++ mo/59 . 7yEM6/1ʈ]LWswgIk_׊+j|eQMoT^Qon@Mj "@M PX@Mj Ud'5Ar:54еne JUDc:DtN&&䀚PX@M`5j_5&XEMx;橉.&x .5P&@MPX@Mj e Ȋ + 5%&j j "@M`5l5YQ5!5&PX@M5@M`5A ,&-& +*&Pj P& ,&5IJdEԄj׀PX@M`5j_5&X&fh^ў 7k@M5!5&PX@M5@M`5A ,&-?*VQw+,00o(lL/,oշapb4kg8Yz&hWor&d%[ TŋFZnKWmG7ΊQqr5J,ze9^zL^Z>6جⴢZEZ55O9C5}s' E +9;: $m=3*C3=i6͇uŵqŘimOK.sS3>G +c7ZKK{}KjK\ط8&Pj P& ,&5IJO5!NՄWTހy1=>>dGdӦMdTFج[ёv200 8 _RPP 8mcǎQ\\\ɨݰaIrdwvv޺u!MMM׮]}>M7yέ;чpv R k׬ݵu;Aٲi˪wV }[Ӎ}]/َ޲Sw z]CǙ;Oɨu֬Y~z2#+!'|x"QMIV^m62@MO2Q7n$8Zh5OFq-h̐Ts4I0)w<0z7x;߳mg>ILRqEm z%2b˖-V"i'g͛(ᅬdA TjChDmSh{$ W0V5zʞy.tawhHL R{z O}"693f2[曼kۮ / 3X~rB#VN't`:PUUEcf``h1OF񌌌wy4Toږ.0h{u+o?'t8 AЁM9 #&Pj "@M PX@Mj e?JM̱_599woqeMΑYԄj׀PX@M`5A P<j "@M`Gα֤󸶯21>Ƣ]OR22?u<1I_VyW\vL%}jbNE$V?45Rܘf&{k^gzHis~HFNhnsa5A>5So323C~/Y|nIBu̶?Lv Ԍ_Q }I'-j稉ٶkemͼ]Ft3&5& PDjbjENN*vn,GEgT}P;crU$ʞ#onj Ǣo8m va"0üxJU{nahht>ʻB)KTKWif‡|Tuk-kq01Wh+w\mvb>*׋?Yl$-m:W + o%i%ϴܻ(![Y|O_RSANFý>&xPT}EM'맟vNz8D]7ixc%& PDjPX@M,YMp,=~.x~ihup%JUY[ne{{XR:-sX,.sYL3U*s=QmfY09=ZhF-Qmlaݣ]TWu%zoS3*;?S_?Ǟy(Ih霾[+LqLZա7:iOTVEݿSPlT>29QZP[eZ-D]kxRâ_Ȥ\c ?f;R(Wn?=Zv3Н+|j\T#!yryQM^ʤG+Gq# m,*WP"NSzM@Mj "@M`5A ,&5e _sKKy;ƛM5E4,+"P\H+\ei@E51}'"QC\ R+ՄY#w5uJPSփ$c]Vճ7BTMli%am7)4``^hxf$5%%fs2T"ۖŹs 2Oe0]d/'U\+l)pqRab?Ԅ^H^`y[#׋U#KÍ b ԝ5O;µԂcخ2)i&o;9e¨,mj"ݭSZaމV-Xy5qѾubb?)n5Q*g5# .%wcdOuoWɳ5A)3te)!Gxf5q6W +S?!P;˥&(jbj׼zBG5p,7| "@M`5A ,&5&Pբ/]f'UT7&f:W]PQw쪛L_êT'X-UqJùyz]ɱԄrSn.K:*I PŔFЀ %>ܟ]{EI9P1 -S8xɂcqIzÎi-3&5SjS{g "@M`5A ,&5&(.̲6Ի`^&.UQʞèy@W4x[D_E+j*+nQM4JDCshoף't#e_[R=Qa-mmo^1˞rHIu>'l~ '%Y3#z*v3_64\Y܊*?Naߟm{N {&o6+~5G+6V]s˹Q`=3Yw,Ie'95 3"Ӣ#2kG&:Ǜ ੏ݒf nF zGx~OH U\-3 17zts+97Z9Q1t糂 iޑ^ɭwgX919ьq+jbf]FȠ5s\h{JݽvxN-ȚOf{9߹# PDjPX@Mj OM@#r\en6OXo>*pl@M15& PDjPX@MXQY.51=]ߛ"<)͌k5]@M1&V~@Mj "@M`5A ,&5eԀx@MP\j ,&5j'@M`5A ,&-& +*&Pj "@M PX@Mj e Ȋ + 5%&jP&xPDjbjjB5k@Mp ,&  5&Xx@MP\j ,&5j'@M`5A ,&-& +*&Pj "@M PX@Mj e Ȋ + 5%&jP&xPDjbjjB5k@Mp ,&  5&Xx@MP\j ,&5j'@M`5A ,&-& +*&Pj "@M PX@Mj e Ȋ + 5%&jP&xPDjbjjB5k@Mp ,&  5&Xx@MP\j ,&5j'@M`5A ,oUй˸F2~mx'KPE;,%ο.b Dj},69tŎlk؎v W|}{ %FZD +9x 9蘇ʕGAGkdG;wNVV⦦G&޽{t:Ѭ B2#X///23 MLL(e2dFy2ļ;dTFugђ!- X-Hj^HH4I*.""8dGdǎdTFh7Q<++o + +"xMM(8}RSSō>LFeg}FhLLL(^PP{`2&:thC~ݾڶ><wl\qM{?<;l_ẃ{ +ݻvZJm,{t?^߲V__f_%umӦM/Ȩ~֭[(O7Iŷlقv"Q|Νk׮ݻw/ك)IFq3OFq:Gk4Z֯_ORq4h'ig(ڦdTl~w>>g?X<07o&8v2hNFqNV^MFeė_~{&ſ+(Ahm62Aދ)wIwڅ Iqk֬A?(08I>, Q347:z +_W;Yb{_O70"N K}D{cx˜$SǾ;չxa AI>_@#iV:dM(z];yd9Zܜ +gʒQq!!!?>>>dAWQ 7772~BIG[~OFqo~#;5%(ܿݬB9GFqKBZD>=Noٽ7$5gߝCRoE}x?12S?dhQTH/}wZhSk]ǏXܵ^j ھ[12wqy4<7=%fY3Bͯ[˿Ʈo璨eU&m;޺nƔL7ȍyṀCBhbjWH(@ԅ-.!{O +JKt=9h+{,w-(w mޘ:0E^dt&Yw{1>Bt沯YX[Kѧhbq6JBs7>Ȱ4V&%\射͛qtewMYcdkn Y.AƋa.V&P4U M`h5@X@ i>+Y@HIoZ5"ߞgs٢{[{g//SMp[|qm3fCqt΁vi~::MLUqn)O6q^ +lȫN)M\0' +j ;3F""NK11_N ȓ_(+Lӣ(}p(6SXpZ69mFoW|)e7ʋvT + v[U͒sQd&'gD 26^cwsT>1&* +(:#:Mpxy5%z#Fui-BFӤc}cK+jӉmhH70J.-PjN-#GH*Km)e=\:-ϫI)Տ +Ls +o QSOڽ̕Tǧ fi֬ڬ֡nVI.z:,zv)p;h,lgvC6>^EvUZ"X3'I e iDVVSAm*վhunu +r +;o!3 +:C"E!7cIѸܑ!gBoY-'VMuyE}cMpˋ3 +\e<$NTkfE2vhr!(৩xFF]]BDOD&\MLkj.'+e/;4EO1G+\їNޤ8OW¾&x}}ct ]Y|h+@*j& +4 MhyrqLr~V;54!`*GS۬m'e6ĸյ}hb7NZ!:#X)DbZ}<\uFep'=# 9\ٻXvۓ5vZWl5;IW5"3uuݦ @gS\NIB3ejEakjwZ 暑oUŨ ,X9o\maz۵JtsPJ|huaWRalA!T-qx4[KG7>^ +M9 5%na7!V>={/-ZQ!NA)Wt ֍ӄSyL*2i#]ǧ2( nWBl{إڪB|./)+8J؞Ǿ뀎1na 2vӄڥ|#mQD&\&ԕ5FZIj&]اiB!sKLxc+D+RMQD755= +R:o %t\ 4 M`h@X@ V&P4ibP:9hbc-9+wU8hBKCkzq\:I4UcP^Adr3R 1j."8Z^TTt2ǟq)e?km.k;M+PpjMGT5^#TDQvW(븸@],B|*M<x/tBXWl%:b. m5MܑEHr%B#B?';.̷ke8\MUeG8Iizxe'^2 SJ+XMqB]2=dt#R+RCS'x EZWVu.WoDI9iVrg+\Dݍ(;Sm2cp'{~j)h*\70e7M|+#w_N + \ +4-o@Epzo#-"zW}@zex +Xf/WWW-8717WTf/ 9IeZ +F7wٶiB.N2 _yJ-<*qAю +G}cx̱يxў7Aizjc W6:j_ԹPB.6Vhz] %hG&(lPN]o-&JȽ&GRhW_d3rLW#56-ZwW`$\+J +T0K.٘MKͼtmݨ3C"`$ጂ29:}+{-&ꊵWr"T.ʖsr5Ȣ)qoDheL>2VGVGI%pi8*f>j jneӚ*R-RKZF U@Y*&4e5=BAkW +9lʚ{hB@Q7T +9TкKbvф@A9;kB V;Qy +_;^1$񕰯b & K|.V&P4U M`h5@X@ s 9ZjiAYbHu[4!\nbm&ia*7[;b]:6MK%&h3o*v1WT+o`:Yp{ƎhyCV9Y{|Rbu3+yõcm-Un +Cܬ5|d+?9EШr6( +/ewMnƹ& [4!Xk+̥ #|4-2Wxc6}6*u8ox%Gi:ώFwouc aRFN7]$_E vJ_I$Fίuh%(bOQf7@;&TR+%3_׿R\`1{0iR_ZV-\cH#["N &UI!gGv4++jlKMiӔFqAt \}')dF)&u7M YOnυlkbMt^2ukO뾪4|)5㪯UC&Cl譢651OwQpQnYiE<"$̟JspʍNk^eW[u>lu1(cwPv_?kkkq#%~ʜ sEw>{Ah|hjQ@v;BսnjYV_&]t/NHozA']i.tEZy.۸\e%FZMl ! 룧"N5 Z/+g蜨>Er F7݋%GL!`hz[{JKqp{F1UpO`̳4X"mZX538=QڒַrsRLԘ4Lnd{[9;Eґ!0)Lo~.?/5Uz:SHQR}LglЬ R=#&.~[PZ8׻?nZqsL/察tRhwu v͈qd"6/}h?A dV.ڦbB?bܟniohuŵ3Ɨ`w9j^>g'\. 07R?F?' +j& +4Z Mh+@88MS+\7ejw҄hU"{tm;dUMl7KY/؂ͽ_;hb}&+ɭ?VvF +Ŝާf|{"gs«O-ec-׌pC}js_vPE+P%ݷwwߚ0WEA v&&chO?^]5zY h+@*j& +4 MhЄ&~S=U1|؏.xzA㼚_OﳬKg+wkBmK{4Є+x,x +4 M`h@X@ V&P4Kg)Є 4M1@@ V&P 4U M`h5@/@CU hbc&P4 Mh@ +j&^X&@/~ 4Mh5@X@-V&P4 MM@U&$^hb@ j& +4Z Mh+@xaMH@-4 M`h@X@ V&P4 +4=Tx&[=h5@*j& +4 Mhhz +4!M@{ j&P4U M`h5@X@ +PhBo& Mh@*j&4V *Є 4M1@@ V&P 4U M`h5@/@CU hbc&P4 Mh@ +j&^X&@/~ 4Mh5@X@-V&P4 MM@U&$^hb@ j& +4Z Mh+@xaMH@-4 M`h@X@ V&P4 +4=Tx&[=h5@*j& +4 Me 1/u=I39`;sԹyJ|&ЃT^? +uLXh?I|/^g/ĿZo+ ukI|&R? ?א7< ˃12>ȑ#rrrɉ'N:%/]ZZZ8wvvF6'''q yZ;~U~gS437_;1E^?bZ- +?CcpEۧտ ?}"񓏎sQV?;IYsppvvv>818G~~~\ZZO>Htuuz-q naa\#?{=1m0fffᧉǿ;}Gy󻯾Lw{{c$>A7:xf}Gx}oo|?|~7o~.'>\C~#k>8F>v؛oS#A{o}1~?y,kdAȜx 8G6Α5/6#ڑm^#P{*Y`?E`|oRipd'N:ӟ$|+q ?;~8?Gc߬>yGAb G8G^a^>L9sy~p0_. I?۔i5[X.2$>AJtVi]zo-i.]89;l1_%ּwmGkR$>VGA@ ЁqЁlcp.soooq f8 + +Bvd8FFl*~ayy8g0NH4>B/jOr{y}~pmԼ,tMMx&[=h5@ +j&44MhhbY:CНx&[=h5@ +j&44M濂&8Y%nݭkfi=4c^94:ހhw^ӃO^գEHc!&}fz@L?}c{9_)]DkutieH(4zӭgJRGhU`;S7By=lyH}߈4!M;ia35hKk$_g$+zwM`h5@X@ V&P4 M&R?}nEt O3\>SKgov3>\QF޹Pny^4q/3| H%y6F 9P7¬O'߽Ds|^,W{giQiѵӴMLkz3V;Y^6ң+F˓5=݅7 n*d*<V<[{g8kwFESj,?;K鍄9VIa%YduDJ:_4 k]"#x~P83Kǿ iim(*ЕV!W*~{:2YDH"}NcuBNJsgNۜ;ZBU|!Є 4{tRzEVj XIdW0<E&4 Mh+@ +j&N>:QNn֞ 3VxY3dm(3.9ydƋӶJ;h3ˌwvQj 4Q4X^tը%e(eRR#+T-^Jvjzz@7F**6ȏ)(K! {ڙŶ|z~V'ϛ7隦ITM)Ip&˿1)HZ.-6ڽr0SthXf]dziFcWEgǹs]*u40\pvN(SOpս,kWQ ZfZ9% yE g$Vk}2',@RpX1ʰP%%̢ۭ4R͍}9䆺t"z"nrcNKYUG&2gfNQa u2_ƬmMKnH1;V4N Z2Jb(\q1uE5Y=1󇓊\ EPc hb}@rYDkyNrŋvO4@X@ V&P4 M`h5@σ& IVʖDvYc~&WOƫ!#t;]4qH2Wj)s2q lg>^`}ib1$Uy9۞&W&xq̅ 35tYov.5:ζ\S Z84.rgzNM)cF 5a.v_ߦ gyM<'+gWz㌳fJp7hR]֍'*޹4(\xٸnnHFABϐ &~=H64I}Zm4a8G5Je-/ +pE$Y֦(e;Ȏ5/w5 ߽9 P7] hфB2KNjn Qы݇[+ԨQcK9rr$$Ɣc(^I&H.,آؐ_͢"1x0H\Jwf;+ ڲ#qbv v ؎ᘝV+7P]SR)|x41Q$sBs{zvBDK}u&4 ^& 2@x@hbhbniϿfڄ4W_{FNDxD iCzk]x}zoʰi"QWbC] +F3ibMA3?a4}i6'5&&_`ESM]}k.|w,/8st4]/eE$Z*UWJOz/+]-Tˍ+qWM<~𚪒[c3ԌG43SyȻ4"MGFCQ(5FDZeJ.4h)eƕh"IOӑ5I*/)nzH3 +_|4'%##4MS=q;$s2ЯXPY&OkŅ*WNz)K\񢌔3,e4R#(j1! ]WI[#ޓ4Az&D-M̶j8o\ M 4 d&4 ^&Xi9uqwny=; ȫLtZK,^xp=~AM$egoT֮$nt#;?83'$8fqo~qG 2w?&G'֥cύ7q`~jxFCQ̩Ɩ>1iae7:n32&9s{bc$b_Nmw[voWzfnOʋHN5 ͙6nc+]^_̙qZlVkXFD@-^vqOH =of' f9sStVc,wa]g[`z,~yNfQ[\Y*ǚ}˫wό~&V -\ߘKQ;L`^io m)AژTJ{lMZ}=k>i} ^>:f{^2i}}$Rt&H/Є}&z'2鷄/}HFGz$1JDy`R +4 d&4 ^& 2@GF[+do`zI?zv?/ ZbgopVst]4Az&DK4h/@Mh M 4 d&&6T׍&K+)Cdo]jӵYrfO_H⑹7 @hb@h M 4 4 ĺh +4Az&D- +4 2@x@h/@@"hu+tChMZh d&4 ^&&D +2@V *@+ 2@Mh MM d&֭@ U 4!j&V d& 2@x)@M[7M̶ rZZYUc+ペ?u50sco)@+ 2@Mh MM d&֭&&bjol#=O W7޺b$/MEÏ4 @hb@h M 4 4 ĺuĝ di ,jgaW}B9THUDfJ@6vwAYS̀2owU-m3ܹ1gnNS"%?gzyS_Zuw\t`5,@+ 2@Mh MM d&֭&uq-Qbz$^rW2mk8$';;}+/N8i37_[3[Y,P~™DU(%Ԡ G}IMS 4!j&V d& 2@x)@M[7#M~a eiP)9{3w%*(]ɜyI0R +PQNv w?a͜Heػy*EEֽ&n8}Vç"fPaͼh%;يlyReIӋsSM5rCBK55#4v @hb@h M 4 4 ĺCM&*ɱ y&Բ2Gsóm-!wiU +tK2(gK\ovQR )j,툸r)zV Ya/XM^ Q 4M 4 ^& ЄH@hbݺhq]{qZ۸O,K(g_\jfK-uf]:PSXƜZnSVBoM^ Q 4M 4 ^& ЄH@hbݺh7[sf_|3r,o0;ϞY}.t +4Az&D- +4 2@x@h/@@"hׅ&4Mo5^ӿdUVKVS_QO@%}%cU\W53(cۻI_::]`i&wRvmy~އ coYqCdUP~aLb??c"&7449r{Fp,222jjj =z( bx@@NR`LEEñ5c`؈s"c"bvc<Óx "&c?))ف7ñ;v ;$hvbEpl|DLƒo߾b"~/"ek&Օc bÇ%$$#hO322^^^'DEE1<,,쵠/}_뾳k϶;.+Yewl߱s^t=Wu;|Mҗžƾھc~;3ݔߡw˖-%}%?~ܹ]bݻܶmۮ]eccuc@={`c+O ;ZcqN}b)]Ooݺ ωوM~뭷!v"&cٷoߛo~"cclݷy<-w&bX; 5F>^ڷOk`'b?}u֍O:׺|Qd>!./SLJ*$`ucҗͫMWďk;RSH5o\^G<+YeOɜ~'k###"c9~8AuttT" D h"ckVﴵEBB;frssюD z7;TsK1<66?.O㻿Q엿[k1\?}Hس0\r}O$ϦSG3|nEhz+8صAG䁏Ѽ*Iph}Q&Q$uOzO^&xxp&WjḭH_ t5q9zgD;+^k.җqʪJؘп}, \v}iJq,+Ye4dZ&kM5 ךar|'"IZLpq˟"< A+XiN/כ~Ϧ1}A aj@5[5uW~ȝZ_w1K4$ +u3^iW~.-戎3 ܮߺvC}&Sͣ ,M̳{o;>jz#ݸ.]mCŸQmóiM mjױ+0Yoezc6;A.Ζzn wV M4327Q4 d&4 ^&+@iq1= - =9%SӒ# qQǾO[Ş.Uh³&'KG^}&f+V6ҳVu5e彚xH=6VyV6jjbBK4m餘Y孎xnjW~.ZaD'vƫn3QR`}7+r|։2w:XvO%߫;o b{FENMj!epLb3xKCi9cuM]EwDGKzfrʒ9y9^FN]\ +k+=յ 崝/wN }A&ΘU2™Z܊Pg% = 4 d&4 ^&+@6yKC3if%9cIuӐ8Mpk+dU 7Gzg+!Mk)q ۵ѶvZљE&5:!Q&#Ucuv%ZHTg}[fzyuͯnى}GPWXC}*JubNcI;QK׼+%`׻H^ap ,pʻ7jõeIivۅL[ٳ/86OiV24goDˬ/sWu 蕙V^7{5{\[)E9ZZGC#Φ,+)UKvWñez^j]I*dm-q@J&w/ـ}C C2œO%yZ /ӄ^j 'W_M&sO}&$ۯ)Y/h.mv7tZr = zZ͌:ךF3Ut{+9a 44 d&4 ^&+A_Kic+Y4!e Ϟ6Y(]ka%r2*jz)Q +GM.s~G!6 >_Ď3Ir8+KEI)ɦjI)hS& E +2NW} FW%גIyheet{F*֜ݬb4fQd&.c+.j_ A위wNIu܋:\d${ح(d<%%gU+ S +p(JZ'E{˪Eg%*:ckΑStEhOaS͊v1K&0n*|Vg^4Wn2M{R]ᄡMyM[%So[%(\ +\nej@[)Ҋz3_.VZh}}F^4 2@x@h@MhٿM JUwhB]Nd94;6] Y^ +Eue:'T_5>($L4$QUfdÿzU5~zNI)> +MxTg؟thyфgdK&LL#8+7D;JeLl-ֻkzҍ oI&DB`^ܔ#Pt݄ s'bO7+*7qh"vA~R'O>Vڄ$E\,,n4^E҄`J֥/ObVxZ$ךhIڳ'R2Zm~ͺ.}wXtz폞~˨v=B C19gKԸ?yZ_CCLϥ 2@x@h@MhY5 )m@Cm)7JiMf;<4!\9쀇JzVc br[oh,TY-qO{%k)A֩YR'iucm:~+-J"_?YwQ>4'u/ i; i¯ X5zV گ:ۦ iB|oyJNiii5_PD8ɚƥunn2|me,Ә7 ttLl{ܳ;008åge.v¹0) ?)_o-rp.-v0 +mbD i 榼ƥ Q]Mnb'ikZvy=}j$u?e-E!]EVߗ5a4'VQIs\hb>킱Y@.+eRS KcVam7[R!W=ІM'[H_-bW7vݨ)dDK[9Nlt 2@x@h@MhY{,B{>\F0Ֆ76t)"Sc./0zwy~A^M)gߨJ"DɖM/ۅepo3Nwp11?oltWG(r RB(B%X`U1c\y0[S5=+Ⱥ +[ovMXӹڍ>˻Dc;bíV7`qc6VMh M 4W d& +4,ib%s }&V) ܑ4]W3:Fk`}4cR>^87:~u?#Nhb;v=zJ"MHum,{t;<+4Sk~uӬ?g6jOx#7df 792 νgK4Anh/4]N +Y|?\u-^& 2@x@h@MM]iIN)=FCDx5Ɲ4ۙ k=YO=DڼIױ@whbhb@h M 4W d& +4,ĺuhM@I-@+ 2@Mh M 4W d&֭@ U 4!j&V d& 2@x@h@M[&@hBM0@M 4 d& +4,^&XM@7T&H/ЄXa&@h/@MhY M 4nnM^ Q 4M 4 ^&+@x@hbݺ4et/mAP&6G&H/ЄXa&@h/@MhY M 4n}As̎цꮛ#z +k83'&3^_Q<67h44-匁r=1ܬއ$}MlM^ Q 4M 4 ^&+@x@hbݺD2U$tϙWezh[+^ʥ[Z:( 65hۺUQf7^=bjo"v)#|s7hbshMZh d&4 ^&+@4q3ד +eV1ygZf5%Nb?eEE7`\)crzT˦1o|\*VMlM^ Q 4M 4 ^&+@x@hbݺ&UsKtrxhLd@v4smO=UVܮH%=< =&-@+ 2@Mh M 4W d&֭iBAՔωR)t>l 6 Տ}Q\̟jh&^Hb%~.5sxeCus[^2,C&6G&H/ЄXa&@h/@MhY M 4n] b u%m}EucJ|vF*Ή iuTM\ic%xdd iG-sSN\  @hb@h M 4W d& +4,ĺCy#SCf# 颁ǽg7su0p;q 49 +4Az&D- +4 2@x@h@MhٕЄS`dRZw]JM[v:!hxqQjO mus:jH_ꫫmg2RKJ߅SҸktvCҗm(jɮؠu \Vv|ӿ#3H_*+!/^n#&LJJ"br]] ña' wpphD  + +^^^o߾2"ck>rH`` ñsl1>v̴1;ڱc'b2P9t%^QQ#Zmg迥><ÌھR~.A+z](#b5q>3G "OZA hYe1ܱTo?0V$bn[DPԧ4鿾w]Rm۷ckؾݽg[w`/m/ݱsǎw *k\ٻ{-/cwl_ۙٽuV7ۿw[Vm߾lٲeϞ=DLNz]v1ˎ4{sl{m۶4|޽}ؚc'h8ϱ=Op,;w$g㚸"j嶷֮zUQ!v= ( d!+Y^EO0e`30M tOx hQG*(/oFYWUQ*UB+oިR_}ckonAРWT)4P-ل@;tzkT7oD84s:`6nREkoB/׭_֠.cAMɗ(+TT6@Ө5MT_ClRzKVh +QYeTo <%x?^^K~5Ao5*_ܼiFhQ~KV *^C>tP)4o@ +TЀϽP]i&Cot({ ~ЀOSp,}vOT}Rqh̡jbQJ_9zPt5t}j+TzKV[Cs{㊎d5u;{r[%&5(9m]-M[6???4C`0++ +4Qĉ_5JGcrrݻ(111h޼y5asSJRfٿ`e0_e0 J2K4֧>ۻ8šhsnJ1v)70})Xs `L$2=4A84twwG84h>@2DccN4_yyyh +v킦hӳBx@@={Ш uV?d2yǎh|Wxs51/X!4>.F:ɢڑ?Uܡ' +dOo#Hɒ?t%v_!Q? +YjjBjbjBNjB~@ X@ X@ XԄ䜝1dU>_6knfk` co)bw\q퍊:}&f=]Oo dwF;JNsI>DMefba- Z*Dݵ\H,r|G#, l8bdSϸ+|zaǥ`l"V<+ ; '(iu}BrKVk#^WަǓeV;}>f8v?cq~s'3t aҢ SKNk?aZx +M" y&w'E;ax|V'JOY&}WLz11]7Jisb5!Rio541>VX0 jB6A 0BY3g9ICl/J̹)nUfŠTM jXF|ԑ.8+CHF{c h{&Iwe\Np;z80FYWȒ)NNC8ΓN7-qd]!bm4ڲ)6u*c+"fY;_j?97eMnrdЏC;E#@ov=#L&=Mr͆ Z5,쑒ƖTt^'8项_'A{ n}`pdɐ{F+ jB2T`kX$nmnIT׭}=DMu{'tאeF[K-PRAXQ Nϫ5Ċj &`j &`j &`jBj"XVoBrcC@9nis'$bBSÌkNԲVtH<_Q`<+{["l4IKk[G >6Y&}_1Ʉ7fy +Gܭ +]b<5^RHGaG#AxBxu)+ ?~'Z $_p MP/xz٘Zbb떫 ;W.wr/䝋Yyy-ΐZ~W<s;Sw#SBfAŠ֑fwз=OaeiOQ8-T#s'ws GBz4p2]ŽqNMSeIX Lx kaez|߹O&3w5 b +n8s ͐JᯍζZ.6e-18xQ1g5'{ZPI%#SfE\z+‚95!p(ށ349xbt=~\vA"2YjI?Uxm(82(3jB6KI(8 j;B +ZV@~>:8.>ccw!tOˮ-%D'zK:J*ϖ%jB}7:61|reR&{#$M/N \rY@M, & $ $ $XM*#3ܢ,ӱaS+<5*Wnż-u+dt$cNMZʲ<-nm_&t=2Dcl ;3JxR}2ys3/das:S$cHHG;MKՄxc5-zG"-} zj6,!ǁ/?J͖>$G6C1XiG'Z L# +>RGtM<~L:eT^;2]һ<2wq k =>(ިTxI4 +Lmޙ(KQJnmg[1WgOSMtf[Pޯ=o9:_d3u0oAdhlBŕWicۯ3.Lnf:]PjjCGjbdţbUmJ>7kC ba)!>/$Ys6 +ƩpYJie`ra>y +S/$\. _cH¬/`+8飗OlP ( j{=?:vʤ޶ &VPH5 PH5 PH5 P +U^+ˉFXtZG_imOUx.9D<5AZ&ij\>Xps_ @M*&Xم :yR & DߕZcGj؞t7O1 & CNq:30A/Lv jf'r3jbHG#MckF<,[y´ÇYYF^=?lfM3h`u2U2ր7ROnM1#M]3 +[ðPS[mz'zﬥ{^!,23мؿ[ߚ%c +KM/Yς\TWl[ߺz`u &VPH5 PH5 PH5 P +CGy:Vo|̯>@$FZa0<ϤgDa9JEݡ㲟WUfvjUU|C#OHeaK'#j˳ z~nV~~ !§YtS3u,NkeJ#$C_^V7Dr):F+={0[,JECirr.D[{RHC}]}!g#6.{/WˏQ7rZz;qAyHk[S[#BiXo3Te>kipǥIƣL-j*T')q-fz'&5jOepB[sbvŹEDZ$>F&x,ן8ܖd7rfRh LFn1q#wsh fs@x k5D:mgo`7fϊEC!9_A'?Yz=.B^/?olZRQQ-{(vg.K.uR 5<֕jdeh;YW5:VSw^Ke܅gAK$wZ Xs]CkSuU3R_Y~>AOR\4@M5!?@M ,@M ,@M ,ej#MѨDMƳ{E2Vs/fAM{a Wt%[Q\7\>lgiYAsɴN88Κ(Oo/rY6?q3Eߛ$FYf,+#$S|̇'q`2"5{̆XK}T ]30FDej fAMo2ﯽSk4@M5"@ X@ X@ Xxj@MYP@\ٕJtp0OnSʅ J &;5Ԅ5Ԅ5P5P5P5ijU v KՍ>?@M5r  9j j &`j &`j &`QH$u~+߽Wm҇oVݨ!Ϡt&lx9ԄJԄ5Ԅ5P5P5P(DM46eʫ_H?8t7y7l~ dm+-*@M5r  9j j &`j &`j &`Q8巤n3D7U֯{ Pk/@MjBjbjBNjB~@ X@ X@ X&_t3=P?+OǂHt/>oKT3xQ&&V& & $ $ $EqjbE-U|7S=N>jٜ{s<)ߴ ޒUBڀy&Q>߬@9Wt_Sz3s8.zj-g]VzN͎?>[2F5Al8ArFq(|+k~.hǝC/_ 0MMMhgǣQ:ݷo!LLLtttl6GF񜜜ףQ:T{=)(>?;F8tۣTkhhPT4Cm۶Q߆h/SSS((P4C@;ҒdQ~@2DrrwƋ/ر⍍s( 5!oG;>\ە_UUUqjsV~x8Y\ܱ5a7j4D~gH-Yez-d5vnϮ:j[dWқC֙Ye#ZwP)'c{̹d~AEE%99555~!9Rq''~>yקJtPx%UlFqJܶ1,uuuИ;::QB__:f( 1F񔔔ףQwEMlΝGE8ݻ---Q*nnn~F4CcuV4*CdffhO(^___QBMM ŶQa׮]hTzwP:>c_4C0۷o?y$cccl٢ 5z5,Ow{}e]t8szj55r5&Vք@4*sܽ{Bp4Cp8C>Fq /0=X"0'(hezl߹ 5,` $Z&kMe0ycf^BAP@MHjBjbjBN &VP5P5P(g(|7lylC,NٞJװ2߶uֿWǽAM!ӆ= / +7Hd3\VLAO,{:4t;e|?[dT9pŔC=III^({/BJI 3|IԄAo A%px!j +쭶 +J6 QGd]ӂ?xvCTT_#]m:xMCK>Q-זN=I)N=1~+b#Hh sMlX:9IsdzR~1搡U:ߣcahfixr[1Ӑ51pgA]!%:l`^ٔϟ GcO?m}<7v5ku߿*`$tuV)jɵHg؞?&(]O|([`ju>rPA|v;1AiG^P [G?{c LrGb{*g mha1 4JJisb5!Y:jǧ ,VgAM)z6恡ަyCG03_ݤAXQRdg gkK۶5P@M&`j &`j &`yD@zXu6}^rn@q}1Dž&2# .VOpDB:K&h)N9k`2g>=[;rBEjz)3Lv7 +ڇf÷,E#'طYav%zZMPZBD\ ;3J+f`g {s8MmG&Ķ4*# jV%:[Bﯩ ^ʐAw$Qgʤrnۅjb^V0_&ed QEDhhL [6hjٗ jB2A'ҋKZ HC!o2ZOx[OqIEumbۓI2l[^Ҝ5@$mN=:jt6G4hYogn{ßR X5!dV$i*('sPe +XDyTf{=)7BOLUf-y:- +XG-),?6 qvGs(w +z"Z}g~%?#mn/hv*-io$C/ҁ;POe_9:ݕk"Py]^~?DMu{ket- PK?VIy-JeZ#LO3 $jbE5 PH5 PH5ˋ&y: ˿\?^_G &eu.dOh0]X!bd0-[ửN{R51LO 8CNzk +{[YD9Ӯ/CmedJK1߀8_DMhFHԡ95U{[X1jKz{=GRɢґ%jCPgmzj=3,vJ-W.15LKpu76^wqM] jU;ֶֽ֧IH" a=d^P,eʞI l \.Tf}^DĀ~~?B89ܛx7ry5r=Cr.ZegN, l +bQch7#COic51J +1гQ0 Ό}!߿9KkܛQ04B='$Iѣt.~!qhc/6Ψ ́\ZmDe&pACfO[ă`nogr[pJ2>G>jUdUiI+9B'NYxr@[ +mng$vy89$XM޹lAr Grxp>3씱«vQ KPݽRz51-L67LV95ň=5{!(Md(|%bl#Y-M}F}mI)_r.TH\Uj[{,Clz 75&6W<?]Рh3Nu)@MH &d XP5! &`Yj"ܹeʺb9ݻlKIM',;'DGWK4&=‹e;uR2IA+tti%]ݶdsv8=+.OGh) įSf>-WiZ?v`q{?(Ʒ4mB95dhb!t;g^z!ǜ7RA&,-}3d/WAϫA 2ovyjc}n͹im!ǍgL-6$DF1Бu7uO9uZ'9vTʎ #X|8D"K "z^(mxI:Qıv|Uzqp;`NEAӦG))iݷY#S_c#r+#[+cWՎaǛNJ{ގu?}<m)ܼkc?Fwv1UKHMܣ˼z>|-הcjCQkZ'a/VGyPNtŰz8W fE?uV(.sjWmn2}f Ɣ]aA"U[}DZ0-kz@ty8kW),Pj{vZgf7A=i^51Hw&&͚|9Xu)@MH &d XP5! &`Yj5*2yI<;\n&$so=TY]G2ܾQgZZe쳊*·`@@M^{`33 }4kEp;̚*qC[9wܖ^sjwZ(8͂+]j_laJV x^M`b7dZ0xĮ褡i^)u4zY5Y5!Ĩm:Kb@l/ڭ"TTR0)B RKXMLThhUg&kzpڃ9P{|L+%OfMT]sԱ {8 jRkcrC?yB=ifꗖbuo8R7K:W&7ӵOD-=_`Mֈ9s:-uNƒI/1vWMd,jcg,]g%ɤ&&Y ۽e2&zi4ѴNj\z4u ;RFgzUdPMT XøtqɃVjR&ʯv"ĽvGjxEp >G2`z$:Ƈ`۲ldFt+ 53 6VjB@M5!@MԄ4 i5 PT:-ܲ,WM]|nnX]ſRYӐ{08.ne"Մn-Q5:4J%viJ7~ՄűUX!lJ D:WO4u MrHGrm#6's +ҐE-?XLAYSK*~௽y586Ӑ&8okF wK ٧̻OO 'ͪ }ځ[~剾#qH#*i԰da- ǻOxߧE`gԄQhHA)s_O0 G#4gc^ +3BgYw{:8 +.Rc<6ٞ'st)bTQ;*MMabӼIV]Zt˜:js_]\I*;o9Xm63F<[24)v'sjC6-Co5HvbNMw9]Ee&jI/]|$M~x?zIZ(ltˉj&5 T/n}vAf>vۯѻ(nHV$K39tݤE_X^wrjB@M5!@MԄ4 i5˲QkoBM]}?߯?߸BeQ6RM25)5&8yGtdI⳺IFW陑QpF%=US͑g7{J СZ]lpJKؗ+ ,X ר$c]oR(cRXj,I}؂|gL=m5U]M5ÌӍ +NFѐ9514ZżʙKtePc/W O2 ܉e;gmEyⰜ'*dZ9?jUZSz`RVi|gB͡3Rc*Ja@$/O/mJki5ۆx93R_ =5yf% p.EoTM1҃e+1Ғh"ژ.# 1ٝoG48'$& XjB& i5 Pj9+TTVB\V@Ŭ훟F 25L_tDy&C3{!kxj7&әCc5)^+ʡ1s'93>{"kxP *08J ٺpJ`A@L?nCɫH&Z PGPz5@M,&`j j&,@MH X&$d݊j|wW^}Y绎1p5+$*@MjBjB5H &d XP5! &`Hl߃p:6_;[̭:TVzڍ}{f_}y/A? PGPz5@M,&`j j&,@MH X&Nh{;ƚ vomR=?PGPz5@M,&`j j&,@MH XW'-RMınt;kWnl޹Cq:ˣQ , S{7B/>ވ$h*&/o|(eo;?Ck꾷zKxl~_&bO˵(r߫d~3mp@(YGG磏>3Q8ė_~yfsO>j" +߻w;ݍ;Gg K;EBWDhϡQ" +ΖJAڵ :t@P*d--k*CoܸqϞ=(:ao߮¡_|`Q8'xJ%C(ĉׯ?x" +>6lذ{nEЭ[bXE}v}ᇊ(b\Ag׭[¡O{СC +*|[WTƏUDbڵ +@"|!6mڴc}/*pOnWDx )pMM 6@#MEq_~EC@t֭ +>E q5k(lTSS{UUUQ8 n:0ګV&^`AY֐^uMk>/ !й/vXбt :Cր,, :d,,X X! 51X퀆:ϾG[_\Oj05dx=ԄԄjb5 P@MP5! &`jB@M9甠v~7f7Tys~ c /j0sf=‡)ǘa6 {hiC$Ӽ1tQG:ېf5MBI$O/ԄԄjb5 P@MP5! &`jB@M58I04o~ն-o~s +7|sͺ8lju7IP2hlo]Q$I6IuH3,';=!>&;.kѧjb椓]\~O$WǘnFEOH=SO[Ded8Ñh#|J{x>KFLZS/[S|zeDB'/z:\Q+3%nW4rog X2B¸WsK$yG2Ů 2G-M*D0gVuɒܩ$j+oL0T3r.:.…sHn[.pV`9t|~&!tM8Kj ,DsV6 Z铌QVCSy,P4a\ є jfwI&zB=Jr^5!yH ϔ$ +}7&P2,@MH XP,w5(p-u6z{ʕ**ozov& #ѲcB]_ ^xAvshuxT}|PM CPR CN_ttfߨ38'hmm ̒Z|5nUS1>֪s\ʷE5#rD'*3r a!R Q{gj⺚S|5!Ou%ew<}i&XHN{Aj7)X]ߚqBg20 +"qHנ3ҋ/%؟ffkaݢTV5!=J +ɁЏmmg^1j`UY5Qei̥F+t[ 7ae.Յ#jB2ŦSjns#M2Bh` vDÓc'9w%NH{o޽`1QS:K,P{B92۰<&pMC=OD^~mԄNmx6 +PK7@MH &d XP5! &`Yj"Iv6%"f?mk֬o^-uC +(G&]>InQI3SB3[5Nk=m1 rQgZZe쳊gN+],?Ql')ʮc y :>V͋vղ?W01D ^T?&P(t8O|,5&F1(tۄ՗oƺZA6󰷱;#4Qtjhw)6T.`{:Z9߮FM蠩ϩ+ZDcS*ɜ;>wV뭊m^k9~Z2N"E$ͨ k5~)gouEaaqnƞ{$AK/63XlGV!5*nI~w{amV= +Ew7T{jYMr$Oԉo/5Eq[ .&KK,(7gyCFXeM5! & &`jB@MԄ4e髉$d/}k־HG~wg[kz:WC{WrCGAQ ]C]37sI^wCh}>.,*&&g&Ʋ{AdUFjUJO;T\KU`브xsyA dkm=ggγvwc?Q`C$TA6mxQu1HFIH)9vpRΫޡfruc'sQ}*p!5!Hap=ۋ3R(.aN0oz! $He5T`1l&لD +â|[OIb/"E04 pF k:?Yw^r{D4$xebI17 +X=tyQI=rX:)Ts=Skօ&ߪe?heӾ&ǹɷu-';YڛJY.ݡ-;ڻ׽ɸq2_OjU@[?Yg)fFP%kL:݅J6p?U6X@MjԄTjPX@MjWQt{N0|+M|-'zR&{ĝox]UOjnūle5|駠\szOrVuzԄ;RQ}_DēG=sxM>oc Z+Mw7܍"l-~L ԥ-_^jb+x7a¬u^{:$2L/5_0/CvzVu_l%z[#?/蕯s5! fzo݁of _,&5jB*@M`5A ,&5e油cFO3G{N; /R)Ԅ|"Nu#? /dP^w +CH/ "@M +PX@Mj "@M`jׅۻW>ojbgЫ amK [*j ijBB@M`5jB*@M`5A ,&5en +j}@M@U@M=& 5 5& PPAPr ijBB@M`5jB*@M`5A ,&5ĀdPԄjBڀPX@M +PX@Mj "@M`51`5T5!6&$P&PDjPX@M X@M@U@M=& 5 5& PPAPr ijBB@M`5jB*@M`5A ,&5ĀdPԄjBڀPX@M +PX@Mj "@M`51`5T5!6&$P&PDjPX@M X@M@U@M=& 5 5& PPAPr ijBB@M`5jB*@M`5A ,&5ĀdPԄjBڀPX@M +PX@Mj "@M`51`5T5!6&$P&PDjPX@M X@M@U@M=& 5 5& IRz?Ϝ0glΐ5'2Q@M-gf>cܙz&Zro ?Y?kjȽ%(׌nܛ1Aӹ :7ٖ]A?h}e ?vӟroI?3m9sMy6nHFe---}%8bg&ŋ'OMFիWW/yGf<26-Q'84fH*9h̓Q\II S2*#g{^444&NHFq0'8OM:UGGOFMFe͛GJF[?(z{„ hFIFqĴiЛ-Z^ȨXf?@hTVV駟пdG0cǎ%in1bDjb̹Ho5BDS.h6ybԆ%+9y hj\󇍛[lTYu[O4([W[aa)P--+f plVWZilh/Za7 v1[r[Y0-]ԑ~w###2****jhhQ~7T\MMmh(d={6sZHq̳VqiQeҬyglq r**Q|-m/'-J+.e-m)7Y7E݅$5 %[~'Ϳ[;}*2>Z XXX"`nn|r2\4"8bڵ6mrpp *z#2B,ZΎ&&&-ؘ}RdG#G[M>{-^Z&S`o#քkMHXkBB` ,d5xb&IF4`326/\!BBG>KP&8 +&I]rfzQ7RAAn_6aOdjM.I_2GcI*.:VQzf'2` ,o{ P2 Ƞ + Ԅ5!!&j(&5APX@Mjm.(\m*&!4>۸TBVE{ ^œB Knms~#7}M9qYOJjy5vH#FtUpZyL)/j:x\Nk%֦dU|ZYVԥfV|_}ߞ2_ϊ/}%Iqe[OK8^j_Mϙ }󅚨i3Źa[X|&:OލҚv~~R]ʦCMU¨}3jBSRZMK{ "@M`5AP؀ + ,&5ԄZ!҉FFGs^U4gxٸlg>f߲uYFQCutY}&ӭ4Sl-Lʼȉt +X'M+gS+_؃[iT3G[*hƆ&:{oܨ5/Xbhb{"o{K:cc{ڇf3怩1#Gm}Lɱ]p*n˿^R:_ۼfgDi'TwH.>7’~;bF307y>C7$=MG|RnZ]{&&&v3Y[yh'ZP L]#QW!^Zz64S==!9]{#1ɽJo5Qל{WMI-%Nܚ%svUvͽy4f#b/5b.laּ>{'׾.+-N)UͩUraPy)~ S/ਿkLb]KOt]G[n-K{DLa Ǫ('1f:;ꭠUs7%?AU^]j]cݜf+in }?tz}f}fj↮Oj(+uKz[WV]V/SS!3vA"&QTds^p[nK E9{w4<*}k|9mCG vYuÜNN!;)(GP,70.U!*n'vFtP*(R*|+m-.iaea}nR +o<.u ﰟNЭdASA.}kߩ VŏD]SuWӴLvEu[Q&Z }4Os7]er򃚈ӿ|;ARFvoUOhB3+ͷ]Լt5A ,&jPD5&0OH{750k:E 槍Q$ m$~ _zg]%2UgEXdS!>;_ }5!xQo[ۜj{djB-9C%bF*.IM4#2EOE5]}&RӅ8's["cw\i|=XZ& +ޫG Vf:AN:/[Jv[X8w~VW4 c.;X3*.;- =z]Vn5Ag0q*~^~/1w=Lqm4; +Ro4smeDof_9N}GpM]pң-}\ݮm֪9i>.ﰿnhZzVlܕj85 ؞UwF;])F"Fc&ZKK| ݗh0=j:b ^kS2_Ux9 +q24+MoNu$txz9B&Z+Y ڒh߹ wؔDNh4_M5.k4> mrJMn޽%OvnY~_Dk^]KܦKܬ4|b.|IMd^h`C5zK;%g}.ESٝkn=G;m,b˥._ MT*9џ ڟΖΆ4oU5Q-N0K 2pw& + l@MPDj5KJs$msGc>mLY:ztu?6nʿ)moQal7;~&UԽwET󽙖StYW|6/.7 [E]eYfYJYf->&+}ͭo/\hMd^fcgF=c:ۭ&?ꩼ;ݤvlT_YqG.vt0 ⎊[h~20GM*m1bcdUXy^a[a_v;w}TlwUNd|BMӒrOEXZGDfBSՈy*Z9P-6mӹ;ךh&ihlg؟'PDj(&5APX@Mj YPWKk2jQr k3>b5awMy-jDoX5sj+՜s9x5FMf*z]S-^c˃ѼqZ俏VZNf_Pߙ|zB;+A;KZ + +vkeywAj^/9҃.g [v-eev8b]~ZБ qWy79nt$)kWe5vfjohkj%RM6ϮoJJZ9Ҷgzl{W-H+ki|be0^!^TWIa^2) +"Ra=wj"51akȃ{UVI{]_,ŝ5 $i5:*S,<̮zYd3M%,+S]Wv?|&|NE.5e;_ CE[aUc9_ߚ :.6BM6W /{ +.P2ڋ7%aOӸZ5(nG@Mj Q@M`5A ,&d&wwYZE,V5mmOs@gAJ|5IMt +/izC)qjuù +bNQ-w +tVSjŊqv1uJt=dEٓUzQK.QU aׯ?MK0sr"tCq7*)>FN3uj|c9 {#sݩwAu.&YunO6 +~U/ȋwWUblE1DgCdfMu=Z}>S|J7tr'5!Cs5!vn[tXNMYw|-4u9 =׽_@QQEAUsѥ.NKRg?pǫ GxלzrFctzɖD35hkpOWGgڸ"/Մ ӣ&gPېƯėżb ʀ PD5 jPX@M&&RiĿIWipWwpn\q +}Jگb +5? + "@M`5AP؀ + ,&5AP@R L@M=& 5PD5 jPXVMEpZ[T5!=&PԄj Q@M`5A ,WX* ECʖzƊ514j Ԅ5!!&j(&5APX@Mj Ğ]g L:ׅkVۇVGt;.ޡ0|SW:/l51j Ԅ5!!&j(&5APX@MjDXnF  +Ça +#&,ӷN(PQ[9+7/RV2}w㖻ĆpAM 6jB5!m@MH ,& + l@MPD"5q٠oIAawf.5I ؿFcG)*tQ0tpeAcG)0 +o#&PԄj Q@M`5A ,2QAf8|tV.2f)qbc@=_jj51j Ԅ5!!&j(&5APX@MjLԄϩc8baf~wfϜ&P@M|5!6&$PX@M6&j "@M`6nİz_綞Æ _xk5>g +7x4B5mԄjBڀPX@M`5AP؀ + ,&5E&j"vܴ'u-ҌN͆ ;G']:y4v[@M 6jB5!m@MH ,& + l@MPD"5_#/^|mGCݢvGEa?݃? jbHķPr ijBB@M`5Q@M`j(& N~;q5z˅p.51j Ԅ5!!&j(&5APX@MjlD/٭GSUS\S: o#&PԄj Q@M`5A ,2SR&JxѧQ֯TRYl7n]/3M2mo[47ɽ%d'ߤQ-Ac#GȽM:ٖ]rF} *ƌ|RAf̘BhʣHFM6M0adGL2eڴi$3gΤI.Q|ҥcǎݸq#7l؀(}˖-dG-ʈe˖5 +W^f_27ѣG4`СDC}ՄQ5v lQ|ݺuE4'i4O4 KFq +3qD}}}25JFjUPf m p 5twހCr5}AGpHʽ%̇ :pHႎtnGpA[wPtA[DXȾcɒ%d(Bc!!!h1OF$2*#P:ujbb"tU(PQQ .IУ>1ccL"{:X61Z\5pA]wҕ FP֋ߏ 5!遲Xk2kM=ք&$PX@Mj "@M +PXd&2/J a򊭊k -.[H7 qgE[~ߏf C&Do}?VPTz^./T7 (G Ԅ5!!&jPX@MjԄT"5Qu +#98u_pvk8RۑcG*|7^q{BMBJM.xؘyX9Ggݮ|o v2ݽtSqH撟D}/+S'sk7J2Tc3>0Lm m-g4ƝuC;ej^ixuH::'ӣ&4=KWskw'%9-)X^r˙bŝq37G;y옰~߹tJ{G俑zjV4ޖe6Alkp뽻iKYm;rg兂>RO>m\Lw70d<͊748UđK Մq `rB}? q[ gs[K/ +#hqa>{'HD;qy% =FfNq7 PDjP&&0U5іçW٩0znԋNZM·R?{qqjkj[Gkj~.IHW{-PD콑6Ȅ22nD%5s^S!䜓 =%5]/'_F [LAlPc#{J˺k&ʱr.\MTSZ*[5̻=[Lwp=tW=a'hIϊW5}6Uz4jZ\Ig\ +*GrP 7WyŒ4{5tԴ8M\ChhU5!{-$]YTXgE̢^Mhޡ2aqÞh|c#Wjj=qа-f?` g9t}x7|B+62 BzvT_8 h` =,t'HVR.VVTzEPpDOzVV'lD=j`oh=0 5ldoUطLp/8+'42s λV DEc P!SPDbpDq`QxdͶ>6HO`&:"U.54v_wF&-.r `I1G,Wc#5LFouEEn\Mܧ8(7wgcƴy^Xp_X7tfCA,Wcy$}챀&%T~WM}uP5!&`jB@M5!@MDH O6l+w}3&?&qEUOgjOes94+t6Ǥyq,5N-mUE mugzmr.c0LXx-kxwͅhE$jDV&pgĹ*xu +gX9S(u=lU5\8jB!pi<+1,A.qӷ6rSƥ[w| If#/ gWtvD[D :],l<̭5m`,7;ASvbMڑhengjTFY[rۚBʹ ,lt5ojhi#$ElMwNBxdk?0zMEhJ3Vїxw.ZI>FfX}i:xm娦.EE Ց` +5l1kM2@-Z'^pU aD:W=$khGU 3 I~&}>:h7ڑt[Yڠ[/[}/ُ`w|HU5BsWgIMIz}Kg]+겥~Rkyl`KH^ ] j`(GC UuoA5}>>U. Qh1"51COӴMM/0%1N8@M XP5!&&`Yj"2|ݰ|Af:GD 3N@/fV9~Y1=7Ï :f*}Dd: Iम+7ww&*≬ɞQrJu 81Gן8W_54s*V.;#S}-P왰Jtp<1^уjYhwhpi1¯8˺U&dWwCfG7TOR|qv9ODRYvxr?Y]jv¿3UV,bיh)5L6i &F G(噶z{=,Ԓ- ] NxTsF\Ls;MZ˳*[qjJ)hu}62K旕RӝSd3ZV=~Q1jvj8{ԁn/vyMr KʋaI4~Zѓ:ť/+khwdg{#* +x]c9Zɴ]Ørbv +Qw1 +_MƜT6fg˳&:(ckRP*E#&ڨ$izZzPxCb@[Uϵ>']Ԅo'p$-YųY9>Q ).(<M4ygloUE0P ^l5!&`jB@MԄ8jB"emyχYyd>PM>^5Q兲y?hcȱH3҅ ^cF,Wx%#΢HQ1 n`4 AFVV6M_V o56Ks72wdLL*WIL1T %7VzU&nCM㙚H25=t{#ֆ`k;0כ~owW_Joh*U>/˲4*RQq֧Zn9e%GЅy^qKiTŊ* WS'PRuw{G!7?z3zfxdE%\fuQ17VvZz }\X~C)J, :<tp/8)X_cd?鯯r侀Pes[]W/늺]h IUo5h5MǢ綑=!uU.=2V]6cyIVQ^%5AcĞ0 `6FO$4M :A]Ώ!$Ë(^O{&*9.$k-8mP" 蟏[XċrVjE2qjxR͞-W{W q5 Pj&P,^Mtu=UU5QȾVvWLiF` fzbtG&;:%6Ġ)s|'nAǒP5ZR5ZYNI)#j;~B{ 3]2)rqAhth76㹚0&X4Oi85Q)RIDk#w?{<,xB Cy+:؀@"Fˀ:vh?Mi9;7dub\ >#qD̀±Yv:[ u>I9޾C#5X1ـ祛{qDws7㲙kZT/ >5,"q0d;JGguU&󪞮R'=tQM0"1PGpne~6;#:u`ka5[_Y0rf4ki_i%=A^Ùy-̚8cY!\g5{bq/ZF<IJG'Z>ʱt{KJ Q +7GMP1kDѷ.F{Yu <)mOi$<K0%pcMY<oؼ&xIME~v>ɪVkr#VE :tu ޘW?}iO6mӔ(/-u;曌}pu1mNЖxdJ[35.ZCP7/!& .Qٞ  +K@E@M,@M XP@MHPذAf-Я_̦>̅޷&3wsao:>a6c]|*xb^LׇxԄjb5 P5!&`jB@M5!@M*j5VjBjB5B XP5!&&`Y%51ΙjjdM  I +j&`jB@MԄ8jB"eUDP;e턏GH*j +&`x7ԄԄjb5 P5!&`jB@M5!@MwذiۮO"{vIJ5ԄԄjb5 P5!&`jB@M5!@M:WM0O=;7mڸ=D?nwv.X_jPRP,@MԄ8 q5ԄD5*50s: B]lXBfۧ~jE `jB-y5n  I +j&`jB@MԄ8jB"e1 q1ex칽_ߴ驨~oڼuoULPATP1@MjBjB5B XP5!&&`AT{5yC?~c׮-mY[?s_N^5&ލ5!5!iX!@M,@M XP@MHP &]ג&ӚZ_9{| +jb=w#@MH=@MH&VP5 Pj&P,oOMp*(NQu&ލ5!5!iX!@M,@M XP@MHP &zv *1GO-76شg|5Ļ&&$ P+ X q5 Pj jD8/:mS̞woܸxˎ[v|y{UceDr~\h PFz4@M&`j&,@M &$ XVQMݫ rDرk-7j'M)M#jbw#@MH=@MH&VP5 Pj&P,&Bic?վ͛/yA4?lO&4t 3uH.&;\|Y-y*GԥJ% o#?'H%P<Üm&fק=-kɞݹiRj~8J%o9ճ555|dظq?SSS=jddDqӧO#T\WWiiiHwttݺmozK0;vhzK@$u9 @Ϡɔԛv~-پ7oK_[>[Ν;F}|Сm۶A$C|}Bš@P(w{H?pBE8fP(ۡG8t@ Bš:`zO{=EO:` ?F8T>|И"_|qO MW=ڹ{O?P)B_ $*C|Pˡ/-[@GO?z[k\5HBg222/F^W?öGX ]SM y]3.zK0(Me ʫzK@$>V9s=L-rZKo9y3[6UOy{#"Bޒ72Vݎ 6mGrMM͉'(`*neeuɺ:$7ׯ_Gxii)t Qj3 $CcN"(bc q1DСM\D񲲲G"QԩS' H!Q"==}mvUm~JRE7d{\]]999MMV$[XXHT߳gBGcJJÇ(^\\|/"Q<22r_:M^npeOk:p kkB{MH +{M5!,` q&^eU1ƞ +v)pr;zn޴qMmCt9jbfuW-5~r+U]hm0㗞Κ_8Q3JfOL)湚*okWyY;dH1ze ǬM&zy6fn8'ԥyϙ A%51pV]lBi$3j:O]٫ ?X7tfCA,WDNMǟt_U"]K/Rv[?@M XP5!&&`yBu TL|w]Fe>C=5s/t9YV9Ds=:k9.OgaD(Vר6A .-[ZEUV[:IY8=䡥e {څC \rOB'DC(oa?ߛUc45^u04t _r4#\&&[t.)?3^FVD v5PPa:E7ndlmƠp|}m2{2]B:{{4ݢg_2C;dAŅӍNJm§/7vBG)F)C_ KhO3?6AS5N*浵=cvôB?SȚX!i/F:eRi̒RTöOrΤ^Vu=^FVNёI./˭珶3;=c{5q&TGwgItdhci챇]ey@*6AM"kۙ]@M5P5!&`jB@M5!@M6g:}?&NV6lϖ-6lٴe&R:j8es +{0? F('ݘ{eP9=Ŧ NKftWU6hrjӓ]¹jBhNi~^|JKM'ZeWMx9񻱓 ) wjY>$((hW*Ք/Wr4:=esj2 +؍>?2I*vG z(誢΁.as+.9V.z jK ֏L$mx,z1A_=ta'QٻzzXk-(]FvOjb{] WMpmTjJTqj ҇U4r'}cՌx!DCN[Ă<ΔJc3Xm0,Elr2RQd(Ⱥ q-nH}`WI99P{]}[](\Mݥxb. NԚcDjN>IE_4n̬0Ԅ8 q5 Pj j&F+qn>'dܹMfi!ǖv}Bז[sjjƞ}X?gC)y}l_c2B'ˮrZ\˘L5m0#u /K1Kjy^4&G(lu_ic|mKHȄYoQ'|%]y^PgWҼZ7)\Mѱw og {󞩉.*D&nC R*:@M XP5!&&`YOj0[읇_S_{o~vZMI!2P@ KAdޛ, d +(zϾ>J;9|9݌_HO>p-?7t=z~0qP~y%}ntw\}BhT2;㉖UW ^y9䍌[\?&g +7^>H aVob ִ˻6y YT|٨KMWaji̢ZN3ޝш܂,7#}7.Z pGfD3Sl\3rW\p5 ^3-G/ HwЃ^\8 L-iŽj=ŏ 0 Pܨ)M> /k+Cv_-<- DBn7,T~ɕchM9 $aAZhÜn&d٨&b{ΤغN㢚e۹P&Ħ4fiY1+hўLNu5<805rhyɏԄlԃCrYю#u ŽC5wa - "h$Sm񸞱]#jB98aE2un & 4@Mj P 5ʚF֎+켍ӫoelȧw߉-E%o"=>FHhif+Z= s#e)r]G`ȭZ2!\$G:PrW5 T@M`jPX5&P|5qmۿ|?G}o/rp-RPc 7E&ޒ'2ˉ3Ks5'O5<&2<*fX, uogذ5 T@M`jPX5&P|5&2p5.5P5P̒n 47BMjBՀX%&P5 + ,@Mj P&T*kքh4R5-AMhN@M=&T UjP*&5jB%@MCAM, FԄjBՀX%&P5 + ,@Mj P&T*&-& Pj Ujb@*&5 + ,@MP PXhT@M=&T UjP*&5jB%@MjbjQ5P5&V T@Mj P 5 +u FԄjBՀX%&P5 + ,@Mj P&T*&-& Pj Ujb@*&5 + ,@MP PXhT@M=&T UjP*&5jB%@MjbjQ5P5&V T@Mj P 5 +u FԄjBՀX%&P5 + ,@Mj P&T*&-& Pj Ujb@*&5 + ,@MP PXhT@M=&T UjP*&5jB%@MjbjQ5P5&V T@Mj P 5j; j %&FڰOo {O*6[{h8"r"q{¹hO{nV{39 ?qm˺t_ǫ}<'?^\ޒ̷?}^JŇwyBG常o +{9pNdw}GqWWW{`LL ţz-_<#mϐ)>Gz:::ȘIII52ڑ1G񀀀~ʩO>A^_}#{cccڵ+)) H2Bhh[jq}#xGqZ'_~hkkS ;@ >}$ixTFqO(uVooo<;;;kVk۫olRW^ze 7yc#mRK^tCxu7yc3 jotJ!Ekl‡בa&<[ C/X 7m} ~_{WxMk쫯S* ߈j⭭_ɻ[^~͹7? wތnFf@^0oyOsҘu n~5~7;/MoC|xw?o޼ǩ{Ti6x#_)~őÀy /To!' 毛ˇoᑷϛ7>]N׿OzvR-_2Ei͙?ڳrw0ޒ fJe$wjo Es}?𮶩%H.~띷ތuN}遵-t>vJqվkm_lM/JV{K^0DNŇW^y%//l6{Ν!!!xG066R8?x={\.œ>NgS yP;BMh€/&T UjP*&5 + ,@M_&$I K/[wfKytj7z~TN 8]uk]tIMLׇZ1Ӕۣeb`lR2<;bik.{Of,{'Ó-k)OlnKOdͮx"܅)q`V&V\t M<1QpOiq!¾E^pX1wQ;Wˀ3iBMoW8y4)9x, *Fؑ +,.=h0t+xE~騏=^Z4,W=l;3!3"e o[wG?ƊG]'窽Tʒ&{Y[;Q.LI$TX5xkPX@&P5 T@MP Pk&q)uEfD>+*=-dVMEzjya&)܃>_aFRAM>׋1rvɓ\S(#{sn͔OK;w iH9+eNퟕ)gG*fORٵpᘾ QH3CSx[;߇Hk'_ ChQcyEPxw_-TvS.(4'Մr[lю%.jՄdȈPȫnmɶȀGzuhR,*FQ?HW/;oRγ!ݹi>fV͵O S2~[na2ŞDD,Sw'S,ҩ1[|./ R͜cxd{}>Hڙ +8Ȅ㕕5.fNn6!eVv橝6HNd]Am,' !NSRJNwt[S jB6Lr'iI)q~)E]vmSPzkߍD*2͵}}@dU|" 4 'wxFe9zt[zs)Dk8wFh`hX(]9Y[&ڛcmVԮ&K&3uW:&C/)雛Mgz+ Y59>XMor0'2/jld:ղi +5'N5R&ݷQq_F?x|^ѕ<9oB`?pծ>;&5 + ,@Mj P5&Q~n.ŹFMngh=vIY=7:ݴK>4sƾ{,wk ҎMKe?ۺWm7R}}FjQ2ߧ[8"}Y~ů,C2髪^N<&v[;E9^(˴%IbdqEFfLJE[ΣZ!Wzqڅ%]Em#1,uv\uQݕki]l7jGXw~ߴV}!Wr/e9Z,fMͪ@_˃gS2QEm"I2)QNvs!0 P(@&P5 T@M`j>5asQt3ÚX^Ӕv:/0]]kg^힛⭏h{ZMPtrY j"N_6{PԄG[r30S01e>&׏I{DsKhRPfEM,1㬰,j"KLIN=ST0#;ZU.f񄎁CKwKioGx%?HpU]([dJ k2]95afAf&}@׬\UNr%skMʑ? Vcһ(|pow9r-ЭRDS1mKg=;sܾ5b&e{7='-r&Jr]}J'&&XG\u;:LMK IUÓ#_uQ{&i-p/_dUM >`5g}Ldk~gd+ҋe`c&x#dOvP\h04ΎpԲ?;2`8XܠC+c<}B`=!5"?b|kjbՄrIDE>>V I+M̔)K)bu;BfE@M`jPX@&P5jB%@MGݩejebp7shWm5nWmS\Jr\|6&oqŠpȫ *՟;iG%ڹuivmނjݙ1YߘJN(?H;\VE5!鈠 ]綕t<d]ԖA(x;(tw JXmQc5^uT5"k|ts 1B ʰ1'$J*.xhu-aT1ZbƜF(+v!D52Hck)d2V(a5E)TSXD&4 W +=Z+hdF}ҘjG`w/D'n =xQbD7!F9+j*s2rq47g 5Av ٲ{IQȃ)D /uTc?j/c='B4WRuN^X{&(=&9E㍊ﴺzһnMB~vsaӨgPq28w׼C&FT)cvƇR*wE5w.]F禘ZP͒jK+jB~gsu1\hmt>wpZ<]PX@&P5 T@MP Pk&h`\G%5ϊew9ɔTk`JS&V!"rJ ^l۬b>[r{V{3ɦ|'肛3"ѭ 8OppPr-G6-{zi$~6{$+[;ƕ}=?v=Բy֬6wCT:-[QltZ&ԛ'Nn2'PbsJ3P,WkE5S-|\ +ްPX@&P5 T@MP P& +jBdw!Z`GsVfEt+OxvZĆγ + ,@Mj P*&@M PPϬD4"?Lo<5P[>&T UjP*&5 + ,@MjbjQـjP*5 + T@M`jPX@&P5n5ѨP{@MP*&P5 T@M`jPX@ĺDjB5j@MP@&P5 T@M`jPP + Ԅ5J@MjPX@&P5 T@M[Č*7Оn_[nt -@H7:5}yWy1ggV$Zv;5N9zZ;=4Ô> wY`KT Ԅ5J@MjPX@&P5 T@M[P_1rRԪ`y[50;s'W qվ YT\3kPS9zť~I ZG ++t^dOr"IArw + Ԅ5J@MjPX@&P5 T@M[Ġ8yE]>R|}jm6!Ӝ$;UA_~1ݭrxՂjO=YU64+RJs ѼjODDGSJ6NBMo48vCNQlL"˯ w&s=t:ɍLqwʗ庻S)tk顇2Ւajm$=r͉8#%$=i?n_$/oO_ihxKw/۾5 VHeat*-P؟Mtt;{1'IP>}8=]B5P5&V T@Mj P*&5 +u ܳ M i=BE1a6]]f]cq W2bCbEk2Z*eUuO4FhuC%fj4`w'rAV<ƕu +5boOj{yc1z k̒;峇.ClNSs:D~Ft\NcpO]lm~zKPCos߭j֥y5uG[ۧK;~mVlU\Ȇ0^d%{)2e{CadV\( ~72Dׂr f|sIy瞓#mbidNW|X,t4U-+ q']$1핮X?-b +1 e,@M@M@M@MĚm09l^"{!_g X4-<ޘ} !Uj}EoI9Ubd @M=@M4@M,&`j&j&j&j&,jb~[NM5phԪ. rŃQ%y rA[n4{x~*K_((uSnQ1J7#D 'h`tbS7 b'EjBE[^\95yĻytom*]QGg&)='(6TWi1iʯ *W0#dʠk՝r +$k$]>\]M̲R;[m'7V fzTܣf9͌lhu[&&V& P5 PH5 PH5 PH5 PkE5龨.a*]P8;vw]@oaaF񐐐(n!FvS?#(~@i4G[ LMM)Joupp@8_[ZZQfKDuuu['jC{V_~|틯y>M>t{(eƍboZȾnnٟ۱iӇ+t?7o?%ovA׶o~6loQT}<>ĢQ?ꫯP*M?S(?oٲ寿B={{ZO?QmϡG84Z1s4C|֭(  +=hT>tlڴ 7h@;vQ0ЬPeh߿P@ݎFe?>?({>QzA?p϶m۶~4C[C#_niwhn׶M[>mha7n_D#?|i#4f{}zGŸf [Px?B +5!cwQx&V& P5 PH5 PH5 P@M5NC]kg{xf FTzA[B"wNCB3эxpX:E !5: j)HvO|y?ZM/oӹ`ҹ(r5P&CGFjCKE}?aWyfY[N&AxRsYy/MЂ*ѡ Г7@TI +[Lv${7U[zsb +VGͰ'K\lM##?7U&?;<3ԄIktb y&f}y6Ζa|^W`YSW>ZҜK@-UKd'7`jB0q# +#‚;"Bp;aEY&8}CA6^,‹t)2?$s@ X@ X@ X@ &PVx _jP22MO/9mO}m˵xMXz|}&UNOK/Oģ{aުg6yZEbFm6cn{ʥ|։,z׿U e GJWOY5yA $*"1\.lO~a&OX@#3,ͯj(6ͱX\}<`K\|FW'GoYZ/ [y9JzqjK[żBuk;951[Iܾxm,~ANY24%=/EQӃ ?NʤENȴY&x#rI|D\}&PN9FŧyI9Y#?"')֖Vgjb' 8>&Xt ];(ӓ٫}զw= $ $ $ $jm5u-pgz̔3\@-Q_EQ>uAM̯M2ɵYta*'̎hrq1s'#$hL$\ {jB LH6#7WySljM.=7mIvQ(1nF&#q1Nf6یԄw}\vZL@f*O, HFGzZI3 rؑ<~1ƻ2Rl!(#JEMO|GНQgMm$m÷ݣIf6x̑gj8?kRFa6,sڤdy51C#GXC.G]p02Pɟ&D$ؓ W^>6>Iv2?_ [àhwir!*>I!H+,zwKHe}<[!-}WL(EU7^5%@Ś_-07t ,mj2,Uݽ&g8Bql9yr^;DF^wHqHie996@*P֍35&S/'>~cXjTw {.Ϫ|j&`j &`j &`j &DMr"-ZH4G]E54zyްr }hZ[: tXŵspBsqQiiz=5U`L"^T=ea~KgMW+evi @@C.o-h(˕kN%eyFZ.xnn(3l-xܙ`"c4Ғ=3/dTު˭΢0U%"ښ/z{R\6Ź hlJ t}ɍ″RA%E*YNN٥YT$(J J YD$G&43HjfĚ0'EұBBKEzwUm뜚RؘEV$fkfZMŮK󂚐?u*BM+ &ϩ -Ƌ9zѻ&D2|{&}-&@ X@ X@ Xj <&:} pgRJpRG=+p?*ж*XϢKVJ*2q&Sr k,O #MM / WFM|gMױȯ.8#ꪝUoT #^~IM8B hbef8]+~LHW-nVfP DŽƚg:LuG;¾;'c#soGeot$bk3L"ᥢ;{-WQuf+)ciB.n|ܩ \`:e=p8gnhbQM@-,,QU/c) ,7KTJƚDIrv33%XJm*}a#^:5qFJڔ{Jg 0,'7R$67+67>GFFEi|:EI-]c)RF QOrZw5 Rl1h{95w)MQ5&#}=J(/l+WRe0NI{B|Lw6uv[{vw(rcWT؋8kχۚdO0INVt hop`/ %))?m|puś}NMh<5&^n=iv;}=& +sgMo21ya0.I>Q%iHl#:@M ,@M ,@M ,@M Pk&&{ǪݭIII N^v$Ov"Bh܇̆*_=R dOgV/ ҂E5``98VVMWԬlȻbsFM>yǟX&M/$A׸ړK2-\x ~6W^^QMd#1n{)qp%<*lS3Dj",&[r4gnj aNMV:ʹs5:753R5H^ϩ+P ݋x3DTM+, :#VVLj =zkݹv]t`҂m-bSCM2A:"&; L1sD}PyS)qglI>4 LmQMq:JĨ7䔔U,_` :[hzW'hsjblo.6u+εS?kW4MN珗Z ldW:]Ac ^5^^б0:/9Yg OG ]n˫LML1.;3ƻG'h1v.$_;sIa22/ $ $ $ $jm5!WRGjUU-OttW{E;9 #kkX*HM4d멞 %©$`qF̊u&<\L%yYMHTPm4tW$1oUE1u1 +mn45^!)suNM r.8{>QAF7uٖ(FՕ>]QF (˘9)yjbnYe53KGzӍ:]M a4;5du k(LZ:dܩ9|CtJQLUغ!~IzO^Bcl }RcrreE-r2.fD[ӊ6zI!;t]ag žo芙.^087YQ@]d&4:)I1z>){w6(B #ir,;=DWux'&o +#QMr٬x9 +oHkE51zP~]$3H-%|&j&j&j&jb`ݥqt?w: g!cTu~HLZ +~y&f/=}=М]0#/dS9}]kdߝk^kQM1Մ`wUG)蓞Ǣ )ttSP<̽dt>^:|ǻF&D]-3@C6Q_~Ȅ7_3tʭ.ڵr3!zgX=Zڍ]*Meg8P iC5=Io6+7;YE+5f؃32lL]U=^xNBCt]DC5 K1L4ʭb@4ĭcCm-CSO8jƽ*k>ua_}qQ zFjZPoCL̰)6#ԾuC WbCgܑU]㶻6NyAM@̵HK&'{[Au E>fp@t+|ХkvdX<R77A`Ǡ<`5KIjbmmɵV*O|<;kb3p.  F2/ $ $ $ $jm5!,QơdQM(VS}Qva{Zcbm>= VM h=k_2Մ^afo!ϩ35!\ [&j&j&j&j &BM608o߷:E5mJAUlJEZӥ" Nn^Gۼj]ӘX7j;ӊ=@M4@M,&`j&j&j&XjBwpk@MY 5~>5e,@M@M@MPVMHgG}z`j?Poox7ԄJ2j&`j &`j &`j &gYWjBjbjb5 P5P5P5ګ l'~Wl6~{.<~tPoSx7ԄJ2j&`j &`j &`jWgj~{Æg|+D@.tĻ&&V& P5 PH5 PH5 P@Mmqrƍ{o/~c7ޖO6&-^_Le`d}3bJ#+G';Y4]Fo9z%M&ލ5!55L X@ X@ XjbՄl39]Ϻ|og~sg8^sjb3μVraWq[4^mOJ K Ϭr 5WG9Gv)`g9/_k4r1-=*;#2rºnvt @MjBjbjb5 P5P5P5Ԅ9m-l~oǟ9Ȓjb!tLcutc)eS4#Qٽ4bDE]i-qs%gn8k w.-䜊e:}ڰc)jSox7ԄJ2j&`j &`j &`j 1 (2cǣӿ?zxlfO6e7{~щ.J%ƩəT] j>cLHS9˥ KJC}x#ǭ|g A:o .vnxy5lNyc,\&<_9*RjPbP+ P X $ $ &ī&BO}lݼa|%XTi[0iѷk{HՐz& 4$eVR{i^ +QgxN8S4@KI+7T3 +̮8GlZDTK-3356ȹڇށ5n e,@M@M@MPAM<͍cA_{ソw}Qt8&DjMG4r q6%cS&X6̩ l53dsݣ-gG}=)jY%Wbw%wq>*OtKݘ/jPbP+ P X $ $ &֍-[}C2?Ϧ3m[Ot6t]RZɬLf8#eE}z V'(>:\~C0Q؃-խ9+WiYz]IczYWl*:&xz @MjBjbjb5 P5P5P5:Rsz{Ƈn jb + +po-% R֪&-NIx7ԄJ2j&`j &`j &`j&DV }s-Ͷ:L?QXWZRq758#u9RC짠} : *jػMw5bo K؛N[hKc$WlhwQQ5XĮrpq;zR4E;(בz%0(bRD a>[;v̬Y~+8.jڲmSTbK2Ckԡk)**^rdxᐴD"JvvvB#<$$d֭%%%hCy۶mhWWWCmnkkF8$&4]\\y4¯^F2$Y&>>с?ᐎ9bbbR4A#ju֡ )55u999hgffn߾=&&pcOOO4!744nmmA6hbXnDYkD2᮹6-7ŢnxNg.[ZPZt/{w@}-4ן^Wzr/ L~úe_,۹g^6oۤPŘc˪+ZnڲaŻ٧o$?#wmժU4H޹se֯_F8${Ŋ(79tcFM>쳟p~fl4¡2C%߸q#PkCm<ᐠ¡~vϣCkFxb>KnذpH_|իQ ++>6Yd ɐm۶hѢ~ ۷C7oF#jmìv/w/r;wFk>]do+.VZ4¿ٺrn]F՛F#|o.Z8h&AZxcx朇K2C?!^G})'}"ḇ.W?˴}ːKrTuYr/ }Twرcah…VVVh$mٲáiϞ=D)h3LhF7aʼn:46F#ҡC>F8z;VPP@#U8t +4O: Q +WRRڵkW`` P,_dH˖-swwG#ul6pC7^эM4wkm]kJ~x/?jekB#y˔Mnu`f M):ZՎS'{g&Z`Zr7XkbkMLQ` X&`֚@XkV` $&`55@~Gv:| 5?&_L^g⢅ &I+4\&42@r7@5@S@hVM X4$&`[W)@G/d|8!N4xVP6WAMiP1EhBxF*d&k&(&`@@hIM + $4YB8/\R[Urd9RԆ_mm>TQaZMo8-Nl3.kچc/4}Ht36`JLjvE'־¸&T}6֭,rc]>Hqy" 4qOpbDf{:I3 3]*-}͏p`0:B.3aJ1vJ/rʆwX;0,' HUA]lmoKa&ЄlWRfnGn –6'jbdvɍP=T:/Ǵ1u6!cEK^IO3D7f*3+BUe__e]i/ү;QT~"4M lKq%p3~u f^,3<ȴ`ix3S]o#^ T 7CDM]QtO2&Fz^v6lM;\"1xW7hqq/j359GԒKqu%r?4iWK]e +T4KhK?Kך)ŕwět=+tdM=C>. +@M  X4$&`@Hhֳ&VnX`֟U-Ί(,yo>sTG[FB-GhqyN2ETܑʢisR!ɹEzX/%9&Tf {[)~q6Qȭ u2 -hiT(?>[cꚑ* eTW򻲌T s#4qtq7h'I ~<@WҢ`=WIOC$AO<flPOr&{Ya&p2Id"q ZY~'~2~fA-7]r9Gfl0A%v7ɥjwľ#Mm)8LP^LGMF:Z#υUoD, 獷ڞph 4+&@@hMzv•~;a(Yú +K'4!{jXxjzhms"3lGNtE٬܋N<5Qia/z8%fycg|s3 4ܞ\S6S GFٺБ MTfDsƬlk 5%g1yې^o.+U)Lñ8]ac0Lqdz1 oF5lx"1wۑzE:Ҟroڑz]7&Y꛴dm4BP)WJ8]9|v1Y4 ThB[oyLmrW.Dʴ2mD0ULnqT3 'Z:WV:|~6(&Ԙ~A}Ղ9Ⱦ-;p$ω{އ.0A'ȌT*wv֚%Uv9&pxatpzp^,:uOF{:Oƈ_U=xyO{xzv|_C $4+&@@hMG Msw +¯Eyimr%$"_{ЂY@$rPvFې9$Yʽi@0ӌ )&pD W^n'\';8MAuo}a1bZ<, WK"ju5H-ϚE|уGo:^ 3OjȊdڢ?Ҳ'%y%/oRّqOb_(- +W'yg!1(&7D 1cO{SD /Svr/}4M }5Nj*tHw9]DtVdUt _{˄IƦ9ziU`)]󕨥=ZCO Tk _4 Ԍ=5qL=5uS*~RW6&"(WU>J ۪G4=]ڶڮ +<&tVfft$+|^(4(aIUP=N?gkӍrDSϰZ8n0'y \MyQd9QI7kzBe]Ou x(,Ũovf͙'ЄOMӦ^ oG# &@@hIM + $4D˶wL4`ۗZӕLvs@sa9;D}6/떸3ThBZU 4!zI[z^91᥹w|$>d{XH:f0zF&=͢d&E"b+K:n&x^o ۦ$CϹsLTkz1O2:xד?կbw@.AMOGXi52s^~p+K3ai8'蠊 +ӊFcl/{ObRt,=,ИNl%x$j x7%O#=ETHTGӴhdKyOm#S8{JEm OoUf&"곈f]_t&~g0Ɇtn.0 4!ee4X–t g5ai̠$N0:W-#va5 j4s㘖n_1>tnLMp9h>]# +tjM-O&cd;@]OlU4q4 N~͇Xmi ^M X4$&`@Hh PXh{1`ܫ|毚7gh- +eâ~q,L8y}3qx@s!؀;!wv ]ȣ G;P9/ ^&]6ꥯ[d9Rƒ엝5ñ!;P1 `QE~-Ŧ[[>3>rA@hIM + $4+& gMtK?BZ@ST?{hH6uHf-KZJ;f|tVV=KR+Ϊ86`41]41E4+&`@HhVM  X +@MCOMohf&k&(&`@@hIM + $4C}MWhBhbhbhVM + $4+&@2@4z's_rgWhBhbhbhVM + $4+&@2@:*,T\lW["hbw<?u!j<hBhbhbhVM + $4+&@2@4\~P:~ŋfٶCp?dK)ga941\mfe+m͢9$4!܍u6gdw|hN[j&ڍڗʲq )dخ wv) ) + X4+&@@hMz֚xry孆6F Řܲ0qiȾj?~5>NIx?. 2mE&DG_!Q)6nSVFᵒ<GOx\QsA6 +cwZ7<1(/)r#&n&k&(&`@@hIM + $4YޡjNRj~ ;w/]rQ +~k16;R*E$|^H8J4Jf O_t>e`Yg\weYRlj`Fڽ.a'mm;t9M4݊ҧ_jt? +}LseR6\ao0;}5?jH -`G%:$i Mp+ΞNϸ\9ӌlVHXHYjKTɉgX.u2 ̩WăbciVIKWR'hr7`;;'luk͜1PcghNeX/::3򤅣;5 r?n&n&k&(&`@@hIM + $4k47S);5̲o*~LOn {v+BuU4g'Ɋ2 <D,Ε2LiUGIC+:J3iڄ*t^L畅S O9oiZ%ɜzM V[8S:i`;|=,H6sm=SPvZE݇C,v`(|'c5Q4Rl'yVIZÙrNaE#ҶX?5| #NXqvm{a]OEÕ%izׄxڣ9`nFr6ȽC0PИlAQD:*kg'1Af%meaj]w-Wv2qOmr r?n&n&k&(&`@@hIM + $4k4߬}8*cbű˔Ϩϡ #/er^6n0&x&$=Z;S ʽpmqlBH֕0G̩B耒L7w|&t VةfM̿ T;UFO`I9Sqy$]R}Tz@f>*dБ癦QO6w4V|;-$He ]gm(I@i,+=ZIY'Iw?.fk6g2nPejb uR2o8$*qQJ4:Gag hY4@M X4$&`@Hh 41t{&v&)( B/@տ98擑[i->X);fuS +U̼ϫm 59aNgw[@>2vB2IuKSnSN[W7˰zVAk揢 2R+vY%Jp*ղẂ'u<2oMFZ=@pvZ +::oI+!Hċզ-c!PU+9^gBN)MM=rWqZ +Q.jK靯 %# m$-," WӞcORK%E5>gn Є t @HhVM X4d&`>S/!?`)SY{XJi1Le'hR+x4]64=XMۡ&}W.꫙(6*s}B[ +Є t @HhVM X4d&`=hBN׉[v[z#8bE\aZmrcJ}|/ɿd ) + X4+&@@hMzVЄZ=.~*i~ễoX@oܫ<=<49Q[ݦ'OˑNfd'^`$ڿsρ]ANuց";;˩ +Vdmṱ:VeӖ ξr/ d%r/ˁc6z _~qV^/mejJ1Q% oy 2L46nܨF8$yg<6b,h,Xb#*vb, +HAtt۲v F/x/fFi㨿fܹ;0=6m"t_,A͛7oc~%,EDD@o}pmmmpLHv}a֬Y>pkkm۶`yyxxmvZ, ` pSSSUUU,I`֭ɺc69M֙7O+^iXf*>XXm3G=ly 䊍;V_?׵8Om>Up.[/<thԑ,_0޽{fo۶mÆ d nne˖?~pzbZtN=g`ap@lr;wYʹp-e^\pCRwrry,“-ZE2*#>zիWp===E8h[b ~b, + +omm=t萻;@ +pKKdеWhV n[aEs e Z +?dj>LXzc"t]->ÞZkך ךp51C&ך@\kMp D&ך@Z>>>XIJJbnoo),nܸךh~(Xrj<]nEx钕/طIPo}©&~@<=Je>k{OvO`$O{׷?4 ]FhbhbhQM + 4A4(& @DأO1EVn9U,E]aETsz@P闞hYWy-430IHLj|pk(vulaE?p'@PI2%9+ooƇmhw2};y9zD'Ϫ eOLKn`G<&D^L$7}0\=o3NuT;v$[|3G`.n3\Jm`^Q~u{OzљoBhbP&(5`mdRͶp! {W_6 . +Kxy:`?M>q!ESh=ܖt%ʷ?B.(yUD75t462꒕7#<7{~ߩo`& @DhMM + 4A4O C.ĕr^b'x,^ǞmIB Mc.K*:ze\?+$G:*n׆ ݄Ykяhb$O,wfivv1.kG,I!?4B*5#r#/mwOZzVvh4A P N:SY9F$H|MonkEcߴUJ{g_Qb/3?*,xYZZ4~|9ǒGY/2#VWTL>(1Nuvxjҟ &#ӳtGaNB]Rf'LΥn+k!#VG ns) B*a;DowvIas&7Z+ +sK :GvN~I!R7¬< M0jBe'4ސJc5Ntzw#CJWM@4 & @DhhQM Ԓ;N$sʩݵݒV x +|;4%w) ]c=i;q'\]BD$q +Mɭ! +RZX %Iْ*)2z'+$F?RUbiclh/s KN3{|=Ʒm*1F%:"/᪋k]Rm}IN1}L&i;MT;Zy3&㔬[^9]muׯ_uu7qu( _6p4Ѷ oy4!^I(ix]i|HLKv1chEo~joh[boeJi}z=Χ)=FpI4brQuO!b~EmSwAbJG|K#,zUSCkA4jowOpq|Kԭ5%'}NOr" ԇ ߈3ջfW^up3rqjψ5J[\s]ƙ*G='ahdo^).#,QjKF㚘({cmsOArPWXŋ9EMR:jf{Ŏjj>x ZWX` 4A*H pw 㪲D/kٺ1&z7%t&nݵH v}Zˮ} 9YaV;CIL$ן ~"{R!3'B;Yv'=6:ږM@4(& @DhhQM |фPO-.}'ϮXlFB.RqH͋jShs0P=>fmbv1鶱Wt35QY9N )I嵉җıgM;dR)e mcl+iR.7dΪR +/[$2(œ}iwM8;gbjw:BizRJAZ=(VErNWأ4?h:RYp{&٤² ZEyYv*F=B']M-ʱVBB/$hζ8&"`.[ZX)#.JZ^7Do +jMz^j[(!RO҃=s95d*c:6MS%$J&^S"΋''0hBQ#-QVߴM(_08N/t #fxUT5MGuIBKiD֔7g&xB\,-\134,RP%#v!3ɽhkRש~/Ev5& @DhMM + 4A4(&ķGy3EGll^ǺK.Ub[6S4< ךM=EM# &G\.da_; +izdf] K\<M4dt|@"F]#LֿE +{M9^gN8M[:u77j uq-)Vq-(08qV^FGUE4>1!P,.(B-tpLZC|vd]gSr cD޵8Ye%׮٘39;.&eap4{(r1=NnP2X@|]|t Q!Fwy$4Qh94WNV>馓%=EA4%Q֝l )9BrˉLGT۾6HDߦbM["JgT\4qn*o> vqM[}Y&hv5E^Y cRABsP@|4՜cyRVSWXU)՛u瀖h +3BQ4i`sel4IǮr5T I&8e$D"8G,uʓ,TΚFP_0 &{Atvi$>'7o72%Hԅ%jcRŨlW C'惪fv"ꋜ| b Єs_y|b?A +Wձ5K"TsV cGAvRI7¬ iafRn뼗'cnV\1Eo7DhhQM DA4&& DC>Y:^q%&x~~CG&OIh.= qR6.6&Q^ _|7WsgSkC٦-v ShBLbiEX EBfE-+>]4!=L 3) rZ5iAXe5B}rbtl 4L8n^wL }@zari&J^=UWLE,n!Oxc[SQ={A\^i-RB[R=*ukՔDZ^6HI&nv11|~bzUiaҮtƑhAdJO;IT4^xˢug~&>4{]e9cmơ[!fi %t5oedZH{2red?䄎8o%<:VIEG Q<<0F-a"trXwJ4tK*&Є?a.L K&֮"<ŬjdwMPYYD>IXaq1SsI򋆲ʮZ'8=5BOLUT)?Zҥ*ࢤAB<#-i}} ";"N訫Pkz> 1Nvi(uhF zUG]bڗiocjjl!QwT& @DhMM + 4A4 3͜ZEoJKVo^{\rU_U[XLPYYK:,?Eû DBIp䲄)M*iOS9gj + M=nalBm' _M–V. Ff&cך@D~5%.BRR|-n Meu$I]w45ЗxX&9Kk[;r>35ʌ=gbafxBT!>ZBk`P9uoߚԉ cԌ83%7#5Jss ;~GHE8~II͠1&$,.lfnlaT)|RezNJ֚`>*R%&_аu31 g<,1:)jk+*-;@it7Ғ|&S4LĻg:hݷMLt$5۩ ڭmtB25wk|FcO U}^e)wcU8o' AOԣc"bFp9޾&޲H!sڶnm/y +MI>f*똫kWMU(wᄎ&P @DhMM + 4A4ްVZ +Wr7&!IiL|PùL Y`4~B#m {_3X[ynGG&C}:DFޭI?j3ה= О'/yփ! 6v8w>jfxf{Ƹ_]Jid72{Y^{Mf0N*,m+$?jx^f$KL +^u99-(8^kO)=;O[*ƞBQ*u542{J{D~,L1S:qfcB lCވN}8ۀc7>yLIT<)41qZߋOOt5U]̮wz>3c 4A4(& @DhMMhB |,[b=MaG`&p4414{b ԅR3{==Z]&L_45qzvb +s.kk|M,? wpe0TC4&& @DhhQM M\MKQgevy&h &6&3^0UGkI9ޔ FIUtyO .!! @DhMM + 4A4(&vhB`$M|L㡉MMPM + DA4&& @DhhC4! a&p7D5D3DhQM DA4&& h_C4] l  @DhhQM DA4&& M@WhwC41[C41CA4(& @DhhQM &G41FHI ˈiMn&fk&f(& @DhMM + 4A4&FeΞ pSW=4DkKCl&~C4!! @DhMM + 4A4(&DzS-_kH %H}/ܬ\,bj;K’n\jyq[F)㊹}&VV_bpᨰ_vZ(n&~C4!! @DhMM + 4A4(&Dz:9S[έ-_Mg!!I]A4XcvN>c'7(""v$=WDJ&1袀iByr:inGeDг3D + DA4(& @DhMM@4 F|!ud}z=,$=Ko^oa(ԥK]!4/3Ҭ`\GEo#MhwC41[C41CA4(& @DhhQM &:Ԇ' ]D#EYE\҃z3ϪLbesۆb׻YT7 ;) +Y hbhbhQM + 4A4(& @DM518 }TRK7)ry -wu%a2-Y~Sog/o]ek! 7 He г4D + DA4(& @DhMM@4?ʮ 5T[TMLM̏-Wul1tN]Qyg6KoU">jg3((uresrb`D?!MMPM + DA4&& @Dhh |M|yd  a&p7D5D3DhQM DA4&& фBCgmGo#7ʖ›)>Mfqyiejz@ǖ&>ZBƽ++WĽo:fz^sıQ.sRw/Ji R6ZdIhh(EEEܖX IKKcnll|IpE'''g^^` :LFFfP9cZ@222bneez;X/Zd U6mExvv]\\#A pWWW,~4,SRRExii/^E8Buu5G"gƕu nMG`naX'hAp|'hؑG>CV^u0X~#^ |uտ>tܵxb>aӆ]؝v,en8믿ڳJC\ 6F`ȳg,\0lٲp p~z~E;@}ppECBB & pP3RCyyy,A(\MM P,-ZE2*ׯExPPО={ F\\p11'** +p&6l"c͚5X{{{رppصk&@'N"\NNn߾}X$YXX[m6WWW,lbs?!/<+/lpmKRy=ɬJ}]SJFdEtXC)MgJoZ3̹x C4!=ai)wMmZ?w_5DhhQM DA4&& @DE.kޓ:i.s3>OYEOls(~^Ic҄5P_KX^*uihUK4M@CP}9mO7.U?%+ix]r>+s}|#U?D1bb|r)XN!x*jYed@/|PY+9c^yXZ{Q^UЍ+^N7st4tC4!? `xWW։iֲ;À5DhhQM DA4&& @DF,;3G+5OA'3lyske<T8,}PI,)Sh|?^ QΩ{F Ds^» +ޝ?5y'pԣKSvj;Zף`T.A "U! p) I (T䆿`ߧC +=uIF IPsfͪ$W$s݊ѩ'PwĚk)殾5-cU*OXy^bP+nM?MbXj8%5ϦTOj/rê8yy䞠\ƚk;o^P>P򣋗="-Cv +5^D+ܟ÷2.v M5H%]ڎl3I$3'T|24W&cNi짢7┟hlƟ %41|$N <|mhx,aqC_m^]Y:AkW.󲹍㊮ EE@Z0Є{YCʁN=Z$vM&&&MM  4{/y8 6 Յu9bTXSbVKEs?Zi+4|q栋EYiį>&מ ?R!ke,sz%~.;]-uMqX|Ĉ&,UpX׌r{G'lskwY={ȿ}eB^^aV&{♳4!eW3s7kO 7I6ԵHt8`#&ӭ~k 7K7?bݎ PwdSi\<}"ezZCuq= 4A 4Ahh.1] bESΎ6Nvq}eY[cwži%fzGkJx:? w׳ש_iJ IQX/Ϭ6?!&~C`‚~~-ى”*~SyggCKo ]}}ө dWUuKRM,wttlE4Qu;7cͧihbyXhl&VOˏJdͣ?B~uj&z, RmUO m콚ۘ/^Abj+ 62e*}hifErs#]=CMY{y%fr"Kil흢d) +vPܔ嵏pa95YQ#UIf^FvXx98^8bQTͫѺΪĬD_V>G֯R=H'RO\^p7>=Es/mϾhg\Uo)7I}Z!۟u%}6t種YIXȩ)3߻I~Z1V+|%3Q28G㓪EҬߤ4SY4S><>,(MO +`TJeʾ)Y)iU< C4^ pz'?"eh4@ML4(913+l{[ yQf @@t&&MM X(Mh>`L4!B/sg Pw?7v @@t&&MM Mh~741v_u6Ao٩=M0>ЄM311] b @@t&@4i@4@ 4A 4A 4Ahh.1] M`Z5M;<MMM  4A 4Ah4@V 4@41@@@t&&MMM0;UM0>ЄM311] b @@t&@4i@4@ 4A 4A 4Ahh.1] M`Z5M;<MMM  4A 4Ah4@V 4@41@@@t&&MMM0;UM0>ЄM311] b @@t&@4i@4@ 4A 4A 4Ahh.1] M`Z5M;<MMM  4A 4Ah4@V 4@41@@@t&&MMM0;UM0>ЄM311] b @@t&@4i@4@ 4A 4A 4Ahh.1]_MVN߷΁ zʜZdkaߪ]` mU60~&Ը+wȾ{x߸SE㟟,pK}]ie˖%&&jeee6mcbb?~|˖-8xppuMzR25qp?쳠 M>...88)uJ88uUB۩&dM|GKhÆ .\nJ]ijබ&N}N֮]#Sh|>QQQ8H$.'5qp*===)u;vlƍ82UXX؇~{#OSSS5q𼼼O>$PCŢ/;.eǟ/]V輳t9u/FOg՚+VX֬\C8ZtY꯫?~kfndx;?u +ꏧ,pg{k4ӊ+V^\rժUo#SOf63C0M5}mpy=ަü)0tm_Ջ,#&BM?'Zt;Cs@!%KB!Ы-_zNl6;&&b0WxxxHH_!Z¨k.]bDB! i!B!B!B!B!B!B6R\$ +endstream +endobj +310 0 obj +<< +/Length 6735 +/Filter /FlateDecode +>> +stream +x][o7~70,v vl{OatERceR⥧%ukO=lHUnWOvw'ɛקO^m/'ovpۓg_?_QY_߷ê\5CSTEzO]]>~GO^U_՛ U\U]mլzQзULo?y|#bӬ/6Ͱ^m~]Gߨ~x4}Q1r47B9hoQjs_3b9jm.~Mg.nK9[.ڇ]Q暪6U.U6-eQuKmikN謍jMGXR䯰l#&ҩֿ*e׮.LW~ks2pιgA_4n6F+Z8݈nT AM6/}R4uxSW+mDll\Cw(hְ9HV}!sw?QTjTReo*ה \ި=ì#TM!NLSV|iԨ|UdžvZߪ)~0 +ݾe҆7Ѧc{b(/> RuĄbY;IVh'RIpTrWB5VksyVfEfo%XR沙Ҧ܃vQxoKYXu=|aoWrXi[ɵ桻ܰ˪A.RY ʢB VYB> nA`ֳh=03 ڢۦHلu}KRȢZFGh:Ŕ͒!Y,F\}I{v]G^\])J9ں*SPT۬ޟx?SPDNyՔJŷ }k;ִ6hؽ_)#AOb +/zU#JK60ރ3<{LnE͠V=yl ,SyR)>S:T¥1r*1/YӖw&kUWtݩ,Y = re5tmRGYTUD5Tӥ'H_>U˳g&o (Ķ{eX\\SA]{'U4IFCLHV3VfOM&jC5*bhD;'8p|F_9u7tX"df7zS&kscxF.;X~zkJ9V}F1 Hɳ +"ĒAɴv:MQU-IRHeL`{P)FkVs<-{3ne~x_<}Z5Ӧj EZyp='dcdSd$Is9^Ke볍Vl nc3ѓӍD* [}4& LIԜ؊ՋKR\߄mk6ImX!RMÉ1:N:_s)/2{kP- ee[g M87-?OМWǝkg aޘ{uc77[~H2̍l-='S3$J3K09+d:qg; rgBoJ@|JBT =;;]FH~&ks7dKXPEn4S Fn Z9 =ƸU:*zxbI뙰rPb\)V[gKW|I hnڑ55Â,:b~DdC!EUI]tN1 ޒOzF=[R<߰1K%'U΢̭.;DuC%ZKQ~qIc[)\,<2*ttPfG[V.q0uلr16>Kk-£}S1UnYѫSU85[VRJ諩ZnEiuo1j ήcEC\.3z=y؀׫ Oݑyٙ9t1&H.n luz0!r) x.(Im&yPLg`9hY0aNvxq(fbj8.*ldcK&߸qё9p >I5 ui#S_M Co]OEU414o&Y +A +}tִ0NcG" pYp4:nX_{nr-5JL'T<]NPRd3@2bdĉLcB`o,\PCjX<br1I4'ƸIe@NJ ĵIe8SU[6[8Z!u}ޅUd QdxV.Ơk2hÖiC•(Ķ"-#cmHED[^. N}txtvzt*˦;?C8\R9=k{kmWz5>VB*߮5,𠣭>w`t^.{(HOגkmsM +~m^tѲꟵtHLPUjTHjG4|Ҿ>=\cJKeg`M΃IN7HW{%3 X f?I#@E1&h_Eii,LFW-0`1eS5cH8 6~| +pˏu[yEn^ *&@iݽ:?RrHhlVDM[f :fzn)*3{%j 4zegJ4 {"NkS ]}c +x%H7pph|XԬ#,cN]rI[*:aNQ738dWÖ^CWٻ3E*Uv纣]hf_i@r +EZfVU!{YEWpK-d+궇]hUJ Ƴj8fkvkHbf[DrR' Je+"z +WmTӥ=9OP܋ʼK 4Vt0dnIMC)WL@:Atv.F@}ǁտ8{oHҁdYJ0cG\ )'{F.&F]+ZQFgVMk>gG$`gS6C&Y~ ;"雎GpHN< oo +A2b"1A*Y:AH|,PL1`#306.bw]ɀp/(yF@ q%M۹SJ  ŝKK& xO1= !'QN{qo^y]LWU(Jm!O:N,9Kr +Quo>G߫0}nHfJ$Ӕ4ݦGEӁ,$2)o/A̦;9kA#n KW;ks] B4o] U<^٘Y+){Xj=a{K5sl8ӿ;Vq17#YkJs"wT7%[TKSK+. +E>{30phxږ5M@&6 omWi~*xopѓuU?, ~j:Pփ lCؗ0Cj/cɞtw &PJvc/:5¬jb{d凶\:]ǮlqM 5tpsWyM\̐-‘e7Hdmm1iP.yP|uSŒC6{0~|bMnsEW)i n`ڧ%D#a!bxMKwU9#=e&7ED}9HƮ1]o9-v>ƫJg`v +NKORꝴ͛IIλz +Ke!hPD5xrcQ1>|y|,(_ϳdn`p_ )vn.O@RQt%yO!X;2~1(Up4ZnfJԐ1>#QbHᶁ(Qc%cF>ኼõ;gޥ԰Q"33cuG3j]@]Jijyr4}pr.6n_A|`@xABID,hnƥT?ǧ[&`U!lǜxFt.VJ&i{sd!:}[Pxx~8a糪8 $ZOKQ܈lR#?j}'9tmn5 Acp,FsxBZ83c HfbSƒz҅tpjz3~o%הwѪXnOUIkB Dh0z7&G` %ĵ%U$MZ`)}IpNd1 L%Bu3A1IgQO'ҫE8kS["ɦx*6v M M3=.! m߅%UI 8.6g|h1“l+Rz.?ۺ搩O5yh vB9'"}0eC2E 's(.&G1,"dȞ!"ЏD܎D3I; >:EQg8oF'vm-A" ~{SS^"D~*u&/nQqҞR[0!Dq#O$,vEu7/2[f"~tqM-ia!  TK2=7bZԦG,V4n̽4hnw8n+&^k7 f^=2E~fSjLi{$6>XK> +stream +x]/@0@`&6ɾ Hc81^IzdGya,gGkgbjsnwn{[}n{7?}{r{yu]\.ۻǏV?߿W%uM*Wu_|UVwo߿wݿ$eb WE:(nWHKo~hêæ^t6zauHo:uW@B ~OfI~9a|߆WⷋK2Je%UVlZl_R:cU|2%%ox.e(-D/JQMGz,X]Th%G%t%>h+{soZImsh[۪.XPROyΕ ?d4nʡ>m݆5yV~yaz{-o g J%RCP'vg?jr/cK 1lI úcR\iTRe*CHٞxSKWKtoB9Zw;uˎelsZꅉn0Pkh7JsF>%yQm[p0!ھHI&57mF!H}ESߚ /cK)LlLF{>%eE3ݏR ]iSVTKPFR]#)WO^ٶ(>:+Q?mPCԵ׮Ŋwض[5txٳo*z^n@7NpI9)c~[--];qoU^]XwR"~r-6kFa^*ވdoG9Agv1F3)e +ʺبяu~6NRDFmuk>|e tPF?dk,)X[ e"&z6#v +q ԃq~c8!;;ͨ)H^r-6Kq=&:so//hdyyۨKgFϝ4h%Je$^ >QqEmF3uN Ӿ@V,iypǐsYN6& rA2:*1# .fUo;m M%gm1Q݆j$Y/[BG,lz%/][}aT,[sq'CV10A+qLV|գI7FN"&j*"e0݄.j>yhAab7ژ + nԭDfv +HtlVe$mp2̊@XLwVAP3*]/ApDž(t oʪhtID36 ]brX˗Ӆ<٣<' f)1\zgk2d:fTzYsC %ͽp|= 9oiVs {{)q0r&xX >u?4DiL_)q+ՏC>x&`D<&ٶkhu/w\-(ZAdPJtwp΃s4D/ign\8Tx!}buy*館)hp:cn}t c.~ߍ +?U̶Ff+UX4&ɯϜU'Y'\RK\aB=,?ʋj 40 +1Si7~VG:ftnTHͼN&zZb-:$熕u*u#8"!;JR9ȹ W VT2oACY$Vʎ^%E:W0E4bo+iD@]\~loN56;+)z I z3㠹*IĔ6~z`+B'7<vA^H9V㨮3A/b*rͣA0YV+bY'T7GYH[_eϤDz|qۨu6g=|W[3لz{Cƌ@P'{G/4]]@Ғ}3c{&jb"#֝w՛'}wP'!Js , X43d:l;m8a] B>y` jXf;.' *Kv|ёd1@WyB^3/VsU;[+*n*Zvɿ9G e7ZR=od(-aORk9 pGJ#l]_bFf^P!&J8y {^l`w˳%eVͬnrHS=+{AmUd:!uZE٪b;/lnͫu6x;yݽde9J?"Y xfX;*&[Ulu[bK7U+- ~$uEj72d忌,}"!0E;]4pnUf?i'Wʬ_ EY L3`uW=<? 5;j3JK`!dU(`]ф" S=Dg-0H-aƴ{-^l_ʬ^+,6*|]r(j왻~h̓ EX rȐF~D /*c&j$E#c8 iwـX緦PD|Ȝ]ͩC)k +FIKap6ₕv.t% 6rTNrA4MLNuBP>7Xlڣi Ւ78{w~PcD彻9ZE_< Z=Wr=!y0՞5=@Ҥј!リ3MR4^k2gx椇,%+2YYhtfdĞE_n! [cm*2tCbuo%I9v380h(|=AR A)`İfiZ *Zn*7mkćTiQ(K*0o) 4EnvܠS8yQ515eY(Qk5@EN%+0GDj]iF)^"jQ)7]7bCh խ@sL8iFiN4iN4că vZ<A^pܬ}Π%ʢIi1I!WS\ ,a.4}芾hWLۣzs z#|E^lev7^ {LKM! +OIx 﫞,+Pb.&*S8RQ­DSx[NeAg¸)gꀕWgM8%X%)dc(o|ǫ|LC6Q%C CQ+&h򎔆0kќ3^1JP%LDbdLx9N3F{d:Xt +/Zw9n"37?O`C}qfEKF,"X\7 &X85ԳE+Sb)<}XeF}^iNE3+vAd>k/C-h颠Pa^IkTڟU$, [(;ѨPa-KPI̲VOCj2ZQ"5- [h.(4lx5(-M8V$l`"JYؒVk)ؒJ9rM/'N2[< NѦK6IiMcUz,`xS]0}D0#1yCQIrF/a)k1naÅry +4n9(3F,c+0P84U,fcv9L3{ qF MFUj&y@sv/L'r)bh&r$n9LC*ϔ@>Ӱ` +Ӹ`>5W5S 5pw5~<4QILC* H#$ h# +X]pFѤLZ[@'LZ! elO%LZ#`4K@!HsLkҌeuFZ)M"PE r`FK8ǯ{gIQXf$%f853qXe'/vw~JR·0>d9H +⫚t>-*^B'LVtvq +r^Y@1}\)G}lsq+ΚL`#ޑ`鼂zSMC4c;Lϕ,=g,@d -+s*_دmjr^Y 1 Rx@#1Nkr^YA^u@!+ +"*)kc Ⱘz{xahpGO\D=I(_֒Q ;wj37SkM–:0죯Ƨ ղX6Ҳ=.D:c6-r􏷱 I9޷_ރu XVH׺`*5ȶ=F!n?n8ʝ2Yap&TK5'UZQWAX 䁜R?p,ᘍL9 +Tk-So׃ N`M%!@)*6LYJ+0i uR'h;s[1ǔLГ)d1yˑ~. .h,mI ڍM&0w c#Ej#biTр:?J8E1~?F ` +endstream +endobj +312 0 obj +<< +/Length 6505 +/Filter /FlateDecode +>> +stream +x=r6?֊" S)Ue=xcI&yucER6>_и6ƐҐMUFo8=Yw_OTf `/uPֺ70uxSqt?ކ1?^cA v?'xWDyێ݁j|׼{U%^C?sB `ߙϳbڊ10m`F;:6QA DpiL7M()Z5ѪYiܞ~FpRȥb +XMp9T8zok'% `^$syI(B1ڕ~юh[&e>6Z o0s) Kt미FWګwJL݊_{Ɋ cKV ,报 +PWr_P +}Ux[7r P}ŬoZo3XWs2@w1]dch y[R e˫fqG#Q[K-!X\[z>\uOno~+{^\]>ct*e|F׉jPrq!k]ݜS? +u+JTU[Plez0/ V<o-r0BhX[ݵQޯn%5]QW H+7`nQN=H 杠iq3pPMfsTJ䙒>%ɝ;,m`JJʇCs7Yr4^6ؾ.Ƕ~GތߪqnVA\>ճU?G˧ R'eW.e[tS`dž'ڭs_= ks !`.4k?m6w:C +;6㳉7\ ֟kP#J3ۗ;;[=oH5}ƽU0iњo@Gj>O*==&2L^3 Q0ƅ3˦{+W0ug#ӊYJhc0RV'6{eܯ;UU*#Oiy2Z5T7ƫ̀:~<4HG|N.@Qӗ~g?=3<_C|(ㆷ?"1&y*`4#: "8ScN`݂dBMc-> x"tl0픳Ah-!CW3#J%d3Wx +c8p c{ w.<۝1Ct5Hwx?긮m@>^LO6/4ީ׆|NbCrX9؝} =.|GwN˶COWr>ć1>9%FX6[5{ =ّ;ΨVobcqZƛǀ)>a) ٕ)KRc_@kA{0|>g@jiu٧Yf7Aov$xF %Fvq*Z"͒NmxS $sV5y_3=)E3c}30tDi6)T]g6w@21X g8bwy#ߟkpa2ʞ5(u,BY:2iǚht]rC +9aˤB#f|AHbJBc'4_CxZLl1=1YCt {ΝhrY)'Drq]rc䓛3 6nEmMfn [Rn Ԟr2+{eԻ[w5XFu=fI777Zu<sm1\dņ}M67`{XIjjL:o4uҰ[@P[۠O~h=Iͣ@D=泂.[zJL+'u˵mrq9}N!'IqtQ/biX4 U8Y>dXETJ!4,Ts<4)@^xpAsI쭇qod`" !JEUDm]L6%z>@2&"3k%+Yi2Ĕ +)$;=T,QTڪVJ𕤾WS]xjV` doa \7ѥ X49Zb]>=Va!Q' Āةr葶"Rf* H Hw"HFr{ , ]a1Y?F*FF Jz 3oitDҵ;o#fh{Or:ֺ +gyg"L$XCar;زͨaz^s& k-D +zeF~h\e2Dt{}[Okpk"t?Ak2A(S  HUY)]Lqhr2Wܰ[9oB{0z 4& 6'%bљY+YځemLJ+`J }$ECe +:Big dO4X*x;7R5t65'yS/{*%,h.X(7eewXL+KȾs&FyU-{-" @3oA3p[0LQ;~\ީ:'k[b7딈Tdoߕ҂^2P5i{Ly/ n׎۫gWX^#gNro6GXz\Vԍͻ5Ab/ +CFS"92]Uu!1`:_rOS?^Ĉ\MHF(UpbIдXu+#^+}K 9M¬ZRgk-yԏ⼉@OPⅼƑ.S_;`XwrjSVH<(!>Nx2TDykQ఺5`MX Cǁu!k-Gsl (N #cPy49S#;?޷p=a&6鉻5)މh9 (DmN$'I¯2V-hu` 91OJ,(1"gu$lbƋ/MգZr;C~|e.D\@t-F($EzG!a ?UM![!Xꎱ+=jiI"ֺf5~>k|9JBrͦW/B실Ϣ|. a}>Ɏ]I$&2x}. £syZ.K(#A&&Z.'v'>ǜ0RQŻ"{LAqћ{*#)HԮtZs9AjzYE6I+JQ0(aiRDkKuc䛩T^CHFƒ## ypl(Gt"YjPX >J^&;ܼ_O7~jɣ 2<[A_q(cPg+1\QQ:(iaQVڧ e%>iQN7 eNEْO` y Tb;CyexJ"^}Jj@Nnsk}㟢B!类\X+{X<vĜLi@lu,KbGՖG(';| 6=xBA +#Z5[.!*\$u#tHqj7ћN-R6M&@ϩQ! r IJbQɖΤ1Gǧ9:kC4DHR )h2#(c oyIwDf MQl9+~D5Xλ+X̓uaYgcBFn:ZMBt$4xT=3csMr—"O@#z/ReF' +\Zfg@m Lc*o;aHo8a¦7 +â;#XEg $sHFIJ~:\tFRFex`-9 h:憧Wgr-v6`,[._R +CJC怅0^  +iJj}O G?X:TNJl,y=lXICH`J5`OcJ)^d*͐''{zE< MˊH4nם`EW"fSh>wWIXJזdP< EzE[4\qX'*c0k#}(dU[c;PWoXӷ*:O1!r )$жFEl(}2o;EUlO7D(4O^\"QO} m%/ ^.\dI*Ý3j2ib?a^Nd9Wa :fzV7J.v+cV~"UW4էuQn qe6`aOJzH 4 /*j{/o5 +endstream +endobj +313 0 obj +<< +/Length 6008 +/Filter /FlateDecode +>> +stream +xnF݀a >& ^s8cY%Ex~Hjg>9zx}s~=Y}Ûۓ7_^^^vя۳ы7軓훓믾Z=zx{M} fmMW='u>.{oȪ{DlVdivZѷ/9L}ͷou"|}_U֫˿߿k0Zt _?6U/ + ,;~Qvu%rL.~ uyJTݺ $#[vjj*>*Y[w}a'rtI=I^_۔+{;)Jv1A;s0}ZyaJ?"ҲӜs.EYԇ)C3mխ+ҭ/+"b `OJtNQ:TCloGZ\5ckm@C-}J92yU߰5T5zϕD `kG?ښ!0mC50A!>N5K . YOe',rSL!Z¥ +qTxpFCNW%pBbȅC8`b'qd$F'(J436g'r2:5'. +> kE;9'UMJlJ oa<94,މϿn\jHV/)0wK~%K7L-YN00I(CSG?AjZYVmU}[|xX@{N6bF>gKelYMs'ɔFVjid +G77o./ovIJu LHaH(UYWH⡩{ɉr.j8[*M`h)C?ԗ0ȕp`mUS*ٽ_I%<J^;Tek0n ϣ ܾgpӃy/hfa TEHyBy&ψZɡXf;4)Csw⢀1@/jmw3 *jܟw,v&Xtuj{'Ol/V듋ͷ*Lͨ }@mkj3/v'ډlXNao ^|WA%DŽvG%_oMS[WL0nh:w= +tᐓjY-PmZ<řkTT y )4AʋYО*LQvW1u5RѠS(Ip"S=.=tv!130KcwBc\9v͋7O} +9@ >?11?e\ٗn:z; +2Zs168XUSh~,MHRN*״8ݵ\It7}zMۇoB6TB W0=ݵTUe6UyN7$Ƽ.*O,7Bk%o AW>&0JH1C哮@T$XiynHb# w(;l[LC5,Ngo 'u%4;sFl/4H"UrmvNRW# 'M3YrUHX[Lj 9P0[nW t׆{>eGF@Y4\ÿC᭖a"VߢÃcW!FSTpFڅX4rQCT'sUc84 ͐qD6ۊ AxO f,DE Gb +zۙv뺩OϬznhzlNFlu4 iZO"1V7z;DMVm?Bc0h\$pMRh6lxxg8#ϝ-pܪ*N #CDa1娪veL0 D_ @#n<4>3I3KwBRY zYIn5|M&] q mS5R@$6o>z(I + \޻9Iα7@zbۼգ"cB>̒gن<"y͔gd"3a IAh7"R`>e`jYB#MJ,?13dx(JӨ?| Ug|8<.V lf,k<,]zyݍ##u[ib,Ah%q$hqN#%ՔNNS:1I8>J:ڂYܨЯJ$EjгX4k"j5Sujeu;*Ȩ\w<䋡ǠۺD0biZsz2oS*QISed0TJ&I >uEsF{P7Mp8Ep7m7AxܴoncKD.X.=8eO9Rǝ_I簰\''Opģ[ dDIhMEZC(7ޓ{担3C1c}\8LbƯsjtW !D9ft %N*z.  h\>4E'|4El3{ˣ6~}7[EbmEIqj>맘 HW}zj +h Qan>Ѓ3 j;* t(L3 6̥0e 7?foQt"ۜ +P}\¤Hf;Fb6H,:cyh>`RTW FpC)rЉz(΃;Zyudͬl.5hdHܑYWOK+[ ]/tu6J1(}}X䯐=Č {yݧ -IwCeZfh&wvf_K 0)Փ3#!e2 rYV"Tf7q&"Er 0r:WW+0dCd,v$놗@&嫄ّ}{ʦu;468KsY$-1 +/KP>3„TB3 +Dj#&7a9xD) q].CZ"|zba;ϭ۲4|]cӈ, }SТ۟NӢ!́KI=X +RwC5 Ȕ@A KFI9]}.k)L1"y[I*6syڷa~e RPf*.wZ(-<zlq/*Y r,(S./HA@JOYX;3}:Ͼ'2v^G,p| @S|ERjSKw;$rn]A%%s8pRœfHj\;"Y'ҍT߄r٣xq2jn $Q⭝#[ۡ\26qNsRUb/pwy|4Sϼ#W[.L%.I%UHRabۼ rcUY'E [qYfkie uۏ:D79q +\p,, /xAk\;*c "Svuܫne<"fRKPqȐNsD-9,GqiۏnHl>PbhU fbM + +:LZ6 H8*=5z;DQ-ܢF\~ژ +#ʲU)D +1螇Mw t"J31T)1lk+_Bc:B٣&4/"&+șYk]KSYCQ}&:89S&"Yd)4&J)>[C&56MKjB_|~f19W^UNUm;qV`S,1ʓl=!ۋlYzT.5I/͚5ݥX0eDxK;'{NBg2I_u391eUׯfCL[(5>Maݖ!uߍp˙үGr}1QQԥaH2\O5 .p0.ҫ|ȁSsR(XbM4/BKҌ# ]'~}Man\9ee\q8~F|ܗ;eȧvː A8zS_;pyTPps%JrNwc[ܘ"0\W +>S,S/ڭS`RV?;`x`Ca4.Ahh$gG?m(LI-]ı({ca0Qh+S9#!4Gi֧tؗY#bFp 3Y\ f͊Gbgwi"h_6J-obl|p;7R> +stream +x=koܶ?A,A NAi퇍8n]ױs9%w9@-5")?|:]|oo6|}~ruq^^nǯBӷ竳'O'ϟ-~*+aQ-)Y/n>_'o>8--޼{Ij5/[,znu({]\^ߖ +V/WWE*bX.?o 9NӗCЃV08j?GUq;U㏳3H6GTy.X|Qt⩜st2e+PdR;%,ES}fr^Y :*??+ؑWض vJtYeҏumnZJ)ι8VJNh7kyZ8/X\mAEzk Ibuk/ Gy%X{ =lN ޗ"y-Hq!ըX(^aUC@on~BmJ4W"X/R'N\J zYɇ,S|@w.f7Eߗ/4^hGq!mO>A+}8PNHI[;ITNJ5ꠚԘ7jiVԓx n!0}YM߆50f'd@)]fci FY_F0>2-tLYl,ZiՊki$Ǚpv!z-b'm*|z %Ti6s,n.RCU8$@)6\ w &}&DAd~!<:dˑ/{  +DB|$#BAnfmlf 4e)/9K!;b Z;5R +ޕ];6\wj+Ί lkyU RU"LܟW 8nI\^Ab<_}sR8U_ +6a4A6R co yQJ ASng;3Hd_?U3623FwtߣFh9PSI PJ9|,;%$!sA@GpΕzEG>'VL;{7n= 6(5^_xbeĈMkl F/!݆g`dGX$3 GKCİW%4L{yS#a'<:\eufBVQ8d!vRdm WEvQʐԬ5,VԆtr4;$aмz!Xԥ&a˛-(egB}87{?~fJ0' 8#_Yh: r?5ҵHU4à#!rCm4{D{EBE^[8S­N4i伴L%9Ҙ +`4Dt&ko6v+iwPpL +ݼ#ìS+H& ^{k}ΟLƾ*</c+"*C=58µ,t~~gXAlTcJ'q*:=<<\-FxK/cX Y޵泛 >+UVkm{א݄PAw~Wv8|}O +#'#\O5P4<VM:4 ]pnoAShCT_PJ(CJ%u˜НbV˸CMM11c#E4jzF+DXu~ҘtNۍI ;V/`%..aemzQqUAP 4 NMG-CМy H@uu@k*5̈&z@e1۠]hfi6L=|v^(*`]͐4ʐ#gY\*{:> g3 θSkJ(<[QAԺq6nw?r_`3 + N68tmI"專:v}v3#C)fGds"$#V5p-qq8Md1Y +XuPbat'0aeEy$<\ cŸϽRDour:D,<?XsW>S +V*IF!'6ԥ%c@=߹7+=iڪl#$<'?chNJ ~q)E+wޘ\t!hp0X`<X.Ԭ jz +QЀiGk2(#xGk BU+&W>uX=%?T'V$T3lOt1Pg%;FKEС8ԩ+`vdtRdfyzc-6#ۈP붋rnG$0dZ2 +70c{,KM6sueKffl=]@ˉRg,Rc|\8XUbS p-N*997\Vk_Ptz[.NLEg-s˶?]o?AV#5XWG]I0q[f3Qu+ lP!6B)e=t&$[&jwuv\mML },Y;bSAeC;9${^3NoCy4:%~w;6.AXeN$M骟@ r&l1 +< >M[-!")ڃՈT4ʣƳ5`S/|g.a4Sq._]E:UEZ5ڭՀ\y{)=E- 3Ssnv)&m]WXo ̋AWAiqkH:<06["6KT + ~i)7!)y wkYpKK/Ƕ3q +8jh~0 eq N*δVs|%Ie8̎]vE/-_h_ΡqO-%BԐ9&+am^hvÙujRAj3teb^MѯTEBs.S__ jaJX܍/x=AT*s"ʷAرpfXUIRMa*^,Vԑ+^;p5Im +s"NC%R 3Df + IT;b htz$ ]Bj\ ܦ&MRcߗa/B{lY2~P!M۷ |K^ĘD~28X( +־Q`bRg7ډ9r2HS4M?)oh^1\e̠_(Dbj}'3EKpݥ +=WdVܡX^2WR:c`;5ΠEԧ;dGlwB?(Zu*l{N\9$=kt6b;A~WR͔SgM4p`(UW~=[f{ KL}xH)ڃqe'-L-i3^hKe )0wh4ӊ{dĔRo昧Gno:hnho{5p9V "-x(:u@xThY2>44cm$L_@)*ốS[F9t )24WˢGILvץEmR&t:b7N C&>E h-0ZfTgN:#s 4CzܼۚM#hID/F3+#֪5(#RK%]>T zlm/X+ʶy5#ŨsvSX}b5B]$׈m:Y.KăoPʹ@ ,Fr"+ӭ5^/} E:]?g)7ZElQk̤[m%O2LB,r` Dg4h̓ Hx^ש2Sz|!~~;H@[{*|<~ g@k׻Λazoa0m&q4 +^z[ + a'iT-"ꮏ t=@%݅yUwR>ˁɽw՛e1 +5ԃ*,*|oc]'%|%i>Yijll:88lu4x(Yu$?W|@bfT_^/+5(;ʹbFlnaRfmNk6\Ԛ1p3ZJ9rUjĘj]ED * +Xˠ*JPDg Z4k{8-k-v)#Ø^,F +_лAݐPZ'=3:eʄm^2!@z8xL +=ѧ>;л-̑ Sr;x9's;!+8ڢI!FX6yX=dU=;)R,KBIND ﵎#X57,e l/_U9h+_jF#8yOnY 3 1-5N8_0(1VHW%A%%n.1exec_5]+&/DNd)U1RdyA e ?#)ALp)nð +ONavH/F݇3FWs)Tè :<΄v3n^j|<(Mۖ3FBHT$H$2·94K <}4%82#axK"a}Z ư[Ŋz)ix@ "M$;B%u#@I2xr1S.9G[H6ޗh +K +endstream +endobj +315 0 obj +<< +/Length 6526 +/Filter /FlateDecode +>> +stream +x=i6 ?GEQG 3CulxI>3qU$OK n"d~fl{[}'dwW׿?~ww}vۣ4}=99<\=}leQ]r%zQTfE9}.>x/٪+L,WlUWESUǪ](;}][}gV6baӭջyGtE偃P0~sЬ9o6ZjӬ[ygnXشl.?EuX[MլK@>y漨گJ.L\.:뤵=Ig^(냕$kzfms8Zۺ3K-K?9%=a'q+Pui7֬ktR>.H@t:ClwH.I~zxه:;l=UW8⒍UWTEw~_Cؓ}uF\R}:V^B HpLd#b7WncZ… HnPP69ȷXy>,F&x{$^Y9RN J5+'\yyPd؜ O+Q8f^/$)Q P ιU7_qӏxuPJW%%]_{ɒcK\-䒤 +@_doje]%+ +7@ ֳ odf6Fdti6guz^(/e}$ZhM+ɼY?E;Ȟ?>[=Θ^vWWWYL%O%*`ĐUTVTCYt<()J >g% Ko}[FXv$w+)E3[nHtE'FEtin71c ^޶=yoz,GyOPr$'Q 9U3/XRkU[ƒ;SWqVx6\.68>Q W׎/e(k(1r&^/ʶ`di\Je͹zz{ g?l/W˃nKc"!4tA&e_b) [V0 ?6~_jbT}#4_^cg-, N 嶃|0 ?Kw fhUHbݍ]!.+A[3@Bvo24 v@AW~GN0B|nBaM04^[7Bue.Gu[~@>B -95d& o풯P;®ro_8]Sj[SB}e{+'no9ߊ[;Zlba~HGn^OzvOhEG^WQ65&15M(_!I@/ͼ{~{할S{M-~޿c\8.Il bAɆEU#r/~]%SI;moc+PlYGrt|zڇv1!eңZfN4F_؃V{Xl7ˁ`D;7_$DH % J:M= :\Sxlç8{ܑ kSc򐚒22cG~<5 R6}v)BA~ahmzfli - +AUHPCmw-plI8!X4!Vet%'[J"u'J$ju(M >r,pᵕnbB?<fpC3If7@rZYTi&[ٌUXaޭaDyevJWOƌ 'B/J_XaVYKaYj2#yFz + h [8Kh.e.:as >n}ʖ0XySV)5KxpIY3W:eރEZ< P ihdSsX 1sy(5Qj5KRQd(jӢI`R[E#Ndž–W2+[(J8ˈrN3jQn$%5_T@IC>VNf'Vh_KҖ"Gɽ~ݴU@3@؛E ;+t>KdFVBwZH`h6ƴƙ-K %D:V?K38Ľf)"` S8(t= F.jEtjnvR>o)b*4TlTi- -Z +ΉJ }[vb)BNՀp KH[=,@tAw vv$ȍ+5%<[}|堉|%"AMv@}%'blKNǢBGT,">MD*Bt'pnI..F L_ۓ'ȺƮ\s~x aT֭lus*SMyeZt_3`f4zԗ :S깞>'s3^@dg0nfOÁYY6@iz٭g6#ћ|%:\, sdoO;1w\5&'O)_fHil!)@(hՃ`'\"]4,{Ӎʬ6=!.ajNl~ikqCD!QW}|nOz=;eR>( pWgpo8WI9 ^=ֹq*2lȦHq G[ +r ڽ6&{Mf9: KGknø(1> "}v0m<c]vV+ +Yp'@\vGq\dt콓%DF3eZkc# Yy$Ip.&\*f$r | X:̛RAbOn ]ǹe ~"q:2@D4˝y}j&Oʳ DApbH?l]@\ݡ}Q5Ekϗ`.Gl^:6KIfOL)>96O:=)7},QN%{R6 $%@|I\"bq=3cDw !JIN8!b1(ભ4B#7Y(g>6tSZ=Q+h",:tb|?g_ԉmOK!hڧ +Bs3ASvE` & UѾAv4ڎdJ\NGNVa 1&CqUS"y|/Ӱfd n\8IG)2%U;k&=Mz"?I.gmŠ;sH'r%UliwnnPYI/Ϊ9vHo.4a`\y 4sM U204; +r2'Wx-&9QK*eWt3([h8+X}== +[ât\^=w3a]3b\Ҕ_)_N%ǡDIux.`Kl{V#R=b-=MdLd5itkUM1i]0UJc Qt-z2̓4LDA&GJ\Lz}kX`gҳNo D+ٹhGdIW. gjh6mxt!)pXK;\ML\U|!t\Ѿ8xZf|4WV̺/f5*Ćw-)Kxf׹+mb"G5/FḒ䟅n%@LXvxJvaN0PheCsp,ӴH^#7^ M%M}] a&Ï p S*u,!yCej3Λ,jS9ގxj3;JaY(Lp#r뮟QB0}O E8JX%fO/Dq+\O[3i@ݤ,=e, *O> }W&Fx)n^LFŢA+) 2k6ܑt%txdc{cw5 ? bI7Rj}l`ǤkgcMhxO#HRo3Uk7!%smv%񱐚1^sjn}8glyYpv'N|qX4n:g Kdڳ2ƒ9ԭt)k u xR}[Y?G,7wVcU&]>U= j a\ϳZr1ʁ.g0eè@=bMЗ:ʏ5Qa7.oLc]ьWw+\1 >-3[мe9U3^V,OSe:6Yвݍ;K~0jZE7ЃeArK@aK^&M3XgU" +{ji=;k)9VL$Έgth`MbHPGl2JƎ9+g3 $:!S+rN-aN] 9)1)98znwTWY64&b%JR#h$ڤRq\L>ճ>]A"[I9cr\t օ Jq*F``T=\Lh; +u!nϟ8qȥSLT[bi*ހ'YuuJ/?z"qC,$id7 +endstream +endobj +316 0 obj +<< +/Length 6963 +/Filter /FlateDecode +>> +stream +x=kF߉? P=T| 75s ^_e=3t#PKʬ̬|7o_onV_}ͫ/^\]ŧWo/^no^]> գu^۴gԸjW5|5H /Sz=[+Q[ 77?Յ5_ܿݦ[ /7zm=~@tˆ~s"?nN_gåEu6'BMu?mX~C=l$td>@뛶oZz^eA Rt*nB*]x|][Gؑoma<zh]U+zuX{P~WaYgW[z/6'ܸxuQWѵjR?&=}2۾okkZS7Mۛp[[k/;׽n#g=I >4ÑBQZѴŪ`03a_c }REkE. 2_)&/XUgv"tZf,|"kQo؍QxŜᇿn[Cg,ż&D?64rzAO֓d LS05/6lߠPIe 0],v o @60 0{0n@1wh 7< gI,hq}Z8MUeM薫'Tunn[^]g:>|d3jD!ۭ_xi:͠W#5W] B +^|Z?MrHipLSJX#23Q74nw +>7ekpٜDBw@n.fԻl(@5Yd*/̿̿b)<2bO,*9_-}{T +7}?6Wf^ۭ(b?Lk kKDAha;Qz`tw_^^֯.Oy2u^gv]Amj*f>+`l`ߚG`xͅii n7sʙx,<b]h~oz;~ C|CwO]Ovۍ>X +rC;ʙJ +I*K) N76szz,X*6hVn#+D2А.C oqˍx~z;% 7 yU|:Ou\&o7 3ѣ3ց;›t2`Tor\`dž3D +7_ֱ Ock`l=oWl4 ,R3<]#e>lpƍ=-]h4bg'»ᓭ1\֌!sUGn]⬒)ta7BA켏$2KʍО6FK7txƶ}J+ %+Dv=GKNhĔjaiQVn "X8{M7y( +T}C@2Ɠwn0 +ttaz)n*NXOwm܄!xu@ÓP*R6k#b_Hı(9WU})/C'N2?>!S+ǭGPz?6Twj~sk{A*vHnNGˏC"<`~>}GOO{_oFԩ0f{za )ʴ"PKC$ҵ|J߰h,=&SA 2NKh,d]En +hw2R/z̈́8R}l/"glOA(_)!#B>Fe rX fm_ȋ7Λ^]TFQ 7lX\,6jYE'>E@18U0Ó9>_Fq?6:'Gג3]:C/HzQ]gLD( A@*eѠx%sPW j@[LGŢqsQ*w~١c?Zbe8jѮҁL`a&fo:ۆM 1hRJK)caR#@nTy'q~N&Xj6lRFGZB&a&`d˖a7PEKw4man9$5t0^,\5-<Ks.1tŐmfb#m>6cą0z;䒌C q\/kf^xu&Nۡ$"ũI~9E%@z Уtvux)HLDvVlTKڎ',lkǀx +n,"O#`H3n:I[bhZ*R,ѐv,^ ]fZ"1GzY-]Jp)%E#ۮ_Y qfnzQ BM\UٌAsE[v)uѩQEf~Sl'5]_X=I>ZO2="lVf3W+ur__zק;3=hO9Ni>"nc]iW銫 8X\g,-\Hԁ︵pKN#7eGCt2WDX@BfQz*F_G> k'S ꃑ΅Mf22EiPQ(H\Pu;KdZzzr0K{QPHE3qقCxT)2䠉OE;zC,8Qw旰3䵳 P'Ȝ/FNcŒ p3u y?2B5cNPo 90;$л]IXxuqe-nXtUpĐaV6>J0>mĬޢC9Dt⎡nϱc[濴)jT$K3 WAgyϵW +j|~NDsxL&J,%ܼITH;#2S& 9ږRR0C0!ݯ}}I?7::ypMr U <&qL&Ѥ@`q2M8*e- +޻'ϗa!n>KZYw$x ы%ţh} 2$|@wfxw`8T0$*bS$xEjI^#.R3%jWmgD-xz<,kr-??7BHٸ0zpW<"$ zF mGHeDDFr<_Sp^ԇw-P6tKlὺ_H:~\;6x7D94nݨQ3KGxWPtDdc}$4/\ +g$x ū EP %裼$8:8orSvKJ1RaV1W3ۯ=Jߏ gU2q/s?J5iVwpBqЋF=Ɖ>*evPi5[ds^ ZDU̻Og-eҸY^k6;˨#{]y  Pi6E8f^yOL$!$`2Ň<.db#j:$Zi_Iҧ4l'd!+ 5w$xWL1ǼGHgdNn&7`(c3ttCeӦ<⇬4)iCJ PLctiOS7ܠ w8o*E "% L42vq2t80&ؠFVPJg±r&_?e u(dSV誌$|WL+ʕ[zrc% *bAl*ÒLօ`LH9,w7%ڗܚZ ^5+L{0EǾ6zu@{RƇM%Z]PJa~^U XCzHU6)Q[[݂clULFqbh5Cm*V@] +9RX%>iZ9XUFW>`RPl+< M0=,WlX`y"ayo*5q onB 6Xo τYe'8բU{mEܭm9.$ +mf`xG&p h;՚/+`1ުަ;GxquVg=UP+L{RƳTU~Z;T\I^}Q]K?ݰZ S&6]INQD +A;qkPBt )JZ&d>[g#6|EB8n"×.p7ߋ,ҋ<7FޥejdûTr8 ;3''\B` ^cB J%𥗭&ɜɡ\Q]AHMhU£ɖ~<+ pVFEَ%=Dap--?rN:?9 4'}ª$А}s ꡤ=Š9XyJ̼<[#@SيYT+8oK>MsB572 2 C~EK⎤ ǘQ5. +/6,|'c&>G/JJZB8W{n?ɚM(BOrSLǃ`YN?г0|3b̆{1ǔumсﰵ+oy +D1MPO:6K3qGC;? )Kd !Ե<+W% +z(U8Pwu%JzBﮂuRޭJ\jRg>V)+k_}90I&JʛmB wZW4jfPҸj.U*5ԟĥRx܍"QNn(V,Z5Tuq-9bCt*'V*blJE X?VćeǬƾ"fGvE'oWIRJ+m,h%t\\Nsazށ/zV +I U]Ⱦ͏$T\S4YKÍV+1&t~z3 2㊵HDJ\.^2juiZE;b{/WْO⚑LRR8줣'f$&kڗvW"تI)W@]jm洚#m'BZh^/J[1GNT)=LڦM怞mܙev|?T$YxW usv! QcݲKl|fT!0hˀ--7 uӍ05VK[xř!r4u(hXFAϓ8kĎ0ij$OVaG}M[:ȵcoH"4PwVǴB(TǨ+boI9ť/I7?_w|6\q̂r l`h Fƥz(>BBj@ f6(Օ0נEb&iMlPzWZ ? +endstream +endobj +317 0 obj +<< +/Length 6844 +/Filter /FlateDecode +>> +stream +x]Ys7~WC?'Kp0:-Ku~hőLr<_HL}5SU( $2ztr|<];j=~dꪆg۪ JT_2zۇ=>d=3T]TЋ7ⳮuva~ ׋~=z2hi}GGﳷ{n$cp:;iPG 3o䌺XŴ-7s=Dw[OٺMG諺T3oZwPK9mRVMmz)۪ +M=TnB'mTSjtuгװ"a#&ҹֿeO^UiRsE|1ƽ2ݼ;Z???Z^PPW#Kֵ֦4uxT\/mEl]<:t%PЮa?SlJ8~ӱ?QjTΆZV`8řY}tdˉi)&3pթeKM10%d? Ldfi ;tC}#n)`؞Y}\؇p!bp01!8FN Iv\PRbLЍ5+;eܰ%3ad+ܱ% 8=WvjR&qHV0nCyxY-@ Bڪۑ5cH7q[*5*0 fNtРޓ4V8GH.P| w3'P+B+gq7aHՑBegAe$Q?' ч$5 j&NЋIS@FrJf^%? f4⾑'㜝Z2FqlC5a o +ׁoN%Ύ0֑P0@/sLCX}GgEvOË|)‹-Y: !Г &hF.jLtcuDCO pYDC (زj[5{ҟ*Em6[$,d +1"S'KaQKYg4,V$͢#a`1M43#>FM9ֻQ/-#ҚׁΰeBCf"4dqݠRFn Q>%}),=\4k0gjd}2 PIc= ;?0sRd{n2wˑtp/lHr:YBBtV>m1Kذɚ9) cҎZJ#})vLNh9ڋ#3fmBSQpIJxHtU5-Eb=I.pn|G"b"Z9#Qg!z%Ȧ`+P%!ʛ uiy'ڻ<l rirHȔYKo1$cR#1!;9e& σӉ|;d +Y&U~jKtT@Xk$lb켁`#Xؖh + 5 EU D"kıG .IpY`)=W&NF &Ka|aqPE9[W}GoKENО8>sN j +B6^:dHX&AL&U2C|Bm&ބT|ֈ$b (J*hkE2=*~q^s?9gSS;^~ϕ7f|7sbUr7z9-C()?f2ȥ_tM""7wPb+OR=>9|:r 8 c {$TXsR VƌKSQVE1xyxs Rh?_Nk )"2`5B5Lfi"`wo&[L*7Hɥ<:]建%J+4IX| e|]SWER5EZnc%@NCJY@t?闼RI>Y R+"`ZDBߚ6R[!_Zjci*x>C4%^10+c *:| efè0"Ӑ%|A5G 5\J.5FKnڋy9>9*J }p:,"IQᘤ=)ϝC;%F`lu\0MK10Z ·Nn`=;avyG*HLK\rJ4nkfhp󄀭HbXζ!%-aéXd}VX6' );)-'i b򎶉s<!0i:ϐ=fl=řSyxb +>&CUtx]0J%7p&Na#лrf`CgE(|TSa.{/[1 ML"e:8DuPH\Ʌ${D3GgD$뚌eh!ҿ}3.B@ؐc6/9R[zL ԥq&хctY@an XyCSvb/hWh̒9Oy6R1Qp{> ЫpjWYD1 <\i86fv 6gL&fU!btoh:jáq:3Q$֊!$˫KsW[}8=;q|bia)ۄ%L.Ysc^دM1<1oR4ˆar$p&Hf*[$w7LВdq۝Hl8PQ*7Eё MHsiV4U2em ;퍌lCRiHs(aEίζ"dxc}q!T!V֪}/S-$a-]\Z>&OMDLE +ÃC&k <&cW9oLgМ?}IўdQJX:t=?9J VF-O:tkOгtC~PGi dnך4X8IGĪ VU3.fQt.3u|_)íRqfoq~I V$m&I m/ RkܑFZdVj=w*:Dk2f{͝pvH'c`W:Ef[=QD Q +E< t2ltīktBMƙ\vק$&k$&1P/wB i#=p` Hٱ.cs +M}<|dF)]\8[#(1m3*> YI6HH)2:NLv:8*N/2z긳L$$Pxu6=A7߲=C8|lwf2ҡ"ځ,Oh7N3~eJȅԡh6GNǪXd^p%CY0F!f7lR~]f&ddgO+Y\ؑ~/@LX>Ji ^3˶9#i`yikgܸۅe\z2Xx_n0JyKVUV$nɌ}d$Eȩ+^UL6/ã{C#/شiǛ(Gd4/` 45=052{T=!bzLI +28 +28s/S9>OO~֧Dm`>.phڼ?\y%\r[Sfv/] hV-.e,5Ggo5>n0bb#{n%̔IiE]>$/<,KQ+1$UNy +Q䟗k%ʻ/e˦Ktrwl e WJLcO9IK񟒳5P r"!)'&iRMJ ?w +endstream +endobj +318 0 obj +<< +/Length 9327 +/Filter /FlateDecode +>> +stream +x]6*jzk-꭭bym6/Rua3{M?)J$ԓTe݂A@zWow|ۋ?|냧7x}yuq{y}n/_^xݣ~8_߷î5Cs(w}m~GO{{=c)-]oC{}C{rݽvz{={7ś}sfߟi?=XݿQ?u${cξܟg< +ϾǿTqڜVR}`4gO~6?tcC4ԘPp}ٞ?V]U}ZY5gD}fXSThmG'k +}вaDV'vK(Sm9U>ATb8T+d}T۴V8qm~Ѩ2K ȤcsZ%ҥrk;2*êoq;-ޝ6W,sbqlܠ5 +*lrQِ~R-BF.>Mxo:E!H}듦i@bL{U;K`f3>,YV˦:w3'h:/eղeV[Su=S{t}{{}~}}bgs* >'ևFl04e6ws~cY;zS[#&Ŧ'"?q2utmiiݽ$*2 8m ?ނߺrwnAGLߤnZtbޤ`GmNl$]}VgvX%|$NEjNݕUn6׮^PEq޾N#pn&ٹ5t>H[D~ nc 1y4ίJ`ݻ͏طOqex~捋ixswp3I$閹e|3MIH&gX8)(Yyi䘨m6Q^F7mMbAsmgBZfy8o6 +4WQ '6~U4pcM\ /~=&o1eQG݉אUn4W'F~1~ >" +!vq츰bB=;A74Z쇺~hJy8מt{OQ=bjÌngzo"Eǎxw'vۦjLpu% +yUE$4IK z<nTթ>|f B7VVX-~?w:_@LeÍZ'uϧ\hOnSv@0Mҝfi6 % ~UQFdQeDUg! 3L.͔z_ƕbm>jYorJdo&EQc +.at>ht3 ʯ#e9qO,?E:c6ɡi~Cא6v6á-- öOUl]Mv^h*9`٢d9#Ґ^ 8Ӑ ߔ<#(ak.Zzf-]Su}rpn1qXƸO.inbC6Eڲ'=#OTm#Og0D8 Pwl'nMiTazuki[_tZ-9-l΃; +l.!G1(WRZk9Nט@c*n8#w|2M$Jdʴz2/'m6vMG}O bO LO-тEf.ṡbl$u09斑cnnENGÚW{ʍ+Ho}n1h囪})ә{;ƒ)+X}PÃ6h-҃ 57JqP&)qxᮎy=(©%^ޝ6ˮc`KtpFh3]^R?Up0N ͎0cEezVlRЀ.=~ẓ2)4BVl Uiy1\<ݑ֦Uw|CɅgy0hlX|5h>nTȤAQAa3wbQvTp8a:ccS0>S/s-9 -&nMy Q{܍IrrҸwp9',$u_!SE4ࠊmݨH#q VƩ—`KF&jKYr +.е( +RN|̐Ч.;u2:YH^C7S\MҤ[lԙ"+~Y5%~gٹ.)3Pm]-JU xkYR(MQz\pb@j!9h,nӮ@;XK"Pt*=b,J$իպv*x¼ L}M +<`X6mM!B4Ma ߥ|z:K%j& d!ݨGL);6/]%G/y-$^MzEJ#/(^Pw˼ݎўks!og$fI=+ǟ!d|d[#sFm3Z.,`UTpŽxg#qA4,EQ\B˨U7>*w+'nrȶs ?ɟB+V(WkqL_K}{׮Ri +ظ'A}gUTi ^mH@(Uň&TDž4Ҝ3yf}6|s[ +r͊q4doflҥ>:GMNWȹ~{SNX_;ſ'.<+>SUF ޡ1A.+׽2A[uZ)1}QbWVXYpvJgngu'EhGhTlv/^w_OOmUPX6cTNTO wrݻSphgḬ:P:[iFQhAx(ǭ.6Ѭq3S{ؙ\ALD(,q?81U%0(WG`+Dqj\ Rˉnc@q.1\ƑC;_FS?!=$p񖗸M2 gU 8V c xXpgjbu"=VMDX!S-,t(e𗷗6W} )r8u`(*J# XC؀-^p9%tԚjYV\]~l>tql,ĭDl=bdzNX\lEd/&u ĬKŬ.J/PY.Y Y8Ș5pWz uTHZ%V"fU"Jd̪(E>j# j#/svwyw9]M3LNi|7I|E>dZ&AղCvS -[jTZކçk6 Ӏ)J" %Q*lTH8ӗYBڰF~\l/(ȣ +`\C"(;A M.WƭW,1uY'tZʾo6԰n.MʼnCWR0 I 8\%E"%X*+ ,zHr;zgTȇR1RLgvur0,s:t$}@Gfb/t+d![< EqX>*irmݖ$۬"l3 X,` Hx+#5HFkB9> +V#FFj2jfS'3Y2K*e}RAx% + d:V +>D))tx֎L(ӣL@pɼt6K?6I@uqG؏|2|ŀa@ +36^$kx-]>F3BYXUD Q5 Pn_^]=/T +|M;1jlX2jȤ:JxF&D`mx%zJ9eGf*kח H1rΎMGrsy,^#,ElN9kG䥃鈰y)=Ew+%vp\NI1r܎L{so`&2y C#>YPFq-pqp,r*th9skO0tnYF's s"Dd;Qšޘuʉ;"/ڹxc: &"U8'Ht(h0y-\@SQ #W +kxN*Oş(nQ|ďJjkz̟s?TM|w'TN9<`;&)' >df2W +"yD +\rk#Rfef/X\'y:DqrD^:LZA.ArIppDZ=Hdפ']ݻA߽S;~<"Bgn>DĻ!I'^2N;򛺽9Hװ]OD?ec<ǃ#B2z B_)YdU{P?Xؼ)f@d(#sh{P>yL|Gu޸Ц%ֽիUxt?圥QcLjQFx> AI%SB9}IBD}}jn1HF)-ɤӁh~yx(\>XMCʦRNjPtB(R&c,Fp-M$siff(0R1iՁ&Ż"&&E&&9BŤIC$L1)1ǤIRQ=P0ˆ0)2182tq +t|/5,.ݨbYX$"f(g,8 P+QMS4%aQHpl0њs}-nЧ/ܭٕ5UR+;ZT B>zJa<:nZeٺXt tL QlZ5  ։AwpR'qẦPNj9in(jn4Ri*#a 5rDJs,[)a YwZ]cXF*nɱLkL 5>$L?yצJ2t9-c[6DȶPyf`F!蔷\!|)qP "C" DȆd&+!rR T`$Ȧ0"ȆDȦ4̺wWfuL%) Ȼ)F@'VƉ9tKr˦$.60 #I]?e4O&a"5m$F#OH6HMp`eQq`ǣd@!qOo. +endstream +endobj +319 0 obj +<< +/Name /F13 +/Subtype /TrueType +/FirstChar 32 +/Type /Font +/BaseFont /BCDGEE+Calibri-Bold +/FontDescriptor 362 0 R +/Encoding /WinAnsiEncoding +/LastChar 121 +/Widths [226 0 0 0 0 0 705 0 0 0 +0 0 258 306 267 0 507 507 507 507 +507 507 507 507 507 507 0 0 0 0 +0 0 0 0 0 529 630 488 459 0 +631 267 0 547 423 874 659 676 532 686 +563 473 495 653 0 906 0 0 0 0 +0 0 0 0 0 494 537 418 537 503 +316 474 537 246 255 480 246 813 537 538 +537 0 355 399 347 537 473 0 459 474] +>> +endobj +320 0 obj +<< +/Length 9004 +/Filter /FlateDecode +>> +stream +x͝ݓUaR;Q7ٟ9,[q|Ŋ%_.^=y_$v9?ȳ$ ׯ?|ɣﯾ_ۣܽzͣ~_W?Aq*࿮kCqd]UW巇xCw*/^?|Pšcm;7r9:: KcԷXũsTɇA6=J?|[ɹΘ־q$218ݩs{Q=wu0o67wYӻm5gMoajr|}=֍gnh%|I-k#m٬s75m[s5ފg5̶;r7m|U/kTWuFڐIwP*nHm~ O?CW7on.||˄[0Oew|KWVoQz zYgYBܸ:HjocT TdRŤՅxk57f PPT"\םzi dq552D pV0COiL/}nb7&%UֺH[u9]Q +Mܭک"s*nL ,S3$U&WpN6Uꛧv4d.&DyY9\t.%i^n.RM5+Q%کOO_6( WK@ߎ%o5Lٜz+UdRtf(aSM-UdRH5[k.{U%8d>ըFDSt W&$>d٫!B4`Ybf(]MDn Dm 8oz y|/`.ҡoaS<OP( ,)0`ԋ΋;Y$xw=?)K\pyU +%,m0q7s73iRᲽnߟD)QU$t ø߮h@ +RO ifat!FT%e +.%$_#YrݨupaO褺!Kgmnu +BZ<rpYk𙵒JKOg,s xZC<PsCZ Aƹ 8bx 8R$X'!s(9BEa +]_1^ M +JQʰ6.%˒Ȼb!rm xE ϷflNIh`o/ܢ0@]P:Ԧo/\N\dt][ +gQ2vZ.e +RXx%&eG~@jOnoe-nQm$T댘Gq]Ά>cMj Wlaz]˘T4niW]Ȃ.QYƮE> +J02gmjtڮE>bѹoܷA1ߊ,*w-Z6 Y/ᦁ:($S*KJTF<^q +`8yAyC-8 9'8'3ɩT5+YV`ï1-X ˼ [jX0\ɷ=CR2Ro$W$ȱ{$Tj(M[DQ*ExNʸUsUð}%&"%i72d8ݹx\jiܝj‡ur*֛'q?3гYr7h + sHDYԽ=bZ=>&o&jMۡWFx|$I崶8ZEi zK|9y{-ّ-*ėkxEQJ b?#N;m!\{3@~ͪWvaN*]lfda*-lQa㌍r"MĨ<*nWW4wyQeظS2qNwg0T8cG# )2$wFlVJ,4NnE8ғM8^+ҋX9੃lt lB2 uu !@[kf׹:A67D& aB A,Ӌ 9Ch%W +#}Á:nO7ʒBȒȽb!mAUkOc&g84ݭ)׈T*:;;zA؍*IcoHT.3iW绻aǦ#::}ִuۥun@kXJ&$4|(Jc# kH|>"H ;xˊՓlnWz5ľEk FӔCXTNu˦zKe*B]GҴ'8I9GQl5 7PF< K&((N9Gkl<˯yz]%U$亼3uF5"QOr$Je֔tfݨ5[ib] +(lS.)AX)(dX @La%n3"!)P:QxA +)Ig, +ҹOQC֨HP,Y, +Ogɕ(*w|̿bBBO",IXaѵ]Rh#yi:֓j/5ѫT5Rb+j[JmydY:,7F~3?<ȐN[*U=k^EWT')TƓoZw%oAWXo#/)ȊjڿwS~4~u]r^(ht*b^6T*T{qVD#tEr("MѨvhe{RUpsOQԁmOF0|N4]. +{zHBwnFd`%Q4Qvq*=2G}t;Xٲz/ 4?{0r, +!d}3@DFUZ8QzOiS;]颰`d}AUa=$cO*>+L# Hmֺ/~l3Ae=|5 |E! ԧ <' +ד FI J,RF4k4kZ&ը+ %a.-Rc 6?%$m.Pm`[yI)+C)7$[ +"bᤔ`!ы$t)-8)%d#IhI/꺯M + ; oxYb)\Fٳ"1"BPbI?w#BZ6Yx$t?C^N2e(6jx}"8&dxpYq>~| )/?- GTl M5p#cn_@>7ǴDp>2a>56M<9X=Zw7>=Xڤčϊ.Xdxi"YJNKTKM29X= )/InN%@O*ݏFAOv/bYnN=ӳ _f4Q+7Dnw7H|a >=$L?,}|[$%0IX&ٍ5gq(CWcvS. a!Rh=e.|#̊l }wtNg>ROR'sfoO~Y̭1P ~94Mꂤ@R$IM<$* <_G?m tF ʄzKeBR̘'h`9K.K'Mřr%ćQ_ gz3zײ1)/LߞrI;)Y֔e%ĩ|&K5\GՐ,aA暾9_̓0SHӥ7gzY?]3730<4DsXe/˚5&2F%>҇*EɒBJmCзԣ2*%KDsbq*-Ok"¾|G\-(ɚ(,qxEoG4=3 l"1W#wΠgdt~}8Dg;=~`亁4o_^Z8#kp$ 8YҷSӮa)n1}p7 -Z,Sd 3Z96)iu0yT,&.g ,3tɹ|l|i/ 6NTTo厌]Enp 55fB&!镱^¢dH¢(H`Q}=> gQ#˅Rr% 'Ӣ4v4 +6U8ykVDXiVG̥svcF چe+D.J`g'O^[TCU%^RCKei ˥Kǭ? 3JVwA6u: +{o܂fM QYXX2P$7 Jt AˉsWhi4^~GWqr:SX]v!=FN[Q$[3Hc=}&T\"7mQ]Ea ubc__b-w*[Y/% +vv,mzmm#_P6el>dmi*/j?DGk!#g'Uv9e`*Q۰o;j0d>c!'VZJu(ѷ &$ P>I®H +I`Ʈ +I%+I(`8/@n +E!\.Ze%?iɃQG-qrf6y+TJMBtgDa %NȫmQ&oi@[vkws6h?6}7~'Beٛ޺&6W%^RIF9I/<.{b4N?(VL˾6,Kƿ +8zJ5>ITИ˿1Ye#* M6UY+YG(|ؑ\HtoZck|^lR6c:˛Mi@ qKX`I +UbCtB:&1g~a^(nN1tc]q/9GK;}1²s[n n![- ZbK(ak-1Ė$FfAȖ$JdKE`Ė(b JbKE5 CbX03XBnUޒJ>In feTJ YXHRG4TO + YXHGQIQ&Hڲ +'n9>oʈk +endstream +endobj +321 0 obj +<< +/Length 7033 +/Filter /FlateDecode +>> +stream +x]Ys7~WCG{, +uzdv4X-^҈"i)Yo.2qUX"h _fuv|}Y|f}tͯǟo_/^7o_ݽ[֧gGG=Zv^YaQ.)E__ܞݿ_W=< YY߿GXrAuUUIUtWuq⯧|"r}j~jX.V.vcFMdb^|:hX˗R-wU5qs0/jEU_<`bS& JHW1Rժj%t^ҔUeMR1k1YIq$e;LT>!ߖkf:"֏tmL,nyL`f;Pwvy"}t8[nbC4 h~g:|XoKٚ\{وYt<sNYo>0Ny ؛Pdu$$Z)?O{pjRn݃jˆU9wjVY>fMfOleЕ7l3ܗUݗ/Jf23nfך/-23pCNdF`\2>+CYt[oU }y.oC!}&uv6"@zC>%ylhQg\ ؤ87- [--\<~hq =l#vO7"v̧bӚym] Brq1cH +6ۋл/%P=N͔hJA $ToJ(1SkM+6s "ٲYL}U[:jgw (kt0nmVA؏?ݾ4< ̬k2P^39/gl%N%Ő6CI\8+c&˙הUe V1\._ݬ`#}뫋՘l۩|_xuг&k:[w#_!P00"!V(n^ 2X8w8>x"uN:\77{l؃+` &_ ۘ #Ȱߨ 4rE+x9=$i}pqޣtE [~3&/'jUee,B +vځ/܉@,Y̝յ/D32DXMEұ.ӬޝYVAFk !q&͑2@7jHSCڊnbfk >:LZ3e>]AF΃$j TwC9Rw=IdCW:LjP"[o-.U5sh-Tr1S_T+kU*9I], ~'~g`2_?3\D\%rēJU#daf}Р[6 +KPPReS5*uĨlET]U3@+bW~2\i tP N!p8qrn)_*AtkO`MdkcVޛ\LSobNb61lu1I MT;b6b6Ѷ)Z5/l#2A\O]/'$k;-9˚E]:6T)4&"8B$P[7jkԘ%fdE""l5K 0-AFV槍vSץdfФbPI5V3Eoѫ*)2dЊ2s>aVAiR v4؎+0).(#1b'JV&\h +mLpADʼn3*۲Zˀ +vsf;b]*|v]6xwm +U@ZYxo41om! Dn/D(o.kK`1n%P XK-3rWb"6(bS%Jkj*7vjUhy5rl Z} Ρ.zKU+9C*EXwa9ItT$e=l$)ωa;ⴘ0ӏT[0]ϠOz(O/` TjSXӏO8B{71=Uu|ΏD2(ކf_%gbock=k{i~T sj +'s>~9r]g)+r5z<C1zk ƚL:=$]D~mjp)k خ76TD@!tqmY>$^$=z@T'@Kz :/m@~kȎ3*bƏ*هQ ؽ0 F)/5|д)lq vU'ȮF 4p2Gw:Y$Vc{E ]{a +<4BxQ.R҅b;NtT7G=LGwK\ !'lGϸZY99ҏƊ>FRiATjքr$Qez144ʮ`Hr kZ(eFv|K!EZ84ۺ>CδJ$XFC鐄#P\BXH"͉Whz 9nÙ] vK'Q3ldL%}H`sx"PMF$YX0!BKc0a +ށ]!Sfí*BI(;8 P ;Z@S,:5 omyXdr5iȩYR'hB`}&h!HA~ muҀڸdRGStiש +QaN07Vd>.MY=K<|;9ӆϘdr`+A ҃-Di[ +&I]EL9E13 'Ir\$7IleD)AMk^.b# 4\Z[rcu{LܬzB# WX:VE|峁6 %'ljV1*4 _ i"hNPAФPFNN uVH]Cta:HEG3̜YvaaXz"$o V .Y8؜G * ݈=PH9G[fpQ qg]~0 eG[hH..j T7qu'FlIrʖpfJmN֎@ckl-['^c,:ma\LDw8I!ާ[U74=Nk'G|khq<1Z!O@NŗNx98%1Ej:xd1 =|&C{^e3堇ovLfϳ>mٱrtB(HDo$7ULmrh#v>SNtm@pKN]8JghG +\ xk`f^=k?$mʋaq{æJJ,\%91ѯ]߇-̎*3Vi)v~'bӒ=ՠ(}sPQ)x4"oHF F]{vv/w]Q$`&dG H.Z7S x7N#βppv0mx e;!Íj,(c̳۝Rb%G41a}"]Vٰ݋DR)ԼYYV'7Օq_}v%rr.줳Zpcƃ+Lhi\ur)~)mOzM *?#/s̄F | y'qD1bd_9l㛜]8Է@{Ux}s39t2#+s =E#VBAX8XR=3}`\y!.XK4`nyn|^k[v$bk> sZ"i2?+xDeF݊.5Y^% M$OQgc4e%V-z{{̿Wa N1|+NG9$DE\GB SZ9fܨ|vWQ,<b@( nok!ߗԯuvҹ7=c?L ϸ(!.3KUMgԽiZ[lHᄦ9N +^"ol'uW d3Vbвb]<ˣ1 +ȟj-p4Ip4).)ɂ@Ak_+۪,qm͎(p,u]۠X<(d;@An_,EW9դ^r1<(KlՇS{&qNDJ'&quYd=zwzR4e;jm*wdsڮ'H`chqZPO/; +/KE֢OEG.~pQq\Ls$dZM牬"4MBG#*I? VEW9T}s( ]W#Vh% +!;}&$C 9ض/gg;g=19+yp, m8`$WU|k:m<ҚWM4"s;D~p.E#$A~9FnӷʹJZ{jS߱0S2&T<{K2Vx̵+uZ,WErSuz8ڲg'x=CO̼LϠSem9O'я g*珞٢kw%NSGk#Y Ie71=a7AsÞ'hwڋGn#kwSRYMƽp%V#HELCKg$h.p `6_8+۵džZYV}_xȝ5Mm T=fKmLTy0;myW ņ_fE5D~WjԱ_yfmXbp$8Emm(beL7[>ziJBZtю,V} GC*@)::p^Bgo5C& C(Og$۷1):3p8jF҄9Q9 >l 3 +endstream +endobj +322 0 obj +<< +/Length 8078 +/Filter /FlateDecode +>> +stream +x=َ7 lWр%Y{LJf 퇶ݖ3/\A&3,bFq1z˻޻_?xŷg7O~~vsg;?pG_kn<3F-xxv=PFxAl:iMx}exb=< G}}|tx949?߿%{;1C#gx.'!:]uǿӕǏ}:?/h0n.KI7踿< sԇa+;KRB7ݛ}bIvP겤jdfFL 5(D]= ϴȾp+RyM~3!A۪X{hd~af>9]Ýƽ#L_OIt IǛgootbm=3M.}zG-:~H`XQCMʺQuZմC9Һ +I裗I3w.*!ٙF93348ܬ>L-n<h_J⩟]JZsh0@s?d߲80.Ēo3൙ Տ +#Lqjm>@Ib\iaI +4Džn Ҕ. +e0҇rot:c늰t׿w#;UkM: x7=Ð }EC_#%5KS8q^ҍlhR./˥Q|=~Z@R~1/ʖMZƷN5Tc!|)=|~w)^m;Ss6:݌B5qq[c('~oZ9`guNHzɽjkC AZf*t6sJ0L|.;2C3X%(7>x钹ӕAÿap3kǼѮ\X6rET,3#6r> G˲e3mKRɾ<1,ŋ2brq ۜL{YtTh)ùK|q9O}}ͳ'Ju,t5o'wmvl(2L-*8v"^l ľBՕI +ӓ:~ʚ~)+YY3/^yѱىR10O^Hּxtt'y*yZ +e{ZAQ!٨G"6v.,'?K0VћjYkጆ/Ufu̾̕j!(=.-I2-r BjlJ?1~jet#Qy }$]~B-4E0 Qku U*- +~xPY)14bճހEsҎdm#֚f:׹mD4rKi B-Zvr5*Rƴdq(녆\F QStUu LrrDb> qIuAECv(GN:$å˻Ew..DLrDUj.i!ϋvE>}̇.zZ] z{ ڥ"#T|Y-!Յ>f<ڶgv6xISP b2X2,\ IAMLH+=ծRJI2JMX9 M<) PD)&׈h$$䦱R)4eq]ȡRʐ`6ô3|aD-H*f ,"J`FB@PY&|cJwזc&Iq|3R>nr,-&5xE]zLL$}Q.]sϗ AJs]udYDJ +e 0H |1A~;Qly9_.X)>b6i@*Wj1i2UfmfY +< +9;fKiFBl5>uCCjbH%_HII'R$bRWۓ2~LtX>Rߣ081r9+@j"A,U@lƵ~&@4V+B~N7b +EApDUEFTj)$"YHDl\rCK3&%Ƙ j̠ Єa²r8f!L4A1 $(RlR5 CA1D L`"1%0#m5P|p LډbI|9Zle.4fӐzuH aư ܯ}.R69[L1H[^NXWKc‹>x9_lLbQ|ZawvQ~ḛĦ`)}@.aZWQ .eLE.yb=T"DJ4n!PuH2ScB[XIpV0!H\0t!CҐ)`Y :O!f7A "ʐ`K@$vFwiV-CH0idIfi :^$ֻvZ1ɀk=E#{jx*վ2OxʱQ +:TbՈeUȸ̣<%9Z〥"[ݧD `cS ^rao|w4U!24A#Iﰜ'0,*vfy2vY8mU%$e7 +)R0BAKlAQ"-^#0؎X/ljRa(Kߴt +$eH2놜T"uIʐ@vBA-$(&lG1"-hr& (+y2cj烑^L9@e `ƙ&tܴȖ'(>>2WIZH;($ف05i@: Y8") +R5Y6kwB̾lwR}c߻xrp.>, &XB*CP_$`az-6ULޫmCLDqeMea++mCδCQ1I[LS4dAUf~0-`(>$r+mTahOSXR8 VT; 6%dtPFv'># +Yݝg vD>bZB*C12JhȵV̲.pvlWXouvku)JyVy"Qrs*vjG#stl&hjLU"Ur,Q.-"MH Y6ᦄTnL8aV5YE48E]rXòqy%4aGҁ Bl˳|@De S9asjNaQ*vwr)1A $`sD"NJPzR|$L ]{_J';:i)9"GX"xK9粡οs዆BGӜ]7U Cs*Cs=J]_~0 s-;ZS[Ъ>7rgzO)Ʒ]LDi+:.[.@YM!"zX0Xe]E +} \6YQ%((=H{U|o1' LZk^Q_;bHzf3]{]M>Xz s-K.ZsMZ?OWܦ7'E\ 8X1Ux؝)1.q ;*3U>JE\P--l?|8[~F6"@ӻ;M4%%0 ưYMO.:ʬHDb ٷI0Kd0ʨ%x6I +3ug z"۸pTS]Ծ S+UpNuĵo%HCGFIP(PAH%$ qU(:]_DD +b}9U .?ӾCr.N2iD$`X)OÂ&7U +e\N7NwĻzµUسb8a];{t:]̭  :.{l ={k#h*LxL+jhx 8Z@(wq׸`ȗ*p`u_DtpybS)җ9P#YVGם!]u2@} _[dIvjb?ž+iv~,PK; % t Nn.࿢#HVvMX$Vhy6| 3Yv*ei&w=/߇ıaFyȁ)95twO(?:W˔}dUw0 헔7?|^` Ɯ{][BvpW̒ CO^FR{С;<ي:<" !JEq4Ydg0?9Q"I+ʙemrI mn&Ui7;,! }Xxt Qw\cݑlDRy_kB3ޟ;6FfD1'\ՓIt`ۭ^J/+bF;\\>k+.zԲz5F;Ñ0ir5QK&G` j[ߏ `0zH3rn]%{`)Rn?=g/.hzW.?B1D\F8.r.d+iݨ𫶒dzQan!_0Gh6q;*tAnHf;!#j.7Xqt;BWG¤ Fx3) $j[]  S  +_⪪衰-\OOT,5w}vu/JayBA |`}ǓT{x1 b{;THAY$7 X/Q4-o +_2JߋҀ+~4` s$މ8@c۴<&Α#ȶRLwe(]²:l;;k;sSAgQϢaʝm2beE w%sEո,+Ԕȵڅ+@| qdolMc+fZq k>cXԀpx8ZnhݰKt2 4*2BR\}=k}usPYt!&kM 8 Um){lVI3A CQG6 + bE7k4}A*!hAm6Vrqc#nDd=-Zi^ځ%: u;6;/F|%Fw8C/.KNC56qGqAkpħ +jԯ:=*^,Diexց;wms-OM%QpnA`S-'.nºxm xB Lm%rk͎\PԂ˪iexpɽFܭB/%G뿠 +v-v`7r6ݑ @U-@eˠbV*r2ߗbaU#=:k׵(C8s5LeT! gѠL{.Ӝ`E.su".@."HRx ·K.L:LmoDӫH9mRctI\\ߥݺYR4eL>wv#j3`9)k#0UydA~R (6d>=7)`ƅ5d/t㋵^i%tj_OF|.omɴ@92]t9-ӦK"cY# ̰]6Bㆵ hgf8&pMDӒ`f0ENð±05fXuReKWJL.ӥ*IoGiУT[ +ncgT/ӑCekh]rGVo" CAM2.z>ĞMIה&.E |9 ,_߱lǘI&Ā-=q۳\ٺIg=!?|9&sMgQ ?Әbn,~P[6MmFSeژ)>f%f޶f yfB^f}w]4 +ڋc`<'VsFT2䒛THw`^LɇUpn 7%μ^y)ݎVQ?K 煼ɧФ` ֞7=yeaE N+~ҊX4 G`IN,ƙ@ UռDU{ٯ(w\y=W _q/YШ\Jko8&9~mB]Jm~tyUpN&<|]TA<6BCm̰AEE(xm FD,''gN-«1 QbB KFff,#QoL1 g,-362grUhI5SJP^+C\EChV +%$iL"c -i9Ms 4W4Dzdz2a.r[T}J )9&ok||I/jz@.bшR20Ăڐ@"68Oy]C,1Lru5VnLWF|W3 E". +(3^މHoN+ X@Y1]$25[6B G¤!iCL#ʼ 1 $jC.NOT(Qc{wjQ؂1Vf13_"p48 6hpC#EK69ohT; ++[Lb\2Wo)SQ Z⬘g3g3;DrH@tH s)J,(Mϩf^!aj{ *#YrJ^abzIN^8D5mC-AnwgQ0,*BĹ4D\6:ޑ,kUL/ubgpbRՎЋ6_W"ah ,fІԆSEԸ&8,^! I/~㛵I3$'L{ߍ8cZ@D` +gLˌQzب:[nqui&66.xml9Q=TUHLm:Qqac:lZI3A F(Ԥ&Ѓ\{RAlt_gL%,sgFE~Zwd_g:]WV2e۩wvpvz+&rX{-u# tQBhvsW&6KWOM[*gV$~E$Xe7j\i,9:n@q +endstream +endobj +323 0 obj +<< +/Name /F1 +/Subtype /TrueType +/FirstChar 32 +/Type /Font +/BaseFont /Times#20New#20Roman +/FontDescriptor 363 0 R +/Encoding /WinAnsiEncoding +/LastChar 121 +/Widths [250 0 0 0 0 0 778 0 333 333 +0 0 250 333 250 278 0 0 0 0 +0 0 0 0 0 0 278 0 0 0 +0 0 0 722 667 667 0 611 556 0 +0 0 0 0 0 889 0 0 556 722 +667 0 611 0 0 0 0 0 0 0 +0 0 0 0 0 444 500 444 500 444 +333 500 500 278 0 500 278 778 500 500 +500 500 333 389 278 500 500 722 0 500] +>> +endobj +324 0 obj +<< +/Name /F2 +/Subtype /TrueType +/FirstChar 32 +/Type /Font +/BaseFont /Arial +/FontDescriptor 364 0 R +/Encoding /WinAnsiEncoding +/LastChar 233 +/Widths [278 0 0 0 0 0 0 0 0 0 +0 584 278 333 278 278 556 556 556 556 +556 0 0 0 0 556 0 0 0 0 +0 0 0 0 667 722 0 667 0 778 +0 278 0 0 556 0 0 0 0 778 +0 0 611 722 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 556 +0 0 0 222 0 0 222 833 556 556 +556 0 333 500 0 556 0 0 500 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 667 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 556] +>> +endobj +325 0 obj +<< +/Name /F3 +/Subtype /TrueType +/FirstChar 32 +/Type /Font +/BaseFont /ABCDEE+Calibri +/FontDescriptor 365 0 R +/Encoding /WinAnsiEncoding +/LastChar 32 +/Widths [226] +>> +endobj +326 0 obj +<< +/Length 27078 +/ColorSpace /DeviceRGB +/Subtype /Image +/Height 266 +/Filter /FlateDecode +/Type /XObject +/Width 600 +/SMask 366 0 R +/BitsPerComponent 8 +/Interpolate false +>> +stream +x սK򢑸$&$}yDHXt@vAveAeUTP@""T٧ާ޷Nϙ3===3=S}Tթ3M}whРA 4hРA 4hРA 4hРA[?hРA|-u%4hРAFG!c?A 4z,kbG?РA ,5E ļ!뮻* 4hРAFV@Ap@ q+(&  קO3f…_4hРA#+pḱc0o~IPK)p!dnmڴi>\YQQ+)rHEEEEEub4Ό3馛#@R2 A83򀈀߱c^@ L 4hpn:[oC| 4. + &o߾7lUW)hРAF^m޴鷿-x>},0C->sFRQҠAtxĈf $xSy}4hРAFkOfͺ[nF@aH-viРA<l\!`(DDNB 4h@(={v2 +;AOB 4h@(|oBYg-!j|u۷̙P8LEEEEE:[\oӧ pZG`ӟnܰAR2`k-zM7݄v1Ul ; +3 fpǎF1wDEEEEE)v_, 7ܐy/!doʊ +jhp,oG"!a;[D!=Y vw"Kxue2pA"Mj~/TTTTT| +qlCPdtڠnW8]Avl&Ν,!j"?>|nFie#cF_*8w{}RGRmlWپ~Ӌ7N~ifRGwdð&l + g+G}r-6}qRY].ƩzLtYkO\r# Qa5K/,  akOW=tw9 v2'jֿAdr\ŢM,̚^*E|WKFBMo~_ТpMпLTHryŊj]SQ] + gNF&M=}@]SixuD#VxcӥO=ԫ6M8ΞnQﭕx뤎 ŶNNk;֯Y!n^αwgK׏3F! 56Y^(pb˝ۧʚZ c2[`k`>e귬N[7}x`)W_^۲ R4x#JuL(:s'(-t°U=|z"oF^ +^@6eʔ_W0 r… 錉9.`Iiyk* JH[_2p4N.OİgG#ŏ?$X͈kxPySdF_۸HT%/i#(txe5ҋfOT.)_hvzUu(s&[ [t) -P HHuAuV0C) +#7R͈U]]ɣjFzzн/ي=S_W-n3<R93xѸU hɌE{34/<[5>M>f D4?0Z \lY߾}ofcLrn(~0cIe`2^sPh*tQrq;ݖuu& ϛRfN3\u2ପ װ5w~\ h]P$ ++i5ggKP4l|ts͓7aq׿u&CF9 `4,yzqR4h\QHMp$[Wq5O>g뷬_></8ΣQ p7kLUBvDenZɸaS4f=U + 0PfV $+qZe"˫ӠA;rV9/6xOҧFoz~{1`Q~Ya ZP8HC'ACZ8lh5Df ++/+0ܸMy"cH`);N҅!* pu(,РAk,0O%1)!UGϹa& jc `d'kqhcq^OI>lsUS,/a̦}q:0 kWalA8AذoQk_^ڬly!`|Y:.^/wy},-aAL.D;-<%K*GшI6CR(v/"RYzkRvt(geS +_^ۼZdN+%cM).xTQ8铃ǔK灻t^_e we)`ԧRxF07x7o|}\jha΋g0y.aM ,^u3 $">^BP(R+*U5}aݬ w C =} + E"~~ +jF>Tv9^ax5*s^/0vt1'p0f`Yvvd` ţdT.[3Q3vV9.Q)hTMG>)q[pOȍdٕCL8R@yAO51HFEɕy+**%rK&=Կs3i }plW̟*\ 3< rVW2vkï&Dx %q%S^8xPq#Տo1Zɴ[N"A(!{q_SsSÔٕChL 1Hh f-5FEE 2b웧VfSF' q綪wTd0xUu~R#/Jy2D2V~n^=_F4>ȯhRE]*j>z{ +̢̍Efe0 >y4***R\08dΚѨ\MB+S\m҉#ͭ{fv㋶ >=Cb2:C8Gpe9٫U׿Ь~>Wu9O +/; 7uvXIf~crfEY$`erP:l,UHH$ *%@ӱ#|b43VL7}TT7gRwk?|_ AR]\ + r~|lU4b'];G3|gQhH9}A ɱ1V~N}HKA2PNm}"3jJ P4fdЊwvn涷@(l ^6@iM㑃 Dܵ_wiph=đ` `UE{X/a +b%dSG6A’8me)).\L%t \xm 0;D{5RQQZ\߼ W/.mA/yPdHxQ>q!hU>P=~祳aD;#W,N*=d':AU EٗJ|^P9`OC}6==Z6 c h~%L~*Q`o,ۂ, `4pIh ab2] `" f[ +پ\xvq/;F,MKl_|]|I|.,&)&`y:A\:zн5?ZY5=B:W [tJkgO9|`K&@Gj6{e\3+ @dk:OOҲ ޡ" YקR}KsT-3b۩ m쪕 + 43p~KcÛTC: Kr@He|IJqpU:+K ݹetv +u%(1 cZOߴZ3>Z[J}-cK3YU|& GP$6VߨW>7+KV ?G#iLw\!`J8 +d$& `)I.Ғ7A BLF0hQQ\Q⍏VnjOSE9oM.;oĄQj<^BgzEzBM?e~xOgiJ 8Y],$1@53R䮾\>2GN?Oi Cpr2soKMQ)!:OI' 7 S}a6Κ*IQۙ,'jŶsTT=ךz5hATV%4Rzꄣܭァ#ţK q)`-A v M.ho8!w&u "gӃ $;q!]l*g'EîZX2rxȣwX6j~Vîm=; +yyLo,m$5zMdN1sKϝ"=^̟~E,2.'ZGR q[U?7+/q~?TKl8hH^\niu *y0Wj9ۻ %3 2NhhNس*ȡP$ Ke/5){o/ײD eUK PHd{h\;_ 6/5f>TT=UX󄀕?X4F3, NG?R.yibM)͜|' qe۷_> X^QR;uhăqBre%;; +< Ocx’1D˘kp oڹ2Y<@ =$t@ d UB2 +!@(j,t[ڒ? Krr\9v&7Ѵ{`2OʳQQo?Wbq)0?]"22kq\2nx 3x614(V,ЂfAD.&Mn APfw!v) ~%&P(w%j-krAV?DwM"jE@:,s{Bɜ` U/T88Eaegx\mؾn8zM@;/yOP*K&m^&vI#UbTZI6vҹ intБ"! |ezac˙E"cp,Kr'Vy : d;E![VLMWr4EJ+i:ϒߟd3ǧv&0gkk帛-Mi^\{k_KPϭQU=xgŽW4Å[{ ;{鼷vu%bf1v +S bcNzH3% +{Ha^\ llTTqE"^IxVٰ9f09| /e{^6QG%19Dm:c1{eڭj +mغu:WРPdRa^K(0=;*4a G8D4F%_BݔxK ]!TH׀dҸ`re#9@.3j3kLy6**Npј+{!bQ`|ec]5oUE5~2>qLb1&0.bEX>?*TfgE#GȤKfnSM{95=!+I/C2p v[xóuGEW;r\G(D3)06i60uq$L?e"Gt5St$p@>Ɂ)<O{o=|PUF ƇD.B~5Ư{%9Ф3|f^٪< l8Bf\rπSv͙|{ÈAUjG7.\ +7"/Q(9S2eiJu;û|`vE9HF`Ni űYU;6łC#{REԹHloѽCK/6]6mL Wϵ *IuFvr cRZK? 2YM{b#IPÇ95M#Af?TTWxtZEobC1OuxڃOT.Q =3֨P 0Z(Z2avQ(AN )=`UjtNtJTi+ +A'ϧGIz^UE@~pjGf#~r0[Kbhq2ɤ]b:2}q$rdه9bCE#N_o5]hzE{e@c΢h *5hLwg#yaCpn;Fͺ^Kj +>@;8>0kEh P%BPo7~kLC"$p83dB"-!5btÁu?,|Kio]\B!!S8 Ȕ9'Jh /;$)<"ӣӓb&æ/Cqv*,Q4Z~| Ij֯==avߏEɐ@+PMw0)UKp!Ԇ?㐑l-<4Y0^8aB_< AG[Ī#F_ሽRȁ|v :1fl6yr^ ~Z#yz뚚 /}HwBÁr4-d34h~q @: Ab2:!=!fk75)PUDwX*cVSl +#24tySޓ/V.p%~Xp,\.GR  m83Nɴ_f,pأ^YϏ)T#u5K G!1ëA"^UխMM+(9ފ65 |fs?t#< rX#mQYKs0m&a z#J' ..w QՑGޥ(8gJ,9*8~us\<#1VxzrӲL&g޼ΥQ{fbs Kps o~D <M&y`p(\ vN\Y<8`:- +\%wOM:_\&뵟9^PߛYd9 /5.dyZ}Opq HL",5lH^9 Vo݅<|6(h >'P O AMz%`9ӣO!*Ś;!~6ϐOo,Hӱ#1a528sX|H\@8f/@t/1H|wa%ꘌa8r'*0^'E|Uͦ7PبX0UrGev\r0]ic9ͯ.NFQQrL@4~q'![b APɤ3@pxp)r ac*^"ݮX6_6qn| AsMS.m=s*(1MZJ0P5pa = m9;_#7p/0*\k2Y>;, GڼQDcNHų3`1jĘgl ת8!?f5p +P)9&[݅r 6HQMp:0(D,cᯀ@4'x@`e&8*L~ Uem? WwmMc+F:AD=bDwUG#ۖwrgCDq8 +R , )^-P]z"s'r0  %5?~#wo$tS&K3("&bFWСBډ +P8'3gk a9;6BtsDEvC6|vxl$k R\ee?;̄~aDu\˜DĂ3l, O\ipl1D S)PRS^q-!24TTWGw(˔MDhwqTig慄;ݻ33 C1ƀ-6㜳`,g' +ZꜻrɺW}\nI-u+=UNu6{sNJmsԾL2 +}l7Є6J<~<1 z[RZ,*ɤv߹M +I΍pX "]}AsjA4vڥ *F %QVK*eݪsj! 3*PGUxC0._NW12p"p6j}&w".m([`:w4Yml݅()pR>Oؽ؝4}xnpPO:#ZY5}?|:u\]b((5 Weor: ϓdФ_b0 !C!#"ΫOYn+JܥS]uN;g RC!eE([a?2+`W3|.]QE:97vM*&B8ݺ>kCT%Q7_9czХXx+ǢYa +fBͅO/%K=m(H\jqlՎ. a ݷJ73ן~rkk;ׯԿy/%6h̉6:0>dq6>]/OVp' ,8}A fB)ixU Ⱦ轸g|4fXʅd I&ņprs@󃝤}퉞 $2}n^*N҂=yꢠF˽,Pب7ii 4ĥ%v^AFCQQKA݈p!CZ-`ssOF[?TT j[Uiu#_nx`T݈<_mڦû=9WdX ߸ j/ +8w%^3R!8+fn|9֥ĦiͰ3+jW[&T@XBIkv%3iSiէMyI5??{|0rP; NV*0h-\jrҍ_.9 =<!\1T3( G'#p~/8wE 5/ d tXU`6@v%pԧF;ut; kEZ-Kgk^m,Qt~PJ(|usÒeA:wf-δ}pn'so7xc&t" А1F{~xұ ڛPmzW!`@e";8Ȇ J7\}IcK""HD\poXbIzToB!3/Go Li+G*Q!<_NKۜ>apEJ4( +J>LBPd)/M8NTlLqg+cBds +(ev78HY0<}Z_ӥԺ)upC!CER2ƉcwގT9˧J q*S1C-d-$O꡿faI"rr0{)nC @=x!ͨ( ?T79I$ pIg;-K%vR.AmMWL7X^GC'KK:Zmh )p{L}N88y>ws +>ZBjG&ej&CZՑ}&.0&̌ cB^;$ IS17l3'R)B 7aUڑA%OދkYC5{0`]x9;. I\y2)2]t˄oy;v@=nDIL$pdxӏ.w5)8X̹lmL/їap[V=nJw!p &wwe 6G&^s DJk@Pr N:vPL4gsQ͉2S$3{˺h|.1/r|q؝)n`vvO3x=5[-ec'ǩl|ڰR")-w9;5/)VS)4 5l(ٸJI)]/9c\BcZHq@âpcu5D8H? s,ꪂP?LPm  !][ֿuLmh87Ts~+d-.`sC:dt`6uUρڡ;5zSn$ "e—ƝMlck|S𘩎dj9x5ɚ!Q@5X%ĕ QvAt^Nh}b 3.Bj!C=\Ik-״tܨEIE8uwL=ANV/C+ +F쑤*(Lt S`EmfU< gdsK #YIG%mg3?A3tN}j5 \8avJԛ`8$?@:Da(hjz5Cd0Q OR9TY>>qXNuf7L76-8k9%A_08 8nQGx|m*m73oז#*J[כV/]`bV,P3d4Z}ư/[=1y$+ 9(vAW,?gpSVmc%7X0:|DT=[)I;P0'ٵԲ EzG΂Ƅv +;:%[HI@P24~ǽ]?X}nWHo"pұ|.!0RWWJ1 gv R+ǝ%hPVaFNşY +,+muDRi H+zѳgBJY'!iRp %ے"2*[k*pmo|3jy.9ЩegjGLba?an$(odq}CHR ʶ'RhԹfuDB}@<ڋUNXFK>J(%~wʓ!*(t(^!Dw;ÆDn^#}|!EmeeL 3?ؑX@%u:!RP&|gbRO5gAmHI8E SeeBJ#HÃ"q[cWb,HM%cOG5q٦}tYKH& bq~);f]唂 3i+;@jxzn@2]Lm}'Ӷ*pE. "%HE_ސ)km 8T`=}^Q"|\֓+240%/4G<^ Y]~(2ھ?xMVPcۂeA'NG01ꌃH@%E"v4No*^_o?*?]6wju̘! +'?(r<u_qoڰww\rrgf@Z7o):#!'S\+:G,@ݻVUnmG ?4ncӪƩ㭋fs #޽:Ѿ۸p4a/9mvd ӫ~P;bC]hB1Ui8Saݲxl NErω˾52gqYC{?"a=Z̮M;񡠨$T#:|S@= O(BjŝDy\XÂZ# (ų,cl/n2ξby;oTcs3WoЀb*?7 F3.ttaL^#uTvϽ aVu>un^;@r>ExOO_|!݂J$6 w^~敧լEcDyB{^?8cv"D$u9C9{ u6d]4dh0 +P77r  + +/ۢٞF2jKw:v @ڹ$EH2N,$!"%6y)cnvOjogiͳڼ Ů<>C_rP٫my2S\\$xh q!pнooy=4w|H8rR3@QKپNe=E(h~(rj3.٪`~QqP]rfPi39D+E}viCKp?$}cx$P ˭MK.z 8edvm hr _ ]]"U0ۜ)\,F[5O3( Tq[:,3'ؗ͏(|,@~8RC/9V,qQkc™U>ܺ^hKЩc]s& VޟyƕM'a>rc{e.:XB)Y% ҎIhtVCcE>6H̲ݥ5>5թ6R8被_uFtҼd_̓=7WdEKR5Lc\[qy%ɘ7tm]^BuAޓA1%9̩x_,I*9]c[2ɡn}Yq/H$ZW*6dP>"h%kv.j{cyQlBuzų'LLTATU ,^]0<Ytvm$W/Ǎ|J!A͠ح`pp 24X$ `#p,m2.P+ %K -Λ<{Z̐?F9=-7ew;sU׿9͜ k(Ic-JKB t/ $uedYB7m\8m{za@t47qARͱNռ)#d:4]߭JB3=3(/ "Q/$Uz!r*JnSݛV;}tAxT=8M" ,2/mB>K< \r՘Μ)/lepАA$ >A _7lkݲLPؾOdQtoYC@w NԎWVhĹly۱٩D 5 +pܵliܨd Jg̘uI/lepАA$.6ZcqnZqq6{Eo*{ N$m#(E`{ebe &gZ,,|\.5͟n=#\]zg~堒Anի?0oWU} Msd$؏aw_ut} ,ж`N)>S~omC /6q<_׏|n•T!* =0asݲ[dLP?B'Hv%|y%1?.)6HqѺ`Ŷ&UX(bd@)&!P [a676bؠb!x{Μ)bjIM )ҳr$o9mȐ7loE  f ޹f) eYAb#ϮR@kj^Vx\V#" % OЍ[׺70l72m-ɩSLuqќe(hɜ{l[܃Q Hp'+{|2$p{.ݢ)RP(pƩ={=<]ƝNj# JT]"0l3'4B#\8%B3dlU;9 iE9H2OK: 4dP'"0jnGf5~8:sB0%tsYҴtniī`29 *HU{j7x_#$H2L<+pcC[/y".epqvF5u{DQEQ[d*tfAC u$,$X:kbcRfxKbsYEşE*o + @G ۲,s¸6,7X:7t +Afdt.|冒u#bLA @q3gq^3Ф` &UN0aO/08hРMuomLb6 T +i:\VNGF+ +PPo% ڥսqNsAb㇜f׾,DG(_28h`RQUWz6t:0 ;WݶpVedEPG84I@IQDuYw},&W ~PYԻygW) +@C_6m鍨f/ "(8>pgG.3 'Jl "W.Mk]W;X%({Y( ġAv$rdeృ!@*͜f=}Kɔ;$[D!C R =0fuʸp`⒬v"'N97,\+e]{!-3倪 є"`> XܮepАLJ=@wVŦw^mZ(0`xR8 C'[gMto^ݻ3p<'JzBf!JQn@2=%%؍+$rtn 2̊RcI$8VqiΔ?ֶpVH IP>4/m5܉cH@@NF +P9o(uH6ZtZyw 58h'@!#\9xT+"C9i((GkM͙j`t1f P g0#*d}ǟD H Ÿڪx L۴/6Fx9W +L'yεtn_Ba@<Ð9uz A TGFI3i=)bA#RDv(BV["~ u)ѫ`tACK! +NW=QZVr$HƂA#& ϝjlrhx(ˊ{R%`$yDoǏ{cHs?#) 5@-9F|z˶J /\2J2BW{@8͗3ik~t?݃آ88áA +)0{7 =Rכ+]n4<ߑ@ Ɛi IQX^|:#0O\̇˒qLd jvlLI^9Y!i`QXB?kbĒ7_-3G=;F*_xq(m+1C{A8q~Vͼمp ͤ0ѷgΔk9HgpА!CB ;r +~fYX)ZEgv̱﮵K}2mtWq+f13N'%b%+gԼ^RN4I\z2`_y9']kFѴse10,˓X.LS~OG yyY2\7rt:??dE'F`O8K6]5p #4&Ҫ8wLRچ =mY vlhݰ!O?; 2(Kqo[^ƕ%í?Դd.D0|ѺZQ.bQ*q4q .?vwY̬\[>}߾pVw_6V1vMLo~sy՜7- {80ʞXncZKQTZ$ 2d*X8wڹtN}q;N% Y2\^* .Ϟvm̙b[sb펥`SiN\W]!5}𖩄 +4w:MO? Bt3cyX0Y_pub÷{vHM Q> lUqZlqmxu9oѯ!@qȷ %ëzر3E)q1,K1U 5BƤǂ8{ڵn/66-kcmk>l{ʶJ7V,ZZ͡Qkc,!&$j0Baى"~/I1׹{sV?GqgYGƒepАDH;A2pU}aKD$L̀/F$bvfحa5󜢄mu:XUed%&1n1^@:yWIC6ACh$PUa[$P$${2㓆73?1o΃8OǢDI@HSXV aL%(*UW iEtTxQ$VH&콛:>u!"KOW K>:u&ZtGv{Wjέ}oٴ ٪+I|Q:~ T]O{`onص֙mm$}t*f4gs[<_}[f6󦫹%gI?y|}ǕI:(Lni/.v-T캚ƌ,}1kiM W%A@Yک+yʞ_`3n3G>|q wnxfMMѿ+cJm7[Vg۶~˭Ņϯ\O's-Idp:Vkˁm{v7liZȃr+IW=Ƕej;uqS]_&ED*j}&1rR;ڵ+cmoOOտzsYS'V}ʑIcT2-:a47mY]/ZyPbI7r]߼z,yQ9sZլ{ُ=HsW.δ~jj:OhǐEu^t [{9p*xNv;-֦>r#?*czIe ʦ/ӯǎ}_q%7mRŃkYU3n +-Ϭ9ګGikdpiUD:W_2_Uyj |6}{ZBhs9W/^;oonrXvY*fۗߒi[6~WbqYeT/[Pr幍ulZ}lnź/VS n9.~z۩K=A}&~Te]ΌC{Kam]Z[rtڛڴO{qr>Ld(V'?wK%}B W1uEUᣃA @ew`Pt2:PTF*A @evB&! >?E*A @et0;hy}~ B +A%wK&! > TF*A @et2:PTF* f13$dtl=^ L +A @et2:P,=/%! d1ƘQg1d1 c1Gc<:cLAc*2Syavl6= *x0(:P2t @et2:PTF*]0(:PTfMt`d;t0(:PTF*A @etp;hAIA.\s tP:Ev0`S#~d􄄄8I[vpѥ%%N N0tXIW_}^uUa^{mLLLQaap0I,99YM'؝7QQQQ [ #\I؎ۓp'i;x`!~?::z̙U#\IXܹ_DM&h秌*%K#/:jTBBBw,zNccc7od2"~wI$^[l>|!C^FǍW|0GBH$^Æ  %iΗF  ]ӕStdkcNNRR~EWOH7gp u_\˂0؝WLt}$4i0["~肤J|H0:::..n٤Л?=F% lGB9Nʡr֭#IƜdџ`/4s̑_ +I򔙙G0$OP'̄0-- ?S"Nb$ICv%;xHM&5DH2_ MIIILL2dD*&&F+Œ`¸;+*,nhl$+@r#ёHl2qÇ'$$H$O) %Jatttll<#F͕SZRR^Vfb1z` fs:jpذa#II$> +endobj +328 0 obj +<< +/FunctionType 2 +/C0 [1.0 1.0 1.0] +/C1 [0.800003 0.800003 0.800003] +/Domain [0 1] +/N 1 +>> +endobj +329 0 obj +<< +/FunctionType 2 +/C0 [1.0 1.0 1.0] +/C1 [0.800003 0.800003 0.800003] +/Domain [0 1] +/N 1 +>> +endobj +330 0 obj +<< +/Type /ExtGState +/ca 1 +/CA 1 +>> +endobj +331 0 obj +<< +/CapHeight 674 +/StemV 88 +/XHeight 484 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/Descent -250 +/Type /FontDescriptor +/Flags 32 +/FontName /MyriadPro-Regular +/ItalicAngle 0 +/Ascent 952 +/FontStretch /Normal +/FontWeight 400 +>> +endobj +332 0 obj +<< +/CapHeight 674 +/StemV 152 +/XHeight 489 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/Descent -250 +/Type /FontDescriptor +/Flags 32 +/FontName /MyriadPro-Bold +/ItalicAngle 0 +/Ascent 989 +/FontStretch /Normal +/FontWeight 700 +>> +endobj +333 0 obj +<< +/Length 262 +/Group 367 0 R +/Subtype /Form +/Filter /FlateDecode +/Type /XObject +/Matrix [1 0 0 1 0 0] +/Resources 368 0 R +/BBox [0 0 595.276 841.89] +>> +stream +x]j0E]w#K~(qwMiE[k($*JrJB3!͜9q.^wIڍGdZcu5&",H)cŲDIYȎ$ D0rG"PP.JȎk6-:mznܸ{=?U֙ =\$LRoeGTf#΍g PxF{A x7ևjvNΫNgI>?1f +endstream +endobj +334 0 obj +<< +/CapHeight 674 +/StemV 84 +/XHeight 484 +/FontBBox [-185 -250 1090 953] +/FontFamily (Myriad Pro) +/Descent -250 +/Type /FontDescriptor +/Flags 96 +/FontName /MyriadPro-It +/ItalicAngle -11 +/Ascent 953 +/FontStretch /Normal +/FontWeight 400 +>> +endobj +335 0 obj +<< +/DW 1000 +/CIDSystemInfo 369 0 R +/Subtype /CIDFontType0 +/BaseFont /PPCZHT+MyriadPro-Regular +/FontDescriptor 370 0 R +/Type /Font +/W [312 [311] +] +>> +endobj +336 0 obj +<< +/Length 231 +/Filter /FlateDecode +>> +stream +H\j0 ~ +Cq]z2aXpl%3,QC~:?[^[ acѓ*+pަ˷LTZnN- A5w+][b )AMjL:c։zF*oXdC#j~jT?/.⮊s.̒' "xǚb vԏo +endstream +endobj +337 0 obj +<< +/FunctionType 2 +/C0 [1.0 1.0 1.0] +/C1 [0.752945 0.752945 0.752945] +/Domain [0 1] +/N 1 +>> +endobj +338 0 obj +<< +/FunctionType 2 +/C0 [1.0 1.0 1.0] +/C1 [0.752945 0.752945 0.752945] +/Domain [0 1] +/N 1 +>> +endobj +339 0 obj +<< +/FunctionType 2 +/C0 [1.0 1.0 1.0] +/C1 [0.752945 0.752945 0.752945] +/Domain [0 1] +/N 1 +>> +endobj +340 0 obj +<< +/FunctionType 2 +/C0 [1.0 1.0 1.0] +/C1 [0.752945 0.752945 0.752945] +/Domain [0 1] +/N 1 +>> +endobj +341 0 obj +<< +/FunctionType 2 +/C0 [1.0 1.0 1.0] +/C1 [0.752945 0.752945 0.752945] +/Domain [0 1] +/N 1 +>> +endobj +342 0 obj +<< +/DW 1000 +/CIDSystemInfo 371 0 R +/Subtype /CIDFontType0 +/BaseFont /KozGoProVI-Medium +/FontDescriptor 372 0 R +/Type /Font +/W [0 [1000 224 266 392 551 562 883 677 213] + 9 10 322 11 [470 677 247 343 245 370] + 17 26 562 +27 [245 247] + 29 31 677 32 [447 808 661 602 610 708 535 528 689 703 +275 404 602 514 871 708 727 585 727 595 +539 541 696 619 922 612 591 584 322 562 +322 677 568 340 532 612 475 608 543 332 +603 601 265 276 524 264 901 601 590 612 +607 367 433 369 597 527 800 511 518 468 +321 273 321 341 241 362 241 273 677 266] + 102 103 562 +104 [456 562] + 107 [562 416 472] + 110 111 283 112 [587 588 568] + 117 +[247] + 119 [330 239 418 416 472] + 126 [447] + 127 132 340 133 [455] +134 137 340 138 [1136 857 384 519 727 952 398 834 264 275 +590 918 605 677 769 677 473] + 157 [347 340 599 284] + 161 163 845 +164 169 661 170 [610] + 171 174 535 175 178 +275 179 [715 708] + 181 185 727 187 190 696 191 +[591 584] + 193 198 532 199 [475] + 200 203 543 204 +207 264 208 [584 601] + 210 214 590 216 219 597 +220 [518 612 518 539 591 584 446 433 683 468] + 231 [500] + 323 [500] + 327 389 500 9354 +[562 753] + 9358 [650] + 9359 9360 909 9361 [532 264 597 543 590 661 275 696 535 727] + 9371 9376 +845 9377 [375 387 345 369 328 366 364 375 284 347 +340 387 345 369 328 366 364 661 535] + 9397 [535 275] + 9400 [275 727] + 9403 9405 696 +9406 [532 543] + 9409 [543 264] + 9412 [264 590] + 9415 9417 597 9418 +9420 596 9421 [834] + 9423 [475] + 9426 [543] + 9429 [759] +9432 9434 478 9435 [276 602 589 527] + 9441 [509 465 280] + 15472 15476 676 +15478 15479 676 15489 15490 608 15505 [676] + 15507 15510 +676 15515 [753 343] + 15725 15726 676 15727 [826 816 871 901 707 601] + 15733 15736 +597 15737 [660 340 514 539 538 541] + 15743 15744 584 15745 [532 340 276 433 340 433 377 468 340 468 +595 660 514] + 15758 15759 +609 15760 [535 708] + 15762 15763 707 15764 [727 595 695 541 367 532 264] + 15771 15772 +472 15773 [543 619 607] + 15776 15777 601 15778 [589 366 597 369 340 609 689 703 405 538 +695 472 602 601 276 433 597 901 548 358 +371 606 366 369 607 601 390 433 468 366 +268 416 601 299 518 602 901 551 601 435 +418 601 591 535 612 607 274 602 559 265 +593 543 479 587 532 901 568 515 591 800 +601 416 422 521 567 366 601 0] + 15846 15847 +340 15848 [336 567 340] + 15851 15855 524 15858 15866 0 15867 +[446] + 15868 15879 0 15883 [547 511 265 604 750 712 551 575 557 594 +428 401 214 578 325 371 189] + 15906 [677] + 15908 [401 604] +15911 [503] + 20317 [344 422] + 20322 [715 709 680 514 707 541 540 524 325 601 +369 609 535] + 20335 20337 689 20338 +20339 276 20340 [600] + 20342 [514 707 595] + 20345 20349 695 20350 +[921 591 472 543] + 20354 20356 602 20357 [265 524] + 20360 [264 601 367 597 800 518 927 623 669] + 20369 20370 +676 20371 [594] +] +>> +endobj +343 0 obj +<< +/DW 1000 +/CIDSystemInfo 373 0 R +/Subtype /CIDFontType0 +/BaseFont /PPCZHT+MyriadPro-It +/FontDescriptor 374 0 R +/Type /Font +/W [0 [500] +] +>> +endobj +344 0 obj +<< +/Length 223 +/Filter /FlateDecode +>> +stream +H\j0 ~ +CqsA[˲>c+SЖ lO&@_9t&-TqmZ|Dn1PSTYqL> +endobj +346 0 obj +<< +/DW 1000 +/Subtype /CIDFontType2 +/CIDSystemInfo 376 0 R +/BaseFont /BCDFEE+Calibri +/Type /Font +/FontDescriptor 377 0 R +/W [0 [507] + 3 [226 579] + 17 [544 533] + 24 [615] + 28 [488] +38 [459 631] + 44 [623] + 47 [252] + 58 [319] + 60 [520] +62 [420] + 68 [855 646] + 75 [662] + 87 [517] + 89 [673 543] +94 [459] + 100 [487] + 104 [642] + 115 [567 890] + 127 [468] +258 [479] + 272 [423] + 282 [525] + 286 [498] + 296 [305] +336 [471] + 346 [525] + 349 [230] + 364 [455] + 367 [230] +373 [799 525] + 381 [527] + 393 [525] + 396 [349] + 400 [391] +410 [335] + 437 [525] + 454 [433 453] + 854 [268 268 252] + 882 [306] +884 [498] + 886 [905] + 894 [303 303 307 307] + 913 [498] + 923 [894] +951 [498] + 1004 [507 507 507 507 507 507] + 1012 [507] +] +/CIDToGIDMap /Identity +>> +endobj +347 0 obj +<< +/Length 233 +/Filter /FlateDecode +>> +stream +x]Mj0 >$3`(S +Y=c+,r0 +lx}I=u%L F-V2N΋LYG!%1%G,.=~g *XyЋzF;v.mGf[Dh0&X\6HO(ڊKḀz0oM>=TIusa<%/{hV"NW.Rb@h1L Gq +endstream +endobj +348 0 obj +<< +/CapHeight 728 +/StemV 44 +/Leading 33 +/XHeight 250 +/FontBBox [-665 -210 2000 728] +/Descent -210 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 441 +/MaxWidth 2665 +/FontName /ArialMT +/ItalicAngle 0 +/Ascent 905 +/FontWeight 400 +>> +endobj +349 0 obj +<< +/CapHeight 677 +/StemV 42 +/Leading 42 +/XHeight 250 +/FontBBox [-558 -216 2000 677] +/Descent -216 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 427 +/MaxWidth 2558 +/FontName /TimesNewRomanPS-BoldMT +/ItalicAngle 0 +/Ascent 891 +/FontWeight 700 +>> +endobj +350 0 obj +<< +/CapHeight 693 +/StemV 40 +/Leading 42 +/XHeight 250 +/FontBBox [-568 -216 2046 693] +/Descent -216 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 401 +/MaxWidth 2614 +/FontName /TimesNewRomanPSMT +/ItalicAngle 0 +/Ascent 891 +/FontWeight 400 +>> +endobj +351 0 obj +<< +/DW 1000 +/Subtype /CIDFontType2 +/CIDSystemInfo 378 0 R +/BaseFont /TimesNewRomanPSMT +/Type /Font +/FontDescriptor 379 0 R +/W [0 [778] + 3 [250] + 9 [778] + 11 [333 333] + 15 [250 333 250 278 500 500 500 500 500 500 +500 500 500 500 278 278 564] +34 [444] + 36 [722 667 667 722 611 556 722 722 333 389 +722 611 889 722 722 556 722 667 556 611 +722 722 944 722 722 611 333] + 64 [333] + 68 [444 500 444 500 444 333 500 500 278 278 +500 278 778 500 500 500 500 333 389 278 +500 500 722 500 500 444] + 129 [500] +177 [500] + 179 [444 444] + 182 [333] + 4137 [333] + 4215 [300] +] +/CIDToGIDMap /Identity +>> +endobj +352 0 obj +<< +/Length 371 +/Filter /FlateDecode +>> +stream +x}n0> +endobj +354 0 obj +<< +/Length 226 +/Filter /FlateDecode +>> +stream +x]j0 ~ +Cqv2aXpl%3,QC~:?[]; cѓc\aɓ:WM{Wn;$;j".78<0QWvȞ&8|^z5oTm(^LA9}N9>PK4ЄZhZ;5pv?<꺸CٕY 9')|~o' +endstream +endobj +355 0 obj +<< +/CapHeight 694 +/StemV 40 +/Leading 42 +/XHeight 250 +/FontBBox [-498 -216 1333 694] +/Descent -216 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 402 +/MaxWidth 1831 +/FontName /TimesNewRomanPS-ItalicMT +/ItalicAngle -16.4 +/Ascent 891 +/FontWeight 400 +>> +endobj +356 0 obj +<< +/DW 1000 +/Subtype /CIDFontType2 +/CIDSystemInfo 382 0 R +/BaseFont /TimesNewRomanPS-ItalicMT +/Type /Font +/FontDescriptor 383 0 R +/W [0 [778] + 3 [250] + 11 [333 333] + 15 [250 333 250] + 19 [500] +21 [500] + 23 [500 500] + 34 [500] + 36 [611] + 38 [667 722 611 611 722 722 333] +47 [556 833 667 722 611] + 53 [611 500 556 722] + 58 [833] + 61 [556] + 68 [500 500 444 500 444 278 500 500 278 278 +444 278 722 500 500 500] +85 [389 389 278 500 444 667 444 444] + 177 [500] +] +/CIDToGIDMap /Identity +>> +endobj +357 0 obj +<< +/Length 224 +/Filter /FlateDecode +>> +stream +x]j0 ~ +Cq]C`kn,8(!o? L`-}11.ae0I8oޕ&*-p- ƠK . xT ^~gj[p8ʠofF;uNt0-"K_E64j*gV!N 2OUP{,yJCT>? Io+ +endstream +endobj +358 0 obj +<< +/DW 1000 +/Subtype /CIDFontType2 +/CIDSystemInfo 384 0 R +/BaseFont /TimesNewRomanPS-BoldMT +/Type /Font +/FontDescriptor 385 0 R +/W [0 [778] + 3 [250] + 8 [1000 833] + 11 [333 333 500] + 15 [250 333 250 278] +20 [500 500 500 500 500 500 500 500] + 29 [333] + 31 [570] + 36 [722 667 722 722 667 611 778 778 389 500 +778 667 944 722 778 611 778 722 556 667 +722] + 58 [1000 722 722] +68 [500 556 444 556 444 333 500 556 278 333 +556 278 833 556 500 556 556 444 389 333 +556 500 722 500 500] + 181 [333 333] + 188 [500] +] +/CIDToGIDMap /Identity +>> +endobj +359 0 obj +<< +/Length 314 +/Filter /FlateDecode +>> +stream +x}n0E +/EyB +TX~R1q}1JF%.sxLT7ύFf-XK% Lp8JE +͇Nșy04IQ'kfIfnnOZRFʒ +]NvmFy.笁&P L`:uR0JZ* (/= ҩK3uIZ!@o:ӛեWI*KQՁ́YL[.xÖo:yjXLXD~2g[&Jڻ #² +endstream +endobj +360 0 obj +<< +/CapHeight 728 +/StemV 44 +/Leading 33 +/XHeight 250 +/FontBBox [-517 -208 1359 728] +/Descent -208 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 441 +/MaxWidth 1876 +/FontName /Arial-ItalicMT +/ItalicAngle -12 +/Ascent 905 +/FontWeight 400 +>> +endobj +361 0 obj +<< +/CapHeight 677 +/StemV 41 +/Leading 42 +/XHeight 250 +/FontBBox [-547 -216 1401 677] +/Descent -216 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 412 +/MaxWidth 1948 +/FontName /TimesNewRomanPS-BoldItalicMT +/ItalicAngle -16.4 +/Ascent 891 +/FontWeight 700 +>> +endobj +362 0 obj +<< +/CapHeight 750 +/StemV 53 +/FontFile2 386 0 R +/XHeight 250 +/FontBBox [-519 -250 1263 750] +/Descent -250 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 536 +/MaxWidth 1781 +/FontName /BCDGEE+Calibri-Bold +/ItalicAngle 0 +/Ascent 750 +/FontWeight 700 +>> +endobj +363 0 obj +<< +/CapHeight 693 +/StemV 40 +/Leading 42 +/XHeight 250 +/FontBBox [-568 -216 2000 693] +/Descent -216 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 401 +/MaxWidth 2568 +/FontName /Times#20New#20Roman +/ItalicAngle 0 +/Ascent 891 +/FontWeight 400 +>> +endobj +364 0 obj +<< +/CapHeight 728 +/StemV 44 +/Leading 33 +/XHeight 250 +/FontBBox [-665 -210 2000 728] +/Descent -210 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 441 +/MaxWidth 2665 +/FontName /Arial +/ItalicAngle 0 +/Ascent 905 +/FontWeight 400 +>> +endobj +365 0 obj +<< +/CapHeight 750 +/StemV 52 +/FontFile2 387 0 R +/XHeight 250 +/FontBBox [-503 -250 1240 750] +/Descent -250 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 521 +/MaxWidth 1743 +/FontName /ABCDEE+Calibri +/ItalicAngle 0 +/Ascent 750 +/FontWeight 400 +>> +endobj +366 0 obj +<< +/Length 2099 +/ColorSpace /DeviceGray +/Subtype /Image +/Height 266 +/Filter /FlateDecode +/Type /XObject +/Width 600 +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +>> +stream +xo#q36Yލ7 "dD?$8 \8aުvHUiED{lU^R8pነQıg7l4yqyp +?KA#nk?D0L˗& +0 #4i;Uo*iҙL& LǑNIS_il08[&r])rٴme=>3[zzc8A^eurXAUW唽F{~`f+;AYF⤳pYe +n>xOݻ;VeeYYvΩ_g">|_KY2TzzRg띦WO+حRywG=&v Yf~? aMM%L;|ϗ̸9~$/WI?+v+\9<*gNS!Xͺը+3]:_F=k3k/Ͻ\_o.*jYԃ!m. _E +^|}ԣ!~|yz`**̸ݨgC|=ҩ?:*ذ +fC\eFY)㮂 ˿ayQxz~ ~<ܮFo̕q;;VgD`{mJ:Iʗ/7Wkn>?aX]y'E||}gmJ + +sfgiz\ucIWAX 9zka|ɞא?-ε޹}k|U8e&3Zt_X>ظ6n/7oomܹ6X_ Kݎ_WY 2,;w^ٞp]/rrY{}|ʎ_e_oY~YE\jprRs!w55ZvAU'oV,;uKjX+ʥjِ;\q\6_eVN3L"[*#iW0amJThkAa$NWaZEaeڹ42uڨua\ +qD?&ԿoSn +endstream +endobj +367 0 obj +<< +/S /Transparency +/K true +>> +endobj +368 0 obj +<< +/ProcSet [/PDF /Text] +/Font 388 0 R +>> +endobj +369 0 obj +<< +/Supplement 0 +/Registry (Adobe) +/Ordering (Identity) +>> +endobj +370 0 obj +<< +/CapHeight 674 +/StemV 88 +/FontFile3 389 0 R +/XHeight 484 +/FontBBox [-157 -250 1126 952] +/CIDSet 390 0 R +/FontFamily (Myriad Pro) +/Descent -250 +/Type /FontDescriptor +/Flags 4 +/FontName /PPCZHT+MyriadPro-Regular +/ItalicAngle 0 +/Ascent 952 +/FontStretch /Normal +/FontWeight 400 +>> +endobj +371 0 obj +<< +/Supplement 5 +/Registry (Adobe) +/Ordering (Japan1) +>> +endobj +372 0 obj +<< +/CapHeight 763 +/StemV 116 +/XHeight 551 +/FontBBox [-538 -374 1254 1418] +/FontFamily (Kozuka Gothic Pro-VI M) +/Descent -374 +/Type /FontDescriptor +/Flags 32 +/FontName /KozGoProVI-Medium +/ItalicAngle 0 +/Ascent 1418 +/FontStretch /Normal +/FontWeight 500 +>> +endobj +373 0 obj +<< +/Supplement 0 +/Registry (Adobe) +/Ordering (Identity) +>> +endobj +374 0 obj +<< +/CapHeight 674 +/StemV 84 +/FontFile3 391 0 R +/XHeight 484 +/FontBBox [-185 -250 1090 953] +/CIDSet 392 0 R +/FontFamily (Myriad Pro) +/Descent -250 +/Type /FontDescriptor +/Flags 68 +/FontName /PPCZHT+MyriadPro-It +/ItalicAngle -11 +/Ascent 953 +/FontStretch /Normal +/FontWeight 400 +>> +endobj +375 0 obj +<< +/Length 59836 +/Length1 151804 +/Filter /FlateDecode +>> +stream +x} xTEw IiBwhHl,H %d4@̂qa1 +#%ﻸ8 .B~A?yԭ[ի^FYq0Qy~N^W#<D5^-QDkTWTy[ȇ2 [ekw1keu/NUB$XF4\=9yUGVw6=>_ A'h(TއwD7/ҢcU͝7w._EtEeGڋ= Jkcy6c y/9vn9+ӟ%ls8j꣭%{] Į?A ZЂƦ]'"[WN{=`Z!sc +/5 +47&LKJt,F37 %K)i"9=4(6yΑ=i=@=0pՇi M?f Tot}}ThMTlyH`ḛ_߀c'!|TmA*NCTx %TM~xt ?h\Ђ?Lq,ӾhBez!m.D9噴QHfm7( fiLfhTCJɦ#ygЂ-hA ZЂ1 Lss|S~4>k>gv-hA ZЂ-hA ZЂ{Ђ-hA ZЂ-hA ZЂǘVGqp Hz}:稡1`Jn=Ђ-hA ZЂ-hA ZЂ-hA ZЂ-hǶ-hA]ft؏0:E[2o{"r 9/EhͤTA h9m;i+mb`JFJ)#SF8VGXXXؘS]W>ԏ HXIQ=- d8 e0212vAFd\Q~O{+} #?{{:ӵ5i;i ӥ1+Ͳ3D*}^{t:܃X$Nԛ2(0PS!F#2h5P#7 H=DQ$lQ+&T Zqި/5&m2BL0S)BD1NdB +?=o $Ibȧwۀ>cw2Ya pC:h "K~$C֮il?nEpys̞5)6hIN0~\A~^nXwG9"keIOiOX"#BC&],(w}tdYGEGWAstt#H7GG +c4w:|/9m !Y5$CҍTp'-sD#WtAK~yFF:s#ePkD$d$U# ٪QE֧WTyRGF._H/X(L8Z3kJ]QUΪY^^F-z~K:_י$\r/Ùs9p9t|OsΞ'$=I)/0^iBC\_jmneͳɝ*i1U5ͪprgUߥ |20o~Q*Hnqx}<wEZ[d"PCח;s8 y&f\WZ2d-yAYIwqض !T*KMIoV*<5-.:ե.9qTF+\Q*X^yhZëRyp ++nQw4g+lp@T򠠧厗Ul;ޖZ+]dNuep<GuWu`@َOMEh&oxUa§!w1"Y,uryɱ6o4gaq׸ہS본TTgeS(3ʇ㏪_--UG* aν7Us9Se?eQTjIy.j;gAb +Z*ڛ絴-u Fb^8'T8yGیO玣BQXT:VX?̻S֗xrsJ[{λӁդW:e! 2TŒxN7>&a+0T٦'J7NƮ5nm/}'y"!#0w;JhRbmakEΩM4m;LS͈>\uH{\̻-8""G¤x>wToe邖RzP"U +p!D"9HggK6C?OHrm)wb!ƌM\eJG[{{7eT̥Y@͜6q$k W MPYy"d/Q` *U8 7R_KԻԘVwsNsY!_E|=EeVE>ℝJSME3o\xeMiCgϘFtL [rVT-tAWm ]ctd6[snc,1pXCeܠ.wa$b[Z#ZÔ^9*Fr†a,"@7\Cӎx%.3gS"b')NwY/y: ^7*li%1OMmq3xwH`~~ۨ,~Ӵg(ڳɣ~n~ukG?&aU 4d'(3bAm(ȡ=WJ|ħJEOحJ|ćJYx_xWwx[xS7x]הxUWإJċJJ<ijJTL 3灪TT4i.n7Kf212yf0Mg00McTT4i2$S +&m@mA +BPv +())r;7S6t2h4`b4i('4 b4e2v2\L'1eԛS3q^LN:L=R3٘ɓAݘS@]ٙ.LqL\geag4)""¹.))߭dw+tvj\Ldhg:d\~~bI%}irL1}upkL{L_K/9KqS.\1GL0!q]w]gwzMv:kLr+L2KL/2!3=gaz)'9 .=ӣ\|Av2q.tvmlߟ8cL[63Oz-Yb`6[naiMFr\wӵL0] ҕLW0]uqK.ẋ.bȴBK-L3gZǴ֟PZO:\B  P?8˟0 i7_dZO-˘`ZLuJN#12t*Bni>W3Uqd%< +rLsgsf1.ԥ|"/ t>0McTw S?4t +2Mc_ &pi<8vW@y@fP?4͔48KQL#c@Cn`lhG s3?7g`rqr>Lҙrz199gOΙԃۥ0ug1%3u[g9~\P"SS󀶖j5ў<&}_$Ā&QѤG5z= =T_T\7ר^D?֣^WoYۼijfTtpa|ς=5YUU*2k"37kgٞYYe<1eeZTi3Mgx9X dc(`$0À`00 2@? p'}>@o HzN' +8;H6 $]D q@,`bhD@@`Lcq QO?}?_{=߁//>>|>>> |    +^^^^vm~>`;  +l6wnnnnn6777WWWW @ p>XPf/0_` /0_` /0E=5@` X5@` X5@` X5@` X5@` X5@` X5@` X5@` X/0s_` }/0:?ntǍ:l̤%͕QD.VDR5g-mQѹP&D>zw?hQB Q<8i}C[Q֢?x>Lu1FBo5(5*CZBu@=5R-OtC$N7Mt~rZAgJZ8axVfQ^pgΦs =ywmtaBЅ Jt]IW㹸?{ῖnȺ+P!z{^Jc 0+qv1Gk5]^[KJNK(#E$g :j$.5>rE\¸#ގk^5w댒TG{0oQT@7dov܋; =w@IwanMi ~莊j9vi_;[?IЃxBǰ<yGާ 'QQ\z +H/+4Js(J@F_x^5F55?qМv)6~FOx%Bn]Nc#NP%FK  9 #!r1&Ͳ#99۹ch=vB=;t?:+G{Fd~'vŎɛ `s'[vԢPڡzȆZ=6[wf HJڕB׀"65@|_;}hC;{FkoȰczhzdY\O9vfOlo 1kݓNN6JB YXؔĔĄЃ} T{r=dԬ^a)$GRFNjbM 7ڄ2GupپߴO=),}'jb{Ul oGBD*N**e}DΈz9EEF%LqFXD)QڽG8ug3*.ej#23gώ:"2vu岹{ eTھڎ9;IRq! n^Zbbqzz왞>l5ԩ„5nOnZrS.)i1"LMn{8NJ6)>Oh6Qbԡ-&s-䏌 Ӽ$\ eяrl$dȃ()o}ܨOp>!!2Cg !3dpMMq![ a[_lYݖMEjɽ gCDdkh e6f9cb!gkk9"WVc{8Tf" &N`3&gjC NX'CCkNg9]HgM<}¡{U7^^9(5:U6Ta&;xQtpcNJ6۞QbR#Kۨ}gH3f4ZFjɲl˖D$'Nxc;qBB섀 @-PZ(tymiKh%-B)}7}mBhB{i {,KD:͌gkX CxS ֲ̽_Xi'l6|(fƒ&4O"z?(&4idee<(^}\NUX#Vӏ szI.bǂ44^=ij"ߨ&T;@W.M$`clVhu)бܖ[V|%Wo\fu$r)5g`䞱m]޿wh [Lx̽khW>spϬqG)Hr{>if %3gl40LBdI܀(?"r,9lBHTAlS%cO$42i<> 'LVb9 PS4;,ş\u dyc7kiQȃ~[ MW?~k澞Ǘ f+O?s^|(R\QoHGGVW8 +i ֠& a^5 y ^qD8@shƁu`9r9 ^rs*?>sT !X3?80AS}&#zTz~ʏ'x<ƣY/q-tV݃ m+55(Vvn@qA+K+G#R6s8~UͽOű6mö'w$ic8=ls'naH2o'HE7ۂg_2J9w*+['.ϋ.O$$j4ORr!I?&NVܺ]a^yv ykC#HYg _hc,Q*`N 1̳ ~I)HSM(hдc7h4 -64!a>N]3bjr|-WY4/AM-Yiv=rL!Oitc8+Z0w/yyҡ Fc#.Ic6 +M¦AaӠ}K |I0' +ahi3;< +SY70((EY.Fyz~,]ݻ?%WQl5k[wR}wXxLz-uqfkR?r/(#^߰>e(Sԑ%#uhm xOt0t/غ36Uxt^<;iN N NtjvNչD*'YTūT$Że8 N-qO'J܄S{O!kO1'}",3Ylmwua;EH +3LǢ~0ozkaeu^D hD^9kN{"W'.dttB;i 0{q&-][ +YSz͞%"]5ny6.5Ҵ5f[~„*þ5խ鎵{o1;'ʒ#=aniET}xDfdYHO9$!C&^|n +mW)F|B8J-|d>,$%TR:Z HR˯dE$$ȿGvRm5xGIh3'kP5(v +iBL2pX6ӣSC{J­D,͜8Olןୋ6jC7^]jHbo\{`BA-Ҷ?CK;? #To}=(ϧC_`GT"`|+# ޣ.ҁGxqff9 lrN9Zu5dWH⣣фDi7Y SE65)fڃ3d2T>dGE+=pS#G;V*E+U&6nJwVS'Lʧ `ɸJ:?FAmsA0d6)AH!h0Xaee"oDNc>gXp,q6;3@q|31$N9TGóɯRG]X4} 1 hNH^M}=S0~Qޫ;} gRjg>1Wf^c%G^%G~Փ^n[gZ#+^Hi +'3?j}k*Yiku7w=zcWڋFB7H~- umuԘتeG-³Bobi\=sڋowPuX#v p\bDG/$Y/ Ml' x1f'Fg0VS^WT0{z?G,-UXu5muE|r}OKO1fGs+V'Gj_^iYyoHݟz~t#^XѢn`,bt:ԵayӘnG1mU0&|4sv,LS×>{.(j?;Wm?rY5gG:U-?w̞τP쁡 R@C7=X=zxeRWVc4t)nb8z aa8B3+ w4~٨.6nif ?c$:uFp*]|xI(D87q΋s\U,>B^kArLΓxl.w<ӅX +sl& &Y)Y\ײ,Ӡ7מxY;J4$gh ԡ:ز݊ñ@7AA9~7GL[1u;Ú@r!ZiFuũE1z\wmȧ64o`؟:ķ\v$~w[]j ]eW>n}H}R/lzKͷ}6_kEkKb݆yxl#é0Gx .D)T OTՎ|m3 i7`e +>BvPv,A(BKqLmcű&!ދ$a$3,H ۇOzע+@R:/6>AD'Y݅o_B_56v5r:AXX/!_r-{ŠqKC?Ʃ6lu;z:{7 FiC)|oo7G:95SA+~ E=<:}|[z#>BvҞM@(~KT4o4 +V*~K_hgmφOtKHwpx-lv +wkV?fmKw?iQ4Th lBBl0E[Io:29Zbv&9X{$Z7h@oymKc(M1,##emwf G̑ΆEpu'.6ջk*eO܃XrJ 2F+* XR]r5 *InK8 O:Uae*m0yyS *cN8]KlG[|* IQJrQC* r1It+KppXާbć K̶npzK_\͊m5}Ċ6XY5ޤ|gt,W-Wwoܼ0Pmq{N VU {h=YQ^3'.؝fN w.V&:jc`=__E4a7S1UZ;CYry*-EpFo :]~+[8SLkKZ?[duޗ,",ZN<N¸{gx +>bR\u_rˣZ}eWPb˷d2~s;] !: +um@*Wѵ^f9u<r Jr봈؂RR CJUDEKud*|̑?leHi౶:>53Xižeyj. %d*EIsɂ:d,ZpK6K66HOI]PB7/W 0%%O$k z=! Cd%@D*O?͋2>AsFj~[S&7T5@hUF% $!L\3d^)F(/ǥpޙL']2"LR&5/?׀c xCCmg4+!<oSX\YIcٳyt7NTJ@_Ȧu٣jZZj(uim dwDHuSo -([G]w}-Y$!\ܾ~;RXhZRtm]h6j[odg|ySH6jsBn""UBo7gLK}㰢c +†?)0eK_[c8808չˀh~3D x;?ێ~VNH%95\38Qךk%֦ڳMHKS>] ggwRoePμ5m*"^(g=G__T^%q[Ȃ^ŋ)tò.^Pr^7O_X!ى47( HƨR0.u̾`ԓ$yY(<]m*/tva;M'};H |K>kt#SQ7#ƆƶCρ[`O3ȪPS5fJ"UN PΤ>#>C! X<땯0w3y-559}]6G_Ԟ3R 6V_h:<^FJ+JjH/~dvk|(&EQxy#ⱱ:&'rwo-s,W.u:+GЗD[tw%mfFtI@gޠיd/d4rLE+2=mݞԊ%)YNEX˝ +/~Tw-2xɟm9w  E2B0,z栓NjSRsiC +.sS*x܃B.jԯ5[g%29{Lpd^9Rt,7G=h'%h|=V3˷ݽ2u[1V X/xWvC0lϭ9Yaؕ7<ܽ|W\-^v\햪eQ(M` [ +UɦlӮ&R +x-O +Vj@WXKQq~+7N  QZ)j`J` (9 +)ʓ|5#ui0k)+ +Q/?#|51o1`"̤ɣ+Q#!(8nԁ~5)`ȇcιsc<$lWȞܮo\Ҷۮ~7u{oli1JfsR7ۖw} +.OAް R `*[[ +pnmQ[#^WU1}404u3u+}J IJƐiX 3yg]t&TrUj%{KYal!`z:E(1ݪ&KW^^,9L:=Ӄ-WcECTs1ΑKn )9~lm;4jy;xڐ%d2Zvfcʁ슰=9Y +ɩdKtk޻z޻ջZioYV,Y]Z%XƖlc)6KCd&L22Lȶdc27H82B{zf yVnU~jT2U%+l$VGx3T鹊ɚx-*%`\;_X=^eECveq%= MV (<guBxhu2nkg&jroVzyc_34 u2AKK,qjO 1/G +}0 DJ[ }ac1!8dLϜ\0Xj%0h )``ź[*Մ7M4ѶɎ+4-q7bBM[[ϖ$ĺ'V2qǽSΖ@Jw¿~qi?NSn)JFiP=yo<;k:u֭=#;`V8=k6n;6{JB3v̖n#͙-i !vP +(BWmA6%{JJ"ْ|x'?BI@Wri.™XaV5؇GD:İ_e&=99.KSBaItd8 ,' U̓u+pn"W!3$Q+m[-@ yȔ.oƞ"cqJ=4. |Sڅpс&KKREFl~ݗ|J7.tDp|{SId3,ɹo^R0nY +j.Dl-F82\(|k +4`!.Bt(~nwȡV;B\H*TjhgyRe(J(z;-[!Dl8r^>jON ׷1{PT߱na48೥>X!vźT!y%~KI`<kG,plIKW̓˰GM\3]g6347|UṔL`i"XJ=~îKW~]H/So{zDZ7ߟ/0+h,4sꆔrϳ)-HLݎma[iZ-E:u@QuJw߬xtD0z {molɎagq078 B<4*3u0t +[ RnKsnm"inveKsafq!={6 s =x|7V$| 6QR}Wpp]ir;%&MŶbH`.TujrUmԢWוD8P]@r3=w6kO:SBTnY48R8\=-7 op Y6h @k'Ğ$Ye*J[JF~-Hg| [h,ٖ+!P#P/U5ux gN!P vS̟3b"?WòHk[)Ovno*=b[!!=!-v@wi@h/Q6d@\VQJ"g$֍d_>> +?~U<4y 9cjOWj~W0b!3?C@k=xP70قAMu0=k3Z..Qr0]hރL$k xTi߃p܉t%b( _^'_5)5! aЪJaf(4)IVQ* +ֈ@k$ļ.p!U RX+{:I9+ /y^T%i0th(aBf!sݻz1'SQ?wȧLy2!êlN2r̠8P&㯑|X|Њ] \XSXvLOݷ#f0ח!ڭ,փb{pih)QYJ~F3^,/Ӡ99^8S_zƄ\ +&M(0lD9DR$0ϚoIxINl 5Ĥd/t[߶ZvMtz$amO[`.eƥ8@W7 Qgn}[w^;]򒚜2a|cq#48WP:`Rgl l[6 +/H#nh~NDy&?gR!_uXY\>8.lwem1c_pGj֭MΔoܹgv{&lq8MCSFnۖPww_wFw^>*G"y= +ʛ[6 lQ69ܳūC\h&UrؖBLe Vydod3F0;΍c 3rc}QK{|nS/m# +55KH; V( PeF`om^ A!N0+pc#{+P +$T9̍Yn%VBCmUOyD6Kxv!u# [ Ȗ`Ұ@} +ӈg'wg 9(:ꤥP,+TZm?oAEUI^t9UnQ?TYeiOfj dXUc…]Ǩ,`11>\yWӝ +ݹ|e37R-Vz3H\?dSNZbLkB+(!+I 5:vAi\!׼db9RC뛦*ό|iZFL@Ľ2ݹ51„uxXx#Y%5QsMipM~IB.0,` qbMdMUA*| |Y|]Gyy={_׎sߕ;4&:ĽÛn_w^msНwB=R>EPa7B7$CV&iƬ6J/k8ʤdOj. H:V UC¬!vtMrӖNG{:X]&e82;fm*?N775Phmo*'{bݏݴf['N<ޥ6<$Xˤed3:'Hc (ʫCaZfY|8:P#֎tEZs&%hJet[W`L ve=zУS8y ejʒ,v|zW{!UW=_*/ FɧI dž?=0U ^؈n^ W> !A'úf!8k]O@o`1K֡yegYRo%Xޖ +&öMA:ض:O4H&wD5^g%~y}J~Y/ߺuRc P|QgLw6GrS,ڗv<*.lhgE$Gһ6qb[!]%y*'XjJz53yuyڷ9Lv!fZ g1&օ=g c Y'$d]uEB Y&PbܦOG_ Z:gӺt-2CDp-oӗDԧGNRnBҪ:\#fTF> {nxJ8jwlAEEH֗I"")L݊N!=|>cnƚ~r0=MGKBk[JtA60 S2)RʌMz7۰QWذ!L6'jhdw|qJ*\ejtiL0 +& &˦?i#^6­^5#v-=xQJU[GpT2$ǿ[5&[jko4hd1z~=vx~|im} b/ N]srjLLoi Ypۦq +~㇯ה/!"pM$pŹjĿf)c +85d]N:kJbuKdrr^/ `K宜 u%=kO+PuVƔ{VZQTM~TM%돬!*Ce VB C_g^\VQILֈV$HHHq!Ex! +20w6 +P2Bٓɞx}Eo'}>ԵmN Fc0SeKT4iْZ>DjVU*h鶴Z<,=0J[U˶9Yi^u5uh=}Mإ?À)Rm!BU؂KBmHv@p4*qn6n Z\!ӂL:6вA0SUx[M×@T@5A Tj?Bkmp{B,T9{b + syB&B]cHp%BWFYhc”!VtyP/(>% , p;J@DԸ&ՁfX1 ˉl h AOR4$(a[P)fq%r+iv,APwUƠ`QS8NO ;sFY xVaҐvEIe3< 67֮E v-;&t]֓|O'I"ԸNG:#+Ц[,B/ i1IRGbtNƐ85φu1jn=wyTWp/:,mZ¡W76?u;6575t(5\֛lmxgtE"S,MHEyFc=i"3G>X>67ygDEk"/z\\} -=7=x4l$a&CްV^ޤ~pֲ`2h-&oۻo.O@ym?VAᝫn\mt S"8G®]$8=(svi~l>XՕuQISlS&kk4*CC<>A3FN PaЩO̍6Fفa[ CxvcU(#b2an̳ g3GG G']m(YҪƆ3b##K\_xFZݮ/IBAttXG`2CͶUMLBs5z:nW@߷{6J[0k#9ۍ]Ҿ~, ,mƷ^WȵqzV<\6|48=?nV$TG bJL}ip+.i::B2J^fϪv +T|tS-(? lMS3KGŜ ,zky^tџ8_ra^uu,b[ oH' ɴvτV~\hzc>L}NxZ,[~x|Y [ QRБk04sOirsUS?YɅDe:kUuHc V4Bkh>bz=xΝ  zJΌk+vk˲MX00Og,nl*0;gcͳ:7?$Hz\C2r=`kbm ؚ3T5?9V':oSK#;$jQdlM0\V$u,@=Hc뎨O 5jOuqP3x@!Z!#w4m0Y6#ZHa 1?E޽?}_8f_ؽq< L*E:vmWcc7 +c MCCgB:|ov")7ņg68Ꙇw+6u`HߊElM7i)rojn&V|Cà)Wy;IR{nz1j e Ζ};5CB": {챔? + <EtjPoN"kdER1Е95#s ;k=Z{QBNG4߯. } +"( \ܲ7fS'ݠhJkzX.q_ԦRhăDMRJm%z{s1>;m8 EsCF]0:UoQFqmh-:Qz>\z*,h}G"g3#G,]B.OQ\h1GΈsެ=#(a!*VVk`Ǽ̫" p^?wۨVՍr9N94EFήUъxz̟TB~| +;(&$OS%IxR` جmVa$Tx]@X5z)2nY0T`ˆ G0Y(j،'^)K- Xy) +lvQI6  NfY)f|H>gxC@xZS|] dwBj0GrMvdJb ykV~To~*QRŸNCHd& 6'ue|H+Jπ>] (`boT"9?ǫ9"NùgjfV}#yl.J3[Swƒ7 kY:$Q2h0bU%n:[S"%hc{"Vk R-DWjTBk6BP7aNs 5/I؂# K̒ԼWˏ)<[=Ǿ}`{)vPG< ƾWi`cXU۩kSynN>:5z{JnЖn$VB1TjK + xgB[!&n5o&KI IWS#^_8YK.JF``q;RX7WjXb +"_z +lKl2p(f].][&a"xxӘjWs5,cV=1Zib'pѕ)?d'o%a$``9X= snMpdr'I"N2ILE4N/;тn65ϕwX-eܫ:My|÷>IJIƂVZԱ*qYe|prVEVjK9sԙ&GSmYqMcx- J~?GSAOӊG[0d9e?Kcϊwuܫ4j%]LZU)׾_`CkhcyiƆ_݇Yv㳢f~ @aW+ȵZ2ZPr^k.׾&^L?Y\FYD.3/13 ]i)eĿј `Ż/vzٲ)[/z0?ھ>ʻ{z{Ξ4CnjFcFmI-K$lm |@`r_XIv9ɲ%l ǮI_:kU=|PT5=uW( HmTzL:=#GsO>ug tϳOW,;N՘#I>|8{>XD?c"𼡰An)]@HxAm?|83> +HRYϞO| x 3cqNАqXZf7`qT? ?X0H.\!.}!DxLburY]A)t n=|HMZGA6 g8 ?5d{:pi?)ЎOj9͂oASEB3+ +#^{Qy> Vބob?Z@c+wƉ5*:NVF'6xrp^O$26>(7&,fn3;n['PT5:?=s(v/YlӪw + +9=7?,ͭ標;q|mٸRq6|T pWXV:TF,T+1xrcd@g@)T$*|wz +mA&ޥS/Xe74FBFU(#ڂIxݥ!mL:XmF\cKim20[VG5W49R̲6NhD'cbyBFl5QMRҜa?#Fz"Fi-)PՌJhjƩܗ|-yJ ~+Z\FQ=6"#v۝r|; 6g"r&Įg>q{ޏᏺDʪͷ7mipڠͱghG\{/f_xΦ ٷw~-qze۟+x&@.t>YBd0˄JSV$gITh_Ύ`c+ +578C%Ft${mwT$MS$>Dꂵ.4z wL߾@/*-;Rdp|es34ɡ}OGJ +zI<'ӾO/k.xʽrE;c[TsPD$W:l]-Φҡn۷?5}K+E*TRV9VKkSL}fyvhFfwnl%6~ۉƕc4!hontb4ٱXiS{l◫j Zeع5鹲/r:3 +GAĿfAarQdw`piBM̢bC@J eѽkjsٚ5!|6Lz.(K@7qar +(f$xπ$c̡sLo(覆8,Tu?}hqO(GWW9łt4!&SO(2ɉ K@^=q}_UN޶sKi(jB('k'oz&7|e@ RH~\( +r +?+UQmɪb6 !|>%D .kyU˻qphŻ6 _>Co+B../ivj9nmj[nvI[fA>7@sZ8w"t~HlWibPBlA aN,} +5[U 6cQ +Ĕ1X$lSifA3*Q^@ۯحX [ѷbnsmFOÅcV8 |X'\HBc𜩻F1OWOy}hTFA +mJT +:2V0mIƵe5wE]}Oa/GZ͆+ G`ʗaGݸ,{gS%  eιwsSVʉo3/EXuؽv ЪDYO[Tj/j؜QR`J J= ,?[.^t,B~I?TثsUπ#j .(YUS(\Y:?\OԎ2t?옧}WOǶ΀}gO}˿uYt}ؒt[?{ +Pdm4n:r W 3:Q@ D +ysHޡ# +9XW(.C'XN@ ~dW9P-CZmpF+ƶs _o| _X4~(<#IzBʧApűTP'`DͷFDz#P|H$'8YQHJ2S+JtMř51ҍ RLW \[wpETm?"JJ6j AaH>jp3Lq1҉;_ps9b7aJ𖌢/U +(SRSb,a2ҶȬE0xtFϖSypu9gϱl+2eo0OoFCZe*լ9T?u6]qS r>tTCzWa=rD@U-Wb0!ĺ[Î5=ѽ_Pe +M1NU_LDI1RBwz(lIA7I*=z݆HuU'8Y]RA1Xˊz,⤦q @q>D9WDi`8IJ(>Ѫ:UP|UrsnS|n6ㅰj8k(e"Ԉfej~ +u"5>υ[M."$r"v"j$8X%x^qY16m5fX@qXnƛar4RdbT+O9=S,^({sfSN 7>|]w\+%NoΰmW=h,݊$J*͞l,9鑩JhNHIQ%=Zm#HɋSXcx{DbVA=KtBM_!1-MiK8C8 fx0XhAAh dCd2,ƅy-f]HhJY݈vK&W?*رr4,Z{;F#ΚM[lܴ\>Pa}Cz,mҡ}`Ϊum.{CH'ՉUvwk*|w|_WUn+iH[騪m)D _//'X4p8i,N8iB8I\}zc{k2UJjY'7?T:5A +W3pZV@7eThAzh2EuV: cחL2Z[RhfD$ p">!GˏPO ++'0NcXKCH ҸRR0Em +R&!СBcx)D0jt ;N1mјzh֖!`!`0ExkFǷ,[̗!PMB+h}EЖYlne[$8qf,~WB@Ħ)XH(xT}zWgwDBRxjXʒ_RLnuኺt6JfD,^w;*e!ζ,e!e, )cYjJ>b,db!ʹ柋1S[؂&Rk\ +tř?=^s@jx VLދi^5ǝ^s/ :ɃD19Rkg. +z~9*N>CK*D1Ռ1bVU"nlWX )@F\"$(*<okϕ腑uHMrɚhBWK3,)q*\K+zbxVN!$j/Kp]7ÓP{7.j.nMjf4(ިnw* +˄)YumkKlm;o^[s%"'XuOxuV1D)~Ru\'OxSV- +jGRC6/5^ȧ@gK.MAmd!`.ÕcPмcy2P 4DBQ*XCQdL.4jT:JY⾺ j^$ <Dc6s ?IbixFca'EIk\sp!NPd(&b 2T͙Wg6Ԫov=:+D&C6WĦ6\N܃x>0 *#)+0%-SJu7SD"^1>'˹6?6+RHN*#/N5̂tJ6lY4.&|hM\LöcuaP v,cSm Z ' +$% +ɪ9:DeV*Mʠzڑ $,f1h$-W~Dl6:N?8 i\C$MVc!z˸-ب|Qҵ[Y:9TX*:_K# R +#wO6\[壃+޴ӦDw"Uep3roÝ_yZ3=p|Q!D֙էl4Te4<^lgX!ܚH>78 s{5BR"VlNt͡[FoZ\2myx +]-0'+EԦI; g횺XwS)i/X\Y*뗁?;:2h1!Z\j{6 +AkzKGa1Ljc*oVz%ޙ8˶ +} 5}5+jKz?;U{Fx=VйupW3صm`WO?lyi:B &8h\fYN">Mʹ [8A2Bn3YGDhB,xgyS2:Y)VAA +BਰwxkԄ&jB Ԅ˙ 5Ýlɼ;2R]kJo&qN_S}ͯQdlU[4ekmHG5 +u\.SL[uJS|dOC DG%v^Z`,D_^`ȿ ߣiym2VqAH[˷>f@9-& RVuMcޕ;os卷(xAYqۼ+Lvy}P*6l_S\2s Vsw{SrNr es{MVm5k}UF::>>^`G_g|n嵇?\Qxlc p.1ׂ|0biJ12WF\xe-4o]P#t !HHw/R@6ypz=t&T¦ oy$}2 o!DǸ)&sW"{+B.;+$ +;&`l h>Ƞ7=Z zBwQFy|&PsPMy(taӁjKjH3C*8pxB%Vt*=y Kȵ,]`u]/&NÎEbؕEH]zhgP,c43>X8Gg[QK3  d行0'tQ^ɯ$%n 3p>-QN <2V9Y3AV=^Y"jzb +kPhShNQ(&@BG81'Iвe/_  1.Gg^g+?[F\jRڜE6.Z{i[ܟ0%l5:LBv'nΤ8Y^ӪLMB29Nr epY=4)Kh Sb+++hq[K0 ޅg 'ټWie|0 >vr7/' m~u}[0q\f+qsu&,C3RN4r`[Msy;!K=ؐ%H@BL&,q㯂a/i׳uD|I l5Ė/*~|HX|HsmKVZAX2–hP c;x;ss EyIy%x^ʪv<~ǿ|nt/,n(Иc#wO߳jTb=k{ 5j5o`cuxK~0'xk֘]NeδT֜Ȳ_T&N6#{j)P'dyF`Zv%"|{m +)98@"&O{G?>vX4^J 얗D6Pl*_gDKYXt~+n\X!%Tx+@"$ꂊ@zU]h;6\OSz -7,`ZV2PzڨS: k85p _, _d-Ƥѓ$i Sd#?ֆldŚ2ͭ#YFp=^&?p\XIoKa:+5(+.:5FȾ uLQs2@;z+<"'8A +}գUeR.9XӴH2,F:ʅƠa +B"7hҦP +'E1$^N[nFvz&"N_NP .Ϸ(O;Q h ;d  &84 SuZ)8% #|3j pia#PJFF)]?D{ɼ8?E\Ҥ\?D{É_e;IŅS"b{Zxog[& R'2QMцJ|&J ܿh"LWQf-VR) +BR+UD+j=0hJ8{E"}pرBI\x0x:#5ɬ& +(eh"rvSݪ=Ϧ@)V:SYn"TaoXbYZР̧uկ_>QTF*i3 +sڴ:HIga[f*j(H{.R w4o(-3;VoO{ٳ7: >38*`gX=(Bh>4cʤJV{J@0jOpOw#~ HAߗ> > |Jggp7W,vC%yO痖%Zx:D펻J3P)/q9J!p=ؿ>O|a +B޷ ,Z٤\:B >[A7_HVt/?&|qSsˆZ~SK禌vʉS;) 4u* rpibŞ@jI$WuأE.<HYphG_Pm~1~qHs~@Lu(%m\3}w˲dٲdKnv'87%V"K$uZ۲RZn-˅XЕ4mB)ByJQQ-̌$/>̙AqOz/QJAKQhOx4I$AYA4ןF}jDPw!#_m E_H/"|ۉV2ٻkCUրkQ(-5 Y7vt(-v DxʠUIND~7֡ zUjlG a @\bt{=:䡕&-->ut߀GqTzS0pSOg G{ZK@})ׂ@?gLyyZgus\ZP"k*wH,!?#B>$O uxڧlpU]h㎈CԨ-VVQ-۪@kӫt2~&֩rR:SbB?R=m8ˑ=\信Okڜ2pOKo,/U"Pv?DHH3Tc{-ҝRϨ=uj?pImԪ1YZ7C=tD;ӣD3yy.e 93wCx4WrO( 8.ܝ|_}%Ikog?`'  +%&Og31:LNONryHNDr\aw"b4fv+IZFQ `D*}=&߅T| )8y?zN>Ч6 ^Y ~sB,Ϧ,7?W!u+{/ R!z{|p{6xk\Z[ڭC{ +tw6tkmjv=T偺WooUNomr:k"ɯ8-RVjU6VSeR6lJ0[pjw +,Pc`k)+15pט=u##C Noakj&ﲣH戃C BDk^"HG% B@Ț\HMگ?O_wţqo?n#Hdp<>%?lȞ8ӡcִUWkf3T66i}@8y:}̶@`'EY^ +^p?f{о;9uysoDgԸZ"ᐗԱ&.Zwsuqyx7E"Mwpm!pssBVTA{H(&#fkb0:D%އB7 _PA]P(>h(mߏ4EP[S?s)3'QR ~I]Vn>r3lkU"̦d5fsfVRWH\<*V7bꂜr}#~#0I +G4џWK2UfNvV/%mZ yӴC.24?XUta Rӵdžn}DIFFR²x X6Nص_ +\/!Bw_gA}DRcRwͮV_)/jB*\H8?0V;\:S@+BQ%/X.QI3>">P {oR?%/潌V>?H}gο?M2*~}]++Qô}H[vNA IUp"&+/hG Eh}ϩ*شo~`ncf^̙&'C]=! JYЄ~ۆt +?=qWg}O:wK‘' bXbPUaSǙn][2N^AuI7J˃B.@hU]rDǃ{Y?>bWj%<*9MQ'lsvkl2(7[[Lސݽw@Ӧ+F̀F$R]*xZvF&[bN*5c8-p6Ma} >݃^ei_ +1Ya]buVSAcG Ku+zymUQT^ .ZoVIxO}'RYM6L ~Gԗf9.?D*E 94*fʬ'|G'y a ꔄ)<"C!qmA(Cg\8v ^Fk y +)"DypB7!e7 uSY GzhBיk묊Zpqo y +h;pC =&; .Zg} {CCZe1Y1k*qG?#ǻF͸ {ʙ9-@BjjIj +Ϡ6x#xˬ;ȒY>żU,"j@P}9gpq%n{ƃ7<{7:>x0G>ǯ\6 ;c!D] +! @^9O !g k<k9ڑ١iY5ٚG ƉqOإ_Q2,zӾ6ll/쬑h%z6H!цA_ji[FDہ|8Z8YM/5Jxp7*ofvCDÚM`ƸAFvCEfѲ̼D*_nԪ6p䨷h TWTfFﴛ.22ULs7K{ѬbWˠ䖋mfe$7yK'7D8F-8ʆeY BQ&/D8B_hc^A>ħjZST%o,P1V>vNĻJ l0QFx B?gcX/7.JC ;iں=UPR'FS~nB405ty]>@c0}K;2O9wPXTEݡ.h'ڀ2ȷ7x3p+92'J@ %*!uC<ʄCQ?H{\,)L&_"5TuT7Z'Vo lp@aiI/uߥ@ϥTǩ_x7}Q~9g2=t 93~JяezSwŮX]0Y8|2 Ϊg[fFl; 6"AoN<>p P!1~#6w1.+|R*tue\KЭ9>%\mCrde:\bG*/Sc{O׊nz^F- +ծg{-I[_SomVen?V"ި3&G&tVmsY]zŨRQzZb_BZE6R{I4>ghĺ$se2Qt)XbԣȒZ&k2XB*ĞFߤEH3hohn FV^3b:FG BT0(mJ*d#4nR|[vqzeG`4E"^NkZAKb)^0w:cTxpL vQQ94[zCs+G=xuDX$^81^aĺWVy MQv!n[>u߾cĨͼ}W?M2'wk&;۝p\} Ank5׺u}3|m=ۑ-l#[4~)&[E@ЗK0ݛ:/CVkבG:h˄VBnmhu(nܻ&yӁc۫FcI9 6q5%%wM_Fa/7_"xD.G +I^/Aizp/"kMLZjꅳϜP, ajoэJLsåVs5BU:bQ7 Q`lx usυC\]*ȇT"{CgĞAJ!ޯig[\{5M]SGȕVL) Q_eԫ:ZkЪZX޾_I}T/}*4\cG{+] +Smif((SĿ޺iA"Jŷ*%> ^}wh"gVH l& Vv8Œ^)2{ڽFaJUC&)mWuUIr@gJxoHe }QI>p FI$:u5 +뛹ZusTw؀=-;ڻ׻{lY?{d0<<;sն}Tmojt-{"i$uё86$w/+_rBsFN=N= ʩ/%Ze$Ͼk[>mXy*ڦ!ȿ#l v&%$Ro(ߟ6T 1%MjC0uDi)r`=ƀ 28/5'7BmJ・ÀO>%xYA<eÕzB3e ?lzh=նxz8Q|3x +pO=ݺz=7moao?[A[#ln?;P=p+AK[0T-nWopaW#hѯ&]30T3p;όzRR&ɋ{0畩ީ:}x53nfwxj{X0\ah|!~"~*1|9~wHIKG1.<ٓY—3Oe9Q/=[V(bN%p5H-̖)Bd-l_# OeaE2?ńdBm~-Kh0Ζb +ƖD-DiKl3Sf̔93e~#g,g̔93eFL3Sf̔93eLweF4"J$#D(e%|BMJi"WMLA<r, > 8`*Q(BMXZژ&Vq&ơUhw< ½\t&"~{\:k#(4~P18]]r%~>yH]9,_}8J(Zv2,4e0tW,Y8 n14!$}i,.|c$EI94KKihW]I3R$1'Q[; +~uZDF +g+Pc=䀿Y(0MY, o󬤘V'4()M^rXOcX+sPqK0MHbYU(kHcKl="YbLC"i3%Uya'[d "7 +Y뚳kFfL/,_,YY#$k} Sf hSpevjŚڇ(]c'qNнC~cNwA8|x +Qy{A C1tk=r킳)hma\(9RڏeZFmE ^ߏyf< u!L9!̰W}e F15e $P8B;1{X!nY+FS$U$A(eۇn|hcMc]~VSÖ81{K2N0!VY5ci~rAR2At-|alKBd,e@&FL:@RTr~!Dd"P&fzR"=ǣ<'ct,EwШ0Am~z*ZZGX&vjwdr<^HTe;s,=9JƢ)p2),gc &t< z4=%ҹDK$l"OSKX6}h2 (l6:ҋh:sL69GEUz%_s˳Tfdz|bLAt" cyz./g9:6y#ӹ(6]2eq9O.AD0sf\TC oD-3A|6c !V@]z1|Ixf%DkeDPa9n @l"DjiD12H!IZY go,vʍJnU0DxXcH$XPjIySqJ`a1X9EérCrNc NbJ\b?Y#vI)a21lщ\D ގY3q1 ӰpbopcR Eq~0&F6Xh +>5 )`x{y}Aa*OG0;:}C|BCP#?d_(,<_~*_oyh7v_D4$@4t;4}|C9ʽ|Cq^Щ<#(w@G<04(0 WA^A0`OC3 `??v(P};Â|}B>~*O 3 ;Qɶ +^jمxY01 ?$ʠr ` +(8E zvthg\T~W0nܰr7O |z]/>>k_#0: >NZ+"X '|9g !C&&>ff>o럭on+l&Mp}!ַ< ?cC[ 7D+ +t Lta_p{$}fЮ=K`1x ^M!>,4dKd!gD"dP+lP4r@(eF%hZ9$tMF' t JnWhnH+tlG $i*Cd(BHj29$'RY ! lr%B-%Q+I-J=!QOgԯ{RUjOT?PC`#FvC VoD4tLU+`X+_`F`rUZVi`uXc`U +I +XRX VjJV `5XV_ Xߩj +n7Vj4XjcVZVj$ρb`XV'`uX='"ZX V*Xe9j)v# 4ɤ AvFdOT@z!j$j!Z(: !zCeSj՚ZJuVR^*zBVT`9Z 0:.YIi%rV X+|KV`XXVW`UK CrV* XL`XmV;!`uX]V7h$)F(\@`d`5Xjsz*K`ʤH*jF1 X\`X](*Vz`U S< ɮ1+ XV]Uo`5X VU.Zv#XjAU`5Xej : +XCH _r P E*Xij*V_i`uXV!E 5w©>PHPC4HMɤU:շ*U-gFʳ*yݩ*^?/zM%s`UԘeTVT`5XmVǀe`X&THDx? ` : .D)!^HR `V)V :`XV׀c4" S6 +>h5x`5,V^`uX <𜩥<j%/K +`X3^-j-yA$ FG"*// +'Iy $DUy9%U F bU9*76 jp+B"c"\вk po|C*$!,_vXIɢEl"= l씡XؠD.-*c ܼP-"Aaƙra"J`n."iP9P9*m Od.W25>Dyyԓ؁E8*Iy .ie$$aM8Z7`BŅ8 +DH s*;0< ~F@!O5 +-mG'!Ͷĵ (˼@H'I(%~R*B\H @1.=clN%'3x!qӿfXk?p33A ~p$'JIhnt4p06m4fup|M``Imbm l 9\qrN  l Qol߸ Qo77$!aMɧ O +b1! zYH,S W wȽ?8%֬2l sjŸ<7z5l|sCгpn+V%H,BX\],.&YfA~Y3ٔ{l``܃DˈDv]ہjy-Je-b{Vº:0D SDHltO S'sB> MC^D$"V)H +ߢk&C#$:gUBM0o4نžcpp HH@V~  e2VٸȎk8nC}% ^cQ}Ļj)vuc ̓א/7 RbT]7[%JF= ׈B< =!im $|y_9 P$9 y]K1-G.y<$B5c`|BB\֩glljC5vgm`B+S"C/c[㜛GHzp6KĄ޽BYC"5u5$zp <⤤FzO6b1t kDu.ΰٶ mqZ&ڮy=o98)[#"VU//G-Ŏ}svphae.vW9TzB[|?'G.{# ȩ _Dȍ7z iX _4@*@R)c0:BY&vM2ئl)BtV?@HQ֠6PlVB6pYAo08+0 P)2l+ͽ +!cy@$Ԅ-xl]VRVi8na|R"ɂco5ut[) JqlB ÑE`˭2^cJD|BT2Y R2JI >TiH2%չLhrY2aЉt gub$jFIn~5cKEklćy=+h0AR3֪ءءЧK,,FĎe!Bcr j fssmCD5 H! Xg+AUkЕʜu"cR!!m,/Ǵe + "F ӜxJsT"~ ZP%"~p|r|z!M\)XE2 !YÍeDR$2N4e e\TVswc{:E=,8?""C/JáBɈχį 76 k\<(BJ7x=PzStH6'MNdB,D&Z+Zns >0oA<5'E9RikQ#T,4{6V>֧AHkiS{*4-dˍo I&Lu]cII Ԕ0%ZQ(6 LdNwFWZZ!ÖHbԄATC-)'JԮm0{8]澯xc2IJjm֖a m8VF4XՅeIBJueeUe:])]Ԡ{)T_pP1_YٱR;^[XQT{D+"-l`fjmpYx@?zf::_s# =Vէ1e"B&_C$ӏ`7Gܶc!Y##ܨززCӭh+A E +o୪: S;7;Ʋƺ{l)c{"A}yZV g2"vA)LHdjADLB[\UQV3i2$6HEZ5wece }@#>æû!+Hz]&ĢXw+R>oE8Մ$M3RVCZx:#|LR*$&x̐I{s4nc'f3+ClfUc2F vVo.Mv2LVn /U]8|wOe!2ٟ@&qK0x-dV>C.\]B v b /pZF.7(P8b,;l;<򓶳k41!mY0q[*w=R"8=R&:LM(I~O)1p?8(Ljs@A' $]`=WHڱAN6Lۼ7^őV|!O"6sQyx~ՋʁK~z=oő|nkh 9S$"I dXA[ +|@Й +)-P<%R?qlZD9m3 ĉ + ΑX6GXt\NY6,Ǐe?8CmZ8)^ͩ5NTt2?C95) 2# _Bj"v~Xo)]FLn])KOxWKmN6]?fĀۇ-:eWQ@7Ga5_{:qLb1fdc[c:Mdի\K+TB:KYA@$y2Z"Bq)9-lN%c+G]hz (:7 ފt!RK M?UmK,&Zќn-Mz8rŹ m{mdz3MԌߎz/iTnp[^ {z>2O&ǹ M3 +ڕ *ƕ#4M5 1eʔ ONexΖHx@h Iےz|^gOn嵟k'oȜrneqb q7ZO5$PI"eA~bS]vߢ&N4ͩID{#6N+Ӊv9s.8_?FNwbE[_8|h3 +_=ؿp```թJ4:{5^HgϯӍ>ơH\CeAݣcb#'MH@+뚓ܚ#_=M^S!ldHLcɭAsa[Ut~}jījV;vv\}7lC]Ϛx}g+۴\{4]McxnSTMjqrU]m;_&,m5o՚Y/'$F^-|-pϝgȏzrL nyfȣL?~+3l8dń{m2|Ƒrߤ-{ޟ Wn}\2j| iVn{y]g[l^cUV ݐ5yxyV_cTܿ =NryM/;ʩf\>& Vv};^=*<~l{nÖN{sStgL.,ݮCCwLb}ouc旜Zctr۲Svm?MW5|ͮF/SU^^^(m=*}U@k+mb{Xv"KG|;x>.t<W_Qbk.:!qS/tȢyU_ =Aw݊%+4iMxlr N۱ YL)d (0TaJ7,mFwoS6ͷqMرbD̬{Iش&}-j\I;7e,ck0=d?w [=MhE 8ɡw^]TgŨ#OӽD}xd1Ӟ$q0Z`w' >0U+ kSݹ7Ң*QсZE⿢, ̭GW.=*\0ڞn9b.CbE&$ɃS1UsK8߬?#P^/8>f- +,?: +-P_>~`\x+{ԣxK%Ϻ؜{~%swFhyȢ0_Urt<"[еpHy.~y˩&7 NW&;y/VfvsZ]ֱOImm# f/A|쩁tߒ\pnWq[FlnP;ƏxwtĮY]$A)_{ݬx-yąi+2VK-QeV^nwlz>DQu_`OQz?/?/nD,AG5T#G5_vJGJӧ#x#x1{_t +>brG_/;zݚo({8tgZһ=5ˇUOl7 uQY.b2c-jGe}ؠ'e=wѯS."x}jv̵ͻ;qiD Zeo~)~ay)K߅n~y=p--,7&zr`rmJW[{֌% +7$\iE/t%KrK~^v3+ߏ~̨aͦu>ymlGnlrfE +/TΘYSdiD׷$|qBXRG՛|z}+%3r|g6DwBmYf!m!v~$tS{,\}n^jtlVvlq΍מ:c>Mҗ9 5[hmonܗ&_]sx[Gowe59<26-ݺ8?߭Ҥ8zc˻2]lD_oZѐi ٛ=׬yXN +]L)Ռx0mՍK;څ3l$|j|>AEvVfugA +c6dS@`<$1t\H) +,d<*lvW٠9uR+ |%%7kk()SD׿ đ%\ynoNQVݥ&bJO ߾g#&jjJ\n%޻5|zfAwTͣ"rO[3y*Xל]Zq$K*5ϯ!¤'m^h CrS䁍Q]X䑥&F/)%^ѣwRVuȽz򶺡]|5ӠL 4>1hˢ$xbѮ˽>U7qGqWlHi8cdULr|5~{gy;u?hhЋQyCJI3{Tڑhv;S}sO{{/u[`5oQ4=h[ݱn ཭j~_R[\V_Y#?W:Pꥉ+ꟕUtoR-WSo9V%..dD艙79&^!mBb}k> ̜v~b=`i=}̷> +endobj +377 0 obj +<< +/CapHeight 750 +/StemV 52 +/FontFile2 375 0 R +/XHeight 250 +/FontBBox [-503 -250 1240 750] +/Descent -250 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 521 +/MaxWidth 1743 +/FontName /BCDFEE+Calibri +/ItalicAngle 0 +/Ascent 750 +/FontWeight 400 +>> +endobj +378 0 obj +<< +/Supplement 0 +/Registry (Adobe) +/Ordering (Identity) +>> +endobj +379 0 obj +<< +/CapHeight 693 +/StemV 40 +/Leading 42 +/FontFile2 393 0 R +/XHeight 250 +/FontBBox [-568 -216 2046 693] +/Descent -216 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 401 +/MaxWidth 2614 +/FontName /TimesNewRomanPSMT +/ItalicAngle 0 +/Ascent 891 +/FontWeight 400 +>> +endobj +380 0 obj +<< +/Supplement 0 +/Registry (Adobe) +/Ordering (Identity) +>> +endobj +381 0 obj +<< +/CapHeight 693 +/StemV 60 +/FontFile2 394 0 R +/XHeight 250 +/FontBBox [0 -216 1113 693] +/Descent -216 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 600 +/MaxWidth 1113 +/FontName /SymbolMT +/ItalicAngle 0 +/Ascent 1005 +/FontWeight 400 +>> +endobj +382 0 obj +<< +/Supplement 0 +/Registry (Adobe) +/Ordering (Identity) +>> +endobj +383 0 obj +<< +/CapHeight 694 +/StemV 40 +/Leading 42 +/FontFile2 395 0 R +/XHeight 250 +/FontBBox [-498 -216 1333 694] +/Descent -216 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 402 +/MaxWidth 1831 +/FontName /TimesNewRomanPS-ItalicMT +/ItalicAngle -16.4 +/Ascent 891 +/FontWeight 400 +>> +endobj +384 0 obj +<< +/Supplement 0 +/Registry (Adobe) +/Ordering (Identity) +>> +endobj +385 0 obj +<< +/CapHeight 677 +/StemV 42 +/Leading 42 +/FontFile2 396 0 R +/XHeight 250 +/FontBBox [-558 -216 2000 677] +/Descent -216 +/Type /FontDescriptor +/Flags 32 +/AvgWidth 427 +/MaxWidth 2558 +/FontName /TimesNewRomanPS-BoldMT +/ItalicAngle 0 +/Ascent 891 +/FontWeight 700 +>> +endobj +386 0 obj +<< +/Length 56014 +/Length1 143104 +/Filter /FlateDecode +>> +stream +x @ 0 3 &(S+ZY^++2FSL3+{+{/Vۢh0 ͺy;s 5OQxcpfBwNڳLr\i\;u&.~?w,#0Z_} cēP#/` G.4Pwl(+* UFU +`C *ś\|bV, +6q2ĉG`>a jUJEMAFr._E/i0TP@ v|=&1(6C0WmFHb W@ u-)\ ?+<1I?/1Y0_؃˾a>SZ8~KafrŲʎg|RfH1yc<1yc3}\/5]3=1=1yc<1yctEՠF.A*QCQE<<1yc<1yc<1yc<19G1y7QWl昜w [@3̂? +b ̐%0p4], }aJoZwAVj/׊VI?@<4sA<qLL`:ga,% +6Md3lZ)s߃\b9j1.z.]DEՠ\vi* W.Hj +:W CN#HtgI/oIbW"HXrJL HD#|iwnu#[H <SSlc\a;I^_j'D%|2\9 I { {٨އA>B~kQq;؇QOc06D<ь8'#Y<\LbGKP7 qY d$#1ܯgΊ$˿]'(XJ&O8ajleŘ.Y:`%!fNMI5DuZKDAJhKT7աnDWI:vc\ػkN?jZk2q IM1E&c;Wi"S!/gEF;5Kh--ԪBS4Uj +ԘTcʞhjlcØ 嗵quS"CttB/%e RlÔdTԺ 6XZvd{ȞXNy=TTlO6agec/8zp=u.2NxO;LXN GcS0c_Ri`IK 䠻$KKךR׺~/bLM˿qF_;~gݴVSQŭfaRkq[z֯IaLSU@*PhzW+{Zq2UBh[Ѱ3 T_j:Uksf[j0|5&۴J&=(^.Z +v^mwe>s8oM05|a,S,rYC6fw5O3b\a)/yRCtM45&EݻG_zttC|@IiE=ثSkc0Y.E.!F;Tmi!KύZ^߲*SY8ڮ]R+G幔C43B!d{Y9ߝ-=xm*j坛\ 2~d-xkf*3kֺv)mKkcqAȩ*<ֱERPʪ RS)h3mjm/YQmsL(-i2^#W^#b[okX"JC׷3}nv|zO@D>ㆋ2Cmq*_kkf p)ٙiӰ6&(5viZ]m*|'pc gRk )P600ڊ"tVۢ:jqM@}W]Fpբ{}I}XmWܶHkmvF6r%/$fYoR \vS/VoʔMTq9|plPe#x +G^o¢Z#F[*t 䙆G?M*>-1NU}!oIEWM ^-wUkjQ|P`th$ .ǡn*ai>,|rO^Xlƍßګcu7g!zk0b\uaӂbO|ca/Zz>>95|Vvzkn@v q-b:܃@`*j.JS QbbGnTӘ} %:ӔPWNK׋C W Vq2A@f#&d 2iW"gGq(an0b F r*ە; @L"1N:䙋u=f5bm#6bFlaFP +?9"#څɈ) ;}Kp5+A8A/ _>'|F7_cHħ#q}{T]ʽCxM? GoA;ukWi ^&D+E %'|F#Ȅ#7#(1##!b{ĻwoSoޤI!Auwj:5«ÄW/SJ]yGP5x., iS}'u;uMx. eǩm:e8#&<,G<x8q#p,b#ЂLU6QT>Pn=\G%@I !NCjJ5WD+ Z6͎ +GrGD2G%7R Ts)U޲yRWoiQgQϠV_@QQP[QE=zAQ[PQPQfDGCݍZ u'P̈Z jj%jp.(,rDŎ~vϷ\BÏo&UFBJl,!= B!0C@&d2:O3AO| Z.J;MrhR+-_:P'PQ_!Pey)~>ԓ B (8 WZpOFJS$qEQpX8 +NC(Q5*Z4JBa a40PF0PJA(!1hE$D B!B &YAv~FEA #ӨSpUE} oԿPP>A}{ +eKzy!sv\ݨ'PP;Q:)Ƌf:A200POB#&&&&j6eK VB5!`PRɄ$B"!O% +D  -H' 9M?QGPo;ukW1{Q7qQ79ji[X.^uUhEzq͢[t €jA[fy-c-ZĀꖩ-s[h9Zvj۝--K"`-L-jߒMMV)I|mbBzhmΦ^{@SPX)$^U`m`аac , >ڒ+KX?`=t}B0Z8, ˭3^nnju5jjT@$6F.<)k##ƈ'#bӅ-[&AШաCw*trB4/ ~IOЭmЉctu_:i}5_qd_QRo5gQ48$MWkEk,hcJ5c45F hJV9UE_8}G޸JX`TWcBurYslݻbUGK8rKM +_MVADA=7m()/iEN;y&yRsKsd|@MjF2mÚ{4sȮ- Yv$J U2=7" OC&xеs/l'Ix^7;Z OKȀy@Βs@+%88z=]wƻXWֿ ف5y_.\= +ǘ7f'%:yy@3_+plo9^ZDZnFku(/9ŋn\=빈 #:rd(zTz.z1ãO-EmxٻOiJϺӟ;+Nˏ'ǟcx^ xnFHŢYL#X,s-CFauX:c06'e2 l8\xSڊ 69ttm/f/8qdؤY pI(Y|Ol a4T-ۀ "T^o\ ~5M+J^+j^aAǛ:tg0h?YRi1 s2 M18LʌgL|1bqg zpU%G"qYF]Y)'1L!y+EWBNz%1B#BTȈpd +3*|^&/|g\U + C˴:_Z׹.,.X + }uq4 +fjsCEV|ZFw$|g@zwK!$?3HG>`C}zFM\/7?' tőG80 R4R?7練M9SERT>:i% )i]S^2}dVBcj˃ o1%[щFdUA_ p0vCǷ O[|zɌa6XfsVdcL~<h6j7^u2y nyzG禲iFJB/p?ߚ{#8#q%(% [t>8-(I| [㕡aV&NBaQ6=|iyyiiL?G!oh89ΧsWPd}t+֓3vtϝk#3"]H62+>!3RÎi#3#*JAyڝ^p{4Ŕ݉1 $wLA J?ɲӝ5^؝Zx2x΍ܕ]+8 u.]r#3%%Ч]xk*a\x:0~fQU{ 2z Pz1$ SG$ ZpAd +0f&$fGiC6|~j +{޹{>y;~* *؄=Ip80u jэ 7O sK;,O{[rx:wDekѡ22ɠCi{Q~MQ^xfQkӃT搐va F=SQcΓ&aTFSz 2*2ڽ]֑I_? MI?^׮51_Y̲ސ#JncbңŮud#9F X6*)7͐cG=[AT ~nY9:S^;EP[ v? +t*N?yiDܱI<xaTR9F)Zkg ?"~yy~8w~Q}S`3^~bpV|* qMYɉ] 6cM0UI~JNg 7ƘCU&,\zTx݇*閴4m䀄䪪Ē*F $@ E"3n+Y|*=axU&37>^q]d3e /<}nw!ׯxmy cںQK86wM gFoa>rxt~~WD! sU#"g,>'2%T*5&%u.K`Dd[\~S;M"z>dC2UsNH/)Ojo oHgeZWɋF kXkNU"`".h6=Tb8iR~pEo +(-S 0 %T;KN'O+z&ڿ:-..sN)eXKZ_$Rf}?d @K*#i!@JeRM7Ř!'[lRM8eNZ\ܫHRf+/,rӒ8Q]?U%$!ѫx_uP`D4".ċ < +V=c'4 hSm{fQyZ Ir0rLDಸ؅I"tB'n'HۖiXJHC3kAoma=jH\(<;+$W;OUBF|T6O$X +|x5݈Ј {⼑hhdQZHoWuEQݒϢ)nk 6~cR0)Rx&7pթQήu2sVϊ|xgƛrG)dC>5ni]bGXgWӟ3"O:% qK;.U # +~?B!MH9=⹈a-4`A-n.lU^GXq7%yl{*nxm5@$Y[MG~&WF-fIDuu +w`3Ql0BJ{_/=0 YјSStmMwz H P$ZP@3Fy;(9NkS$R9]Sal]=T@/>/Ş;m߾ ,xGwN}cןv$xU +gQ9r8' C1%zA0 +f&kJw" RQ"znr(~b-k6tkdtkťX MOY=񴙦MDWV(t,4ݰSc9x.\s.bB8%WC#I8K5Ƃ ΀rMsPKwR( +m{J{`jW,$p.T_0j]Y}*rCU6I3v ksY+K\qDi">t੍ȺY[X!DOXsƭ3Ț=[7%54~ͣtzպ;74J$?4.ѥ{![(Ź߿㮗)u +%.))5'fEoJ]E9NnO +Q: @n(3fjxǢЏTU3qyY0v 3|% +2ZYPչSK,Զ ի02uM78o"uNgS$(G@˘ p^e1'C 8 utxa-H :w(iE[Sb%~FӂAK3%,vp?;h +yZhZaTTDNC C0k\ +Zq{}$B-z6 !KJG"FsVEr גFg1(.sLD vErIYzdRy؛:*B$%7UƠd2Rճc^LeσԂf5AHb$L { +Ѵ3q ӲG^6)GP:*z oe/4)f#f ++hjex'e&*~%٘JlVϗ<5^BF|O厔w2:eJw!)&d&"8y`w;L%N<8^r5Z.Huw/=mE1 G ?RڌZܽ w8Z_#Gyۚe%b*esd kAppyyNԶ@–rBuA2Eܓ=֙z{s7L]]&S΁#;~p>9rzs$9~ݛӐEx}xp+bTwQb-&I _5;r-`Oַm?wx/q bFoճ'))R {۽*WGJ[U {%o/7Ξ 7n$$ ++|aF fjw5vW:T8 +-7B9c5 ;uOZo3S./=^z}JCB^|`BGNol܎@$j~3 ]~q&*(XMK9D|MМA| +Rfw-߹cM;FR*E ń:ݭ~g͆5޶ BSL;F"K]qmm`Q46ͫhvD=vo<;ѓ?2j ra0"Q'7{IJہEL_h@lSϴVFgi'ŅcE$<] dB~R O"*@D$"1}%x*Jv7\^ 8yOjIkqҺyolJ5蚤ɒ&tas sTԌCG4ة4E,ZL)^o^IrB}RwdX9YMjH&JH,`L%r5FSX.\"WфPsJ`Y@c]]\Vݴ\T͒eDݞ %m;7H%hn0JLe7D2t h;d"TOŐ[zʫ:Pt6 : +\Yfz%&4bf%ugQ}kqK;Fas` p٫NKZhv(b4S$}<5cA,Ae.sm7, 7eHDLʟ\uE [mu)[uz;5Q˹u m7<:5]MC6\(Km=sC].0K8*3[~t-]}@@+Jٛ/b@sN d'HEa̢i 7eY iXѬ,.U 'ofiW +Z-ÐĎ7.|Dqg{K(qC$lm ?{LNs3H& ILM]:ec#@' Mٸsf,v[3iCl|.xC*O| !Q47»2bycxrxЂU6#Ɍ`iI5>7&{vۤZ`؎=x1la%bFH|tv<#g?)[2nGr76Fy`)!AG"w SG$ +1bϸYl^wG%M&ϱ,ISwp89Ss]qH~27 2%>XLͣY`D6oN\CSϙ9rG͌maۛ+of:1ҚݔW+Xl| RDH2|zrԤo>|DrS_oHw/)m|%;'}jl6L46#mѩiz{~ =NZ:*oj=)g%LXτ m:< M :Gu6.b0v(M:1R +3 .'K(yH>~%^=V-x549 gmmuFo|#'i'ـFKGNWJ;qGJ O墫'ZdZ-vp@!wW +$@; fUy?-" +#6{*9 tN56 "K1.(փ/J52|se7vpX`nTV`zj, C4s( >ƺ{vDd !n:slx[-wE7GajLu;T:Pi7hmZTSڇ}L'61Ypm㠊#˘h M1ݜ5[Alґ\CA," +~9>9~[G]EsOM&~ +8! 08t&K%a1+jT$hxl'}J( j>%̇*{$SǀE&ȡ_ +Cs-*&kmLQl!}"lϯXP+洸/(r]8w1bʜ`ר ;q]`T{:[z) Q `Woλ达!KښGo\gW}+BQt !dkz-ѳ D<|z? Q:j|#loRGZT= xvdL6u +C/jCP"xH]dSv47 2Nmө`.09|"  df1*0Рi!lwYU0 7~_v zs&ONad7B1;2AW8'?9M8B0g(7! [|1W+7;sOgֈVaXO݂K=rp\1|I9_?<4syhgq=dO$|tNǁvȁrA?ٹAv"0V(tT 1da$+i+%)pyC_>;tK)6Bƕ]:B-ݮG#9FN *d-22Տ\ľP U 7#rEنFLsDfѓ[0paܘ|1`Πҩm:Y ii%4$}Dbo 5jJȰ6BƬio,=w&nWA*m#hix R[L0YrH8LX㍀<\@5GԖ ގ\j${FDvKn<Rl⅊Ae_cVp״5M,SFb ؓ~_.ړ>0(GAi]|-N ҄=5,nVpotIYңeߍLN/|8ncD bz:#&`ˍ(:ar-,7es]"z6^4>pPX=ؕBΦ׸$ʉ7E 1M˴٣iCx9fDyal +K,^ݱ~ wF}Gh/炳蠻pj6 +iմzx +njD=׎4Ě:m JRbv@"+#ңSNdG}òoq- gP滣uՏzQ4(k0F=ohԃ!=hϋ-yfTo~!0̭:576Luq˱,v[VdJ?1GܵSЃ=ZZU5OpJ#̓VW+[$O{[wDBӜ@Do˪;r2o0҅Mpd8P+dF5]:yoU9V8sc# TD^z}X݅DJĹ $3 AkP4&\نN_{5,֡]x7׼5psjCH\Shh;7iFn-Eʝvѥ.U|օاG:Erebn8elR%]-Qg. +ہ0Y8 iDI9f,N3rߪߛ:/xW^amƀ4r%{ en$hPFi + (MtM2qLӕOoDSXy 1#?wa'hxߺwz"";ߙ  z׶Jq;ḀA~]*J%KSQҵ p6[;`&R-dgk# 188xbjNL\TҖ~RGFtvwӣj}Xr{ +{ +iUoRiP@DJ@]*f~x}_njOK_``箾N};{toƴXnf`}߮ױA=yGZ:N<}W5Ѯ@ 55FC6{ˡ8}=m_Vu{WWz}ZՒ,.'^b; cg# q6;qBBSZh hR%CMxӔodʛھie:vxmιlq̋XbK;u$u)TQ_k/\Zq/CyU [r<јGM3'PDwĀ]:g +#(/|*~3ss# esg_rxOYcsb]ҡ,JEP38C( XQoYl4k3"_1&P慊0+R WS:~N"S22=oBuPEV;MrkQ3n7TdRQPwݾw;KʢʺDϳaddY;X3!iu[éQ0{*m؄X^橥 +gOqs,!o#.{JɁGpJƺH9Ks>Oc4!#6ײLLo8ջYޔ|xm Jբ۫U\\-~dGJBHB`%ݒY-k)<(cθ;cS)/(*K-EPK]N^HdQ>寬ĸZOc\Yoa )cnѯ%iE:`H{{rWJԎAI7|(7 *lJAM,@ZP4xy~!.T+(»_[q\%r•*o׏e4%9kW֤S]īK9UI_%~ rD_I9 FIqX%]2bjt at#jJͰw7@P7rjNB=?:~r-jhW%ӫpu2L&4p(0܄$Sv(`^(6-!RAI1pEvDZ,)pWTeF 2ZPptk RvGW'% #qEzBZ]T]WE'2gvDz UDZ(|JH ';Iw롓NE!ys:歈{  z_h>^U!M/r5!T~X]u?%/ +pTT` w52Z߇2;MU"Qs,eѦ)2Q)ԳPCb(u_rj>aDbё@N9eTU +D!<,n&Tˉ"EFĈϮ`ZňyC%k"Z3DHN+Mx $dN$K (UNW痓|_eJ^VW/bL~z +̒_&fC#7^1QzGZ# |񅒬Gt Ë~r p $#`rVE3]>'\P魥/W@!]@P86 7a?1s.IUc +s?6b!QHV2XKی&H^*LM,$S@tHҹ}}eF*`ߎ3^3c6P;<:xoh7RľױNpg,X %f@[i*rBX V0WiBt_Au`+0tP1:ԝ/ 2v&x*#S%z h x9>=pLkmvn Ȃ9?F>쥼*Maj&uT%LZALWU_eOF [$w[3X쇼ȌGU戸)L2]խԅ>N^n>&S:fOFPд#Z^#7Xth"YƨUYM,e[R(y0%:9O#^Pɫ5 yv0 +iiW02{6dq{jDAlbg,E(b_E%w^pA00{¬pOhAqXlUc֕XgU%Sg3dh͚z`js6w9LNg5܍]*(+Gl/HjY F&ybqw|G'bIy8a67x42roH"-G@ݬWdT:?5:[֊6f6lc{U(;RKi+EPoXQ˱78+A)N'VP@9qvy~<>.y|wp)bmGI۴fі,mƿU8~iՋ*;2V~su'lb [4p꡻(F$|Q%O!~wo^&csќW0u@FvefQ+^lj/vov9\ ~:_\1 +hȊѦpZ)]N%$k)W,d9P=} EY+awUTK3T.KϡIlZyݺ\v! M"p~Y9 Q[_=$BU~1| fV84 T2bX2q)9ĝJ*u? ,nrh b?׆<'!I'սNWHik:Nh=ʵɂ?eW`{h%rCJЩ>}B=zF瞱c),0Eyh7_+JbqOɴVgl1cjwϓt@{c*.u8C97/~Vr~vO"WY&Oku8jV.::x^/zl6$h͛MWeJb oZ'DtzN};o;lf$9gd*+rG*L`놃/ u arhuuBM#^.O7 +7cσ`8 َ!7[ZykTrSn!ܙgFs#Cd,Z:FyrXֻ1]ќD72_`'3ZvRR~ef23SF>=hljCvݵ)>ПWk:34PA#>Ը9gcLcǥ1gU֨Ýrtv?2 ta)aimeL"tooz27;Fbܻ g}.AD'~[Ml8~HaqxcHp > .fgթxe4_=N~rL;#V{AevP^eo!Yk9E==N2HE?Xvl=ztnuOcN]c +W?5bKY搤x8NxSI |yP"Ye<^Qk^MƚC~Kjïcԣ?t׵ia4߹yꏷu}@g'1#{}k'{w1{BM^M<op>gjs/8ӷydnpg:44o1T׿쩽M?,řu:h}&jWh]톍/~b[CЁg`d}DS:OY9c4ـ~w%c FbiqQ;1v,Ϛ`4ywnoO6t~A|.ֲ54沗֏y bu}rtçD#>YG(C5ʋ7F!/b[[w8'FKJQeq*2M:gH8x(/u>*錜҄ǨJ(#dr4d"g ZA%?ȝ 2t,EDnpW#,5PV'rtkJ*!VEK6BUjI)/Pr s9u4Śuʭ kt@XGD)U2uM'ڙ0wl\f +{=qv?iA#6NqL_|# hZOixx } u::4s@EN@Ŏm[_pɵ"v,<'vIT= xZ8h1Y}e52Hs7\U/kwgFm޽]Yiǚ\3қSr <v&mMFN {`Զ:RVՒ{'8^Ԛ#i>=1дg(©~cC!xE]">u/"{ ][? fdTzBuVAh^T˞4z0>xռZJ**1sjS)f߭JM3Xr *?x3?ssH qJ"@-~ dq d@UP8P Li.2E&\bpGwGB!r0SۊS \h0[%#!wS}g||Oib &.&h5 5)$~QÎtW8~'؞w?^=e6m٬Ho9Eu9"^5Kg$y!˺ HWaT'񧶛yh:jMt'fO:Y.4X7ŌM=C=m tmلI&&kۿz38p'?2V'#`-]ꕙ=N571Z^ﮍO0tlA)r/5y2jHjcUDAbe,3L!+mtt la߾ 4ИX)5u>(5D5o5+5QDr=ϧ4A׈>gǮ&s\ygT.b9~sg3,1fdhڣkX/ 5gn=2vOζHaٕt4Էe8W_emDvö1 ~bCvh˚ؒe"];=>iuF]]L"ʇnJrk6Ν|ĉ_DhS?)pFl@(PHOKRж_Ay5r&ֳ%A䯀 `洯*E#ڽӔ\E_@H߼ni(\R c;I(Y}vB};|`cFC8/Ls{g=q[H.+Х-L~eG5FJ f+if2ׯޢt!Ķ\mԃ_5 ` n+ϝQX[@y +%FrqR.NqhӺ]bbqW5LUCuN۶N1^DBa Yy> +zScSϟ:, <2}':#;*5S7bhwԄk!*:42J kө[G^(ge <0ZLBYQE2|')X[m  &j+ܜF- |9kUb^=[p5| .(BKkX +$Ce+`|݉ݎ#^n¨,Fe0*Q(Fat(F819\:Ky){3į? -V#W[9t}wQΙ:;mwglj%U$K,r\e 1ƘHlJr $@ \LBKI&y]4n =gvV1-Y?kvfgN;uaIgmʯ і1֙9a ѕ+.KYK +{F2K "`lS ktMՒCq6Ok1q{ܯכ 'AyTFF17N>/v#؎ΌIUF/&/+\nz߅hӕSݩdGׇےB&~_>MQ#h,4v`=Z7vhɊ.ko7:. y5/6A%"ȻDY];uJ;u 3M;}ʼn{κTahsggu6zˇzUW|!wlU |i[1&>m::מch?nFm#g#!pNkb(aVbrZ#cVj⵰jDBVjUFxp?Yz(sm~8+chkŚ"b\<|4 x)d-@7=1UW<} ֋1W#S!PGubEndn!һ)b㞡]u&ޒu–..A_ \xpX#2~FmdL ĉo3.TAjrȖɵs.v/ ;;{Yʞ4D2'2Vk1;+)Rs15ᄆs^Na睰SZnH&I"Zs7X єR-kq7D՚ꮸP#8/OƋ\Z{ʋ:tJ3D[27#UԊ(^5t Mul +s< <T8+$ 9}XmJ͇eoC) @{Q'Q=eF5q=/t 2(qx46 +QÏP&>yGu:;wܵ4df&|WY9B<w)Oԕ]$o#7_ZְF2lV^As%WȭnF=hվd/u[CpdŘq$ Ŧ*ƣ H"'βo0Gcq)Q){g] (ܓXPi-v/i1L{mk]F7]49>]jͿbnÞ^>3Hs ԃ \ F+c3j=tkm3#ȗ@˞ptfKm{Eص%~GPH =|*[J߾8R΀Qu")C_ZYp,rse5S,jlZ~ ,CapW`$&Qv?27]![Y-l7_tH!"Ի)g+v8g_uln]o +EY@CJbf:FdL M h ηDV7mLht7#m>=Q*7T{U2/ B>]U^@s`/{ơ)k#Hk#udϡ]u}dY}M[xIkegD_هW4S׶_iqŵFF)RIY95\$,ݢ{)Y#r ~;8 i [t$ڈ Z$n:hݩcǪ#klyV\{.0c!q%Vyr 1{x{/sCH}806ˣ_-f6_JhIʹFFx_le~m՚h#%xLRU)ֳmܔP0"WApl0dJ +-q,~6537-\5s7Ga KcEƦs8ʜJeV)%},im-✆NqH/yMOt,~Qxɲ`A#MFC-/xANg%Ϸ&:6Jsvǭm}৙RcyΙ\ շ4ByD=XǺ#v(0ЈJhl djW?]tG~[Th;6[}ŞdҒpV|uc7-kQW_|1n3h_|tK +c_$M&VF?UHN/g0KH6}Ő2C! eĿ?:?0!?7yr{mstj{WƶMvwh_,wG7uoLoo+<Ƌ[1Q3mbnjIm/|WKkPRVDC ^:.#C=Ԍ"g?b}E_'sbx_"n5*nҦXK-N)5+5fe4mݿ(|jUם{hـ8|N.3- L^vlEI}W}5/}n5#9s>OO|q/:"94MMQ.%OQu)螫K:ݸj.<`sМ-{`M͈F;36%tx`W:N!`7MC86PdDj@| 4UʥX'ᕹDc! ni{X~#w?ih8$e$3".!ƽ&% v lʟ+bRW3[NX8ĕ?1:cEO8'{rRܡWCKmxwk\\{b}Ԓƞ LP#gaUЛj{aqc X"qwY +  ehlUW2/Fpc< =SEFZ@!$pP*D?~8W{ǀ< + @]qIˀX !0VU$Pfj򳮬D-NVqE4:,DDǗ3V9X)ZO|8{X>9k 7GHwIKKԘz -19M5foU@04E+N]TE =,{L<.`?UмP? l!]T A$Ի +H:BY'֛X/PFi>F F-=tvX^os0"֍`M)P+nBRg%6g{_HIH/6(@ +P2@IhEEb=/"5UDu}};E'&Ctig@q). A 2 HJbM>c9=޾S/х$s]HӀs-.bL.t?.ߪ{KiI]ɀG?'-oiTB6H("?M֍CY=?-2!q NѣA8X,y"TRěNBG + R Fo(~#+ʥY3UMW˵ާ';Ӳ},tV0v:hK*cgVhוQ 6{y씄_1DiǷ?/Rc.r0EȜI9XH9o +[F$y4ꮩx2:̽jts,;p'T1&)l4NZҟmҰ{再'0C>wWRU- qM6_UI~0o"im% K37D!4?w("D%xg%j^xh^X-TߺPJJ5:K%*4Dv 1w(w˃vĮ oYnW-7K ^6r._|y/fu~md-ݼe=/@ѿKӣm J;t.G 1# B#b-1A΀Kκj46 !GoP&8K2^8ݰ إ nuwd$r#0bR!uK;|'M0'9I9exр.[._$W+ϳxSAgn ZN̹3U q*F-"Θ(JHr3a eHeYBok5z]sgGW0ߺkYQKVlԁrr%T8! ?2LCb0.k18DFDzd0ygx)E&  9| ߁iȁC5ev{dXWIpR{6m0tK0PZ"N8k$]|0 s`ȵ|il(r:ώc5yPeϋVz:ա9'+A O 1ح|3'.;uֺrx0- 0Ыȱ̌`-p9IG-m5ǚ>vK *W^-MVJg$Y"P2gD:HC-/5Cl/~clįRX1 )&esR8ZVP>ug`*pAK9#~X +ugI NV1XUPht:!dSiԖpI|o*;꿤>]c>ՄW ?EXaQ*Iv^*ou%&QFY*Ik (rT%KoY;VIFJ56D%;*@w [$_,ǔ&ǒXւua2l  ۃZ4v]] /]Z>Uu}XCr܆]ur}ڠ-XblҶw^`SauRRnh?ohV4k" *q囖kN$-tJOK|vT6P;/}o azl&($kWu~+_{T. z?Φ}S.=M}ڊ +}מ~0d| ˥s菕%'2fӿ'aN k&? ?ݜJptQE ?\*ƟŸ"cǢQtď"g(8bu*?O5"d흧Hz)=J/澪y"NLT-ήnAψ6hiu`ƙI+rN)iN5д'\t|hMnVM.K}t-_WT ++eqhչ1 I*U-F $~ XAu3'V1XEgnNa*<ղ`}]eWqs}'U^h?c<=xTAQ<v*?1قTrآ'k2++<j~?#Żd_#^#0̩qÌEOᐟ"t/yO;Qk,*gģp6i+rZnhd{4вc?eWPJ+ﱑlvFc3_CAϗ}}/ DC}%PB}V(Xdɻ9E;"E뻳\3ij%r"ht[)Ad,%Ndlir%t(h%՞\g9of:ַ(rA\!JJL4x:3'-{yɩ 1`6ݞ?P?~nMEqZ g(Bz^_ah'o{9Q +6AЈR#<hxcQ*yj@^o`^?>C"<:eg]Hh8|݆;֜4{<_pS6Wx/,lOeJ|l7VƭnV\q8Cys^6(ʹƔǯpt\V'qh-:^RHp"Y*QaFg*qZ~9N戻5t&㮛qUqWu8em8bR +TQ +Ϳܬܣ̦? u P -Yy&뇪7UOb}`>/ei:N,UyбZ/I0f)0 XڞSbZuBXI4 s߯8Jx6ϴ *3dT bZgv] ^E2i?AA|ZgWSƗ)T(aTr 2k Wy 2KUR$jLCŅEM\3]DĮ2e'RŠ4k4ԍ#q qcي$ΰjJvF>)A=Z(k `}!EZkVbm~0W7}♑CV)~KSVXAI/7Tl1a<{ӒIfnRBR(%֫%Dg=+x(oA +sWQxIc'J9/`cf+"_*@z K* ?X_cG +;4]p\7Zʪw:moJ%zphq>zA;Bn5Hfh,jU./WֺthI%|T^U9yTGܣA O]<~GqkN2{gY -㌤:0Yɞ\`թY\qH.%Y%Y:QGlc..Q-eՉzU +X(i6Tpn$a -6ۧTEyqmbZ$pfGImrS6оڷ2ۂ6w.gSZVg1cqY欖*neD7O>]c7v^{?k%ɔة,pJ0WS+[6!um \V2Uq7j:oMLPiV&ZzKK ®I-4U +Zt٭tS.,TZFM`s%U-F`N%$pGLodׄ$~{_1O֧uFka\QՅU;6CtZG-\~gR`*Yջ +7/pHN:1}کSَ%O l26SuvStđmT &ߜA=Q)%;՗_ٔ]UdTTJ&dֿg!'|p'O) 9iٺ][]C3vԙsxclDFWD`z%Tzr)(l#Y@59@N;6DžokF``ѝb+2RU_K/PӼʼ +t&.NsDg4S[ *IRFI~n:)tBF:rBwۀ} ůvhюtBT*˳{VCR\=6I-OߚX݅ +V*KPkխݍ4zМ0; #%p rA"i6;䮎rOBU۪)[n84ORL:GhcE)9\uk 38euې(J)p%W*ʺV.loMMNI)FO-I' uPI(rW1V^YdtRZqh(& wK**ՑN8f' FQUTᣩʲ*p *|V~`kc0;oMu>ye}m}Ͻ5%ҪmniiilfݞisDc.Vx|n36%rY-my\n Ma[ Oע`4ˑE٦-=s(I0rV4(=]8J347^^?T~i>v)lVv1fv;J +cz^R,>P  {]E[iBJ=̘Y>Rw,`;;fNGGD>\zG\fي[L}˭o>KSg 3'{: +[ʳhԚh5qꛖU;U9IsjLc2-9͠wRP1eFZ'7'ֺ RnnBa6ܺddNY&Ü.WUd^/iR +,)7q„ +]9icώl&,Jj;Z!|dSi3꽖{KRn2v2LVduPtʺ]c**e\)@T5X̤LN[[^YXo-'FCRgOxD9OS*MV>VJWWڔB(JsEʐJV$Cr5ޭ)x@߲q/[_a1XJcJCH&O4I]š"\P*\s4ÒW@wjtڸsRfj)GRKiƤTڦzEB +Yf4}a*zPi-)jI*M$zSas[O$*RK;jNVKEm%It{-;ZuY&cc-Pgp_}Z"OH#u5}.|>E=*c*Uu*2q( +LZ33ٜxCrf#>A#jFPT=ER!CQ&O +I`*#7*U&esIZcK7Ͽog?pWUMՎVYQ[TH<:vz(gO}bjON/4 ++ڍE  VuTCbFrn)25kKXi(MuƩ B\Y41iITmX;Sޑ.Kw-86JSȴ$Bɿ')@ӓ/'9䲼dKPS)ℎkNtzNVe,,KKG~1.E^q +%fass; )*>D[^BL6t.B I#$:BWe +N#3ۓ:K(!M6yK$[6L~?h1^폢'=tGѣXDJܟt(.{JT͆@oJ{JJߕْ86Z/r[C+բT ӯ4_A| __zwK/^&U"1B= +*k'ReB巪^VnG|S +uSugo!!FUJ>Zwt=b@C-?M:l&}gmg?u*;:ٞ:ۭDO\ӽ%ew'^PGd=q-Ï0#\sz况ڷߟ?Cm}Ч&\s&nG'ė&x2Bw~p}qㅩѩg"Ltuvt}]>~kӗg333y3ꙝ33C31{٣E/b +_C>~ Gq9 +Qb{:}Ti@/xss~.ow9F1Qb(F1Qb(F1.h_N߻ngnP{=7_́Б|1nL(F1Qb(F1QbWP(F1 Qefr);Ϣ\)$ mH*%A"ЖAm-Iㄶ*%'V1yG*Uh6Nq.XCcY)Z$iJj %1< Y*q-4_2hrpVh+B[Ey4Pi B[+gvUkXFOag&86 ΤMp&m3iILg&86 Τ3pvMpQ~*O +P>*?T:#<f(Gal VjhM:+a771B-G΋< YcE\Xf+U_WK0u:*YE _0XU8pT;`:0 +u$M9efX_pl*FYRpdPX>~"!ǁypyuhEV!MAۃe +`,<H]CX'Ӌ5rbIK۩[eF?cx_` Db®_¸e`|^\ɞATDяu!!bKd`A0+x.j:֢_bGc;WF$#Zn5nsxEüx<O y? qFXލ!ЂXXJ#(6%f'H6 +=Qt +^#z} P כ!, {'h.h2wFL ؟`U, d>I+9{KB9*ralёsWxErh/b^l`,J`XZ^hNPCVw`=EOqP*5 lFȁuGBw οX3 MAƫÛm:tDBq$(r +D"sa 7KՋ9Cmw/ɏw@X.A6!X7aX.'ذEЕCf|}@0=X~9avWA8k:ѳ !mp/T0v?tw"=j؍*_ށ=bB&vVcmxUx8!]{wQ~ȶѲ^]#F.`+qAaL\aWb \_7:|/>kx8;?3 +rvw8vY=87w{Gnϱq >bU\!5qv?8N(zyW僜'zi_k<Lo>tsH㎀.4{G>ݍ\sSn0vx|ǹY@g\ !x)~oL !8?pEAn]`S"7 (K"Hݎ9nޏ30o!(t s#G5VO\;ؘFLWwL%&tlt|wFIv^g " R̗؈Z;\KZJ``(;S /{5byqIEw9\s@0j̇ +\n&Z37# + ,GqS|%)48l@@m#Pv`7ׇYv,_иg` $kkVTG_[oloa;^&H7cC u 5:F5c6fFta{'17ld5"GmY:mm}0:8zE77W`77?bbbbf} Dtb +b +b +Wɒ@}SG^ "5zkh=[wu:^zz^szOL ( ^?MTL**yl6vRb`n 9j? 5A}*̾5Lht: .k!x(o}y1~$E6 }'}~~~^/+s$ cJcefj{o}7:`/2o0wo2`Gf}{y27q`^8dfn8< +8| pxp)*&.(D,C-pqapKG_/38HC 8uČSpp8Y +8p6%4CgEC 8&h8 /^~8EɠfJephQ!88pp'_'/eٷxl6kf/6ݛqPVE388, 8~3Rt&P8tC$N{+08 +pDcI&*.a O8<8<8pxpx}ً}~̀Cpp888f4OEFa70 3N*Kj?BMЅC 88m}ӀӀsk;4iN2ziQ&À'/8wa5owl={pxap ppuۀO6JFp 8avi'0&5Fq %?~8;] =zgjCL/pK]Ӏsÿo >VX;;ʺ} C?5׀ÿoJ$[3GN {IrdCUR,BN)VWz \Z^˛:x@  `BF)kk/*$0qQ^zg'K?[6מ{9_'0?d"TDͰǥKk ьlJ^d;P..-!ɤLvѰ)GHj?7% +e:yqLvbmͿv1z5%C)`f/+IjM0LEĻ FK$ȁD ~\B$#"J@c~R> @p {a C1 R_,Sx~&b f*2:`N +A4Y]ݾ} ]4 $%3Hޭ˭RRJ֥ bH _ tedtcK +%P_Bqu]m$]=j BׂBC)4+o_ERF)HLy FsMSVחO(}fvwR"dZUL%0{ -^pf,&vژX [wUka04>,|ssCujC!23˜` +f6pCaTWVFg|2=q ph6gm|(tHP:(22F/>Q.s͵%fV4?.螟xCqeYƨ+"u28nRDRHZpu?*PPٗE +)Lrs.Bs@B.`@4` -PNX%9Vn@o; +e2p28{x;A(I)B_7s'S_\0ޡ'yY@ %k0I$r9o +|B돤``>AaeI3g`'5._iѾʸ.sְ7D3,e}MdwEqwF7@˶d940A]Aj8~k`a-Z +ķ3q)OZQ(I(2W`~Nd1NDW_m=R=R6U=&=/&_vcou]x]F/[9XQu8vDqD !e,^ӝ#>,qQjTx>߫2'h)p?pENp-$P8aE2YQ<(]'(^WY>:P;G%l6B)sC]< |]hׇqq&\Pu4' QQ^QI^IZC<\`{F ˾G' K;M^~i7|C + aPAᵇw P++3Q>k% ԗ S.@_B!@+~4 7 ,h|[^PAR+1ApҕCj\Gt#bk4ڐF~Ru·Mј9aw%d>aK.CJW= * +Ρr T=2zZT|, wcӼg!G&Q)S ︢u{~ [w1 <j;`Μy ]}f>\"UwoQ`łnzc.Y' /|{huS; hl"C ^3(=0lH)В +PǀoYe L0YKwZM{Gzi}r4G7owyq5Qò47eWw}_òݥŌ?ϛ%CRi!; ={5掕n<ضV):^W-w$/rd컶>aOIdֺ$IK +զ6_s0 y~yMh[Rsb\>Jr=\Bz WaZp(0:#@ᄱ03;`3t' +j&`[>@~al[G.c6:52(ԂºBro.@ƣ2@\"8@m+]֣0yfgW @Y@/`@^f=̘jzAO)']Vg s 2h0~nB!ԜSoFj:kZ*a +>ob2B |zPxCvTr6qXCU8mmUٖ+ܓץ=<=vIwǴYa--qx?L=!Xͤ?We}%/fW:׼>pmpQMn$29z[d{.=߂J]'Os>ks*/qOĴ$i7 D|Cmjlo噼y>f~n$oܘ`.z>^7/1-NYwC)k (fk,6/)l89%T[S/!h^O)ۙX,CI*VL.ӕsL͹\Ox[iƷJ$ n"=WJLA5ݍd:TLV춏q!3 qJR0l/kV>Amó2J۶rD-׈ۙ .xu>KOaӺ}Jɠ&???LkyYq7 Yd&$G#b&7P!-{-?'q*$"zwbEw;gqrK+oӿi c' {4`pvÅ/y#_J3c:㫼m"e/jsY(X|M;xL8lh.8dJw{cǮ5qw7v{eaYz10qU6_^α0c9lM]G5+3E׎猉%uXFs_Jg~uyH87yf ȿ ye;A*X rb?_$_9SHİ-|;C.o&mX6b4'}9ЛNDY9e5Ed=ʉ{ĵGP#| ^.FK$qZ5!s7ws33eMe&m9yM*ZZ+!3wrd7',+€/?o#P4~w4?3Cr +qĿǨ +ELy9j +-2hA * +oVezVy|Atۀgۦy^z|z?rjQ.eWfY;\mtk2@6+IǪB /%$y]T}[p dPQZje1 [ zf d3}DiϢՐJv-bػGO75\*iP̶SO7t8/ޕEL|~q9ӛ9e0 [d.mxRp +L3ODɌsMcnO;Y~ɡqBQ_RyԘSOAɎXKBŮ3SkzZJIf$5"s'EvH X#j3M,*wv>q +oLR%1+{y~Um3eCO{qjk%홄hir{jAT % lHQwܔA 1+&f۱}P[W zEtѻ]Ov=aHlTb +x7.Wך)iV022N0W&o_` "SY E z43I>7}X~A!'н׏ݪSbjq#hZ,#Ɋ]s'mEft[^h()m=y]Xʹye"%xH*Tat/5Ka-7<1a%y䞈g_xh^PoAAIDV#lY2>Ql.C1ޣ5Rīcɰޡ~[Rdεise˯/f>;GU lTtR%Gn\Ke𫔩Y8DtVݩ83jMCЛ߲lUׯp慫LJY|sA+H<D3qĜ=$E==(V͝E.o\ \xQ*rN5:=)v{"I>z7jKk~MՓTePėC8)j_,$s@.m[ؓ*# k^[O+ZZn7dIJ/U>(?!il&jv +Le"*G9wld(W_9,x=ㅏ= Zf1_߻K[5jq0~zB#+;Be'EyкsS:V?[RV3^IHDxc{еjI[ +DD' ^0],w`bC䋪9SKTdLοugiSBhUXox2ԁh^n[ܛȹ.Tw65yX룇GNwUVڐI/NR[wDi zh/#|TLWcD+~Pԟa2^F^ +5P +LMO囸:~&RCx_ur*)ngh#g{>ZUTw3'}E#6YDw1':|V(X۵PDiGbctg!ɣLyjUZ4Bi>/5߽zeV P=8Shjh4! =sjqUNͨtjZΖ n9QO hEmF҂7.>>aԸt/XDo(! 6C}r:ĤR#ȕh {s=-XF 5 +`AXBq=v,xB v#@jc^9CPUPEW#zP`ې V Y Ӻbxܲw6^ɻ>)9+zq EW$kYK. +<{nd]'z+ULTCyG@ZXBij;:c1xkDSLߏ9ͪ((bJt?աRH+/ᶿSJ/~KܒWO S; jQfB; n QߦNYv'_ngTY+v83;? +^8p[SZ[7C%Fs Y}P|SodvgץҖ:oZ]*:8:m7ObۑP=rpʺ6<'ke&u/hL~+];"a.4sJ{TkF9]>V>"]TĉoǷON*޿zCk^e5}^NHFSyp^0%xYSALo~oVdV]OyȍݭkPrཪpOBG~Lf$bWzuXI3 x:-0P Wb#S{ ,c +endstream +endobj +387 0 obj +<< +/Length 78285 +/Length1 170420 +/Filter /FlateDecode +>> +stream +x} |չ9[f2Y`0$,Y0B&$dA# jD]*j*.w\VZ[[VZ@9!P^{|<<=ysr8c̍=[RR>wܷ)S7*Y^8y+cf?Y:kA eodL=ϏcJt^<\;u+c2~}vy`N7+2V±_ٽ^CU5M[}ﮚQ5v/3v Z뛾bo_lkeF}W}cGq1cQrC(Xia7 08n7%ihnުݾ.i:EyVcKMĴؠM9.Fl +yn?20?(oZDsḼS*T9smf"=ܸkt0JgdGº盯cP'v s8[ Aa.VB^v5}>߅RaaB"ֽv(AQNdJC2\Ubt2~^C) OWm?v)%xVc!IyLɔLɔL?ZM`}HdJdJdJdJdJdJdJdJdJdJd.oER0=[ N+ql!ǞEc=3%IDmI7Ow93'# y%5}}wg{vW?th-+?v횓VZYYX^lŋ.?oe%ųfgL?a)&MPX0j䰼!ެTaZ&AS8Y+RcyU1}oΜQ" c0S47XO?<דilڨjO=_Sʥ*!M/Դ>O8A 4D*4V٬žuHjAņZaӹ&aS)tؒ%JƊX1cq̤Râ\u];]*^ 邨ԥ+:++ n}6Yorc>\0]#oѡjiO jHt0H4f:"].v.l +h&[VBJ֐Ik/_B{ۉUQ.rP,3J1`YGV-?[fWc)*GRC)>/R/{RY?IG)ޕR^w8(x[xS7x]JJ)~-+RJ/I/HI ))))R)W{[/E\}RĤS;]ۤ+ŭR"ϤYQJqKq{VkWKqWJ[+\ˤTKXP]R\ R'N)ΕKs8[!řRk.=\^{py嵇k.=\^{py嵇kBpy.?\py.?\py.?\py.?\^{pym.o;\vpyË [s|t/AnVʝ4IӉNPn3ѩD:g66'j(ڈ"d<%>p\N& +5B%!& +U%ZCNjUD+**N$ZA ZNTNh)D- O4/ K4'MT= @%DDl&͠zӉN FSPDED&M`QDcFSB7h$Q>DÈR<\9G4BTK4h "QxElxŠL 2؏((\DN29Tf#YLd"2Ƴ = +8ӈ\a}K TN%Ddz>g>߈>!J}HeGg?).@Ct~G6"z 巔{x扠3W~M +E2/^"^ DYryi2>E$ω z<ܣD"DOtQ7yK{&hzh z%*Ne9Q92t?hI<]8.x6x(rO4/{K9DXO? TO? TO?TO͊ffM;?r⩕DSbiL&*MV&SW&Pxqԑ9&*6:*f!QUE-$ʧ`#SaDCrb(`CT%D 'ʎNe]k@qZP(QUH +.2:RDv򴑧"3HԓQGq"qV{8ko} |||P >!{?{}{ 7ׁ9y_ukGGWпt{_^^@=hYgv}>hQ}uGǀG|>< iaݶ{mw4-πm?\:ׁy'W!֕r2Rb"ԻvYy/.ogѻzL]wȻy:g 8mm ml-{şfnl +wS#!qVX=oOo>k{yI;jWuh h ȒHg$OEF#Ae`UvJ%к%\8 j@*'V ڻ2PYT8+{ʋ]X\(E +wN`vQYg\: Y=~A=<<4goe3/-٧g_sf,sf̿f3 Wse,\^1.9Rԃ܏^t)N'w:{ wg7E=):ʘIeNס.EDj_iڔ b(.F.c:rθ 3.K..<~-3/Ygrŧʘ \U+qxy,]Zcg͏ ,8r~Sh_=B3TikoϏǚh9.r(EOgߛ )*݁/QZe8NNSM@ځ(-@34뀓0u@jj Tk5Ij`*@Xˀ`1X,`6P%@10 t`0LID`0Bp`0r! *dY@&t. +`̀ 0@?:@8X-__>>>|| 8||xx3'oooo^^~x2K%Ey93Sρ'ǁǀG#C}@7p/pp7pp'pp;pp3pp#Sz:`p-p j*J`7pp9pp)p p1pp! 88 tgg;3YNϱ9?csϱ9?csϱyqpgqpgqpgqpgqpgqpgqpgqpgcs}ϱ9>{csO?vS5a|3{ ;N<;yb{UmPvأG: M̮Y?z9t&ېr1rQKluۘƬZ]2=_+=E^9 کt͑;|,e+*ĪXe ,YYkr(grkᅳDGZX+aQinKD)ZmuMTmI|n,QIoNc͜jJ2YL͝ӫعl';& υ"Kإ2vU㬗k+5ZQv),jJ>Ȟdw;؝m.k0k4#r^9ll1߆: ccJt#[XG ރ帙؅1>:"]|U}f*-'/c?bVԵkw݈wq$&ϰoe{mx꾊vbl.{ؽ[_w'^}~VNHC=>({yE'S8e`ϱϑ{A|WU%{KwY +_<_1TjӽSDLl2[U2~g)%%Q\a*.f^wǽ;x.un7u y8 +}(mr!^;oɅy1yjNdJ7(M7nte<E8inA.]Z+"u/RQ97c8àtѠ J5-U*wZ@d̦af X:uS@w49m`{`fHX%:3记=(+{Ԝ+\z[?WjٔjVcM/d138wUMo8F,,deyo/ߙ`_k~`%?hݚw)>h˚g#ÆL\jtf)0z-99u ^J;ڏ\*u ƥ3\9>j(Njw2H8^nc9ݛϬ۔#9]RFzC,|e79=v`\btzՈki{aoO4hDo j<1<ŬL2b~&?ߠ+9(&01񅉉؞+V_NmP>e) 0fTb"i^IS7h<632SkԭV;}"$զb޽fV_v6)ݛYn*R2bR{9'ˆfcfz̆+nW}`bfr s8zdk脴c ܍7eX]x3Ɯ!? E1?'*>TYk7[9\ɓg`3?k '@g$f^rb͙GO3B1 2Μ2y#g@^uR-9`1ͬCltyĒNjxS a s,nCg }4GD'$|OI>'$|OI>'$s8c3 1J俛[}4-'Rtz&!1,Ą6zݢ6(!ma*{zml݄) PKh__kjHhL+Za&_俳_k10E>vjq&M- ma.˼%6oY-g&/H6'/S-y&ML43i}g>vg4ϤiI3 FBcSVصڙլ]:R1sJ;%I"ݮvfhBqgk =QF: w6ޢ=f0\iik-֖H0ni.Pg66 6uY-Y-(6#a5ܦզPYm 6(שupc!mPګ!5\noS[ 5fsZiE +ԹQ.GBmj$lTQQ6Rmk +5VhQ1nEPmMmߢۈزAm@pSk&ըz*jcmԩz-05 mrx]@M shlPk1xw6  cبlR[E3XK[xܣ-z1!i44#X(R,T) GP0i1kCM:1ћos*5-xs8VfXmZRgGZZ h 64zp/vG 5Ѻh[U _'*[1%j{[CX "Mh4TVwh* ,҈m7!\Ч.8\^p[k#s á^h*niƋEwHsK- zm],kցaa%+DD,ږ ͍-A)^<9=ŴׄOCwP] ֺ&֓v|_͛cLaX1ߝJt>|w84tjPK +EC_1w/ՆoU;Y< O9wz_7|}-48߭}|3߱ | Ru#;`/?η@x,R?~#f7g#m4QS$3f:YN͆={-l{\l< FC쀨gܒA1,"-H_=;Xjѝ۷o5)7N^ϭ]HV:TB=]x fӢOwy;ty>>qH=ols.,_y8&E40[/ȶEI9wvY,k׸oqj]kg k^5i=ԔdU7{>RH)mSR1WkOE@kOaҦ/)یAdIZ밾-%O!^jS69ӎNe#cFbl4(ECR҇J.oxg/A;2e䬑W숗OuEѨ+F}h,OiSc/N|03YYǾ3nrՐkgR_[XısL5Ic'm,%sɯ9rdʊ)S8!-\!2MMkm-STOmSuW޴ ynTδSiGNOk&oek]w5>=c^ygp~|}mܹ` Ya; >X ]ua"(y f/dQg/~eɌ%, ,i\j_:xuKYzlلe͙=2\J彖fK7pWbˊҕWNXyʍ+ka{YNU[VG\=;U;=d/=Sy$3e7coҹ#qҒ?9뜞yڔ]g1;d)-1ߖzᲱu̚lo;3nL~uz9F]I̝-*1;O0ߖz%m:q՘gˌqiQfM(3[+w8=gUf8l2ۏf9ߛ&}?bnjZ淸̉̀ksZgӎ2ǥLʮ4jJZ3j^zjei? 63O̳mϩ{M-1s_VSreZJ#wc5ks#dUܣ +Ԓf>m3.q=ttK +l7\=]If|lr&¹VtON|$e9K}C5Ccj3bOk2 5[2di(%צּ7mFzz-ji5[MV[ Ʊ4[Kl>ZhY 3W6XZV7s},ڦ smS+nkq cҺbrRFi]M1W],cQڔg]#[ʏ[ϽyEgci}R1vAcGcKsdzyw񙺝)f~i}WfW.,=1/Qع]^ء֚(>mYsֺ_>j*r-J㖞N.06~iٖ#ǎ̓[΄ݒ+˔'tq2S^ ʝB7U. + Mne, myJS ;12[Zn^r#xrrNg;g<1IQb sq dD,b ,e ˅[J`P <kaxqx>W @H-74~ >1ղK$b2C\"mpxDY-.P*9kuxP %P +_CK h^hwDlpS^u򠽝dq`>%2b_ +hcG;WߠIv =61a, 9g5xC\xc BC4:o9p,=I4syh~;M3Y'kd[?*Afm66lӛɗ! + y2ܢTga(3ώ!Gŭbho-YFᴽ_OhoHrVE2VPZD+ôԟ0ZjFo'm6[nPڹvFʹ3_PFwj~L{6[J͎,W*e#+PJ4>b;@ZHZVbZ_1n$ag&1fETx< +Ș{a/A + /)a(#PP%'獠Mcv"j`1g*eyBcxy/k\|c#9ȁGCG%Wq6WS)~AI-ޯ=>~œA,Iș̖8~1Gң}Z|ksxE<2 0BX w + gnso|,.S>JћUfvɬ%VӃ(׾/R {^ƚN{DVY-br(Ywz֝ugYwz֝ugYwz֝99Ϭ顦jz顦jz顦y)5QRnj馦nj馦x#1oM Bƿن` ٻ%wKd`wZ +wNz|gzT!,ee A0.!0.Ka p\# +p%0Up5\Z`"L0n4 +/ + +l7a3[mx ]x;٭rTYvg.!| c}d1[esv ȇP{`/A~Ru:Ag]!Re}h`Uo'oVlr36P_|)uY8.p!x G/ }/AE_9 pWr&O8ҩ ځHIpu&CG n'q;INvt@I^@_Gc t\px'⹻sa `lX7y-*˜|4pM  ք2@ 屄 ɡԱu,cA XPB XPǂ22b:Ag]!R{ '\^~p-{ A0.!0.Ka p\# +p%0Up5\Z`"L0Ea]4 +&7/a:kȒ5Uxr` <kaxx߰<-,a/1G o&x6a ZŸ` a;0Zk-B.s><| ΝE1Kd8Jցd>`cƳ1٘lx6f<3ƌgcƳ1٘lx _`>]>c'§><'ܶp uv tH.Te"k#GNwQ{{~0fxo\ǜN? ^% ++~w;;vb&s,o#Ůݵݵb;$4:5ɣ$Y8CHMTݡ/@O "R 8Xe-p;TpB$ $8CHI$:;C +) +ݠ;餟N餟N/E9wp1 ᜝RGr W/cL{s*e&Mƻ-b毋yrO2KeE\|X K4bӈM#64bӈM#64bӈM#64bӈM#64bӈM#64bӈM#64bӈM#64$Y SFH7 +bp,VGo'o%[vhkVbJ[}+{.{.{nbܞVNrW.ʥ_+~ү\+[_H5rzRJOJ?4*3X]<83Ń;CydW#HJ])+wޕg|8pƇ3>g|8pƇ3>g|8pƇ3>g|8pƇ(P(P(P(P3>q *dB^F mAOiD{遨BT+j7^ƫx5P# 5P# 5P# 52P#52P#52P#52P#52P#52P#52P#52P#52P#52P#52P#52P#52P#52P#52P#5P# 5P# 5P# 5P# 52\h$b7?CK8W2Fy蓇6hSh??󈿘G1(~ӏbQL?+>9]zsL1eڦGZ,rk,X!!C]̍.Fsbnt17]̍.Eyżb^t1/]̋I .[_0J%F@ ci/s.< +Qx(G< +Qx(G< +Qx(G< +Qx(G< +QUQUQUQU1BTFQ!*#De2BTFQ!*#Deqx8<qx 8A<qx 8A<qx 8A0q$~8Ws\-\-w{q=qqqɓb9.㢊*.⢊*.q1a\ bø0.q1a\ bø0.q1a\ bø0.qjqjqjqjqjqjqjqjqI%T\RqI%T\Rqqqqqqqqqqqq\\K:.hlqqt0ޛQuQuQuuQWG]uuQWG]uuQWG]uuQWG]uuQWG]uuQWG]uuԩGzԩGzԩGzԩGz13)Fzh}( +|Y_dή@O p'w;HnB&nB&nB&nB&nB&nB&nB&nB&nwu5ZWc( (2 +G([llƏjƏjƏjƏjƏjƏjƏjƏjƏjƏjƏjƏjFAUTQPEAUTQPe4D QFCe4D QFCe4D QFCe4D QFC!CQP8š(Eq(CQP8š(Eq(CQP8šיrRJeQmh*h*h*h*h*h*hJ*1ĨJ*1ĨJ*1ĨJ*1Ĩ\XKaoĨ*3kg2qs̩#ݗG͔fmΌD:,a5΂UudvOu΍: +75Ցudw]GvבuKMWGՑ}ud_WGՑ}u_wEJ h}oiJZ Ѷm jx)ÉvA߈9|=ϳSȵe]#AF5t-@t-@t-@t-@t-@t-@t-@t-@t-@t-@t-@t-@t- jȩr!jȩrAG=t{#AG=t{#AG=t{#qq. 2a9So#!&:Z]I^~&_ȭ֓34,T9y{*UFpV!+)v~La'#3Yd#?/|{dȺ7"~-ȱE8#UcjfYyDqRy*KIe ˤ sː{0'Wr +Cs$0*ט/p^[h]xOtvp]ȵpJ8/G'Itx;vr=~y'I")kŤeCTAT=GQUKP$j jـ (ـ (ـߢ*j(Xe(X%(X%(X(X(X5(X5(Xe(X5(X%Wz5r5(bJi(T J5TJ5TJ5TJ5TJ5TI\2A) 4PAn+P*@~B[Payyz\Fvϰ6V%v)S)-A*=ŝJ_ WڛduXJJYʯL9W~>bNU3B_<0pVhO0F3F >eP 5wS(} 7-a,r7QjtFWn_ު1ܓqz1Cajy|2Y3ɘ=OV r,GɎdQ2(QAfTdI$Yq12"FFT 12!F&Ź8w׌Z$;=mwNBlFCvgJh/riAبHR{vۘK'd!WC#en 했:fLUwůgQ%QPBDc|\5DTnE?ThUɞD$PFWHro<.=tWq*._Jo.eUn#62P% +K^*dDu(%1PQ%㯊WͨތZY(߈bY?3m"wǽP^9 +ڨ/_Ј&pm_`69Fl>oF=\^>maT'rEm1jq^1e(G1~%y[)q*&}Ά1xq?^N᭧yr5â$8b M q~$r~4X} 6ͪMjx卉x*>.+NOϟO!W&΋JȰD|}vdˎ¥a]KidZv?ǯ\>qn݅O=ڙ1fk+e)ǜ?p]u 7Nkd)?g3{޵["t-ٵwjuڪR4x~gX^7fמ]ڹɢSӲk]Y>~݄rfa |0ێwEsY>'*Lw5&$+xQb(1yɆkj ;eL髽<q0G<{cpML uvk>5ֺZXqntp?M:M:M:M&ZV3C;3~m>Yl<.(eWK `}];׮}[nǾdǮ+?ۅKv;is..i ^y*D?5XKRO Ϲ<^^s\\.s,fmm5Z|XQś5#(^猼]Ή9uB,xB,x(7GZH T{bonڟڟ[GGGe_zW7rQ}E6[*-ᗋGeG' >"mSr|/gYr_lkko~_WE9> 4zT[*s,G XCA./ +KD&Ѽ?êͬZǪu|Y{5˾%R7[,76 qhG>GvQWV"kZ+eJQ4/r6"b=cuNEz^gu^W/ՋhyQ D(V+Պ`ylRZ)ZDT +ST+:ՊN+ETJQA4ʋF V-IdiJoYDբjdh$Z4 M"CdTVMVJMV-;ގz;ގkZ`^k&Xg7Mvy]ޤ&Dua_)Xg؎nGM^Suuo]-uu}Қ>iM#vTk1e=]|:/˧[|/˧y7{=NOl$[ez7{ɻg>g쳖7ͻh>g'y.;6Z4Eζ\7m֛YVZͬjn]m3ZfDیňZh6i15b-zZzZMlXQ֩:mVzc=ng]^=ovzXW#/%fDϝzl˞qWRMyj?LHP\;M4Ίޒ+zYkӴm,<3,&M!·`fتեt,Rcg4Do|AǙߵb]fq:Ø6opڍŸڍ8ڍݡ}ww~7w6oӡ /0?[9v~BO;JQ5S"^˕f?/z}-..w#O1 \1 q,FLjQUʢju='\;;1zqVV]_b ̐gֺw7L֚i>/iz=iki,8gZZViG툼5슼96ڪ`iy\kk-r Ơ0_2V=fFVo,}]^3-,h[ndFb[XYYYQO[XuYuYѮ.x^e=(AhX >X)S)wvGJlwx2]LSIZi]tELvn;et.{̶SfIw2[+4;eΨJ.m$ݱ]u[CR%w&z$ mf⩶ħ"':^?(u)~纫83ΖAh->O]D:+ξ;;4haهfi来Y9c)3N34p-f컂}W|2w^ֳv=Ɵ*}㷞m +w +ҷJmW}=ۮphPƧ~j)bj)6gN1PLo׶f(Vqud/ud_GUO b\P7-M uBݴP3-L Te+Uj.(ˢ6K4P` VC94CCQL|/M.D?ďpyx n&*LXGyfw%ڃ؇-eGq G1|q8'8I4>180>//4|+g|gLadԷR+ٲW^x3,*{ ox',JnM>Q|1\]ᖊ= +*ʮ+ Cs3[5ܚ:'at'5?O1><잺9ԥ¢'=$,J³q>8/LOݘfb Y% G@Dő8 +G 5|g&pϽsƅx\+3L sx<7sׅqnMV܆q]{0ǪW",h*ͮop܈6`kũҨBc!cNDǓOq2.|bts9y)M/SӢm[C]tnwa6q%~p f4(Fg9u\vHC`=e=e=e=emތ6{u}>O(>>h&1| ?1//+\kkz܀C6LD+zcEX9VtAzwlU'[VuU\voXV6᷸Aal<9xqOI<Oa>,?>S~0&%\^U|dV>*.1F4WqtWsuQE>hzʗG0'Yั@^qWg0Wc +cċ1ŘҨg9,r@+Q@# +'bͤ2^?QS9ʈ/ėI˘V@Ƥq<)cRyt$~L?&ďxc1*ŗRRe{K~Y#8p;m6NL_[q;>j7MN?s9;;;g3'%Jh|U>苃q0VkVkH[㇘jL ˪²̹yFg7&cd워}7f܆q]q ܇-'fE='*L՘fj888881{lԳG2.U;ehTT푾Wf_H!J`Ȗ~>+e)P +@(P +@(P +""@+%J R@+%J R@+%J Dh$F1 ~K10RDTDTDTDTDT4.MEiF4͈4#fDӌhM3iF4ȻMn$6ɻMnGXXXXXXX+ZFղЂVlF F;E"l}>[d-O'D >OiOiOiOiOi&FRRRճyJ"GIR-"S\X|/`b^KxUױ4K6 eXc% +hDVy{o",Hr<q 'Ccӎ7U0ݹy|R26Oa>󮿀XcO{>\XXV +mft=lC'cgX㠰2q01i җa*V܏C}qǝa^aU屡9"/ק~ +l*ѻ;ûY^X&_6`7fffpmjbTP?O5SfL)V3jX4C4C2CM2C 1C :MЖ>&ǖ~/j] p.п1ӿ1ӿ1ӿ1ӿ1ӿ1ӿ1ӿ1ӿ1ӫmjӨm=Gbz37۪zO4tlNWcJT;[s 0i?ލet\ĂKщīkёYl}bھW"sָ6:^8^W>VO={y*D=\{ْR[62ow|Vgȇ_1/[t ٲśC}b_6"}w$f;\vnMSrWr&*gg{%aQRHUȠYԠωLGhsZ@LgaWg0WcJ4L-?L>L>L>L>LM>L=L=L=/jN=2 d񯙼n786yylͽ&UV ,cy:?:?1s'FWJ"I;~b+=y2yrtBrhtkCs-K=t]7xX]XI#ǻK+f]16_:S,^ǡYfz˅\oUΞn9!dBtdEp>FDG,4;k`v:w[ۍl96c{cͻ1*7c+J^zc7{c7{3Ϙ7y4<WQ[ᩣqFGg')4~S7奵*Z%l,}q~OS}; o ZBZpگYEmל* (>ѵWTYRAw)=[Z'auOenKw];G=wPI9fχw{G7`w|L8ؚd!}_֡>uXŞ~S^UdWP<ʍ[듇?G>3]ſJUZay*[)3,Oto{]nq cilGr0w6!i~famnW⠰XgMks>3yp ̑2[q%6vGo6lɶG8T.cm U/Z/Qow< 6f Q7u\[>O}TWrrqF;b%\ZϔrCoJQĎBQĞvQK}]ŢdEWzhtvf]TRUdXT;\TݵE>"GɃ eFu< aC]?s{fp>s<7sC젠`C*RD:711$3잘Q"ך`qN.53K~:ԼbۭB, V)D6 {mjNWRErv@3KSi:>>4aCKau(uVX9v +cdW֊@X[֖ح6vgQ˰˲,}6NxV7 Y}~6?5YB~!k/Ycނ`MJ֌_ïcּ5mV~wXs~];.߼+]Y>cwy֙O.=>=gl8_WWǷml2>~MFLp!BI"}'DAGQQTb Dq[$l%NaKi4\u +QOgDCшMlh* \q.(Mh6ulh%na;ݢ#;,:9;ɕ&@LxT/ bµH|C1G,b+Z%^W7xM^gI~}MüケE'o  ߏQ}Ϳ>ǟ+"/k2/7Jw{zofRD[&d~XȒtYNYQ. yȒ El)6/Od?h+ʁf9Xs69\X9V-|Y,{^9Y~,sK~%gGl9_<.Eb\,g2\<'ɍbC#).^UJUoRyj*EuXPW*uM]kT+VU[fuClQwbzC )Oj ^Fyj㥩 jWJMTӼ 5۫~T ԯjwک{-AeAUﺠzpw}pjpwCP/4&MAӠwKpqpwkpYp!Wһ=2ڻ3>t t y]A5x2=< z#`;y}D0)=lvx].`oy"^DT$ Hiox$#ፏ&D*D*xE^މ{7z{]ѻxE>vv>vvFG{yӢOFfD?~Ώ.DEx2 $I007aV:VKuvK'#,tUn,e)W?#+Azgeu=L5K%Y_Oo-liBD63 yL-[OjYޠE^vz&z냲>>Jh|"LKaz.aYlX."Uêrt+%DŽذo|9arR||;/U9%'&ʏSKىe=OģDSu@'h3SjjZa3Ҽ}鏳Mk䙉f#•۫N^SԳdzaIYJZ/# |u6fά0[(a~X-@f6fMl{7Xjyf"w'S\Vمg%r0՗ˤq<ÿe,éUFc@; }qcN5Έ序ٿr6_uР̷h{ys~Wȭ ةD.L[7skEB =b~O⣹jZƥ(+Sz ЛI4pMnV>}A Bk9ccX;婋A~'H_D=|5zzo䛨ͩ?~gmNmNa'PQ^цM4қM&k)@~@Ot#KiMGMG +Zjm:ZZZam:Zem:Zom:hm:dm:gm:: )F3,bm:dm:lm:VBWXXIkӱ鶳S`2ZAe7:Hd7%TvkP2(:AYvgP.:}9~Xm`e]a=źY=lm"DG Xok:YiM&RLkky`X[-[nm l5kkm`X[;`v쐵#8O$&pX24&MB1i E1^N HyW RO铄>}^ ** +ogJ9lX/j)B[ H+Ci/*ItYidH4R;Ȼ)w^j)˥T/(/+4_WQ:_ }-t%f:}MJQIB2Dz *@A!~t,Rb2o qoB Vo'vy)!hIN+:rڟ?i^G9HNT򦚄opV|>B;'4 5JF?*hjZ~U˩ZV֣ j#URfqڎ6T;!Kj7=h^WQu%T)URPauy2>eY4A4A4A4A4A4A4A4A4!4yaߠ/q)YL!f140;^le鄅 (L%a;%[!aQ22)U4FPk^zwķ-ߪBfz;.Իn{!_ %PzhMT_C臒Rb#aJ a$uRYZ*RRiэJ2 B\X +aS1x2䫄U!؇ѨeL8ƅPp|9|JZ4$aѐ-R28.@ +(&C h) +| pApRK;Lw8p0fI,B֊Bx7^ aga֟BJF"(P2P2ab7S )S!~& Ox (D+*+Z7,e9+/n7"{`fq u$;)CLz-g3 \u. q#nM8tUK)݄R]*u5$-yJ9t:t#nV7#Em;-q:# tCMu|6B]Jf=g+ +<+nٿ.gyͮӅ?ĭtbʬ;Sx3tn9,Owai:yr6x:lŝ93{,Ѵ\Cjy҈gi&wwi +]0͙fWB=KV/@EN|󑞲YVDmkt_,ۃwŪ7<`fi.|+_b5*~|ݬ势Arkv8۹.s(֥ms/fFG (oU;RU'Oxc_Ӫ}543Lw{>&ظu84cYR[z78fb_w!Ye~`(^jo]1V/~K|C37wriƛ7rR!C:]sͿ|߲l},Φl6sFK!%xRv6_摍]mՐcozǷ}1o+w q{ưj+s %^uz۟y+Y^n |sv]mykJRKYƲw6Gxܝ wdF`{0^Jw[pnڛL/h 3܎u]tldj󿔹,UgEgy{[AyG)7NXp=~Լo][U\|_[^KU=fg?ҝ#k^4cfυoǡ_e1q%Վr\e6k1t-0sǞα X캎sm쩢--x\fڛf2qwtZ13s g4wG]1XǤMḼWOf&2.:mﮯ2?9 +Z+[K1R1]\L ~5lϑ7Ζ;t56ÅLkfI,u-f;swۏʂu?[wf, +{GyQ-7kʵeR 7s5ODK +#t`=/Ravsԑdu+/΍~K='WT..*~VX3[ v]:Dz7\;Ոkx#3Kn-Eۊ:Tu7vЭXhVLٲv,F= +Y?N`Y+)>\G5WNv}nW +~G2;gv𯌧dv:{2b*UVJs,Ve^1Ss,#iiG|} o +ܪ79 MY䕾"|w 6tⷴ[aevAcwYcmSkFغ?:k!CBQƞT\el +.5n4)Cv_j_:6q=nwlw+rvoww+L7sH̴ܴT}hqid6/f{[؍VךTݍ5g7 +n839S-͊o::?1'+{O&7R~l214Jퟧ;`wC{6Nvij\w8%${sw/6^uo(\&_69m瞻wl$jsWVq?v}YIyuV bw;Y9O#6&Yt4zi;}l'36fڼx}zy~l|~ oN y'~?-]CCi'**Dd>6G;O-K>lsh'H<>|Z_$:h=̑qyEQ)a.p^D}QΫ\*ʥ8rhč-+ec˴^ةo:ke7v~ O3_d]7{c=7{cXo =i}g76xcc76xc76xcӭ76xc?6 zwzw}ݍ+ݍr_7bT׍~xe׍W"^ztgYn\'7֣of=֣ztwZn!}^ $Hx )HiA땍^!MHF?6."5#2|BAi9WT9_Ԋ\X4\Ԏu#FgDt UDcM4%[zkYom!MDnW{b&J'ײַ61_ַmO8ly)͋Z?m^整~ڼOey6'z65~ڼs65~ڼK6rͻi+*`ym5feͻzY^ּ<1Iԉ)i^WY{8qOg%1q +/Q R0{Ǩ~ҫbWT `@a#Cv"fC$ 5u-6(FҭfN`c?:SW*Ia/Eݨ'jMj`!KLp =[ )Yuj^D8aq`qK/pB3Xr]u.\I( z gsԀ jq]ǡvڵگ#6{&ƃWԈbRcмCs4 `t0;LOv0<9L?azY`Tߠ,>*I@J+9'r8p?9/p2p_I"Wu_ݡ5:,2D"η# FjȅjFD4Ax82bl@"o/8ы$b%yat7AhjQi%ᅯM>L(S&JBBڎ+djKP;P].?󩂿_@IB!y"1,AR)RH+T_鯤;&Qh$HS R02m"oG[oQi;V].Jw߃=}#~?@gC(*lKF8E,d@(%@Bj)]2&2Q&B2ydIMϔe(EY(,GjEd%PYV|Y'ꐯ!kPiy<5eMd-Y)T< yk(..O'mG\@6@!$F(lJl&/BR"yR^oy5o#ۡͨtwQSydgB%C>$Q)|.{޲7J#G壔 yB>ZeT `0ՓC:#ʔK)GRc9J+"'_,PD9Z*'I|.wP=\,'#9ʩ&? )~&?`_!}Eğ7|+wr.$?=?ʟ 3OC r"ʅ@.e(y\\:^n& ]-wn{ж eXCDŽ'TOT*TiUYjTS]NV5j!u5QUmPGՁd]U2qntjƪ16QMP),g3!gB΄ !8Bp&L(r&*c9Bp&:r&La}ҩAr9! 2`NeN @!@M?B^(EA;x0* R`P0taH@H_ ^E]%i!Li!BL :'lG-;(j[օ [ ",(20*Έ`ڑh$$"L`$G~D$)TjI鑒$R*R Ɍd)22E-Y,\-)p;p;v!Cn!Bp;v(jnw%%G^E2zujį^k.ڊ,Cʓ ģ/GDq?ȀAf_#2<̘[,akݚ 6TBߨonKu;ݎ*M$6;@v};dw!~HU=ܫL' WםH請"awaݓ^{>|T? +㨱~ +)3( CBf6#PGꑐG!~e֣quCX=jXJ\'PM~ׯCz"B~jw~WdizRw"LN'/zɯר;=)?P&0_ \AfW%(g^r%Di*f2WCeGǨRxܗjBܫp@8ʇOO#ep8jCátHZOS-F>|,`vMit7g3fˏ?N':f|cƗ:fer̸cg;=;=u{|w{Bw{|w{Ir{|翧ߓp{t{.w{2C:AgL m`-WH\kڃa?@؅uoF/5S)[F|85EGe \,Zs,|/ M±p cÐ< pJ8C%_8YOg[tU[^^ߢ@qI cB&BB(ńB(!RBhFBA1]u]K?\z]P~u˺^?z)xݟ0!M͞=ߧ;43sqf>.Sȟf7OSZ  +&b[;-0vKdLPFY쿰wNSPYGG$ 2:=R* L?TS8Py PoPlRB;Uy'A^?"G\E.s^z|NySSx O@: lE'6:@!Tɨ7/VEPfOuL&f2a&FdG'PNegz@ @x==@,5d՜jT o~#kP'OFjQL5}jz5jUYMF5F5(*jT Eu^\<uyhq\(rxj^E\OxVVFm]:u-j$֏NFm(Gn47os)T1en?t$EAʥ7VF@T&To>̝NVT%J~ Ti7V.F{<'O`}P%oB\*y3Jn +Tr)Q%Jތ*U򫨒_~R}U/phq 㷸en*Uƥ72~T&~Y)Rʸ;_A2wPWޤ~Q"0UT~ I0KLYbq")b*L:LSaJݠnoYb*1El#cX +` +ST"8L۸&E,Sb0E,SR0EL)bq"Z"8LSaFLK1aXʚ1aX=0?L&?La1?,TV&?Laq8Sa~ +0?La_1?l#懽au&c~X +懩0?u5a*K0xSe' lϒb><>RϓWѽE|100/~׀aoN_G^'!ÿK)絼Gah#u8p]v^8xl]^gA}N zMXy}N)MF 9Ep6 -SSn؊z-8u57gzT"zCC8;y֡y =yJ)ASzp8p6rt8p^A*8$pA< k> +&3go?L!pC%ìC<̛ԽCk^8UiD-1,ccD`kcv8i̢ۀYtcØE6QM2լ2)[gX%[0NnG Yp<Mx'43(u[@,8N4vpnZWyRӣ遖^\ +'O?y3OvB<.i_j֧Y75{`< ۰7OBu&O3|O=4SgRΤALgr#LCg<:Bp& -'5G>99k@h3O4g5gayp&I +ѓ4h.i~ +K5N4ԓj~i`7B MƔ'O4k00k03gπ4q0 30q0sy88Lf7V>o|ݕ++]|$R?>?`ǿ=7}oE'{g{_D]B@ǟ VC{9j2}ǟ6YKM.I9d d=i:3vNҭM#~} K}ۖWu:KW';+zҥ~SKSuhguh}Z7ucu[/`;:u3FkbM +l;딀ouz:ywjgn3 |s߫x{ﵰC{-;tN<{ndu WsL&$KD(#Tˀi)\9.kh ھ]r62,'uNre猜LV8ϲ_Nk鼆<\:KlZə-^[{Yi 0mҖXF-9AGrQˀ-K.uqm-USri.[rj}VV |Vnۊ&n?+ sru)~3-l&ZrQ6[&E`LLKd#],e~E3Qֆ,wdwO Ob=WSgӻoguߖEU.PaY%snBV1y)Wzckw[cd\㍧l`= ޛ +՛{MBY[2[%#ڽrakr0S{ؚ$*V-ǣ+|Ԛ*ўfo*xV5[>hmF6ևf^!x> ?c>gy9sc+-{'(ӖBy{:m^ȣ+ޣ(Og'h'\y`mY;w^^*V7qukv89 9vN^K:ꖗt"eZg&:'gۦA=6 \h\b \n#ߧ[u ֐%[wy}.pmf4?Vߌl2z= 99ß˴gCfv }CrhaXSZ.z@쿭k濣+؛aEvehp?]Wa=vn>|n+CO0{b]Wm=ҟC|޾}xҾ}/UeMрs֟K^㜷^--I'Z9@z_ܪOi=kCNg y4"ppD%Νn{Wg^DMek.::y +.R*WKizlZ'eoAnruR~ j@FQ*} *J7[%#UGg@T'-r%;F:+I:`kCQ.j#0j'IփGzDIh 47ӟ:[G=Hg:& sC(CGBIO, +=U=i+:j{2=9tYzS #ID)l)ѣB?:. Zs4^9B[xi*uf`%Z z_ 0ҭ RVV/Wl`!h9b:C#1pXH 94C#ѐ 08 +zP(59z'7T:* 5+8zV&pl&>p٠wW &5p`u87 N70o:ŨmaPqQ*p vEh8v8AѾqE6r +ðc$;5CtMqw08L*7>ǹIqEQN9&zo8{8p9n_tܖ3 ;FwxWnu 7IIzihf83`?wraٙiS: Q, ;˃V%9@VVG-YU5Ellp6lvnos6.RE +WP^aCm%Nsp(ZGV mUN7aP}mN_T#Trf[32UcQnkv*6sPo3;wC;؜{5P1G]C6hQP60(OХ\׶y< sy%]f6<p^̱m0{f8/C}jpNNg୶yBQR  o;B؎ѥ mg] 0{\ɡHvޕJl MګBm]9Л]0,v9(vU*hmۢf=BIWum:TkK(ee^>j9j Q3j\"]|ߘ.+L/4g[]P1u D0X:g1NFGZ5 +v,snXg=JPqBHoltLFk*d-xFL(`]D@s;4@9څ2h>+ +پnW+j"fs.]S;諗=bok@gu٨W֘oPӯ~^IY1E=2x1qKB\s}aQ ς+9*}K}AQgDo8rB}#~P EΊ;}#TD.CYG&/{|` p*e?zu-Q%G|dyJ}Kʕ[a8ob&ZGNG}qw+xlԱnO[Ù拾p}(Seqw'+|woڡV21"⶗"WDY\q{>\:~o(]0Bk0*}7tב}wk_:Zn:їaRv3t S|0gJ֘R&!S{8vodS^pz8Tu3c*盪Eڮ{RS+L<\фLOٓNXa'M3=-&'/d +yÍ4) M=aѴSLf 4-z* vϱsR:4XGg,|#sA;88mOgu[+tMw֨;oh ,yY`a{̇D|2cU,Gbױg7lcSMd>I63a;w#jŗHJIQI*IUXc <Im"u~wcDBco]"hLĒ8@ud+ѓ7|4oA&C!?'&o |13 Cqs#L#Τ2Lav0jf6wϘ(WϸNR![CuƧ|W.P~Km&=&<<|MyJf@#变!OcVN)?`egfw1W=sHQoTNe2" {+a>ox0qp`9MZ89M\~7Ⱦ qwl }smq?e& Mr3]宲=,7r^<#Pz]uaGO侀//EvLPboBzbcUU<ӊTNJ4<"KsP}E}CQg)^->ױ~ˉdѷ+,Q_}W4UVrehzV J~H<%U qZ"Ί7jcj3āZ՚WMⰸ_<$k3^^>}a>b>",xeᓨ>}°òCDOr؟{&1 >]5N߱>Y`Rp$ KV$)ȣdE2I'E7)1|+,MQ(%r$ߊg60 x(< K¤pY*\n +¢pO$¢ȉ1ALFb0/EbX!VuQԉFQ%#bX){}AxR 8%ά-5qN%.%񾅵kJ%ђbI֬O&Kk)KRLKE/.XLբ8-^K >,,ÖCpCʨAY߀$BQ,4Q\(jy(<))Cʠ#U|uu{q/H#'P`1%8߸⻖~|x.D1_JK27][H7ʷmo%E4Y|0 +\`j3ky| fW s[ +sNXӠ[Ǡ67u}NdYn? \'Va6E1.mv {@dzt[̕}vł.wweҲXPC=}b}NM1\Mq~DyG''E'a>m}ߵ0֏a>oY`kv5_'S36gu֧0o_Eg>lgO!EpOasNkDIzA# + Rs?[},!GOH*Jό +Rj>:^"mOgtF$^Gp$zLH^A_0HR@vJv.wdc#Oq +{aJ>#ȧ@=IŋplctJ| +c9tS&Bv4?׎1ð::kǑ~w}?ێ'|].?:̝!"HS@cC@H#R4dGS3?@f44>xc)R)ͣ(RC)@0|{ΙB\oovws̛qd጖ZחP,籅(Y5Zd(dS(d+A%;ca%94d_hLI-;Wr}r6AK΄ M+ii%M`ɵPf(UؿXؗ[otV_t;- xh +FO$/pYt;"G簧.V'4^yLȹHCfxOVi69Levٽfv{2Y/, {mI|of^rZv}ص;5Ƚ^3y3O_~C}]~/(~wk}]+^,Au=Z{po{/s%]mXW<:'_xjt=y厮Ih%ע^xVt3uxNt)QXsa+k[x},׈pe5>!9wDz'FRSZǧE2ZdP<aHdD<<ϋFXMk_2ŨϿQrZ2COz&zn'N f4&HkDzTK*}AҷLZok&:*rq,[~Aoԯ7M{3ü#cy1H❦'ռAo!5VQl_OA|_wЯ;hů j)Яkh>_~>fk| ͢; R l| Okp/7KFS&M|ocM[&mC_C_%D7<|o&Zo6|㛨K˰@yD'wMY| L[9NNe*~DoO7~iHݡT4WmP)ɗeRz'V=4b 9O5MrEuzi}Ѽ m6G+V-*mVmFejH|E8IqP q1=Jñ)z8V,N)OS 7(:R q|܏]i\/P$q4tXXFqН`#G@6"z zi?Yo}h/*}1in4cv1_nj3L7G0ҌF Cf4_,fabv(Cm#S}Гپisቦml-{\iK<<$i״UZTjnj^n\gxf%VsoӶOlei==Š{׳ҳg]*eܾ6yy{ٳG[s81jIҮ<͞S}g34+] 4^G_uEF-޻⤌t7[[n}^K=Џ`nC2i39YAS +ng@o1_#bNYXI`}WZ]ݽ}˓Dfzsz{GRͧl!2NMީ2sKIsww[Y],3[AfEݕMR뽕Zw/͖[=@rO+:a1>EF(1WG"=OtQ˥6<3z|n_/ŗ"_}(_1NŜ&m9B _5/Fl\MLwkEE%U~ *BjEQ_g[ٯQeEsƓKR4 +TT)xWɞ^Z߄`J0b +f{+9Q\9w*Ձj -w`h*CLm ɞ?m<{l?FQe% rǂ󃋨Ν.$o7Wy.r5#\ +nREʅڕ . +{'4O;C:\|i 4;(d|WQ˯x{Si7P\3#c"Yg;<S({S jazYZ/P[fѝ?K+Y>?B}R_NMkd;s4oų8ЅMw%M/z&b%'З1ϳٟk5K}c@?10<020{8p&o _u90+0KK}ub- / TvSy:aqW*J{*j[mV㮙Jͽ׽w܇չ ;N45S@4H튛ϰF: ''#2&yUe8XSLN1r?N.]bpfy(nZ0Ƅ=L1tA׉y_l6n"9CPP/Ij;#lQrdO3IjTpV\mDt^Um;Q U$YM[;*ގzԗ_ف]h#`$ϡ|A +\_&M܂\4o/G.ۂfI# z#*%*\\פ +I+ִPe;w6hсp;:vȏH_.]NI-tmrdWzٌwU J{IwՖ/&{Ѡ%F41֟(&FM6mMKYwk}Ot]?qv^[}4oݧ֚Ҷ$rX߫]L7v(H5n'?u2kgP E<5%1Obmtt}sjM1{\ߎR گG:m6kl+5vkzY'^ 3w6]k"rWZ.cT?&9h rJ90wP[%ݡϭu_TO{dZݦFM:9\S{oӌ,e+\⹎x9e9ϱU&ꙓ}{R9?ZǓdIOq3썧86)Ɨ,ou–>z~jp&QylQLhb9_sƯm(jtw@үuTچ{l}W=[>['sq}O^9[X볢֫"e<%,㏯TW2cNL5™"ٿ} 3KR A# 焓:6Gz"ߜF;bIQ&J4\9N3sn"*":97U u-DE=vֈ8йQq lNZ;7Z6h puPl hJqJ~yte{ahk\sѾE)& +:FwE5.E{!\Fމݼp^E{!:)5E&aE>rM&5x>215?ҷ25SQ5*VNiDrFو&M&*$*"Ds-"ZBhZ DUm'!Kt8iz 򝍟sBtC(J*Iɾ5+!Q*Q^3& 3DcND)Dӈ4)EnùI:wP%l'g@5Pkr^st). ; ;EB~q3~q ~q_\_\_\H/./.o-Y(YZsVկΰTF/*vk%ke;ewgCKB{f0t7D߫TM>=[UQr%L5%z/DU7n:Ut鋤ϲmJ^JU[ZjGl'lgl5ٚ]ݴ+vhZ{w{/{_{?f}}}},$vew\=_PFƆɚmVTxv xqASðf~:]osOV2c[:3BB&z+q.p&tgK@X/G4w^aW=3o:> w<&$!8B"xԘ +I*$TLXDc++䳜%wl =o#_D^-L'U4F0|*KorHL˘H"GPl | OP_+Ϩi]E=dMCg+fefd!> R@Z_ oh9ʳo {ÌZ'[75 +'وxjy+?nFnPs WǑSǑG_c,AxW +cn`0Rf5B1ATV*ԁr^^_>|o9 )g&>ͳL|Dk< +I!_ϡno*j><š ^Kh8,2caՈjdȗj~ \SY{xj2h^ +@T*>xj:po)Yr3"^YlY@߲ ("s*=5E2?2w!iD-G֡jh3߆OXN8Aeuwތ4_ PUxVck9LC>hJSIb=, +ͫ8?̞'d69̨l +f*('<jx:FϏ]`-GaO8lS0&:judb +joarOgw5Ĩn0};g q<5IP&ˣ0T*aluy6UcF> +Nxj1Р6B_bA< 0]b!ZkP֊Ic1 + G.sҏ|p@dM`I#](sv}/,1F  KZW'wA-޲K QS.Ӂ} IE`5`%-&Wq968qlٔɚLx`/,wxյ?oxx*,$.}h~ʳ@y:WO gq:`MEco|a77O7)<<OURK:RŨYG3Lǻ,̼NWxoзW-U!Q +yN999y= Ldf_h_x%&fy?^V`'_i6 /$bfІsRf#+]-tn}7,^N}>뎪3oz? :"ioY;E/@w|Tr6hzj7 %c  F\aߚ΂ʨ鈍r过Ѽ:C)i1fB‚8n]+x+`{1Vr}X5Ĵ;ҥXc8iy`p6֦`4|)p'k3֠M]܇.hv>iBq" ѴSbކ<KY2%iBugvÙ;X?] r*$<X~Dv`H̏b根=u?z8K.EN},NaxJ`]<#@,1߃fF#j/ ?!1| w@r^kP &p6i8=kvKQKyh̃߀mGvT;%C_FӁ_rԯyyX;ȣdf"_FӁCT淘 Yg' >hN }@X/Um`yDS*D<%̂@>ϧWGE:}UDw⮨ /so3įgaDGe-SZ :&2ȣQQsPW+0=eރy98r_:4kvq')8mͤM92"2d@Mo/S5[T*N48 0OǑM&q7o/=UT@}{&|91Zz,^迎gL/g促~=Y:K3cA98nAܙW;R7 ~7r̍S[:Xv򉘢kB.픏egիj~ԥj 6|GYB)!BXo'yXw{<" ǚĽk*7M\䳶+ ٽ , ~Koܩu=q.NB$7иK8Q]mss+$舿wB53]S bftws4On~MXAsjoE>%|D^X{N +|s-=馯ߍП[!O-#=cGc3ޒWx0܍䓻GOo|?G0;?U]:Ŏz4|2!V] ,a ل 9 jf܀gp^)I~g%7!ρ6Us/F t`Q.ҩд6}1QٓQ6aM+9l5-qe:_S!Qo!AU`. +OFS-Q\Ϛ-_X+OWNI.}/+}Nz]p-4sw:֒\31<$%b#yY>FBW}f)-y3]љ |)tt`2f?k^3nPhY1ƿBe8p4{lRx67}NrҼ@/T f~cr+&p= rfam#H> +:$7>s GOK FF$@ +p#A_ N٫,>~>w7![!?oo~5t +B8T& w| \K& +L*0%}π3-" \0o \ \'f|6P»=,1xw˫N tc˷0$zv.1F=_ޮFArx S4'x LiK8 W0e"&Yn >O9؉тHfTwgKys-zW X[>\g8+)z!+,v3#K4{GKqJYBdy@Eb _Ț.x|fa-Yn^SO"¯aDᴘu5lRc"3{e MbS" w1>_bnx/#JZ)c ?8|^b] ;>l7r| _! c OìM_7nobTd WZxn^dz +{"#~|uXaF^C~Y@U1S#*a/'׊xQȑ}|Ao~ud=+)y7u"gs[Y Ja8m"(5b] ҙ„7"s` ( "EߔkBɳQ}cXS0p}` 66w71_Iç@ +_|{ǰY| IxGAD~32Y8ρXúc؏ 62PM Ќj,e횮ok"EQ%" +!,""kDDAEvPMDl"˾ws%?{yxxzgoϫ\DT ud\A_N2Ϙ!7 WDNB&Yl La}ש #MfN xU#MeH hcIaK(uc1{EX4k)NN6˛-\<]{OPYlfJܑirL͆߁Nw^ϼ95e̸ `w6k C%9ݞMfIK>V'ԪkЙ=Mhc^n Y4x?0ʎ3#ίj#ch1E$ڴ$3hk͠}֠1 +"׃fp  +~Nbxs_/i;[d6C>Z댼SzQ+{ex}=mXrFYZGKLi3pp?my0^m_:{XX BñVԼ\:7f[mE;ͮX&2YW 7Yf^Z 40$dxQx;#Ѵu+Fݷ@&Jh=S0sYh& +OEHsj|f.f.y!AbBۓəb t8bV !rP6ǁYË`ihN5'2O W <7_=c4jB#6+u̬6t`~k?$zϬ&йŚq׬G: W%"ȼn_4}top{zH봛, N9ȴ2 +(--f<vAY tY~ ;l ``_5QA(]3瀍πq66_v D_G/^ {vO!Gj~q AOO8XKnGY`?Fv4f |)NKld- %@ Bj.<3yb[1x +7BT8XD{ޖ{6962{{zyZXx .0xg6MpANHV6@i mA7qpS bˢ[`8h `cp`ždEП>l||Q׶:3gH&F:Z| jسx=jU^z2|5>{ BA;K  ]J[ ` EK(E2;i|[菸߯Ѐ; +:1 b G!3Ǻ6PUv2dX ioL)hg(MxF^ǏNG bt=ǻt+*Uxà';hũ +34|%0'!ӥ(}Or"ޓؗb?lyw9G6qGqk?*y 8kAGFtB8~=Z0' +q@6[q1 lCQgܱw1ei >fHȄvG m?F"[<ؓkACPjC^W&+Y1x}wG3PSoc9޼㱗" G,pZt+Qz`vޗD͂݌Rd(̽p;:R'|gb+8Qh 災swϠ45;$" ykd(t8' `XI_(=јN٧j^̽jhaQZrл t(NsdV-Jw8Й(J? +4y} mm@i_C$^ՑPϩ=^>  z<$t-p>J Z O ްa趠3zJ' 3ˍ%]eT zuQh^cv㡹[`3c5 >]mGijd29]PZ+#9@c SpEfhal +rC[cOħWt)}7As-Kns0ZNw8uL-*$d B'0ՠ2x9:A~V%bV_h  m9?Br4QgdD~1̎1} qC;@vQ3Ǭau7 n([ɗD6:k +^7gN +xoUЖS#UTuVA2ўEXCJP>DR?9b> `Ύץsh=XUj4.yjjo&~ +Qw2ϣQP_4}\FH)z3@N KcP>U^@tP$koTg|N&J[@>-n2z-HގF2tʡu_};2)A?=; FIOTJ[3ھ1{JkADase<=R γ5 ެ. OsQ8El,4_֚8 ~3Os*e2dc,̓wI7ˍ'}N@`<RjHn6z=QQ 1oQ۽#b&}N,rs yTSE>=M& +F3Hhx !IR)*@wQU=Fͨn5`9PwM#7:t(M@}T[ggYJSz^>4 +kܸ.Ojx/Fz$JijU^^]/Ic= w1:'뻅}SC$1ڦS8)}% +38$.iju&B㨄:m]Kᘦ*}~Ǵ?H $>{a% Q%X6p3,d+Jd;JIi +v^-#ޣ+J +iViO1b0tWi>+ [iՒZVWajdVJoYhuɺDXW4ֺn]q&4]!zOx£M&/ +BEBDIQ&SqmR_/Z ?ZVp]\_Qk1VjZϏPmRڢpcO~V?jMnT{^~JPiuNfꢺϨtU[mE\ie,k}y`0Ϥq%J-ʉr:N[-yN{=ENGRN'sz8=(IqR&ӛxOT UBRTeT*ʩrt*Pau"ũWnu7ݪQP1unS(^ݯV&D-URiJ2jGeUՁʩT^%dntꮺ*EНMU_՗RJP !TY WéFRFjMUmGUczWKT]}>D5Qj2ݯTSMWT,>RQmR<T}JZQ]ꩯT_-QK1\-#5Թs55ҹ3u:{6QtMRu}BmٶڪjβO:>v5ڥ׌gf4W~joķTj.KZ]VYuE]eQ"rmy[jdً$B١l⨚Q5u>} }Ֆ91o1颯c"QQN>%Qs}E_WM4>%66C4+{Bݗ8gtJ8cWp>hj)q=ѯ'u}=^p=>#K1% {E±w8~Kh18Dcwp=>I{E;z>GE{Fx3|xfBG&xdjiGx#<2/# , G|Oi>g |/q:_ jڪb~ˏc$!7$܁lĝ)=Eq +P4J/%sxN/M;r7v(lov ].m˚i`wݿ^)MntI $0{SKȎC=X]Ⱦ.l̷+lҎڞώ~6Pi~&yv-)]V +l^k8:^țfg,#fΣsi%r^JW6>gksxy#kퟰMZ^bT>;хz&t=XDJh8z^AEߢ1ciK4>s~"M4434fl:̣')}h1}M\rZAJNgi54ZKh#?FDi muVϴv.ڭs^G~:@8G(tN)Y:G]K:] BWWFQ&],ʦal&"Il }>m}N/}δYvc:'%kˇd|D>*z|L6ˆl,$l*Oɧe3l.[Ȗl-6lu:.,nE]${Ȟ2EeW,r(`"ar!GT%ߔ[r|[#q]|_ r$')r&C9SΓP~"?rR~eF.K2\ʕ;J~/W52MzA 7Mr"6.;NK{^O"<$#<&<%O3<' $5̔e̖927,9KΖ9c9W^* ~%?jx@x`xP!a+nUw;v_wwrtGoc Dw;ٝNuLw;ȝ~u ܅'g"K[w]q &wnsr?;]!{=rϸKe7ý^uuu7qs=,Oxٞㅼ#Qw;Ny3Yw޻].ye/û]~yyu/rEpĎ8PDF"ёpčxHDEEb"7EG +Db##"7G +GD"DFnLLLLLLL̈|(2O=b;ӹ^s ͭYڋi^^CGxqn3.aL]@:4x*l2,٭έju v4B^cMP蜮p9\WԂpRT#I ٝ$HmR%{zdOR4 I#iL$CI3^WUx zxހ &o;.lM| >r\N #3it"UſV~QuTz"M{v])*|ԫ}OEP*4DE`G"P8TX +@TTT$*2@ QUn^Wok0³xtzpLzp2tp bB#8 C3 0,ȳœz 4u +~/h0cS#hEX # 8/c H{1Q1Ρ>5Z ZjS@FE:u(Sw{KOLZ(zld(2#ǁ)k@D~X! z#Qn , Tc8= C(5(QoGP-'(thx#E@W{w0?,Agj%}!y'h/γ^ - T80ACC\C$!! C|C(CCBC4!iC200cR8q]apE=aHA9t>"H wɄsBp;Qx +^@}sc!!G(]4D룾02E?V6X} } XC;,#`?,#=Qh222`"*++Ie,+IVҭ|+I_J||i,2Xe˱Hh@ymBu0,w@xD>t: ::"tDuBu4ȮNQrCu2tG8)p`T. U@u%h# MW#=#t䱫nQ =0@*g'`>+Pv(WM?Ccs>y2u]K țܠ'B`w b|C+7a +7c`b acw` wb`%ұ+ݱkbye_v|]V"{`iVac˕`˕b˭6[mV[n\9z|y +q+W={\qup^XHO4'z5 ;QPeٳ@8֓XEx} Ai F" ӔAa +`5Eqblmt;݁*VQT UJ SG18u[h\yͧ>QV FS{%elA W'X.X!-T  + 77wMǂgW7B !_()P(%B#a/Dh*db\h!Z { 6>¾B[^ /t: i!-EӴ-'3FHXsQf~$~j}]GЭ_}A{ +a{؞؞2؞؞r؞"lOylOlOElO%lOelOlOUd7%yr4⛝#OS~_!)+F:F< +'ؓ%'f5[;ـ,H:ǝ$X2K#i-ZA h#ژ6ŴmE[}h[@;h7zEqt"Dt=NϢs"z)M|z%]Dӥz-]No+6zt }>FOҧy"}J~EwU2ǐ"|iM9p$f|vL窚F:tŽ=g!з@ 薄5EDBD!JF7]a籺t ;յsd-NvΦu-H((T??~*~.#pKEe_AE/Eҩg{qo(~ڢXX?~ʷOB \r?{!pe@@=?T{'o|;"D"{@6@Ng(&PA\!"yp|>FjO8f؎"# jKSSʿ )>؄! +"j+@qU -&PFo@1 C6"P o41Fm}OQ+]Hv?p8I8K IW!p9d s9b1|B3Lb&1@D f"3Lb&1@D f"3Lb&1@D f"3Lb&1@D f"3Lb&1@D f"3Lb&1@D f"3Lb&1@D f"3Lb&1@D f"3Lb&1@D f"3Lb&1|{>hOד{f9'i8mv 35.gBF4P%Σx 3{[0Q/6MO/Ƃ$ ;.'ʧ~{\FvBȼ<)3պ3#L&gc1!2Gv\z~W It]29C<1O,bd + ?:65iXٝ" ĤQn:) LI锔C爔O6K OLvtS[2Vca6+bq;Wܓuh~Κ~}zwol!v2v[{0:_5RF~)iL&K2J !0UhgH{%Mb-p֝O>GN]4nzZ~(U=,2~pGW5sqYZw\3l c<6ў#Aqm)YonsU5yPG55>F)TΗf>^سa_f窽n[edžKe=n\e21'SSL)y;_kqgUg wذ~ryy=7m$8h΄GHFu|rxܹ#;\C:>UfX|L=whMkaiƟ@w`ƃq/v-v42%$L"MGų{MSE5nF֊؈+MG<>$)!w3qm; ==w_Μʈ2ԷSr H%#,BΊTHϭ*T-/MwroF3%=Z՞Eņ*FVItÃ~JF#jOjxb̷ +G/[fg'g]5W{Zm=zyek{ 걫|4>Hc;Ay9 +.$n3F 4$OՐ3-x{3{-=7=mvG@_9^#uNu1miҌB[U743cW~zel˘}$:2+`h}]GEkǎFgYXv2v>u~KվFk.KF*3zij'VlW}4O^vMJѡY{/8[^.W_\*e]@cK&D}W=O[8i[z":4X`;3]m❩v&W߲%Wr6vߐ'esfOcž>e.tn{HCpW>37_ꗔ[mei߂ڭn׆[e{/mcd36j*[뷫l+LaGB~7P9]*?;0Ē%{*"X >挘$EbKK#Ƃmcnb-"c(qdcicm}|NšdosE=LWb#o eȉCkcs#f0w@O`A_;wxoɝ=|8/9数梒FN95/})h(tr~ﮗ)^͑=iMj'=8 y̚gx_'^'w-ebe%T.weVrC8;&*}9d/a^2m +Ǩ yEӋ8þ jBVxQM#j0JYs +R.?p/gƭvKZdU|fY٫g3 +wӿL&ŒeNBd+؅b $e-{+ +(rPUvJ~ؘ1?7) A2W|L|dxjfqqI),!kY26fb33iffbdF+E+J<-J^5/Xm<[)2sG>/ .c6i\ wLdhكB^([%#%o2nJcF՛WI ghVwǗFM^CD+rk(W^3}{7ᢑ哹,~#޵`i#Q6"ccorȔK/ق]V3qӾ.jW24'`Ã:x=x*3{Z@Yա2O`a|iUd&{B󋻴5uٴsQI/f }oæʶ /L7ݹL^ِ,>q_yrw]yeeTjlؗSPDSOҊUcV,RܠSѲVGo;l]m0Ez(:<=*a6p\M'a0jHshg _ 0yz6R~9A02<Lg'`N[}emgU<^0D٭']y%5I/Ґmz{T5̑'wTΎJ:/z9Ik[=gJIwHxX`)jA-'~ɑ"S7G'σJWH=ˇm~=ͬ1 ;Di)9qvo#F x*ۣtvu}5nO#PY(;*v‚ a~Jyhi3DcokM(#*rV3/,a?~ 7넇Z#lD֥V&0R#*ƺiAr+ceFd1xeW)JާYkHv.?YYQ{L}v!0S:РFkN3whw(jƤgF64tQޭg$Βl~jQf/eTdtV5kÒY̧$5EEėN>#J!ڍ֒:iwHQ.pJz~k3nSib6m1,wn' gr{JP +uP#?LSqE_B?kIgN~:=OQ>3T+M͞u>s54XRY6k{W1cAYuǘWm=s~S7~cd-婮+KZ)~evJn3fY+^;뻠l{ AT4S[LK "N u{)O1>ӮnkެπL}CҬң+%v*KIaO0޶E;Cʔ]`[S!ʹ^@=p4 f亂OGgi(77qyXrqZƌ\a7 +q 8?"Wθ2NgD,?ӿ tccB1,0N_gr;ȦT=-IvlMG4{>q&A':g&y/5tU=SO5 +O4,>pKKrV|ۗ/na[OgLeMo00ϭp[dARkBSNG-9@kTWg4ޗ6 +hnz8 =sΏ,w߼7ƮLpxn*tʂv[M22;{{c2y_~o8  ?ؖWZn3w/mwܖNeXt +Mn){JMlUl5ǥ0z7eIH寲t?mGw꽾L|4G#%5:~|v>/yaĖ [&,ӿu.&=+f{ jx13AL)v<ʛ-/wUn`klOy~NU^2sCƷ| o, ø<僧-)wƲpbԶ/-9mOÚoȺ޿KzrN_|/f/=D g_P_Z&o[OvnJo83n3I3,Q(xEU&WJ'FT=5E+nMph +ܷehz]oy/,nMnym\zтW<~3yPW;×WHH4%W,\8Jɩ*Yk|̇~b|}٧3ib;AdYa*|᫺*fySYX}yd+~)Z/SG J<}{b06}i3> *l]qptՈvgӎMuoMye1:rzi[c]رupl*ǎiZӊǎr#Tk.8=1zۙ^Wͦ 3t ~r$UOʓ}u m#Jw.=\R\w|j뜌.C.3փ][OEO^o]lŹT/C4NԬ?x_pUjк?dK)@ j欗"U<*aݚQn0P#NSxKͷ%?<]XI3ę%r~?]'3]]Rc/~KXlmacͯ^,Ʃ5ڥ&5+aƩ!Ug &,cj}X3v+W-Yu̻Q 'ʡGoa%8BI +endstream +endobj +388 0 obj +<< +/T1_0 397 0 R +/T1_1 398 0 R +>> +endobj +389 0 obj +<< +/Length 496 +/Subtype /CIDFontType0C +/Filter /FlateDecode +>> +stream +Hbd`ab`dd p,LL ( JM/I,I!#C9߆~,?Q1Gh s/)I)y%%@3J --t@ 4Q0200& +`= +% +yEE%)z +99 +`#RS@W+d+fd)$%3RSJSRsA2H4> +stream +Hj` +4 +endstream +endobj +391 0 obj +<< +/Length 424 +/Subtype /CIDFontType0C +/Filter /FlateDecode +>> +stream +Hbd`ab`dd p,LL (,!#CK9߾~]ã3o߿pQa` #cJ~RgJj^IfIs~CKK#i&u XBpeqIjng^r~QA~QbIjcN؈bԢ2 + +%E +@LĔĢl| 7 U +y +@B2A`Bb^>Д|-y%Ezn! + +)i(P^F Gπ?l~m}2l~-ng_ !ϣvGPôO?m~N1qKMdN=DNI<> +stream +Hj0 +endstream +endobj +393 0 obj +<< +/Length 61471 +/Length1 123496 +/Filter /FlateDecode +>> +stream +x} x\6/l6!ل@@6W.%YqH0bQbj/U7m֪mA[k`iikE~y7 y̞93眙9s!% Rh曈Jpk{hƓD Q]MD[Xgm&}(ַbͦw./|hc n}WW+Hy7C>o 嘇7~~Z~,eз.vĆ6Hֵٹ{2VmQ-R{ޢ*ϐNmU0eH?Laʴ]_1@K,?nd,$'zFZH8>ErH`;H%:U"T<\('ilxB2Ύ*Íl (}:G SX :%iV" |Cn>v`8.r]KIWJDu1g#Tޣ"Hϔy7^"s!+4Kzb~ȧ#L6IVD` +٨gHvR(!h#lHOawD: iM,}3l<y.uѮ*uQg! )?lג¯ue=zlQ0RޅsoxOF! +QB(H`G>nYP=F! +Q GL@ E(D! +QB(D! +QB(D! +QB(<-{|`ݶD! +--B(xjhxjT.^< wONIL)ShV͓[V!{VU)oP%>*TӰ4b+̠Yc- +цiTS +kTf(EYb*Ө@M J[ɤ$P!QuI/MvD? bn&'Ssgf4W(D! + m#q(Dc19@C䛹OTEt-h7'M=ƞdOgGKO榹" jȧ1T5(\R{:?n ?f0;o<r~w??%X 7Q2_k>qB$N\|i*x2%!D_7dv$ #d놾k[իVXݱlQyӪVNBF&aF}?Y(>#Kb#}*ݗ^̼J>, b/5b +ƀ? +w8ghljwЉ)%@ WK0=1nO9lF#h!ũvn_0a7/m=-~{Kk3^ Az؎^rɕL yRt}aQ.Ut 1y mٕqF>7j羨Үwĕr&WgHca;Ǣt1 {kC\ cŔ-iܗUZ4whMvba ZP +j_.HS?Mث@(KU3bZ[~doQsF@Lt5BkYvwkry 鎜0Wt]/8̨u%g O$)eXJ~b?boCnEN%s>TQqIE?Z2#qGMz5]P1$ֻ51By&,f*,mxN)?K^H1p{\KZwV8LM,hįiܰmt0E4qKO' +Y U E: TCrO=V1凥 Se. +Ɖ`UILI o\#N3L &nDFŏHrw߄2u^QKJFF$ʩO܉rqIB=q<T( X +/9b;|"R`p;Pgj}b506q@1l/?%5?8tG}[Aw"/gG׊z #t YjFCnR"u/\w|!fFoitm]7N}n* H +D/l蔈 >'ߴ-@;P}kuww˜~,Ucld+xʫjX>5|GX9AFh֥݃1==*BuuMO9"N+h< -|آlQz|TS6J%TemmUl5[Eb@o;b:Пxh./m0*'PrqO%B/z&.!&;"5\\(#H p˓p6rfșuv`P輓@Ĺhgt 2,y +VvSU]SEus96Gi3g1) uP0+|RbT~!<dC\ +~ [)8TQ)fFdKɔ}x2X9~~\cm]@I];:5'u:߆B{ґ{*K.#{XD,O!<ɟ4ckON2Yj,<jf~=Wq'alWf?5\C5ܫO\`y~ƌ2Af_<=.:v0aüar,l{9o1?fm +ڎi۷^ APqglp]Ξ(^a{ʩK8!P*}ι =^ xmN~[+ T1Oym +ؓCl~۸4 uV0堭bѢIGxFOqøظ88XbGsdŔ`7ŚL&I1qRC.`ĠX.cj3R{k%oK6  nfju|ivZZ1E%kU~t+zU[W$o];ی=:k3)ISNARU6+xbTO+0^m"0_{^I| |}Bg7.Q.UI")WQ.j ,y􂮴"RW@]M@<<>ZabD*KxbzeW#\.$\tNWv\̧G:c": #:&t l]<׶]2S>]?/ѹRR&m6Wۘ=J3g295=JU=zR,u)ݣ؜6mmQ_]rXRjWՁ*5N>{,nݞ+@A +l}S+7b#f"hn(;111c)4Ũ=b.Mj1_ רr7C 2so`n$;n(+TULo#ftn,Q ]DsWlxvz59WOGO v.ʣ3l@C8D :F(6WO'Np5RSzk}:aɨzœ9b/> X/5S)3y1|!ʠ1o}HBw齚^ yA4i2A t`^&1pel(|"S +. ݨt;,+OQ6RBC/汅lv{ ܁B*U5\d o߃eY z=?˧zG1*+O 1f x7,6լw"AXST"|vqr_y[_ {÷.*b@0c6] zt3.̗{h7.!:J/#F6Bk1붲`Oًe.;+E'j^ +^~LN[8u%#T^514vy p;ixqX:.*6X'07M1TLl(ƨU:bsEKRvV"lav+}Vo{ϰ#o'w f/| +zZg|! +ރ˯b0H.bx@|I +pX)U +}Cզ6+Շ V"j &7k \ح^B]3R1֧*XW- Ew쌰Y@WO-GYb9Aa??UX 9͞=OU%ME.oR% -R}P毑]9SVm>6_ŷQ2AV_TY0/x6Į-6[W)l?vl4f멗}|H;SS*z?AYL<< &VhDŽ?%H 3SHzlfOJ3QbO(ʲ=)t'z7kzb)Sb242ȯ0q|yzZQ̕2PWZZ3V9sse5%]R#{+3fTPP7/C? :]tZR6?Dw(gY'#c<3g؜7AN +BwͱJwzvvFRZk)%mX}C}v|U.7[lKk(cL^rQp:{&cSR wLJ()̞(,oSVVueE?`cn(TNWp[ryrf/Jx{-^fHÌkϘ=7X J9ʟOS<3[Wa z7L{ověybs˿_*:cq[xUmY=Y[g:u4X։dfeܠe)f`\c9?'s-XTrmYN[NW@S𶄱-_cL|tiزk[=n sjt%&d\i\H"g)Kzsrx:)G]=ލ.w')r8 nLO_>qRAjxRdV+&&;s i)R %:3.ck~kK37uxλC[Onv/[.vbX=B`ewOV[ݰ7:m;W^16ϪMy̫6Ut>O4m ۦ|zWΝI'O:Dcc%6?*-;}J 82 K>v 顴|^aISi9|_XO<<ϑ=לwwD^WT/~@UcabݪٺUyJi*`NJ!bbaR{aOk}o͒FŤ FTg'YX1qb2e,{:ծ"{{caKvohM86/k"&ßusswvgO& I !dQQEД((cI""Hjե₱uOJ[_m֥3ZPMχ.?$;go9Zּ&X2B2𮔒4Ϗxu,>kW ]uNճ-xՍ IE_8NC%YG\ts]IW ^E[ezAmDcfjh5W.̼A s0r-8~^xL;T$!I 1?-8xA {uBpKم⥾ +qc]]|?򽥍D?e?y<09}!M|V*g7F͏/y#|ԸX\ЗdmL\`6{!3wgV6XW +l2=(Oq4݋JmEϡW近CgrhG5/)$doO*W%d"MA Շ[Ï_`ؤr_@o?"^,0" rȏ/JV€r-T oQ?^@:yj#p1҇RIc> O@yN>qc|7ۖ-p FOa7 ȐM"%MLΌJnBY)Z)~b@vI뚞LLjz7%v"i;O+f2*({_|)32|h8dfsPW2ri=Qam2܆ѶFԈ =b`Ha'0]Ϲ_ vKwR_v$Q0eG;GG hڔ , +nj0sI{*e0c kz HM|~ !kjGmQ&Cs`iiDɗE׾6A,|L J{&;C`InYt8+ҐY{Qe(vu+tnq5@WH9U 7Q@ +K@fꯓV[oJH<3u[|l9&y&H"ƱQ,?S +wG(^E&@Yz_ TWԕwmAם!f_`~(lRu*g,<XLJP0D#)R/_%,%0.1ifFJ5) R%QT4XW8? tM""n{yٍ/߶A+^vΘ^8o[קs˓Gv?y텡%cS7]Δܣ>Y2;qYHbFa/"zi +0yP9| D#2vB 28; XF-ܻ'] BBl&;d9t j~"(-5' WȪ*d_B-5U*ff~ÔP TIK?V9X +_7*m}9wAgٟM=V7݂R{)ԧW19RxBarm_@pZߐ@^F)}τo˷؟3yEe*,uuzyxczuÍVn@7:6:zerXG~/u,AM-fFrrɡ.  9Z5C-f 2[zZ[FZؖ3gT=(KgxjCmɪ!)Ӝͅc/+zǒF- %ɉk}?L$M۸ĩe_~ `iyo_\eᝡtT93Zʓ6n\6wģ?+=IiZ8n+ZƵ^-~g__?tw: +11t!yY6 &l(16ϠyI\*jַš +ƒj Qk7亦3*isM^M󻕧`كgPaF'e/*/ĐM]UlEf$ljVL6V]mW1`0t4ppVJ'cԣ/KlfG)t]? /:\0P\VǬ~,Efw"0>V,Yr w1isnA<%݀a1S0)2D©k[GoM&;nc9! 8C88PF&!LK8(G!R;7JI;m;RJvF2abwYZQDD6 - S7XYTTB0)^=֐/khC5F22~*1rovênb MOZ596% @S0tganZ ~xo_㗤X?|UD qv$6-ɨc\|nץ%&4ξ7|L_sɊ[]9ߤ+e*n 9UIN p`F ByY]Ç Q0(b^8q +AW^{%#` *>uS"mť]j! -7IM7C{K^I$5gEJkqL FdՎ48tkx"5c- ϧR-U9a\éS +LZ+#qUv`w}_ +Dp)ٲ𷡒G'˾I eal$5')_$hT7Z +[i?o1H'ptcf~ol07 /,7ݐ\;/z٫ɗh_xe\qpn5ϔe4$ā|X΍^#kf}oasw8׍DM?L9C9&G~DyĹ_9ഊaz=]aF1ve0\NT onef}\&2z{ؑݭBt o\frf-ozCجz#NrLRGTѐFM;/r to}X*wNb#Z%.Qۄd eMy.5kP }:hPU &a+Ln*:xSg!Y[gQ RdzD&{x֯柯\Yp[߹ީVnE͕߼]|qps.=+}Wzҩb5lUޭVVݛ{]=//~7n Gt`Ą.qdv3^/*N9˧k?8ɝ-fF7N:LQTQTQ70)x:$#; ct*?73v:ՃQTX ΃B۝_[y]L8vug@bN(iO9sƎǛVU2J´/+S˙™d= +8V732 K[%V1fe_̾:{=a"r=G(Xz$6[LYԅPD1 tNE8x!cmX Ž5x +d ʐJ)lf._gֱux>"Y|&`1b`1bC4FBt2Dc$$F́h__ 6-Z\> HVW⸔(RG$8|jpt5/>OcXИ C t hG>;KN&azOd 4Lj\Yiu~2owj:ThAx\\ոH1NoBt TMhӺFzki~kcnuZ[{[ogĎ6;#̹"1'x罴>ýu4w_Ob|gbF60uY'. mN8g9%uBqt-ewj阝J*Bx~heR*?u^-5cxR8JZJ^hVPd&]O3 ?pLшF F5ioWh,a9?n\B/c”J>_4X+501;zK>]][w̼+u$/ +\]9 ~W~WܝJ[4Rb_kuxbaӃd߆_/L',|,RG]L`F@p|I8F t̻ |lxщlM$H4MBMA 9KxE:)G^ɒG*wf`]3vḵXDbDo2b"d#"ň"nql4-}V'IV jjl u!3ߎh, ^XÈ:gƑLt1-k])e/TO-j_?(YoNk ډXbwbZ<R!9 E\2YPŠQ}dh$PG25.՞w}b(aZ59bf ֋/i_@THF}PipbA?-̋ O͞ +/ׄ+zq`+ơZq4'\ZFK}[lO)GSDj5W ^?(6hˌe؟P|3j|qr0 b`L)nķSزfʿnjJ/q 6Vp#dkݔuaF_hw_gGui>t-` NVnOwPL&;}n71M$K,Q Q޵U3,Vk^xZ;U(h!K9jw.M=vg_:ec=Ķ?ھ|Y;ªa`__۲9!Y@'; s+@h m7 +FBƎx565W͢-"z9S%^,>**oT0=A;heWk7u}>~ly b9_{.Je #iS=G<`Қׯk&֥4"`6S:.KuXnC7xYyX.gXG$cYS(DXl'Bbvٍd1:'_tEb7-l /`?gG +ߥuLɤ'c+|<ϥ'v;^re4l p9l)s*2)^)1L`H ŇӞ=?ݞ:M>1'&$B:Xzz[;mol"MY|d18Ӎ ;T}\bJBcWnJ9l,cciռr%nk.ٯ|eudH%ZO7]P]M{-͋퓘tK #Q5W;ڊv[ݓ:*2gGdORx?vC{Ri4Y7)z}s~p Êr,Қ*W+3cZĘK+]%^ o{;✭z(xBFAhmn>=X~,ؗE:bh$ + sС`1"N*̜$ 4 @0w7UL qyɂ:|k"hi-|g`Xo[Oͻ_} ս9WW/{W/UtW0EYQDE1 #'qAhM%ɂf$/ Y W.1wΩ{뜪Sm :|DcmffE5puhqmC/ÿ4 cmϹTzLP i}:A,lm8`$p54f8da跇HRDrJ':#M A +Kh/=}7=xQG$[}ad<œYmi'b$<Ր7r5VòRB<%!e-OA%N {WEq.3HMؗPj!  rbU<T2TfG-RUJ"^=|_,t`z$TPwѮE*ީu0!҈;>\4SN,Lf(&̙e1͜53>]zSuz+3̷mUrUŵ>w:v~3sWЁ'{p8 +2˅,1UDk-nũw섘EFϗ7?}SU;mP9ќ/vzK@hdLvJ0B"J J[\2 up!+st\Ĥ8q4 F tщ^Rx|:x{'[?^WPy>dϢpŻѽ"Z;n|cx)`1~K`o~"y\ÛY^&?X.Ko5Ŗ~(e~M2\J C{ +&U^O#iZZzYJ@s! P/( *GͨEF,U]/r $"a)pçI$>;1?G6|ٱu.Mą Up#\S(31GaVMXP jL*DO1 m80=x\4;V Z$&|I$:lgc<|&;cUiUiuhNޱ~pi]M-{sG 'W=ćV7[@~kW_4熗:7=X3^)3cn`0"ApTOgڬoQa7 V*D{d0Ax{ \CI\_ /aVwϩ< ĤDi>IJ5nDXV]SyСCo}X~Bxq d(&&G,o4瑾G +q+ EP<'͠<d+8`@`00`c4!#Hꋜ;އh7X1L&}*]{Et"¢HtR UAUb|(ѣ{<)j\{0 H]M1mT]s<i!-_`Q[a0[iu&/Gͦ/*2Nvi֥^uKWi6˙kϼC{7 RuJEg)TTH +% 5B9"p\Wa_Չ*&VAPq5chCNb,W3E., +&os7_"-TWpUj**sE5ܕ>^}3ov$%zzk&FN^a[nnskG|>>XCxA|Az!C{!'tEG7OO3O덫[EKHlH~\_%%Y^b\hҽ|F8 ͱd+_qVM1H^ΪKPyMWV !1Ѥ'|"櫭]julrp*9 x)I)FcpgCbF\ROoObf+m)BZU%93=ۊ^jœ4\0[[Z׶c'[?I +(%Y^'|{u>qpD>'NS8uOU<;n=_{=w$`4!ėBUKfM2H5 !/#T)A.*oR n0-w@g6X;]o|&/*\?__rτ+]-PCAC/5QrHăYs;NJ_q̺/rlL4S#C|.EС&_4C !A^ F (=,9AEP/4([s&U*ϱz&&ͩͥR;J;Wӯf_ͽuzHAu|/_hH'C֔)ʆ1K6SwRm9Tqgq-vi1Ig,s 3ggLkSLt͕)/ˌŷBrQ +5וkj &Lɶ%è%]3WN)5KJyj[bZZe!%Fr) ,!,!UH\M3fu/`]]84p+Z@dRkЄ~8wqx 8FӖkWjRO֜T2h<7)Q ?}ܹ[z>Ew@/qlJida{Cd_E5~Zv{YMj ՜BKc{U_nHxQ#Ļ%A4څ2jpH =aɐU 2нL0&鱖cGgJQ4<`\a s +:g@x#؞L "o[?^R:֓ك U\A;GXvA/D< C[Ev{P!ŎZ2/_5---{B[\p0|&˲h%@e<Zp&kPya㿈3;~@CRm&s +l#8L. +!ޏXZ|¹QMsa6)C6CTO,yS R`F%-hy3o{<g`vgQd!DgSynPOJu*1ܼm4Au&($ꍝ%p7dÛ0&'Ua:y.N OY2$1/2_GW^S9eb[{?c,y c,BGONL_2ʶ#mi\^_kIqn/4M*FOshGK.luqUǕ~&fvg]1cȈVY,RÏ3QIe )\BQE _ͷGm ۢ_G"_#wzFJu"6AF MxZ=Ȳ^Yqy)w*nun5r+Z@=eK;s'2[w |=KOs/rG/7 vԯ">r4hJ1X*MHϨ =L3vz톰(fcu3MIh}O^HOOuGBcɽ|6z{zSp{_eNKP4YɳvTK|BE9dQRCO-Bj7@a5vw"f,dGL P5 +t4 =w텐x-},wbFhd1b|h!^VuחqWVzh{Ωej$faT |9+H:YleB]ħ7T;vrn{'#_"`MDAij1;ixE9&n%IN's[09#,g|O H#ac?ԟC;>V}qjmb)ey'TduC<ࠕr+.ptO+n6\cRv)7_Zmն@j\X$-,1{ѬK;;wHۃTF TxbNDʆXuDC+2s(l;i '=0mo S/!WlX=Z nW6Fgy<^,hw9ƟAOU,*&YʞRYIW*JFUyZI65sg84T.%gS!X:5qO>vgxU [쥝IF$23f}3:(N)-Eqoϓt`*=@СJtЦÁ/#8VYS>V [JXp]v- iT w S{T:УQ4h3p^ҷ?fΎ1Nlt=Ϧ15:`JLϘ `Fa< +'Opj{s{\RAkv$+}_2ޒh/Y^(#5v?~3c#䑝ueVv-zo+mwuTKwr{S3;?}wt=4i.\cqe>Yؓ`1 XI"V؉*P!2HNg8JaDt?Ԭ()Djoq;.C +W56s)L|/?{{]±f7گ^o\Y^OO}}o rzp0۪-F2JR))EE?UM$ zD_)'eXzɕQM~t˭x+ žOb:;QH ͥO8亄brv9_Wa0#1+΀ űplsx(MϷݻ=|ڕߌI8{_;XD'y6>|m;` yN>S@u Ɍ=u=f0+qlx*Z$˜;)!~0`">@nz(A dNYnnjW`07qbcډ84б<~E8@`iG a>yWeey*^;'bgF#:-I3lcBl-8TMuk4&Ȉ^=zȷZ[f&R:=Y>s耗> +3r=-X_7ya%A:G_ lr$ x@`PH SFo9ز#ka|{a&VYY[Zha,463NH5E + +hMKcqhT<) @ xm) v*5s⸋9(<\1w D20&-Xa`Lo|"6vo`sx1{/fp,pt<<'M$mv1ݬ=^_hr/$||pN,DILKܵd liIRHSJwdp{ +~D܁ǃ *OL !pZ2\ .o4Wd|6'4iȠMjmt+ׅ't QARc Y +'Z,ipk!6]So^бeh%TKRdX5^}ެӇAo= Mo!<:ol~+Lrz78=z NܜШF8Up) A`<8IzyIbj`6:g&I@\ôJe^#Y5 O *Mȏ!I]5~7OǍkS^GKd'hxV >v'V`}}6"b Sֆ"Kh1bƪA+VMf@swI,x rEU˃kCk—FyH/ +N6Jˍ8wƟ^ 7)1%qTgVwԒK>d[lx$MrŚ\ĐEL`706f +e +IK`^J<N$^u2};+'I~ +Qw9,?9ghiOoDvѻ,3QQ뛖o +i˂/7l +n,= -|wʷ'Ln|s3ycxy.b |' g]w|u/½{ӁEGǼ]{&t?ƿ3M 𘨣@WL^Pɡ9'ұ92: i&`$v`za@&9fNqK qӬM/xO'`4xɀ05cK0,dKwXjIfHx?]a8C-r! 9Nj"rbSpUqhCD4i0 3" +Yȓ$-՗WC-pFz ! YJ$PR=aN|Xh1~[(&ψFpM//s_Ў{'-v^^!*DHB; ʍbN EtSǰHwesH EEQDq &'Im+սh8r,9:Xag +&y͉s3ۻ:[_|G/'Rno2I& rǃC@wtˡp؉C'V~Pɮ MCtamK>尒iǂwIoRO;=}Xw{6$zfhٖ|X$\wYP;qfը!{GL`5{NʲE/hzÝ$CO>~Oo=6ّY4=k>;|Kci~e:J,CC;Lֵ\n ?@rli2{ RJVV| &9=Bu;+GekH/suen @Ð ;N +7͋LEBIEJ@xPSr|^S55j)LYy^P*WkEfvfǣw&.c4">4IOgӦL7,]FE_ޯ?s~4hwj?'Ew +.~;I\ +.P.R8u_s+b)9l~`;Z_Ք L@[zM}d-xM1=e + r/^qxtY,)DxG'JuE] +cR L& 7B~4m+M);8o4竧tР0,b *'º0} 鵉5-x +sFFL>>n'X>h {O•KQM*SʜrB9F)#Árc4KۡF8Ѵab3:~r!j֩cL'Gm\ X?v 8ЛEW=5Lگ5UOQ11Lt~찦]DsEW~0}iM"2G/Kpr rI.%ͤmị7C*,TzuA\|s/amΪ=wT=7=xMXۛ梄( sNh-'C%kcJӘGnLOفZW ґ*FPfQ"E/bSMR 7(B3l(!gĔ|D|(&Jb:;Z褒f=_xyI|~K\qVκRtiZ8#"%:+i -Yu.HU.%ȋ)} E"[M"ku.Îmiv9wXU ‘t3ԡG#;ۆlwq$jf@W-A5 wHbuWXxju.`nIDSv$5E R-m RTB(+Qq-E06-#ڍ )".dJѢ IIQE>^ZS*lm =e[7 VTTRq$E0lqH'j430B 7`ސʠa‘z{I(aT) !(>8vHάip4ߩi`"aZY$KtLxiӞ֬8kXB^tІpFIߛMIr624 USzimA; w8ښUPkkE,hMXo_RmNkTk*:4'DE!ZbOh!򵡏RP: NE8 @E԰Qe0H`6{R'>F|}!ۡջk=w~cԇtߨo7'rLhA05C&#q@ָ:UiQMl'lmfIe(ދiM$L< VRp$mkz(9߷+D?|"2oLqAI~trSᧆL/YJgY$$߷GHPߐ>myPSf 5o;pʑs\'$mp'D9Aq'QN'*;Nr'M =,v/^nS5qL֭ہ hvn4#{m%ryS)915:⻤`:#Hez/=3sv6' NĵQsd_l!~puivw6996v59:44>R,(:0zL ]c/P~EmK / :WTEQ?fzYL`A8x-VNtfѭ-Cg&[dbLO2~/N +g:Z&S\b۞$6ʱ&3RV|8F3-khJ["Ũb.UDS t' EGaaO/<,H.Mo30Xyj +ѴCm=Km r-F; $n ]mm-^6gUmBܻ OI4pbyE": k&Mćqg}7Xq nCwLGv㲵^WO'=՛hݿVYHGugA [pDكn}ڭ{4o$I1(TQnA wyu@nt̓ycg(cƘ6*e+FJ'^ƀa+gxY `t +# $BQ"!v &T`tǩQ+2T +}j]tŰ<ꖸoy#T22k(ڥ }בH"%o>yq1i^{I뭶S!rf!$Rd2L5;b]ճU +\\NVsUstҟ[ UvzJ/T$ޱTeB7 d&c ʄc Õ-A*F8Cy?&LL[(dF3Pa63Y0TF$%da͐2)2 2F 2%ưBr@yƩ4"ٙx8 + myjCalZqmo[iܕ޽vވJ ӟZ MxCxln;v=OF&9Y<2E*D6 F->*Aho`f%x lJ֕68P&4ICJ@ހٌ"̣iC߷ ʿvV^Ͻ~Q.VM$\f>^|Oo>L +l2ׄz4i2͙L(YmX=[(w0j;F-ɈiUƞ~ʄȅ%3r3oIo6lb)4~1` + GNBM:EF_C^ )쒆 ^y>Rx$S'SyLwB)S{rKo%g-Ҭ+ |D()ąԗF,nn͢t+G^xygM1O=Evl|N-2̈; jߺq@^,XD{Җ,'\Jvjthb-j* FRCU#":C'lc:s6 +q#&O֧N=W3O`"!YkB M WK/1bw]j33gw3EtJbi"HCGۑ1@D͞$F`W$&SHpHI9`f +/ >GRW} n|OJhNq,@!|H6:,!|7jJ:2qzȢpQ6Ji}pj %XN&!2 Ɇl CqX="El1EYD"4$ /ig56yl}>ΜiYp6wS3bxKj `ҶEMLPA:)ќ&}KC7ѹ==˾\*1$% 9\c(!fKO\4<3/ibqMM iDۈx)OE&KAOQ3;%PSo (h?xXLL`V-n&`Ʀ?Z~dHu +j)ޔ墙V86&Ir2%ЩF"D[ Q41^+a{];.$sUb,`3nvk3u帑rb앸ȝP,v*7nNg"d3DlRP j + (!o{{Ӧq4CTM1np^s(N|xRȘ%;4] + +Y"CYNLi$lHkNҡζxjcNz.=Z-E=>{4|亭{]y]mNI1O}K7ҙauN':~¿нR:1=˘HFQ6 ]""Ռs5##\ I|^MN!ճ˥3 ZsEUlM]$)+v80lkZc&%3faJcɓj]]PpayX3L g);~>[:@qq EW*7BGh6b?`;`bfRGQ ;p1ri2M#Vy?r^kX,K2q ͺ)_p-κpා6F w' (]ѾzCF%LVf@Yy:0oC&+d^ؠ]kjԺĜuԗR}W˝XO;o.2c__I_w}ہ?zo؞#Ls*e*Am?oX^*a Ki}ΈDL<=r0妾;@29TJj V櫜k9a4pڃ6b1fUոI|%b[y>X +͸1*Tr$b J ƤdV@R Rvkg[ٮkH8)Dž-5V%Py>*XQ2A-@)4^A&DB,eQלūcd7g#bE +Ixu> %9R(,G̨J`uyIa>m0I>rhgHʱ­wo;zc}̗WRˏy j!щU61mی62XhNl[f =e[^K7.+KR'~sQ>锷+Kq]T@ S/ct}u=ӣK,Kl‘o6 >b{C!fIB\vv/'/E!0f!B{&K$9^Ư{t@HZndLwHr:zM *1FMQ r },Cd6ge{ KL^|àgc^AR~>(!`BK֐ +-WPƛ20Bq3|譁3\[)UO Xx_c,$&g`I>zw3DDGm} u>&ٌ:%mU&%\޽ڰ-קAZ:W}-LHh_~03Lodp.4P:N7~LO{®AeW͂6v~&/ >d[Y;%o[*~;9cX5R|T|Tz4Ƙ#,C̀J %1($I}>Y9?<~%ϔ%^M NJ4)Ƹ)aHa^a\%Hk>#7zrOHN3-Hi-Y * + H~xQh8Lp-݁@)v:~P!)r12&L8b %gL1!YJT!Id,DI*p-9kJ6I|5iLnxl8활´--vytXAn^&[/=zv女Π=9fZq0s|jP +kŏ畛8bUV;Eu 82A؄@͖9`PfmSqFm R̴iaA~G%)ꂧ̫?pī0:|%VJ./=|jKa$H:SVBmBQ;/X(3I6)54 צYet;a'~Tb%@?C WsZuZj k5~!Y]xTfKQcrXVG]2r]!pTewp¨[xq2,ӴQqrYqˊGhAԗLWN5&d,R͘L+9M&r[\6RY~ւgw+C۩WXr)}9,HEX΃MD.iÎ8xMcM B %{*_ŭ~Akz<(kUwP]1uhbo& #0h>4kFR׿5UEܳo9865S"ihNwF ]v{6*!;[ֈUOQkE# E@|;$'Fʣ"6UZ2 'Jcc=7ڜ +&j-\dC@Z e:Zs}?we/VdVاS9UK؏b"6Orm3yȭvt`7 If%"1XiW0κw/m썭{RqGJN{9~eMG'& Re]8/O~\X9G!/:"-qFǣwZ!"XzғwЧV-0!`p(g\7F'Piw%#kܗdfX> õ$J9ז]d팛O$eO, +wôֻ#s s=ٳ{K^^#W<ρWKo#J3 ÐLĘɧX:!NkH:.IyLd֍& +E40]۸(zWe=d7H!_`c!"ttSzȸqʡo Sb,Vԅff>b W[܋Պ.iѮ01F?>΄N#pI\My~,vb}_,&vي )l_{2Y{8E-sC;kjg(:F=NSc"av^Jqܛԫ H.#le o0&.O>$[&' N@QlL8N&)IR8hV+0 b7qC=(!azܰ +ib]\.%g.n-h-`f\{lGqء 1ck/P.0!BJKd5م[⌫J%3*ǎW)ɉoq"*lq: u^Z 7n]{%Z X#Ԡ+ş?K% $*\sț_2rG MOK~K5|DDTCR [;Z-h;b#mx=7pȺbcj) +Q~onAĜ0 O9Q(s΀ 紛ajؓ݃ vE@iθCM_mڸL~[jz|6?/ݾhʝO!>j$?x@"EbźVԎp֊~Y79kAP5N Gh:Ż:,9h5+} +Zcvh+WfӍZ-w+f{DO0U[pyV+9h|#7]8ĥ!wVgIrq @OL~#NyIkyZ< a& j((#v-(DFmM45e zO& . + JY 'rx.k=/!k44D QmWMbRh0zQwZ憢ο i6sYˑP@2ܣ)jrz_qg+/V.T{ێW8 C r:;B'xT<M*Nl*`ikX)YFnU>ARev6LC(Țv9:F?lgO QV*P=w?~⟧50t,`%l/&' +z~ 4<}ީꪧ2=:aHǺ2慴1N)-+ 'xϖJ ˲yYJđ^A^5Hf 4BQˤ.t`OYopu(˰l ^@.@gumN/!S[_~=:F5j; gK$/ ŅE:jfpްpr`Hj8R'?j3<$p|\S TFM^,:ue1Y )ݢj\nxZZgVr:z׮bY% +*Wv՜HUGet~Ѿ;S٭6+]V>!.8oւ4Sv9.#07dJy;w꟮*7hSJPCp +=3%V%Jj!H-]=Qg:pY.`FZ Muctmhꃖ-JXNxe^=Ti:pJ7&CSx;v7os$g$rZWV^0\y-W+"_z*1 >HB! a [cճ@I׼5;<쟽03s?5c؋"c{ Ʋ51_ +5!ڷG ,ծ.^;88F|hҭwX:2+`m#Q.bĆxTWsoO;9g^{(ؽlEN] nՋ:w#qG=a#_^sXa.n!GA8<''O[8MMtS|HPɄ:G%W6D=+z|MSZѲ̄+IƭߋgQkgFXB1F?c^'?y  ("4jIl +/Sp{u^,qh{^p!qCb?C[mt"R7nU2հ%m5!8s)d<&p:*Epaɓߚg9ϐ]|d ~j @wQj'?Ew!]ў5&O;4' nކo#B%(1̐D5Y_XwOQEkn?m;:'m~|0mnKޓA|1511QN"?52EI ( CԲ9Ht{(MV=$QUa: Ft[!tbnQaj*[L3\}ۊd[uX$,g|垠 ~`.D/eiHQQd?xdKۧk0)%Nl_ްkҜ+߉xD-Qg};MP̭ۍz}Y2vhxXV0~_]uʫ׬]_7 u%cuJ ƍkmct*M/h}NN+ Dgtz"jM}ڋ]Lsf#q㩑Ӻ$ΨV޹ $0%Je!KA`h6hw ݞrVfmVx: rHհ5yWئ%*M>|Cqh0N@ZwGK8N{[_ȩy> +$wcSO.XE4s+#WP|wƮj6% ŴCrh o/[mĝL-]hRY.A_mٿqۖ +-/陷 6{)Wn1ls +%,o>Y,"C,/riO\,PQwMXkZ4v:I\R,ّ- |YcgBluAWK(v)*iNkyZ5$U !֕n][iZJrBs7aR_q.:Ba04\RU2N.pU8&3dcS_͸nI;4Dtƶ*'Dlo߽n_~r:6#r)[(EK0bXuTN+C^$me;/9C.0UzWH۬|MKa"O79˺lTf#2T%Tcc]i[cǢ8I@{RNf=[N<٪CPݹxrւujdZt}ѬɝSR ,v}g^lv= X* cs9d;69 +yO~{ŸwaoTRNu\tSL.Pځ5J;cMsBu״#nD~ +x&(E| ʧVqOҝſEXxn$T'iVq˛B_UQm&U՛N% +қ/7=qK ! bj eqJ ɑHH6&%~X2FTFM! iHӉX\$^FX r@Y}b%d- ԭ%d.9ýmF̃v#ُ>ޞ/baR,k3 b$%2^xRlngCgh/g `oo'sE7kHiRÇ0rFrב:gzV8ϑ"d!vad +ـ0'WV,_ӻP ;Gl( +xA퀌a $ h Q- …G6Z(@P(4(ik:UW4=Mm6Ό/JEzq51/e|tIq$Qz9٭x{_]]mD"mR,xixZV3fZm 'BҸ]|*z0u_=v}{8HWHTNJ [ wCFCQ#Cd~a<͇] +߼B, YN,{-ii3)o;H,,{fv,@|vvMԟ튌zQvKW`KoG:zhAO%ND)Oٳz/n*k'RGQ3^5ڶ~᫖ÿU]l?{UxϕdOqu-Y%˲,?d[~؞=Gȶ<֌m9=h i~- P&’2X63Pml't)_XνIJv?猥s9+Rfh?DtO}sq>_|}re5@۱'RlsMZrEzHʗe|ʯeL9<|i2b$ O%MdId,~{8&ÄT y~ޟ|dPۉ~c*oo:RG%e3t[*e_wX9m~98s1<~jE59)ic-Yї0Uq B9CkImw ͐|еjw%;2)l*]]1/D=1P__w152T-H11 vD~uG.? =gCwtdbRi sLS\F͠rMA=)q}WgpT00ص~@-q£<Սr-]ݦ.b3VJY&Gܡ*-#1_K8|R4K0y@6h6( +"/T 2e_Bb l2 &X*Bv7:-@$lĬ-;4p7/Nu[#Q4է%3G#+YdKD/r۬~2?T|>FY극sƲnz3&?CZA.y1PKrz`X+Y0(ftGݫJ{l K&ׯ|lVI. NU_1:/W]Ln݇EvVzV,56[=pq4$*ԛ(zByjϺ63)W +t8`rގ>tۚ Z +rNB:I7qun& I0:c=.oat8fi@ Tccb]0ޟ:$"{OFN~s&C;J8}>Oz>~is9NM;hEω{;/H}8Wk)$BzD zLtEq$BtxfԬ5 `5+RF9g@f@c1 Cp/\#$J@dqЏb瞛۹J*’gnζhnp{<] +qvTf;fn'o8ŞxKAx[+s\$3}4BZ-RGkk!/bh Luc,v:e#}p@Ϫ1iQJ +OcɏKZI*~ Y5^! 3ַZ:^ݷшŵ=p/&*gž&&' ")_, GhgNzWWastT-X%48]ѱ+c}.*UX?d\r2ZErZ|s]_/Yg旦;zOWRq97ܳ9|7aSx< +GMEZ~tUV_n@tUbɓ=,aJ1bz&FX +Gйa +#A +a7JqPeBwЬ~IA/JQF}R]Ro*t P΄_r 'wN4Dq'jrZ!}wh)qZg~/k}Tʊ{)DO"J'`iy~1|G_0*I偻3B7}og&jL;z1{,`:85MA3kWN #~o<찍sf1W?XbɇwLt2( &6Q҇)moo{SІhCm-kJIɡ5%SPR팓8vF2w溿%kB=6s#?ЀI!ogD=I5耄y׎,Ά;"g?jz -~R@N9Θ!kk84S.&Ը:'cN^ UsI|>S$ሙkHϦW 3&z6L7G&n)u Oԫ,AT-Nڌ;:B`Pf>G}zEr-ztT?E<Х:BB +ebf\e33t!ML akL*f6e~$|[2b\wǑ;t&N :V/ECs=ȶx{nWhF13 zE\s. Eu4Nдfi|:pUˁvەN]4Ңk&&GvǪm,#Ɂ^S^izЧ5|m~pOzKmGЉr~PС{U +eOPM%DRU[lbTcvύjvHi['sw՝wZC)81dBҌhc"f:a&Qi^Ec ^:4ta`mŕ@.Y@K +Wxil,ۋɱ|.ϣ|> [Pbl+nf>Ȕh5k._&z^jV7Bx,wYU@j]!tZDKS15巫jҬ@cmNӬ|AըlC3lMdxdzg4gNI5(ňLÏT1: +~s3*i +1>.=( >DArF +#SdB H! +Tv©۝wvN ر[dHedL7rbj$) X7:;6ˤO*ffBqoŮުSUfCnlp&5d~YR~T𒬻p 3'>EJL4az<}ɥ2eW""D)&B 2 +  + @s RL$/&c^Qg;?VvKgOMJT>닞heч #}HK(;& +ʖS²P/h⋢Q@p*=>>& +oMhEnD G0{-gJKMs[\nknnzgZ( (# cI1l XH`ǁOƒ3ݒZЏ%?BfP()bU}`ItYKSɚ:560u6٢EGᡵcPkjP<;Mma1@ V: 9{$K].IHkuI$E4IP)tRf~>yB$r֫` nM.yn<$suvqg;T`P3"#Z1՟8 ]I9ퟚ2eqYHdSZ-zow*௠4hNQPEF%K1;~D7'0s->>\NT3r`~X.S}!,"Zj}կbd15rJv +~N'K/6JԘ4%y 3t'GKUqHǒhpv +-L6X"O+g3 V٢7m=>i yhDzPT&g(H$x/YAʀ ؀P`@ +qHB T;R?g"N"F #ștvqř<4[}H$z3-0gUaFEG.iSӣr.qxr(P_jO􁾶l@}%XC ~4V +xy +V̻&zӈ3R՟Tn_rXN3-s͂Tu:kQ[HȔg$##d +I$}PLBa +)(1xb1XSd!{MG|]Ѝůjxbb,.I3Lydq o85nVmpWܤdF7H61ĺ}v3Ͱʕ&LbV{sCQ[S?n3MQzsve ]*ȉIbIK^KSn))ŽՓ V#{*g.;AFwhk2aDJ"eol/^oDRAڙGQ5 Qϓ R+})(D u7եaT+B +MC~,?õZOԥH#:ԦIϣ9MꔏCx7775}/~-=g ,~i#hrrhOLqƂ/~eWQ*bVh6G%ybN''g)e1際=x(tW]oR;AȎcSQ> DIаKCx%Gv=n2Xwg:w4eDybGG WɜX[{665<ș{8-}}6.^!ggskpdXGQ_I@r=GRݮt~ -~O;{~Oi?~Oi?$1ߐ~w~O0RxO|'?7/+ߝ6˅-~K;BOνgο2ՁտX;mT^WƗ6?ܺ2}HM_=pwU7ms۟~z~i~uOi?~O~yIv7 +nįy0CDO:ASȋH(o8RBB^N' yF,fHm*5}_Ӕ"*byqC 2 +&JoR*[o#l +y95d>#R ij$/87$/%&yW< Ӑϋ4< Ӑ4jw$h_a I^P4a!o'HLpfҗAt5q7}Qo%;Hp^a.UC˧)JPqR32UIL&M!@DZDfZRG,ߤ6U|.jHcp5E""y&`m{ aa2Y uaǩ$4!0`uh¼@e(ŵ[F'LcUY"`A\Z ؋#?NY%lA_-olAEB9k0uJm/EjĔ^$Q-K7o],ygEB2H?"cq[Ӎ-Y8Y*c:u[YBэ:i Kػ#a Z`n, i׀&KJ^m7M[Ћ +sh 4X$0cjSkR8 AN>F܈AEB9Eѩ=5Me"~^5Gamiۨ 5٬$[0~3\ljBg5b1 +)/{=Rk~Y C{m8%w%^8;zMCJ+6bV%QNK`Vv`TGg +$(FMˎb"9U$\-@YhQ cJڻk-6A/Cg71Quե|IM_JkT?Ü;\לh7/EaDG[?r.D$ e+kuI)PF{o: +wL`]]WٍqXV `|uR-/܌kGou`j +K7]k7՚]OTa2e~]llxmhzR$q#KAh?c 206MZ%cOB| p!(98?J ?W O!r^Ɍ5&(?&d< ?pC¥0&yh#P2L 3G\v>B o.Vc] a? +3Cy4ް@3ŊS I(a90^'x!BC!µG 7zH0i5@0K^tsjT#(co k>4~U^Y.z*W˕feVVأ˛Fre|x=^\}& +Mv|.׷+'JGأevP^8kif4TBaf6e(oUyP)[k +a'J ŵb(|qqȮbqcRZ9FtZ``nV +B<[^zu: +ohJ†&K 2eXS$iIӓ3 YYζӛ6Q)"liaP(Tkl{&nlf=YbW `SevR,l#bic8a kz \`׋& 7M(]&T[*! ?Wʋ[ > Jkrda"嵕m6TjFx-hy1Ԭ76+@7`{},@lW1+%u|qm\XKO*?@ S:b,WRTkm[h}K%9VcQ[* VB˛ݱXq-zt^\,A3R{Xl`0[iwʀ&MBq4{cRt0fHP^g+b]ւ,,*ggLcpy5L459ͱ66 *p +P&G܃-;-[DE؋e\ nA0)?7[(0®KKHm,緰nBAJ Q #`^ T%Ô&@\\.X *kL XL`9W\ج خ/u"^/_(6x ~Xe?{lo7[7͘Ϙ/Z7k5͚K%m(MwœØpY8 +n `iXqB`ls {vcq6Y9 Gn|=łׁoytv_ yx6 e Gi. DC7/12曓 rAjV!L +~V: <83]$E:[6ZhEs~sd]ױ^pMh-Zm',v:9kGRL^o 0a=0( +E,3[C, #܍9`vpԎB, @ E DN' % HRx%w P*2+X4ߍxy1$s4R$ +uPz:(UNB: "o!| _j(0&D L2!J=cW^ nN}LqY+%{k͎* ?ǣbW8;` 2oV0+%zmćA5)ڲ!ML hb&_᮹ ~}.b M@'CڏM5Nf+PYaؽ Q*x'/8{=a"eacxsĕ:ެC+ӚFŅzm. LWU}_h(#h ʹ̼mmꜣemFzGx]p-r -@Q<\ggV\ };ӔxG(98 &mBpm,O $E%Pb2Vqv:Q +V Ŵsuy  r +:/.+Dl8i]MkbZ~۵}X 7uk\uf-^M@_XG X(u M z? @fP cFFS%\;1u3/z`?k~ܫ-'ԝ;x+`vG"WY #Sd>ӏx&l ,COf\ +t}enhc)&6HX~j&~؞#z\3S4cg#5$4L^W9O^Yyly[[QT$1k+VS8^Bw4LZ$˚-_cXpʮۧ_//},Pjtx}g]b.`roü_1)D潉|X[/w/WZ0j`g=yQ%~ynpҚn6 =`n ٹ{I:xۡL:+zrު]\ZW}qxQǭmq)MQ֗/q=G2MA+Kr gGw WlmoU>m;#ƼNZuճ=O}NvR-[osb[%݊?_끖s;scߝœt-+m!aVF#rYn׋ GM[}EsB6R“b2:z>]-oG% +آ0pGL:'GNjee{9bpHGP 1}ZħdPvbLޑA3V~0y7%ycr(!I9@1z+39xiͭq851.QVPhuO)$5'eu+ n&ݹxؒRtfuDYi*gW}zf[hwxx{ϭDHLuONQbzLQW0e_KD&",,dno)D{ME KsEo(y8RŒM8F)uDG4֫RkOu̖TCt2EfZdįv8!%vC;-\򥶘Iۤjs>|QW#y GkVu{8AB~4C52Y?a5 +u-LLs)^:zTz^pL;3,qWTy1h'L`DC*&7'Hվ`Wk'}_~Ue\|3''td˙3N#gH7;DE#<&ɭ\UNq;o7v(gU(2w +Kx1i1TitS<@v XyG<ǃmJzrp5;)ᵐ0ڠ'&?Xn=%T y4)#sVh8M0I2 V8R!()ZQw~bRJ_r xor:mq'ƪǢk7ţ4i!U_Eg;DwŢ# 3ݏfrv%>4'@iSJ<㭦hj3u +ݟ` +@3S2V8$F1ُ2Ex=A42+m@d\ ɘ I 8Qu9YibԽL&N% }9>t_1[`ٙ/'$v6p6H^}`og,pЧhh >IGrE>CO>4\98s׊v9_y9{V _vڹLs\ _/(j=EX_ʗ_|7HL8ƌi\ZuȕuE)+h)TfnDNX`GK5)_Ub(BgG:}8,w{[_)ugyT7S^}R~ TiݧѪݮJZ!9ĮO<<]{)Ю=}O6d*G؞Dq$D {5qΪ4|Fc0/6Ɍ@dԨ{G 2zqLZ"c7+>_ -3nhYy;v⌰;~=XkxmrK/>j;j} ܜfj3u5-ص3Iz=C+;Jvr]Y|q~H0s|:Vd+`WA%al[e%ۨh޹<Bd9k֒=eg\i%aA]}]= : @(`O8 z',o~@rg;/& +^R"N,$ X`YȬsHl]1l&[H)~j6C(L:`:tҿz~sd[CW3ЃRl gB){Q68]M=U``g5Fp*gxw]#T3V9diF1a [.啘Rb;~Q&IJ#FmEB&ωvQ!>`|^b/sQ G;>JrRQ-/o'ԶےWb[ < 0l܇61 NOGKִ +N[cuEz/[NSg癃;+$|i4֙T~?)K@uwi:ςLKЏ_zIn ]&+$̍m )q%U0A_,G"ۥ[ܼjƶ;TXJЫ.&;c,rEX&Lg\>D)eOt)&U6ֹ6ɝpVü遞ۉ9g.QM1wʧL'N% +endstream +endobj +394 0 obj +<< +/Length 6033 +/Length1 11088 +/Filter /FlateDecode +>> +stream +x: xTՙ$!wc& τH&/@!$3Mf`LS"bDV?qժ֊XUjmwWn+-.ZLfso{O9s@`vTV}l'#ms($x~.x@z}Wռ#<}ޑ^9y'Gѭ8\5W^FBƒe(+Ʈ[ffHfϚio \]a[:$wd'ԫL)%5Fnݣۻ17*gfڎGހfiK6uYѴ`<FGdؤ3eh`%h@\l@ccPKtd H+BZ%Oi,QrdNpŒxԘQS o+@>\CMiLOjiZRBKD߈9EW2|IyP&  al+l -lD]=Yf-\7995욚^-c%?6sj(K0ovר$s|Kܲas<ڭŶs_>=A.> .gX[) +cE + XBU{M/(9KWaffZS:_1c^( \KQ9 2ٻaFvl:n7]95v7p븄G'rTI{3xDb#0&h)gLW9w&'s +Tc5''Y?H8b̩,Lʩ-xm82rPaUڪ=8+|8WEXXII[ecarV{V?vD?֧sǮԏҏ-ՏYc|X>ِd0 F3p [)}F'Lt lhO_l9b +P-\KGiQO:GR?Ĉ&@KgC%J[T}ۖqBۑr{1]a=Y=Dܞv;ե%L^t[KgWK3CA}>=v uQ(uQӳջZ:Dzj"vrm'=wfn!wGmG馣CQJjIq5Ӧ47ˎ&qh%=%稻uJq(!=K *jl t+ոjO5ZfM`[׸x5b.T%K +sY?< +xs4o:U^_^O`<զү_ayT2!9Qn Dox$pRNUīR\ 9x/,ț}z9#yr{,ѧ;z9j(Ƃ}sdUpB7 H&?@~7rI)rj!3r{HA +~sO^ˡeW[!L #\{9#dD "zqhN8`>| ~'B&9y9򟸪*a)ll߆"9^$33h?^~>"D#_#C4Zi|9Oym7us21Fw +H݁p=ы{x#uM^!] Mߪo91G#h핰ߨG[pwQ׋YJVrNIn&'Õrqy|_nZ-8~䫑5K<0&脭 õ ۏm w<=x>j}4lVl$H i&ϑ?sbn)Wͭڹ>υ1Nƹi? +!xANA~# "26xherK "=2=B +џ6̪zrؾmc= = axyK*='_ +1rR񽌬ƶ4D%~ryv^N8;w57]s'SLJ~ 5'Nڄp0&<$<)LX!GQY].KXס uûI8?q8z'KLd~H~2rn3PK@_ha6%\;fnKwC8@:6|*q;s(?A>s;&FdtGbZ(2W-'\1wB Jk =̿fvȟM[#x&C^ׯG&':XIL& ډ'7H6F㞃O795؈½7'&ԁϦ>ggmNį=Qp`ԉN2c@xyzi\VGLPW;QKʊE|sOO%6΃$_x[xA:,;$~3&?Zi l[qq|x e_zOCGu$1b,YtQ~'\ K`zKy}}KR׮]QrK}bA74,zmkrn kk[^FDccD0p|BQl4F }!&F'ba.Mq'7OeΝx=c!HקĵAWU +^il19Œryaan.'/4&yaJ, rp[*[0liii(0-T 5͚.s4gp‚|ӳ:*2%Kyar)!esQ|jeUCYiz+}Z5Mubu" BbLUV$19-uѢEU˖.I\\ K̄S\.YMo,ؔں9ϯize^6Ɋ+ԉ\SX +C ttъ~ߎ'H1,A¯xh|V,8"7ON->@*j R\-+}XQ%-ZCsjݙsgLgN0Aݺ3ugΘjkYҪY]Dwr.%95- E(mQZ$\dc]{v{Ce~jb<;mﶷO_̯};of +\:|en1椴u[2dzw2_8vvE*<9UEh-;e볫Rby%iďb1B2ZCLFqߏkittGיh-,4&'/ȏ+ʇXux +eUim[4rqE~{X M~s٣<[5X#3rs`?1>|DD_kp,Ts '/rv !.qB E/K}>`oap J +P&':4yw5vq xDH`ği +h'4tu .748z okp<7r [Y>R7>1D_'Gc=}PPjWJ`HqMtR͐RJ˲ +h}volҦX**KuNBC}}=2HMǰgOZA7*Ww=A79<AӯVeXj;E!9~O J +#I%8p|}JȭaO-9P׫8ٔWwv+=}Q1}ʀ@CT6t;gHFRP ;sPAGyIih S{n'*)bGC0L)BnGłC!:<.~?qGЉ8JpNT:D4. l?H0 )^\oA_ZR=J؎>\ ut}A]]fJn%Z **63A{QJ1Fj +1[:blw#Y\ +FMFhO/OaVWri=,LV!9 A8"c@Xl;jj:J?Q/cz=,>Mw*DeiCJ_IR,^sZE3#1ۣ5NfĴiOYC 0Q?2Mنk>7˲f֮5^VBLk4;m͔AxtW0cC;}?AEKc&iԙAME+8wϪꛛy}a6̚%έKf.+!q0(msL~:hz5^e.}xe;ͪ*.Qw*wڠb|~v60T`?Ne0a?~V!ͺfTnn+"@"Jexh8:~p 2I[6B5dR19?iTCt 1t6nZv@̌ѢL"Ss *fϼ8&{Q)sq',*apиS#P?I"fF/ym, },p7{<b: +endstream +endobj +395 0 obj +<< +/Length 50325 +/Length1 99184 +/Filter /FlateDecode +>> +stream +x| xTE詪{{M'Nw:{/t !!Ž&@$& +1 PFGqߑt@ɸ/8TD\(:Jn=U眪:uTթ$@ _?9;Md>Rf_ҸϽ =zjv͏;FԷ]2([:*ޢs6]'Woj'Q#!27Elk%KW D˰<ϴhơ H{I%1GLB(_ҴKҸ.msd_ {b▥rL˚%ukǪV?vgF|G2}WvkrVXUt!ppH7 +Fa]8.@b߁qLVXv7̥&"R*2QL8 +VL 0Ž9OxCh#fq,)hTE$K3i7d3~g XUޏFZ[{Vɷs,^sSX~ӟ,"?-?.^ ?U(J"؊w9M~NӿGz8n@~j|7͘K\S ʤ6X2ddS8e3q<^bcy@ZӿZ#@Mg`````````````sο72 d0i#_7An@/% ͡mU7ڄyP>$8a|=ic9)a[CO~B)?ѬS>C^b`plgOr=,씂_hV_^sWc3ӿէ[h(Q= +%@\Y~ZO8־sCV]nOuJarR^_GtV[hן!!#m(; r  +`4Lp!K%cc?$2(= 2ZJ + ZpٯY?g6>9;O> py4m6?e4B2 *Y}@1bָNp'5-=Û 烂C`XXjQT7~IaM/+ϣUQn8?hSK+Z\4 ߗ5(ӛq$nKINJLZ1hcT!Bj*Q`@f444j ^x!`G҈eE~%B$F{ ʴWI˕=HMR=ЫkVWͯH*0b֪Jl]*t2]ǬsX%CU4T* UVJA&LLt8eHliV@W +"V/ࣁ̞-A#jF̑4Ψ :G XW*j7MdUq ں{b\aXG4p#e"\}>𠚤*NiXhhri~LZHHwG!:VrJʤv3NZǟn[=2?a87tqt֜k$F/gQZ 2@!(PGV`NÂX~@t%{w.~q>rqֿ&z/8p\0(sy~)-1`B-V+F;|V70 uke;J.@8 2s֝ᜭ U%2T/`7ՓjU r^)rן TԲDڟL'8+ ?*œtEB#ƆQw'+哼~֯f{~yyԋheSmud͒FXuIUÙ 6'FlA'%ibl<ۈ[)Њvj*Tʩ v^jA5|b`R$4ghfif wQ:=;(934aںtZ9F9;UTL=EV7,i^%KdECɏnLLvVUY +HKV ue1 ܅iW0Qo&= +6MTj;33XDYu1L;Yi"tÕŶ2+#; `:IuL_a1 `b:>\Lvb;⏰֊t-]̃h2"kGܼٔ0^GZ8qv5r#"RP'I0v8ɮ),)(̑}Ywmkwq3,|b<֣Zw$e9oMsr<&/71§CzFPGhٟ奠17v|^'Wdkb/ϰJώ5;KGp]g-e"zҾ'1!!G$<7`ZO# 슰,VhSeJU.P.f0a1JmeƲY)f21]`bRL!-➒R%WʽmD+A{  + ?`V+UhLO2Ly*DBak||C]aJaT!3ߐo(3 4i򞠼3 vI faݰnhf vC 'CÔwNoҷ7& +IԀ-8XK'O)"MGA[Y,d/ȽVM.>9y>*tKI)wP^> jH m밝 >F۱\,r>̽'H>۟=/^vܟ>Qy$(gE[8̝giUl.]d+!}uV()}eIJj.RslS gAMZ1yYf\uگvjƤ1j"5FQi Հ +fV9R -(y#oQ01VO.zjyR`:0Hug6TϲNMD(ǡpn0`Jmȼ5_s}"u\_WKJMãFTʫC\r`{@uՁ3jzEUe7]Q]m7ATMt2:jC^[ )\ {"vQX̆Q6EFvq1t3.fla )2m’[9~hqѨtgUD\.uqv ]N=gf (Kfand{ETZ0TOm@y +5.AtװuH{xoS/CiiXBUԘPGܕ@s$Yq3gE+l?+ʡdW?ˈh8k2UDReU-ğ~aٲe--KqՁaY{.\GZ~X[ Ѣ|zP oǂ Sk8L'x +O'7lOap.a l*ȃED؃I9q~X#L*8:z0pu' a<bķa0\ 係Zȇm=9^xl8.U+ Cj+qFmD8@-̃D{{ͤȏ1ƚ ^@CaE0+t$'9,6|j`jnx ^"62f Ũ oDG.$+h=*ʝXĝwJ݂{Am6I&-Ka׷>Q9VPש0.p͝$ " &O.2 6&|3N҈,%oHE+i]G'rK~ +m)ApVmŹ{.oђ fNLoŷœiУ9C Ѩ˥gxރGHȕd#i%7md;9BNk1H|mgyyBqxT5Q)Wb|h&юnOh % +'[:.FX2X*$؄6/»*qsR0g&^Vl=^)zwFqB$T3g\D|GȻKQ'JoW':k,$Ȣ^çZߨSg/C!K(549tu\+//*w_{;^JpTX'[wp#>:a/<xއ#8+cNDr_ + 2%K*@v[m$@"yE&G9E'?PٴVґtٮz fP/z0 biL[&iCH=|t;_Չ0MaQ30pC^H"CӠ<.z4eD߄ZDLLy +D ͷu8cX +#2c[|j>fvZIjܪ!\To}_ui6Hh+Jnb75Ut8?UwW,+v!-e~Ot"$ӓ;XApHαN;6OB [>x}51t63$ gJX8mKO]kd3QHxn'{}#NL +VC^J~Pt?D:xJ ө= N3~[RW7Wn#IഝGمʝڊڙq(1 AǯK:$AxܸxG8/vSm}㪚*CiMߩ" \h*\8ؗk1ULgUS?TxrAwRjLbUoI7: /mt=$tUkq(ZjJRN|ܗ-!^!z<z.iz|%3d#l4$Rh~\]x_^ 9j ? RR 9L=4-t58ܦ(M6:;⌂P5 YCK22ߘثo|0>? v}jztxX49KS.]l_z +k۷h~{m){t#vvWqO y!mζuv}d&7c<\^e"]<=_Vѳb}ycL=_4d=^pUky[&]3M'φryAʛ'>Dn?=t[?/m12/^7( ]~V͵5uh"kDI8W3د>"qr~rH"CdfbET,T* +Dm㎣wEDVT`_X2Y +[X1J}%}L"Evbzrspw8 + }#9թ?SB} +֬{teOɔI in4!_5[ۯ^v#E;M2ԓ+$j"|0X(Է6U/2Vh- StdhW!`DmH0W"^x\7TzVcD5Z> _"T$4аwu44҇:]OЊbuii %]C^4QeUE%5x%^cֻ(6e)xW}3rpʼ{l<?Vfn&+1>1+΋( +뽬fB|jI1Bˆ}u/ fɍWLmaBkOG|?"CKI FqjYhV7TWonT-ܧW-).R};舋e)&B]DG'Np + Hʎc($GLRJ~zpn [E!q2_Pڡ5:_I<˞Tj$dT;mmS.o)(KK$7?tq%T/{u;2K2S\^5Q6ul +vu]QÃoƥke'&Of 9DVXߙ`zϸ43>nR>8y,cXxm8w^P7PؿUp~3y1eږN-HqHRn;,Z54%CI J+_2'GXYy鵿{tq]Gvǂw(Prnr=@NRɖJLittS:(}b?e׋Q]93U\$yskysu7]1g9ǒ,CfbvRv/ccܒ$Ld]1NGJrhI$bNLŔBLfuKNJvR'H%<9b_3-AV_O䓯МA6 8)ҕ o,Ώ"xqg<%'ils|[`qo=wtzSʗv%|Mh8slIi,QƒuIqxI3aX(ħСVq/" by}gzkYzQ3VfCcB?fINrb2m-,-gQƅ:>}OVeWg/Oָ?Hax VIK3K쏞nA7)H\o$$$Ԕִ&h0Nϋ+XiIckPIYe$ WŷNir kԥ׶5N8N}o>(õ_^}8Wxqh%UZs|=l>}fs6t 0tC|.^2uwsjW`L6 $Ĥl6[,Cf9+b6`kA>汖<[kcdד0Ve& iٗ5[Y?2;cEgZAHE'5SnZ)o}{f>v%`# 9W\4D8֥ڸQNb-_>sߓi1ɮIcIM]ŔP|1\ꦣo+C_vOM#3ֲ ieQ['#<>V/$o mL6u{-J|hAԕn^kQOģR OH$QQ@FPgFF$]AٗMꗼɒlY-oIexf2Ve2$! %!$, KH!Cd+ Z@I& ;^zhK{= )Kan8)p8e{2yb,ˊOt-rGy)g%KQ/LQRct/ґ9bN'hJs(!Z|xh<I$GŞtS|x #5`8k0i~j<|M +ZaD̈Xq5vMXG8,~vސQh\l7o}^_#最i ?:hГI}ڤ_p~ &KjZ?+C%dRȨ<9:]=EtHdvw?P_2 Ua_<(yk4))HnP\R03$I +s +c{6$̪[_Yhŭ}ZPuu^5"1"DLi)R^"$ !&Hsy8"4h 5K-' A:7A7Ao=je o> ލti7]_Soל:1ܱ5>mshSpJͪj{̦gos݉S^W4bxQd_c=>ohՎa83UZU\ƭ%e66o#s>(J8Ź\hDH+N\y0;k[۾[ Tq< yR'[_yiKԊ }}.u7_,ߢw\At MQ+ ? &dI?0VhIN9o$‰@8֐ WP=|Xo GĂF$й~ +"0E'Mv`wA %_Rd'%u8^Nɘ&% Z\( ÓbP$%E#<3vVPdڊ.Yn y, va1^"aV>\ԕ +rҹ1jIcRDptcϊ"4H> E1\lU}BmjPQ(5T$E=ġ-rMm ՊNYhoոīG82d#'vEKHѦ udkdW_GYK?hÜ0Vp _5-2ڳC9 K;E b$z"TYI~>7"WF?eB'W?|>)'O#_;x3j$\0_27#y3Ѷ<\dn@F̄\;A!1@$!$8//qJ."I9)kv$✤Lmxٶ +2ZE2@JM#?GB.: c$2Ilh~f +E MU#u FI"jCaE&Eƥ%c51l9cIHeRg;ţ"agjtZz4_Pq, dܑا!?Mr6|u(F@ 7e7P/7ȾyH-ܡIƞŎ plm#a`#a-6{ X-є%pF6dR04[៼h4m gЈ{ `Z +7;2{j~䬠 +z|ç?tUMg?WGqіqb)Auqic<>A -e3KQ1&e͚ +c )PDk+HGKO@=KabةmGn_C'QK2HDs|4UZs:po:!HaCp_>c{uBJ)kkUv}28 .֯" \:p7{Fa/%HS +>vAO@ +"27 [!{መڊHMmBN_|?~iWJtc} --<CJʶ2UEv3QzVO}TipI&jzpo,xks sVa]6u‚_,_%*DXV6am:ҟ w`=ElzL(N<3 c$^]6 vҙ >]KnfZ){umLHMA2s.D,(*Fo_W?٦ѣO8/Կ;gW5fl*ו0tA)eKf8p IRY!ʆ''~qT4ux̥6-NNn3:8,s`J JN+c:k:W,S Lm&jpM~#S9+Qƚ K2 > eIO0ft:8p+RK=x32LxũOH{+}KjylSvb?L)wθ3o7eo V1Qpizx@;6wLJ#y3L{/wM\~2$-/Noedc;K  +Mӈu\ (Dig١ÅQ*P^ha 2v*9g.;.΍̍MMͮWd7;Dw҃iW-;W&jZ!jњRS\ "D.+b0ɄS\pڀ&%Gr'duyWe( P( +\6 +!ĊX, c +()8A)$g),nRlVad +YKD`m0sh^/Yvb2tM`4`Z=6zqpAh+knƊsהZCk4Ԃ~TH50rb wi$E<묓S | W "ވ'}rzis'W.Q]"Nuv0 7'cBDTU?š`HS'~L/QgM\䁨Ǹ ,fsrк}3gasxUט Wmg΋87 N!h +g1f10r,av`<Ѡ@7±1+;h]e{SFw}P"Tub}5zО\z֣8T޳KH7:2h/"ꅣG*=V] +"n;3HOr_zݩ"qw)1 n~P2}Ye?!vA}^^2lܒ3mGT{j{.a*#*\s Dbb:ܤa]#ɄA=@ۡO"_RδI0_D<Ŭf2nUp;30fK` +f xV}ҍjѨoGwĔ2f7-g`pA7c&AsdDYXP9(p덈T͙WЌ髇`6Fos&l"51>#iT> #ckv$ ++io C8p5㪢9o9AwQj>9y``eN%N4ikąJY6j6y5P=F3Ĥ}=ǽʹsf}kVO\}pj抁'Fϐ,M5WyO-n^{\v>`s #b"f=?lv`%cK/Mj3yBeXihe@apWf8"P50Y8E1`X +++.[bD"c TeZTc@_4*6C0àkHaDF3M´QegFFj |m |ahyH l@PBHf.$@CE FŊ};ι (X1N'W9=潣}+gP'LfW͠t5Qx7CO܎9,҉փNsOG&'+8p|H>ge[M>?!k[UpCbw1A=rP{J5s a)n*h C)  (Ԙ S3U̵\`b,Wffu-|+p?!pPű* MԕD=+ +jJ*ة|]U-WńjA tGG`yBUնxZ>`ZEz߭< S3O!fu(S(7jW>偲}L~gyo8py!ȁȀ.ō*hCB~"n^mn8>9iYη62<հҦBvj3 7&8^ n9x4b Q#sƌ`]$EEgީG3ķ?wΆri9Ŕv#b%0zSh{\ya1 +o,dxlq׎ks.ʴG.2z~N—{Z1NRW1a6ֆs lI\#S+4:6i?߶]i~tDaOT+d4٢0%6l;6{P8g5'(*tnO`pd֢B:(aC}r,S7dhzdL'q)-\h8zqt=^:fnM%f ^Rzݡw h4Ai:\K5F4:VK eXGcz]M+E~Y/ۼ|ywJnS|ر`rG}gY ?j)LbzoqѤO ﰒfkUOG&nti_6Vؼak ] EެO7汉`׫<)Ox{%|h[ˮn=Dt=NWlSOīVwۆ N]-N{KM6c`ifQx(aAղ(d]|$肱$Jԩje6 Ns}2=q?FOo!$Am-Z[5MT^F)-_፵!>뵇m?ƷΫ7o/~{ao wRdV_н;.wM{K/%D\Y\vξtOk{= +?o]ܹk'LN\ԗKBo `~к8$q2r]frsh%a[S*<|ҙ r˴JIJBmi903r6'dXdf^*С,+a=D[0J N kHwli cLQ:+' Y1a/w =?3<0И>ncQq}[;9ptR E'ˎd^|pM{'DVAHA#+L;Mk_Z[=xWuݼ$cx|L]ݙ +biS潧*;Gx(, zBY:WI¥4ŀGLN,ӴB[t?mh'tʡ +ET(EB=$01H\gs!=P1 +v] /^hʂht9yO#|Jٯlu*"uHg\*1f[}66'G͹cdN 5ƀ*Bꐳ*V_1'Y}#,<̞T+_3:eq͌JQQW z¨p}:cvC +؇GdƨKL|ĝ? +eZP+B[i.0 +zq֩RTXyR-<'L(|IQ☉\l4owE5vÛۀP`8U _;=6seb#l'J㌧m<0Y߬M*%sMϿ&{,0.gv,_{<՟%H h2L`,`RhfR jq5V5:*L/ mwHI֌ݧ۲eY;Qn$!  4PB uB i7І~񮡴[/tZyeG4=@A+R!"bd)<l1b=>"8)Z??o_'lJ$;H5J28BoX&< [X"$bHy>`9q\w,3tК +yOwb#|jr#I_9) _Zkq&'{9 L ( ;:9Ux98}A;Ͷh{ibۛ:;&ۘAST{9Pyt^9EopW;JF{g?~Bg-xtgIюVrwDvt hL O1 #Xy-f;1Zg4tF5s: KMVyu\}Cu㠖;d:!9+fd *>ւ{\^pV6³Nx X %\W[RY0uK5X1;&'>]fA =MUa&_Kߑs+Ufk3t[Q:cիq,M P;}s:CA})g vfB^H ś}ۏcXCŊeʅ%lvinAZ:nnӞȮ(sOb'T'l<*Μ>Ws.{ܙg^FVUk3뛰>dym5{vdjIxk-NW@_ QfqVgґkq V+AɳY6o#H+ahkmPʃPek;4#Nβq VoUDhYp. deZ6ׂ9{/^V{㥾mAoi~C MU8 ECM6}҆YZs980kͭ:bbO'hOsl Wz2cf fNDUBJV \n_Q~H ~ac.y.~.9g2sL?l\=Π"aݲt6`nyZ&L"[kN=>w4F1BEwͤqzsLY>rтhe -=jMĻK ~WS![_J#1wˠ~BU*|χW:)⿎Ȕ~? +sP;9 +ߊ>Q6QBTTԋnpWŨyK>b Xx`òa0;! 7 jyOB4)7na*LG* HE$-<m ] ~?pCHV^a8>g +pugW%zFЦ t?[鍸0zPN<&©_iHViTzehP_u VK^ps趭fS$@_Q"V%^0eI-dezP%˘Is:J۬ =.W(bGDpY?kLşQJrY?N@Xx a#u!,r#D 1r| Ӹ7_ Zy!G. /\\UZ,W(c߅wU '/);fU5@rjj7bՃ rxBBL9f2 1{5N+B< `]{VB=#'$ Ep4:(l52i8`| ~KX-H¯Qn8_[H\WeO}Bʚ$$W}up&=[)qʢ @+DC1aZMRh;0qyxvhW+k3S]RP^Liƞڔ_0W86Ѿ5lRV*uMU߃m7P?on{oUς??z!x (NRRy_ 9Rv#Q"Am Cj`PΨ(7ƺ ^440'XY ]BYUFaSu)\Ͱ6{ +a<ż||\g$P6z1':[ Լ7+Ӽ+Og،*Qi)ğ ;w7,fťVMW! EFmp ;ކ\KRmэ*u +ݘݏ!ff)H BY8@Տc?;GT6,ˠ5D]$=A:]{zyp=/3=Qx'/3"4#Xߵ +"18]%Vsi1X1rºv0E4in}T.Dˎ2'_ykmΗ.u*:d۪!B цP_;)U=x]KQ {A>h}z!1rhs^$1T[?APG?c"U3=TQHi;,bHZE"a$ +$zqd k5I1Cc p% +I]6}`BMCs5 ^iP8EL?MjYAgYNLM"Ar@sU! +s%Vz 0I/45hw.髮T37=4,e6m2h߱aҬ5@niqE;_eXq6bUHΈ: +27rz篮ɚ1dl7"A0 z}΢"(}rzl9ƹT%=ԧzbMYcwҋГ`I/VJ/3ˉU|(l#)~Z݁TbFYdYoT>?9 Q\ \m_5 a5L#H;s(+̦z$0GPNjkqzΖh!jeϠ.182ln7ZZ_ ˣ ve?tpe%YhP;1Vy~ѹ&lԋ:-q\͏x L);2ᨷꋥop vrH@$IX\T!tNQVkkCj@TJ:#iuQ]Ao+NyGҟX[PZYY~`[}A!]u|# #|o +fs9 )cXcQ|$d _i;BI+aB7/!^>c&pęMKpzJ+U08D1Z:Yk%֑ozbߎ8/逃"BLb^2ٸO&eBaіhPQF!G+d6ry藤8dR9S+ZDmׅ&t|#r |ަ +/:llKXaV b"DRaFQ@`Wkv˰ +e?>|HrYA=X|C3pg*R6֙X[ ]T`կ +$*SoSSL!۬0L K7%"!1D_ rymkkH9*fBOYmXNԡPPBפ79urQT ֨ */ۚW: ltJuQVp]2U1xTMu0fT\(g]\ҿHUJX<ԁ1AO کA0j} Pwi1rnw^~)>7&$ +l>.$k|*OmH󻈖+bY++}(d;< u]U./?vDHY{:oaR$[֖q`H9ɏszx\fPz(8Dkʹh- +[#xHawdB8}GxHtE`0 %FA ML2OtuHe$-'$Zo(hϠb\δ-VU7dhGJ':a4ZBO:6{%>;LytϓM~fwDZT`* b`DIδS뿋6zfoY=)b[6>b{^nRѦzp088GQ3l&|VY!XB ՘Ńm// m+C>|%Oy+5p#6V0Adrl3Ы3?OSN 2]X\Sw*uLReq&zS7J\~/NgVVۻ0/2OװgKz"Td x_\vZ_ci}[7V[c <:Lox/KS֣FBcRJ]aPn&4R\,h)4/6caz*_gk5tvws[{F  qp.<[(؜m~)ƪkƦ&x(`=Ь + +qFp''47cd2:iy x4_aw +ǧeTeؤ+p^|0[_=Vߒ:|&C&_їoXʑ{x0 s DCրƒ?QlW*}%$2ڏ*_kIV#W~6h$ƸL!u ~c+R&0DU8"&x 9o'lٴFN@LwRD:CH)}غ-51ќѹ!?.Lɭ }wh z\yK?G}pL?oNjIݣH8W("Y #8F(̗Y,CFN쪵z,ܖ;= +i+Bec<alA߹m5 wJlZ3 l~\K`k\rUZH5Hj>1B4|pMs p;wǁ|_ύvqh\N_o:y{7}~Kbpϒd2 dt9iS8kuaʝVѵv=۲ڑ'-LxtrEg%c¯4Rd F`w ֥v,%o8YB᰸DZYHI$Ggd@+BR1(%  58?EOyfy,E+QK]<~9ĸ4bwT[{%+i-V'5&,о~0_WezZRymɊӘ%h8&Զ:>#"UT@*m.-^YlH CTE$p€ +Q~]*PяRWqOML%@BD"0_P<|.ZLZ$tr;J9xq;K~3lpH=JkWDSc}b4:.*iM86"虊KR%%hG)ȑ|eL0 }_jQ^ +yD&:9$0Wwh3.DƑ_Ҫ~ox"h Ƹ،ӄ&j;)w}>Kݓ1'|8E]a5jPTxnUnב?ik #TM' c3U̾.-˵z'cvCk} C"ؾa͚N Pp +3+ ~f? +Z3 á޽taP3 Ak?mf{zhݺz#ɐ ՀO-+9]H')?$,\2uN4 ypahAZO/E3U,Sa +5LHfb:c޿s]qep`^,zy^hF +3+ BB'EFE*R<פ[C%zbފuGsinZh\fg+֩-#LȪ%|zG+`!X +m jƨB%J%ekMnK־ 9^erh P:oLH#Xo_8v}N1*5T..lz77i^gvBcDBn +BgV.d}fO3v)d(NH^҆Z26a6+VVI* Ziˈbt]bƎ]nQ[4[tk X|5T^ +;0i#kwmݺxzƍ[vTo-`eϜ9xcWonkε^w9-= أjZcʇ8&~^JC1єDtuK9# _::;>˹xLRI +[\g_G +ҥ&x)o[' 8D $Ӕ~cK.:Uid\)'5b”]eRߚ>4q<Ǧ'jFn[ZE238 9黐N#Ak4x *8<<܏/ܻaLӗXL72p4}… )ۙY4OgIٳ/ _#޴qㆦƱyc# #捌n?]}vth;T=F=o߃74m /όm,=v=ss #ROo[?hLB@% gAN<[hoߚf*h8@+h\ϙ11)YGNɛ.LLC|Pax, +-b-PD˥-L&hѐFf6!k5 E/m^V}}c U!k9"jQ5PmW\< .xxȚpTV!T=YHikZup>oTK:^S2,(FCC̠IcIRuyѾұosBN.R5 +eD9zK;Qz_FԤpf8*3<^MAw{:TÝ&FB/1*$)ѻn4d5I +d )My548R{*姇Ņ`Ni݊Ҍ0q7p3^b}:]]iho<= @om`x'0utקrMhɱk20dg el.BS*d{rXYfԊWniFA>mE%f 0˾G_{p-Q|eiWu3gQiWSwh.+vbP* +n +E6iWgu6e6j~ԑB|B/km:ȨKET;ҬcUΩ:܍ԅ @)*E%RLe+Q$%cE[$&%&3ؔ-#i;Izgk}UH2ca]U5+PV{֏}|KDhU:L.YiֿixJEMPQP#}J. 9p БrYCyO,2:݂9ݙ퉭X@5o.ᕾK+(иz'}tWpөo֏3׏v|< OӰ4̜4gj[xUB#L0{=wo<5ujjw]w!x;t:-Cwmwoqȗ޾뎻6MOy +ۊϜwMC|1FS+6ph%G ~,L`GR䓓s𯙠j*sk^C %d +yG(V[@6[\-]C7^)t]HlՇѾCN.ZUJX'Ql(}tojbm*@ԝn?-I24&;v3ymQ*Rub ~-WJ+*rsR:9؍_O[:KZ*H/l#Xn1e -؂l.4h`}^4lQf/)6J acA[^Lw$ϼVƸVOO4@׿&g WSym Վy x[ĕد㷯qF&('cyvΆ{^wK}BE_JEfu&'W1X4:V[YR!wi~PˁSv^s׉oF,Uq6^NHK>=#khV#@Je*xF)7|OIZ>bT;5_BM n×kop&}S6R.B+|#slE綡!>nxG+\XmП[U8t$N2|m+5f =ޕq{m!5r,_ɺVVW +$bp8 +( &xp=qMP:SrxJq@ +T*#t"%v$A-|<ֻ2Ql0$|wfRa3ց.jtMi^ay< +k*Gz힍̸Xߝcgtn~l[Bu]R:qG&֎]'nʌ({릎u7wqhZSP'=u>l>L<%ķ̡ q81OD 1zG@ ᧭ղys@Qv cMT;<ܜfĎIky-}P6 +Wͭ&m^K=o.(tDѽoz?bJRU*ںaߢR&uuYwojo'339&,2 Rk#;6T7 k!^, c2?Gh,F:n>gF53UgZՂǭlaK TH&$7 h b7I{9 +U$24Ym`3, +]ʉ2Ү*p! 'dN^M)q8[{q q޾> Ѩbel4.+oU -bp&[b%[b/zDpp ٥ѲT./lAj&<"CӥksR%3ݷq2yϰ +r%C^munYAutV@;6v}/ +\~Ŵ7Xi;nHgO;7l ֚JlrM0:0#RYEjl:AׇÃg7O+Dj:v_6dYB6MDzjWU1 T0Za>b&}S?Ȫ& <coV5`ٯljP#Pu= +aC|O]KWD9&fGsVc_C,je:b#4xt?M6pR7qdQ!NJ_(ʄBѭQ|&g(RjePi_b&nL9sv(כPx?~?iAz.7-DŒ>$-u}(- ffY:v̰,F4#$k)+ß/`LJzuG\'U/Seܻf +UW7]?U*Y4\ +c(YC<[C4q R7w15OB_u2N:闲Z 4䃆W Hg08ɓ'H _7 #PuKIHrVҗ_'}soBF"yޛy@ +e+1-䏴أ:XZXנ;I"jN )lWd:&KXF\e^^t9߿$νھt&;gn\RPj)1Xر^H8 +Z%7{c=0|`\koLMj;?kuٜS}D_Vā޳gpL Jq`y#L>T2D2F ;O(5q6Y~)!kżHf>+ٍ$-Le0 +< e$ҽj#jgZFC+Uj6WNG/}י`a@ܝFH W&?أ0&ŶPK8q32*M2p$On_L&* z"r$/PZ(Sp7W'o>[]U4fZ+b-3T9ۧwjr]vl2%a!'bp4cb, x8]1vѴV*H$b\+j@X5Y_Ǭhn:+tY]"f`-o}V`듭h_+lkVhe5|`HccD6!Ȋ8Uޗ* /<JK&SRADY8%D,5ܢΜ_5R@}:JkC_ë]RkȪພpo[, 61Amk8Ϭ'ka_\WVltFOC:s]lItZG]A|nFoŸˌ i! 1 \ج.-"]|";A\I\UhMYHRiYF0 ;A'a*#$wg +Cl-o5*s<36xޑѷZx<'KlUUQxr`6٫AjQFwa20Vx Vp8qv +4F0% E|$Rih>4hOfI*L.#O:(Xo`jݻrBBZ{ȡu~;oq96g%KV$y=c6CZ + X^2AշTʹ dOdg%B6'NerBiFfMer4d+&Akŭb~zVY7?E3 `@d$_bx>0K _R|yh6jSc\"b!'R\E}vg"G-u]>o&&]rJk1'Wptc:_j.6&~ǜ];y2WK (n;F:/n3cr lT Ui쉶ӞP{^USlĮi!&Wq +A +(S>*M {'&{.<mm +"[vW;B +@ +T +&|.@ vFլ!*&NbUqA89l=#[8GoXxL/>ohjrs"uzgCxA Bwdiۮ(̵X,jRN!~_Cjkw'P),*8uG:eYĪd{_8Fk5N^?ӑb[Jk[d6$l"碝xqyy4G)"#Wʀs*W/n鲔}UCkÿb4%iwdF= >?3l f]>GVFZ:XѶsިBg{vi1:i-QVfLwJ9LXX?%'.)kRF(_#g4өJFK*Nj(!8H +rn".(ƌԭ0ŸHZN0!0 b}]_8=L[Z?'$Fh;1)~÷#e?"EE+ +a/X݄4BK}]'YO^&ꐦ2M#ʅ S/~^ dگۙ:`W+7-@QάMu,M.ҨPd*dw +1~OA̍+WzZ̳; ψOO+r#OM{ B<¤F>-9JgHM=^q#$D'arGLmF.01?NSNСWmܔTMzzFЈ(I4/o R"{-. ,&1Uɉ4kzRN1,^pnSn%:kP ŌS_i˩S_s]= nu>芆nc)~owmdJ3fdX> 9I_&)ڟ^unzfgu&p.ծ^w$2}<'/q :5QϷ/Gʙ,.W%E3bp>-ߋ#Q8-l/A{#'"0{98j%0@ϚJ34sg^gWO`ONfן<5fi#HP>D؉I'V Xn(wCvs(uv(C^ +X˰ rw ]n4Fsu.g>jFGM`7k4uM1k8 tҜmR/d&7i~N)ȈBA:PV,ngHW?zr|e m7S7}SsAuUړjU;]Zt۷y޻q۶B'NmvNثw_Ӻ+gr2mzmaϰp⹱11Xq > l /LfK \"\‹>x pD$XI(3Ehlt:))aXL8SH%]]ީ'6Ɖ)d"LqFQº ֑ɮ1Ur#o(ZԳ Jbr/vH;b%!??V *,N0J8I2zM^u𡰂fUdz)2xYS\[t"wǚ9 #_ܯ.K1MQo3zRcEOA]T6Usl3896ptÅ 3<*.&( + + @X B t0)X~T:} jxlͦ_9X)L0=4n5A<3*2Ҵ1ub/1u^.^kbXhAhK7UM-K'D]E?MG*olS!w\\PJ +;EF +l6WAG#bܯu)x\Ig;{_u&zϕ"v@$!@AB! 0[H%aBlNb4NeiL4_&iL3_wiM_}kt;ܫߛo{,ܫ~h񻶆8ȉ U_zT /u"pDd)ђ/g +A$pfهFBaHy Bom#!V.LTi#CBͦU *^ub8(~] 3ynz`bG */SOFe\xmmMj{U֝CKiH})#Px%?:{UT58%fURJ:k,\@xHZZS-%]Q*sy푤S\VTV#oyy&Q~Զ+_ ztY˭i%՝*EE%;Μ=֦nG55 ӛpnp!6 1}'d+f<-!׋o-&ŋ-E8044~qWG"'o1uI +SrC d44T.iW++w|\~U5O\3UH qs~땽~lrPO7w˅ ?0մHail/X'BBTX__#/F=4_5x 2WL59xZ)9xM32 o[Jɺ@b)S +%_B0@\UqO"!G@ +eg_Ӊ,ggy + Zt~3Wds՝BPFoK|+X٭K]Gat4;/W69Ņ쉹'\k/KMbJD  4~}5.1uTS* 4zqFF$2R'|˼!t&ց?m5l&0'dk<(t)?'_*|6>b$3ƘTQ#y +v$UT1 .HL[ACjÜy2h ƣ쿌U@vB<\U_yFZ:b].~H:7bDP'h*6qhљg:^KKb p855=_ѠVw4YatG9Gd bm}^}+ݗUSB^UWCs{Ox[ hVTX)ol7VO˙'t^?(u6mi07Ӭ})I"ᣠp~|*J|(m L + yDqBAJU/7z6>@ ].o58O"/^\ 
-

🛰️ SkyNav SpaceCom

-

Real-Time Orbit & Re-entry Monitoring Platform

-
- -
- - - - - diff --git a/worker/fetch.py b/worker/fetch.py deleted file mode 100644 index e992ae4..0000000 --- a/worker/fetch.py +++ /dev/null @@ -1,2 +0,0 @@ -# Placeholder for TLE or CDM ingestion logic -print("Worker fetch script ready. Implement data polling here.") \ No newline at end of file

ӏ>xBm~ +NQEL1;dC` fcFk?Q(14Y=C\zՃ!SqY'J5%`X\VV{ʀg|&Ϊ*QMWSxoZ"!6[9ZJ-i*7f}mWhL.q%ߞ ;ž RupJC頡mЫ2S/۠?NFm_#{+ts |mߦ2yfKd[ԇ pN; ذEL>p\g 34@Zt\pD"SB:!Zݛ"(H~u<W:VάVp YW zuǩGK%tu:-:whR%N'ǯ+T++o1Ρ}w\|m0;d8\dV EUkW{rY[mZ`S&l\ J 噚oQ\H{$<GL5n?0q꺍51+׋[ս;}5w8ЦAԊ*8sW;/k\t:~c74YUNpyjomlcs_O[K"[i{/ndor<0(_ Ipdl'<|Iu'8XI X@eB.7dAMʕ  ~|,e},dch!!'ɔ~?)>? +od6[-}7^Wgw*Yp)QT +Ш +PGU)UG PY,Q[_ߢPZyբ%*Vdf8lϽU>~3Irj/5]x(/ڲoF5OnޯU H+5͵5RAbߝW 7v5"Iu[X*TMvV6FACԸ!2QJeG'ugƎovqJyf5mRwSpp+V-צs0r>zEޢͺ hjpZ jVs +TڄhE +^gS֦@D!J:].|Po Ff оܰ2op&Psp?x\ۗF~^\ZȖr{gztxCHEYhhY죜@\W io5kD%E PR:U}oznx%u6>ua r&ѿsfyξ<NL/شE+lZNYX[A#J`NŌ>xy'&y-ZNo4 +B5\kik3:VI|S,P(O7G1 I{0+KO; ۝{!zﶝyV9OUU}w*oZࠎj9'{/֔R^eՏ:m~]-ktUNySNUsO让8L-c{E{ @'Ņ:^ݡcR.neᄑ¶auĵįMx4N8yzWv?W'n<@7Q +9@ķ>23;+ +Li22=b%ʟpP jzB"ԕjJRy`vaf&nQ=#Gȅ塥db3v6?dYa`Oa +kCC׶ߙ(ٍ=Zh<4?¼h߮{;+1G\hQDWzGVG$VeyD B8 thSheQ}qիn2$cir5bA6m6>FKޭ۷5ՖWp{ULP }qRbWeUci[yGv%dii;35<]5G0n|GڎjJz*[8 ~ez̨AJЂZrU{tjj&-(ׂ|p?I>0x| eU`oOJxD Hbr@֌ZbdO7T$ oiJߤfEvy]ifKW=jВ٥R Z +[Z{ʾo"KO2 k +'yz/ْ-[ϟwhIpR/H[[[ަJU{Y#ѿhW͹87_9 +Lc[d%9Z/O<0AMG^!zԃtM5OQ? `v6fQ4ں2.YLb'd1z L-h08jۍ=sGC0A AC麡g5 B=Y0ޗ1 bsBN6 G8 D$QJ5y/ %I 0xMn1x!q$Kf3x1q3elη3ZjI,BQlVDC ," ^LXk3xY!Y ,V &T0AB6cGapa5 q<18*Ob,g+Ki?qZ4Ni8Oi'|\$m2*x ,1r#K),T &x9,/Rv38++1^+W1^O08*_8/O</08q28*Gt:+Q +M~g? ی08,9w7㝘o:/Q*ʓ4~i^Jg8cLD-'qnD-YG<^2vVb1fŒ38#9.Qpފ`a9<#K3ћ2|~*>%AÕA ޼h;e&_r}Y+/ݟ!ˍg#'7vM{Aik r˜d:cگ֘ BRxSD?ߙlPˎer}HnC-3Ke kzerd9Wpm}>7x &ҧeo sd7ag=<8a #,1ɜaKM~qG1xqb-.;2;Jfv*v\3V3İz|^xRz}Kv%e:'BH^Ducv +R5" +:Osf5.ί|{S!tOߋ]\˧3o_hgw]w]w]غ֏4p< \ L"7z#0] |gLozEN؍l+6lUrtg5}芔ljp*=U9ƮTAŇ|-GO[c%Kq%eLƔp2rHIh}>>kIoTˡ-K''~_ +ǎL" $݇ {I~,V>)Q@c3h5[ z޽!vƁo|oZhk}??yS$tg}1 HFK߼}?2"HJ ׫K X~ill}.KxfRY[D}3"$Jސ"[QYDRH$癢[qy|~uu]=3L0Ks@ș(1>nX_=@K,$c"3sqqF!nb %kmS(Q@Xg^g%nƇ7 hw4JB*ق" +Л"KַYM= +lW8J)ax(RT> 5O6žRv*3x2p Ks;z2wA<0qeM!Tiup{]=q1gª(̈GJ]%&jbh dX7ߏ+RS6gzLN@|xм}ޱpgh*:d^Du|Ax S.~L@ٺQp/RH֨?/'>-A$½l{XYk"Wm<"WPP#Ka5@IJ8  i6awJtsF/Ԝu?`jFPڰy,e,;9(!/zi6J=۟ca1ښe>BA|-JIy| 4m˚ R1˖^4rYK\ǗsV5g:PO"G63ӻw/A4|Ef`#жN Z7 W@ ("}ߎ +iM*) S>X|ٸ߸ 7֝Ǐ.qS뚙S.);-cꎒII\S`5b!Om//&vϋ-U9Cdgt^{Rqj+%$vߧ[j]`h0}^nBѨ +RJH ڷQryw, iIOICM28 +2QW=]BSz4-52 ГRl>Y !83 Aj"րTĞt0qݷOw٪T{;.7-赠n$Z?p .͇7Hؽ5 ʊT&ξN&.X)w7; Ex@^FĨׁnFadmssYE4Ɔ6Dq~EvC|4Ɖκ1قgϑrai!' o!09m99jUAlJyeb)mW̋}1=dqM)(`^sa׽.H;*jz+^ϔpps'GAc]~+oTh;\p,'}/.}T#oGdZkA3\If'}]agb/v?(^ELi bfo_Tb==V h[`qf!$ƱMOߪSt Z +}Tsg5,B_sIӰsA(<b 3\6 p7pvDײ;"P>+V> V񸪐kf"=3RLvۺSdts㟯F9wz PmkKvi.DF4r/3s/-)0j ~!Q$pam%"X]I-r&)Y9f#R U\cȈ{.MhNNO;E0\b=y׽VVWN[1NpU݃Ʈ}qDn+:ďi=e򢽬?-;97v[zkUd787VbՒz%G3cdjRdIkO.lg'<7P ,k2?3S<Ԕj˘ 9CUAݪ7ocC ":s .o |c%|g 2 +F($3$H " +]=&ܣ_z5o0 +$P"f<W,̍e5%dd%P[G9g+YxZP{|Pcgpm葿D;3r?1ol~1٦?e^ep^v_o[)Nx)r<@/,DwD_,\R 䝐P3]KwdfqI'M!_PhD79^:b.)kbORv_]/yUAy eA:iKcչmfU^xWc;uo"Z=8j}Z2S* a6ϜE# +ze;^[ސ~ok%tMpDM}S[9/-ތHCօ+Wn)RL{hlV{PĜ2_1vq UŴ +WW\6TWdSj)UPpkoeOQ 8i]6vGwܩoz@K}9>˃iA fzSĿOF^Nnz,Qa_!UMMC2'K^X \J>vw&0Jg1߁@qqtP0%6%&¡1_"Z4_/inv:ŸqYtoȳ06q~|WGȍ1?X9ı~=wuPQmi]&%{sL\|Tr]8%j~ЈL rP[U^Ik_|\KQעi5Jb,`TF^SKhB/d'Li^6w_[&m ueUko~kҫڇ. }yeaM.ad\Cŧ?;=?˟b.@e] BR?hN\)0p Rkͧ(Rij}/hY EFqŋ[(l~C~Z2'Z7ӆs<:*ѕ 'R*f:D2u b]:?dd_Lf{o|3uۜkSIAr'ٲ ս<:?O|_xzLS_NNrG/Zu{. 8'h~))_?+/íJR]JFDFOy/^0[6L{ ^qW/5{kt^_ ! +0(ZqV $K;$sLe+Е@w^O8b8taAlqûr˹yC\j[pӉ18o? q jMOFn},?+i YCS9+)Mlҕc='E>71)2)³5&J X._{.a=(ylsdwUp sM|yW A/2 -2p~HHCd4]'կ4dѻ*zcޭrlMj>R>@읋d)\`b +endstream +endobj +396 0 obj +<< +/Length 47919 +/Length1 101788 +/Filter /FlateDecode +>> +stream +x} xdd$LL6& YI&$,!!,bD M (h%Z4RE+he2A@4ն.`DŭVW%~>9o=s{N@(7cv#K!bKPھʎjl֭5}o?(H}ŕ_k$_Lb3W-)!%\>N\(%v#ʵD/ k=+V.`^Ϯ츶; }k;M廤}Wu\ ["VG4?WYKÐ,WwvYDwE-!9V[vAx=IxݢzI'|}HKեѥFBtN2a eIt;q< /݋~9B,Om4buH\/t Z4֚ ׊fh=+ХNb>.GJ1R,Y|v+}Bv4YhXxZ@`*X>F[ս߁y2jt&0 x]Ֆl] O >2n ^ ++yA> |8"# mG]BM3@g7"_qi&i3QOQYFEl>:ܔ'G|M @O`[}mck|ȷ_4R` @ @ @ ?g心mKl۷mA;/h?O}IKhxJdo'4]|@s=ǟ} Jx)Ym[|ҹ*%d"2j%ʵ}h)ZqQa +[( |E9'j(AyLuV>) *@v'P]T&Q~UW߶ vn Xr`)U:ds +e@uM+(O,MF @@a7J"+;; .J6ʣ* +Zi=_ Q4yfi1/~@ ʢl֩K_P|>߻,³SlqO>5t͐#M--p5=MukP]{ ƹ+.!QHD)d:̬6{vNn^GAabxb W])S5LolՓ:sK*JY愋%9cǘPÅL9ʩkuγLZdpaIc*Ig .*{1fd;X&e}&h1~A'th3_de 5nmbNac/^-F3GmGkYܟ*'V"ϛiayV7oK\v "ycz빟pclTݒ27Naas]oo\K8wTmHcOA9̴ hՠ^j 3׻SikpjwZRjcf/_d^h7̙|;Poo\,}"Sdv׵QoIZ1% ʩnd7Ϟײψ9-xm{Mk:d-tR.Ke̘e~>'Q*U5H-ӟ-ceFGV#'E^/qVPƴd?qyϑB?]vN˅.9J &|%OΤD hSLf:*!YfSxQ pU@Jd\'dNI(Nߠ9IA2WR"hA\e+4_:תW)ӑ7nniGP*jNmjk$Q2coW䷚4\+zܮHQ=´:R1`U'kCxq"CdB&Ԍ1K̀-q:SNpQQk d:N?<Θ,gM G9F7jrr~rZ)@ݞ #{ 8a)2{v ej bex#z'<~fho߈ߑLqσ"sdP9ntXO!~Xl-$v(IU'=Y6Gu^UY#VQ! +02'A!ҾO<AXN: 8SAqHAG_ub^mWS D1=1⯪ڗ "FCc:H<(#D|AVq9.w܉O}iS)SX)0$ǩ[I}4S,>q=?R"PfDΈѹY1cj1<} Z`{]{zv*Dڬr{,q^v 2gXts醇 w) Tgb4H3fŞṉc$K!L <]u I&5*U"<6e̦Xu-mkA_Wz\+WMLW#6bZcK1ug]nZ%;3-2-@@ή+L;MEŗ^2.RХhj*5T XPtjn#Vj^2]R$Izt ust58s2uT8]>RoԇCz^W\w= 9hQ"SE\"gz-wh k7]bop/kgV\D /g[,oK sG6PÜx(xwe>Y$1>b,-IߴbUWEVFֻ!iK\o_Kqom~4퐌/=^~Ե\rIZ[%|E,YΖZVQ%_5jj|>UJ5Ͽ@_YW Ui_B%q+Ujŭm:%fmZTZRU;P:T,~/yyomY< :o:kuWȏ(-uvĻ{WھpI;:,.UR7[xO-usZ[.$:KuiSɪ\_%MWӪo&**WIaV khnSMk|?!X-I5Ju锧ߐ_!BPKj)’01(ԤlטȈK [ڵW5k T9ւ[4K\n{mKcc]RW.mo]CvC'F^c~6h-(pH8[81XyrR 6mLJ9C9xU+矫kvV4F>5`\jGCs5~j1 l~ +R4ɤb|oO?;YNe![AeCJOSc˥RX<%`s/048bpslf~3n@b  w&Wh6ѫl)=ڻ2i:;A3 *6k: fq6~hݭفVi]{+l̗LS* d7AEk"ZHE,qoh={w~JSr҇ +-ADQAKoxV$j) W[d)t ƶ]v0NFյljiN6P$WK{i'=CcV+G|M8'd:=>;YRT ;WOidYl)W5MɊ:TVϙ9e{߀W-%K9+&-՜nG1UzU b@}u7`ߣi}4,hff# y +P[B6De]#}L,5P5-xU~bT*)3͡WFuN>5i._{7`IlZĦ]؏C=ώ)7owW?*RMv񢒪|I}z/g| ZDrG|D!NI:9iM (YX&.e-d;smvCyȧF ?#ETkŏWzc5'u;r|FnWX" +17 VYMh<~"g7y^Лj|>L|N#48Sxcfj-sc7[xeWث{}1|2F/mxE|2ÿF!L"Sԉ+͢W{bU)ry|fffV44՜wjzuu͸ޢ-Oxjw˔<|܋q?׊] RO*]Ez^Լh>y"}.v<(ʕ묇\wCc%g\:§8{?6:F;=ubXl0t> ~ݞ7Rë| 3=>ƪDosYˣG]kQ%^7E~@XUұ})Cߌ4kwٗ3n=nUr ݈"^bi7hAE ey_+f! ;؟Y!Zbf;2*#$ShJX"oMN/,/nCs4JiJ<`DӰfOf)K t-Vwsf^ՓS + [[Aeԍ=0 v |03Ha==3e:͌x}aa/Bz@`#PƑ ~}v+Açڕ<mUe0N@T%^(k NkGlQ +jeG|%|8bq!dVpcb *^֬y'C Q.\I2m:x]Vq'c5fg:;HS3Jk5xUS&b.ۍ_VT4?h*3H&FFd a +13N }MfePݾp1D~'?H b Ĉq!}vC&3THS?BM<1;<C,iRæᶓmaqXzGޯ].fffZ +'8bcu:TkIelE.0o) Ei .[^xӏv.UҮ~؏"8>2R ++b:mXl ΄hؼ2n{KL +lVx&m#qxUDi),-q_i$IMZ9!65V^zYQ壛XOK~Y,K0tyjX-CVrTa:,ρĔBu '&NP(T?t/KdJQ,mﻹ\p{s2+ X:++ss $I,IpEӀp8jq%C%`>f=(@=:ղ!:r 45pC´'븁lo7#Y8?IIiKW˚daN_ +*5Cy1lV\N-pO,XTiʹ^Eqfš3?;=6,!!"8><:a IUl?8m~a!Єch|fW5;KEU[c 1yoP2z04m;ąN)1!r{[;Oh+s^wGI[]tq=eJ揻~U'G%uᢊU2EgNYy9y"X Z%S;6s Z ̾53c4E@ԅr;Qܳ˙cV1~V˚t~kËoϞXƝe%N),ͫ5iNͻr[uAɟ=3't>*?[Y}}َ׶\x\(`ZՄWӬ%uJMoh!"YÞ] ;D"! +p-3idƹQ+Jû8SxTNȧ6U0Fb5X)HK&6y5i纪m=Qog}c& Z'w֪6˙6Q٬9l=(XϨ3Y1CZ]*4Ԑ5KNaXU4Q.#,%,P7ʭw njܨagF7vX@9 A559Ey &d6 @"*(KD7{yrByl򜪵bKn}u*eo?cfٝٙlvݐl$D!+BJlq{f(XI7cR̎qZ[Ov"mX8-\[66<}cE d HX|zg |;3ru- B= 6>+@]JU0b0{|P0cxg#8rP}a$.ЊK` U5sPm9>Z,>757VKk3&-{[gX0/' `ls:)`B+K3;01Vsu@/V g3M%x,u;i %ʊOl`fB)nB0@Jo1׆rf4Ǖdu:ȄmZ{žow-k΢saz2`q )>M^EQ4e!N&ǭ`aERw)9 =7޿[NQ(.=:y@as@RL'pv JDRH.ɠ_[qIv}>M^Jt7 "X5W6iV0Ai*CE6/O>$rRT"'I%Lq㶕f]3fIUnMUK +dBQhMOXs`vsxշ#b=ZFici~5>&sɓNc"j?bI >M%}o68mU}?Bo +UUdc{~v+R%RC85ybJΰEb#jƭ3$hD [q ++-1Wx!9ܓmB7T!Ѵv] c _b=$bȻSzwI@y"3RZp(."6!bcs̩0!DCl5fI@v?IURb.jŦW;)7`Hb3UOQvezK5E#AB{%q<,0ǼdUR>.=Bؕ ב)NVװ/ ޼`vG z;5ީ`~QL& *#$uG3 vfw-L& 9j@ZΑ&?)GHNuR{) +sRnuԧVh%fk k4]Ќk/]z`D2^5u,Nɟ9CdSs(lG'ꃷ>?~MIJOw+N}_~˾_|?9WN|f4 oxQKU/E4P{H&ԛ'}QU| +^* ePX=e]`|RX삁Ul%8at0{uO73iLmx!m> ť͈2a˘q0Ў4;Efdyt34#Bo0.'Z)ŤcQ%d0.uB}niT 4ڶRC_&@Iݶ_Ƚq$ i@"(lؠ#X.IH[ee(!D\J99ɡNd׺`s&p9 dNJ!<kҖ"ŬV)_B4%`42'W,|P?wE(4Œ{mZU[lx3FӏKZC>4كwX\._WQ' s +e]RVVF2nn8؎P(p7{ +?'Q\H}}$zWM_B-՛G;V,cX9:Q؂NXôKLU|7(dQMQn4I{.zfE_wm`D3oU_U٧?97$f-bp;O+rw{N(s_mMfHt`uӠMވ/'FŞ%ʞB^Z;]<QĈSΉH0('$25؉GK@*"xyo6bb!S;j.C +%^O;I s"]A/ dN**0M9 +O4ާ)>I4) Hecd,-\,S.oy.œHusgUyKs[^+6;gR.,xa,`'<3E #m )U WǥZQHKRt| oz+ +Mcr ޲BAQ3.r *WR2zNr,%RnY )c #X4wAvwm?njK.CC~ѫzU9` PBZw{6r;k8bb#=D盟@5D6 s6[\:S"Ź߄z_7^]t2_Bmzu($IaQpKRD0+K. "ڌSְ:žʚ!1AތDO+j$ļ!<0rǂ kCn#x!~Ӗ/@".%,6_Hg|Ϩ~|i0SgK7+q8WO4pV(VIUw{^},@i9q/<|zDϫZ!6o?[L#hmT=tK^{-fNE}4W~Ini͝`ેTh"yW=Y-kk':V8V^q]?Ǜ{qt2Ͱ1={M28gs3q͙L/IբΕF6F!RMqQP$k,f~ 3)ًBfLT;^ \(b^퀀_G6 +,fGP5Fl}2u:-CEMcz;2Z,0f^\-V((<´iA$Ŭ3* bX0ԲR!٩77MlhhW1VmpU hl_-3iR~ZTs̟ /u{sFQW6lǁmBƅ*L;I2'K%XhDE$ fߥlT*R't^LͲKNWHeغ9)&h#=a +Ÿ]dYĽ|Why8/Hh3M*o"ȊByӽ8 DElhF@c#B+1(a؀}Q`V6d 2M4VUZY򞋼4^ͼAQxXXf8W +mFh)VQ )\az3ass"U$m>nAG@Zރ](UwCavkSR6Pj"xŻE ݋7j볶9* X ۍ/:rds|4QAMDP`O.W>q BkiDH9! 4, g*бrޕ@Y^*S-xv? }(j Zbh_lvnXlIvCq̣ ‡C,jf0/XE{Cܱ1_۵Ng eNJD:t +R&"sȍ=v|E7YL""c΃'Hzc"^ժj( #3p+XN qew*E֯ 7ւJCZ+('#ٝ ͝CAwΎ_0]9oh2rx#wi K[lZ05 JDJT|P7 N.v=^\QExx33ɯ<^m: ﳭ zL1M=D~{N$kMUy)DCpbdqr$hq#L8L|2߿o˪P҇jvioGOnRTJx,.{@(̲70n$_2 @Fe:2"ڢ1Ig\!2ϽTȞ +};|pݴx/)[_.` 5p =k緉;lKBKƱDO>n+}ǎ%bec'ӽw O}{ b-_ pG5FVhgݬ ?ɽcw{}u: + kHrz[ +7?(`#EJUP# tޤl_< UnN5T'@&s])2*uS%cR˟'<>옣&yo6)'E>c.;| Pj5(GQFu+XQma.7{y>滇ƒw8R~4 z6!"RgN?sI] G^ڝfo߼;TB3o.uq-MD⾃ߺ^'ҟ +iF $gF0 ꟱^xTL@Q-h)OuȔf.O¾ D}JHM)UtVq2fA8ryfJKR9A2Y^/GyI< )WyJLF"^ds;nnN#ūf6eMO_xa?N)h=ú{0eس` ̬IPf'r\Z5񕮬$jɪtrkzORMpsx#j|zsD!.akBla~Wq8.jrǸ3Yl&nA >T8N4Y)@^wǩu$>"j* (~#G@.mҿTjQR*Umm)ֶRY{{mۜXэ%Oi~XH4ɤZVWi[Mz|}/ӯ.~ښxɭ(U\dӉѱH8栗[9{r6%K?O&x"g424W24Y#/WwHkdmOSƫn +kh*UnmP6L/rRb7M{$އ% P:;ʃ<.mop(}N^<"1GN|)cNTXH!NZi1#)Y*i_,Dq__Stt쭡kVVvaz}vYZlRvWr\ڐC)+ǪTl +)cVسpCDlDS^*I4|*R@+Yjo_X*T_ Mv9?4d%tc¾:n[WifF3#"͌4f{{b#gqĦLfM-Zmھ1MLھ -p> h{umX>RP߽WОrN_%y՗ۛda:Gf̼Cg/\OcG^*{)g G;;{]R-̵۠PˮZ8[#byxSn]NJTG$E(!E!u\@0@ŸC{aP-VUVN\d(|nMe! Br:\yA"c ExS1ql\>*f.}Xȣ^høI׸]%.(05177y8#B^9s݂sAkgLT:Mr#uQZ&L1|(s3xGJ'<ɟEN:d wATGIhW0*BeE@AY-5+B/6;a^3 rcff._dkVUy{Ssw|xµAԌg'OP}{L%;g'ɇn郻%pS-3%Wl\/$[}rj{hB|(rz>7'4%hBI$նD{Ef Ǭ฼T% +ޕI⪞8p GYr$u'T&5Eޞ˒{(:B{S3N섣ฤyorQ)κZ(gʜ6|x oc"]|p,* N$؆h2طhf[_k==灖e=ZDzq}3{/uWQ?9Qhv+^ >ݗ3L<]5GwQ) +Y,ng{ :8j(ț.gJPT (dmdA?'DvL.(~trr=TZfK"bh9B& ACN&|kZ$T)wA\%\DYͰ)G>Fl&ghɨ j(89*↦۸AzNFIrLE{Ј +mۄᇗ NIq44T6Slw2&/']/M8~+ jg#0}*cPzl|/݋W싛u$:?Mo)7e!RǑ+d2l< t}DzEFḺ-՛ϵ~ѾBsZgOyr7[_vWWWGV^x pvxZ`Wc-j#. o X| r9]7uP2f4'R48Z) +-l^ ekYҲ/<_lq:ܫ>\;R+7;lñƱqqS9~p1ǐJfe U%N +FA,ln +[C)>&klI.FVZ^Xf y9usڒHt|]]ѵz&B(s1ӈ6lk %S&+A[h-.i_ٶzi֞>58A䟇cdF4PxTY2sj3  7^qpNT[0bn{{@(e,/+.P2l=I:%VSmŽpn됬Y)xoXLY풅Lk"B{m$W}k&@kw쪎W{јԼmyF\J,7?m|k +|uŚ޻z>jz9s5)1$ ܴ-u^ȁs 6 "\Wxψ)ݔ]ʺݾPq=@9iũKjY)P@a0Y|>e +gp$7ќ_7=fMb +ӡaPDFL\z Z0o-Xθye5Lqp48y錚EQq;cK@#J'ds $"rg1\vN9^S#6ǝm5*fTߪ3ZJ5ӵo| [>-;^k-iKkךUEﱿUYt123-JǪ:Fb6C 8Ǖ7IJd@RykDV[y?,UKe "N@'i< A*D?AȺ^z7 {$X1D`}+ظ'v>D.I]T4+6$v#0@8g}p>V$`6B,NK#E!/=~Nl\ޱD"r%];U9 ?e;|჏l/_wyC[> JPV$vʗx_ 6!qN,W̭IF8ÍZbd{*F)3C-Qe|OKOY:Zbhtttt`\AL4)-5W|~ۨ0r+o{ղ:{WoV/\GTҖZ ]wԺAt[8/ /< >`r5e,D$Aq!8o +]!l+?527P[ҷR黨{|z90p8br 0z |,@aa6t-|5$-6n_EV"Ӷt`_9K0&Vjk]~zU#v*xuOW- c$,e]F6W2$!V]]uMP6#ěŮ}OB')C֨ *nx Wۋ.@pϜ≹)faNtQQ(-5Cp`R`Mq"/rLךh*Ud 5F֌TV+'ë%#_pfK7T,ݺfNwUN\-< rI|Y3 Ouh85$2 9UNj&5/@t!?r c~r׭/BC/E5G8,gQ{1QmeɯjPjf?j|vj㊋{n;16zqߢr歩-_l:+W:.ytGAm".U^PiZ%#+T\}+]7O/z藠6&z֎sz`>8d"C(NL26K\ 1@U7AsVNU*J\S/˔*ࣄfOR>吝YF4V%Ac__ O*U8ppHp48 ` |-HrW4M@nk"!4]苌Wa +߆)|!M05|P89| ~r@Mr4޶)L·:ZN,3 b,ȡ8Y6TlCm_y@/SH3BnY'iPu > \C>ļ)q:bT9o@ujbŏ5_ZkŅKfb kJlc6!s]e{`ZjOEOԑj[1\L;TIQ9PNLpqWFX4X? ⲟ pq&)^UEP`Pn[mQ 8hiT1kkBĀIv%Ii0+$4~-iLRC&X7 \8;Z6h[P㤕g3lMqMf]ߴ_0M3lJ#ixm=`nJRX-`kekM;+wV*cɖ-n׈*W%K\EOM U&sE<'cm vŜ >4<ϑ64uji'4hss}|h&tŒqӳè6&5kħgti+[ڬhlx/>cK + 9N6@{}\].{C~ ZCg.\u=8bGc _ {|N8l@[APс`mGYn"P1|$հBJ`㍙ }u}3fHDrMfY.K]xDTYzo qUYQ*7) +EHB6 |<|cًqJ8HDr2͍& tCPU%rUyBV@rs P1po; +| $#7 o$٬*؍A& S[A+"ցi+[J3ÏS3L  +kSi$vHFI& 3q7uh' +`?=hcvOX*k&l"(ЙMX޽8S ղO! e[E ֙g(HT!qTkX4Ls 1n汖Z|IxXO2nݦDd\-]@e8{cJ4{:j.7X,]8_a68A?|r˂~t)Rsۯ!f{ul6><`W޵nT/r^x-]XGg2|Jo?y7l "sK#/O5+$J3QC ̺.k0X-\KrX- ʅF:e> h3 uQ*ĴBNފ&d̚H= ѹvA䎑z!(de}.q+M y| +%} 1.C!w>˃$OF"8@#x#2@^;%e ×-^|xNXqk > dv*Ke-@|j-+Nwݹ33y $>0 {2g!E>9Y}AE4+ <7FG}wMd\k h s9=[y9'gt-2pYNiC/  Htmk3Z[T1=4IjʔBlQ!m(+bSa +_aQuͮsHsg-KceG&;"auPI,%%ს 0X<ʖo@ȡl(DHt + TqB#`D +f˲p4AkzG,u*&+V,V`wPN[MHe4ҍJ B" +rBHH?)K@,'rUBq5 x[A H ;Ḧ́ l>ꧠ:j#dMJc Py㱤_µ4o~@ɓܴD}uJc + +$EgYP ͙UlVw/nj]gwyB( }־Ds=yEc6&n\ru.&R +wt83C43FsEJk8oÇ3/gL[TkʄyM{hta !2@h ?8z$tx ?&Gh;< ͐:R6ප&TKyy'ϬGɓrIs5,b(l 赾 S 8%h$כ| ʐS"D-Kp'94a*8~$IlCqoRxx߈{!{i HK.& pgV7\n8Y8^Qc6ͼ L~4(S&_LBOxS 2eF3sCơZ;mS fA9AiQJ`U"(%6b> ܰlHr).]jOeIU>5+c@X^}ԘX6_t7ݻ;״kfXVA:.;6Cė 'a>6BwI#+|ng$haO4l6eph; 8AqT +Q]024NuNATo#ɝqm}BB6V,( N7l^,{x`ߵYj}c“-IUs;i[zHGP&)tzbgVkD=F+)44i.h{H(l p]n"Lm:y 4d1ȪcA A:g2 ɼƐ1$LeXIߔʺKH͙љOj6rthK`؀rB1bUǭ}rԫ%w-缾\=X|;fT%w> nD/>p\8mD$A4#XJgr o`(!mAg +e&̅5,OYq1G6KB !mRpH.actnv; w +k,/ނ 3(Џ>xg_ ˜Iq8rBq߃L@,A^\/ZT3#<%\۝}q.mj vKH@<&/ htKnW;xh81hƍkM{.e+k;=z/cJܖ7m_6}`8#hZJ;ȹʜB;HX#2XtMA5x*z. +W~NܡXҙ˹XsвctP]@ AS$A2n>.`i +3 5:[iQv:J9:H\` y}f ~f ' d F ")x*VeKu悗*0ZVH]rjV'M%}NU\ꃎ>0'=8p/HAh]^ӤK4ěLR&8 >.}ԒK|۷dEz sU@@w9]kfm"gE~A.xo~{=@"F!J/_[cJ}:6bBF8a`wH +v +?wiuxՍCVN/8Jk5J/4n&rY("ͦ X,gcm*чlFY,r"Qly~X!">%bmO+niF.=FlmHe#Xh|RggB%XH0=P,!K.dwwW,Z>7 +ˏYX¶mhkXZXm,Y^{\ZO5>O @*'궵x*Bx{iȀ,b;?aA5(\ۺukZ]#5"B bfս+m?`ny.sxH+K{W(k}Ϲgz5 +֒ ox h *';ŪkV}i[եAr?MlL똍G~v?]?,-FC9ӥ +n[eĥ-,ڇa~QwF2;npKz +Y8sc/Y?崗@֤~-6thҌ;ljJR ׉pl[t3<02'4,$11>/x(|Кt&]-%0,tG/-[-,Zfu=9g)/N֕r'U~W 7[,>dXp` [-fs'DÇP Ib0n2140,^T-dqZ?H^MS(%d'4мtzpZVW@JNC4vVs8{­!A-oӪ\b*Y3Y5?ד,$^^肭/*?RB &/AҖ-;a $4Ot,pV۠K&$FX(2 ̍=;j/^3If'̤zynYnP 'ݏ bUer,E$HIp~YK L' bkixX.IhC52$R`_|i{uj"N:苟Ck5'WԺ#Ca'oc6Wrʸ;b758rA]$3rԶPncS7mv^G.[,]0ٴs MiN̍_s<0ćzc(_k\oPeɘNɯ'JGi5bscM ܬvSx&b[M%Ty]^ҷ`;%! +-Ca&e?$a8vzQn3W'DZa+js4qu)4dU)BA(9+ (EzvyڨndU}& +: aF~ t#)~WyMkmؚ2P:mk zpCʵ}St"{l;YPt'3!x*%Z@08xG><NCw;4˨0X@bt`,u`3ko]pŒmry2rmlpY'S@~C\#e:%REӾ+m[=>kntx,"m]otlXve6^CGT.'DǁxlL/LbUPEIzh(AQGzϣprI*&{gcm:?{g}#/ÛTz~! +ok|}7bQy>W#ɣ˒TxϣEv |(ks|umگJR`~!rf-y$ ҁT-cXeH,Y)Y:J3?1?'u~4ǪS7Cb HBT N:5+#]R rެ?G >o/)O~!]]f Ct)[8S =-r!| bF66kI (=Z;"F"*qezYުF.:{uYi{Gt<% *'uuqٓb6ǫWV(SEQTA*6+}G:T5W5xe_BJ⾡͕n-z䎋J} ,?u eH] +t p  +nOeNgin1pN/ GxXxB {BΕNsV=*jbo(AQ裭]q쭸SP`Wq:a@7N ֮||l/7+7ִ;mn]7gIA7}9tRWo#ԺGKH.ĿC Ű-T^A0>dg ]i\D9$.{u&ԌWkǦPĤ@j5r0|ӘlhNH֟߹n-loJw޴z'y79pG+Uy=v_KחnBJDmTy i0뱠$8+lj1ERa/F| )V"QD7"Xb:X(V-+"Y.F4pšU<{{f;B"%_|-[n[cVMo'j?{ɞNG&ԏJj1d6$|HM5T(ؤ@vQ*_w8Z f j"a +GM13z\ztxPc. +i,yLx` i 7F3t cTp# s=}PEu g7 +uITS՞n*A]Am&B c#W _o/=gJUKax[>YXqѼ]c;F_)U$OqgUp2DIEu =Zyi۵j)-A&rrbstsHVJEɷhcepHjPs:vRfiq!V6bY/EdaNFeyBlIx IQ6 [~lvi΃q^;xa2u IYn QDUI‰DIIF.\|J]JV&7k4s}'[3ڞK6gkM1=rq=J],oں{NF&]'{1`=D@w[SBBF`se5 3R .q:YGLjJgWtOLVD +sVBb:o<珏[{xT}+:Կ/_\]*XB~|=N\J(%K R]#(#4kkuùM9đaz}ވVJ zxtVTG#-)lk?t@ָ Ku-Ԁj#ur%lGt+硓%oDOhc|nj{ٌ>QOtD_S^,~PX'!4Ch6k>yrzѢzVu h7JE>m!FR|48N :;G8HGc<қ:#k!OLLtK+ꞘML`F [=:8O) `r∣B"Tx̐3>''ۥ. +]AAʵ&\dMҙ6QR;wK2+{s|V32ؙo7ZwԖZfmiZX s=M̬yRD@FAwҼ+fsP'/n fgS;Gv˙͛۸`VVmuf`@3.27wR|2q]1W^bWOOG&> +:/Fq84:"R(OyUE]CDU\@}j4j GU5Nl\ɑ*~5"_I'Yr6 xIF`|GpC϶c=I2 ^A +Sq p"3>~=F%@$ȹ‘f$5)g8wg /;Lj +FvX D+o1 t-l.3_Q_Pe!y5k.`)/S0[h@jdހO +e2cceڅz.Uu|:OrYT;g'@`+{, Bt/vGΉ֛MBFt t㉴K9bu{V +ho {9w4a/2_^]5 G5΁qBa )_;1i/Lwʧ9签eYQ#tLO.g2XfmnΕ <^g|Mޖ.)suTm96GRvpZ-'vٵ-7** +L)BE=VF_ݑ–x%s%ٛNt~r\,Q]nEp.z[Ρia6ۻq#6ފ{*:;o݋{Mª嶽wIRӺ#3pFkOę <P?DX^$NK8~l4I MP=FW>;ȅC8 C6n8Ӊz=C$VlڌFrBv̍ 4 ]ú +e'nT]@(D,Bi`/Ή%UUtQ^Ąubu.M o< I ^7Zu4h_z%疝M."y^t1=Լnwy .>:G\3y|كPdQ_Ȃ`%5֟XˠL^pvcF`XKx OMb2NR>#~@LV37斑-C%pwa|am{6o+f=>Aغa$߻ڕN/;opή'6om gTvj2 :hT[Mɔ3&3k=.1d˞j~!Q"V_V?ms~ӹ"[OM/zlHң/"̮y:RwDEWFD-䊎4H,':&J> +i 0NΌec z[[AGcϩ]P'')}F37h%;\([̲PDh:‰{Wt$ mڗݲAp< Ԏ̠Pń&?L='nLFXKXXKRqɞ-${sl]2mtȲ׌Z|&9OCx<|&\K.ʢ}6Έ82'&UŊYx!VJR sv0a}nnQ=:j{V9ȱa  F.12 VS 4 , fFQ?_XmI.d+Nk >7L.+5٫Ͽufmk˧QKlɍ ]ku˾g#3̘mϒ|}C7~Yמ#T1)%rk, Q>:Ƅ] c 1L@Fzw$iccD,eq"`%.@} + !\X#ɽqvqEsj'!BqB)ʚ0CǗEE辢ERT>@Y~ %ßFc P!G薟)I FxUX21ހ25TCB4YDЇLOBN}TM3U%+3#IIA%l)Yٲ`bM + "/!)P6*6v6H9ʧj$ȁg[kĪҴ´ȜMKPWem2:!lA\ L.5F&rdB1$HRJI5?!4@>7߱;]X}6y(0>'̮ͮSK;DZ*s/0%sE1‹L| mg~R3 YB0X^VMH9^e_-)$q׷~kO"|CCTV*sqqRiXJR +'%9=3#23ӭ25952<,&&2 ;2ߟc?bd?K! #2 Q +",К)|C\HWIwĄKXI2}/N^>Ϯ.r@Qn;8qg DJDrRq|F$lB}⩁r̐ht)bl;)*K"$8 D +pIxGA$ן̐pIeH'/(/.GDZ*I|ғOdj-& hRX+*R8u !|7УNe]9ef " &;/3WQ_ dPOǡ$c ?.2PXs;.)R/M + ^AplՁ󰊋 CG- |M·F@%>{W,|(.5 $ߏ/ vIBnpbl&Y0FsyȣSFF ݫIRL}žd%7auB a](Hg:X஌^'AsdGv9b7;D.-pـfJ^ԖMKIc}NŔoTbZn0!邫3δ|X~qKs aɏ }WVr}݉CjPpBtO42-Zws^"<|H '0 +0&TrS +mnwЉYѻSb +b:1ŔcʷL 9b~oAߝL 䳘gXL)6}m -S3g/@.)a1rLy70Ȁ9 V2eD1XQ֐5[Ɲ/i +re/)}:T8jo*)lܯ )(!naDILYg,l|bVB}owi~>V~: @)t6"3D&:؅݁aq0sEK2\JIPr 2\p.e 2\˟)]ʛ?l.o]j˶.#{Nv|<,ʃMrKL.ߑ*J~\~oT>SU]TY(QQyUkkzeeÉѪϨCk43uI|mFNжbN..ѮԾ}qNSp.e 2\|KG {r)cTѸwblaa.<"݈p,N91IǓ,Eqfa_?}&I},L!_0 XK"YGD,F,N +Y؃(t$ƒ?ea/B.0G q c ca!>a7t_yO0x8Q { EU0**Þfa!jMdaF 蟁30f?3g`F u i/0Ȟƌ|P,#2°MOi YGbF?>a#, :1/faG<#vUca#Pdl~ MӋ0mZȦL~ G6MR~0'} oO{"K{>.vqe5A(BKFx%,Dэ1rYF:p \P(B 6o'lfw#J5Zk$zSa\8*{t-@D ׬q('4PK1: m)W zm; +jEW{GS&b]PD9[ +&бRxZ+VV9 +{('gƺ-1 b9r0n@ z@ ZpceQC.I\:% Iсmʖ7N,q26a -NMX60 +A A Hwҭw G%RAK)7B{3ٲ =M陁z1e@Tp{;ˁ +yFږ`k?R2bvlfc +{~)Ӯػ3n_sӍe`Y*uv7^kW a+mcg{0b +AuA~WJ L'z8r^VRN=HR}8 s굩3CkpFe؛#;Ve3kw13LAAnj_ukf PeSt|~e> lԐˎfbsU=PbcdpCd׷-f!3:X;EGzr.Qfba*6ǎsw!KugaF0ƹo}߸uyV?,ycݸjRbx%B7+jx7Aj +on y&"K,΃r,.q$~}a4pK/Nf2)ySLUYbJeV]:eZ`$bg{3\l/ksJS=/YkdIJi_wsI#!zw;#s9$obpyBz&Ӊ:78HiLmA.2AH::39̬qPJ3LJ\8WE?xoN?Ioo }u|aeu v|f:zJ:'櫻W~>aGaMOl[̈3m™9w߷k!7:i{FߣZm<)/H/єuo}p|9e4OL?7n/cA̤ħn^#qfΛvvi+dҒO秈>;nkYwYnkcO'zE}i' +/MY_o{*B~r*h]F%|howOpq77.BH?^(/]MZ~Rm3i-ȫkV(*i: 4jDF,6J>0tj웙H'͢cU/='x#n/vQ淧P^= /U.S~vJCKf/23a`pIytz$Vѣu3ZCHN I2CW/yc?31԰U0]}㎚N}tjUӓ;Κv!lk痵zupRȐhKYOWԔV82Qt; Hx!"B8}9Ucl`GW6[r,/ٷ3?|.znq<2hiQe>[rl2=q wײ*OM3%P]/<|j%Ħ9ӊG*zg&l5_v<ɣ_7jG;wlgZwn۫~߰V~[up9' P<ei?*^ݶ3.pDdoR=򒙿(GW͜6~ُY-kUS~6xѾ{=61󞋹dqcfo|w=I7L4"G>fݚqu/n?s^{}5MK{/c~6هZy֤e/.6<6a0}dRC?=>Y}`#Ko/;)[KMxdCTޢǢ[æIk-ҼԏWRV.]๥i 9O;1#abo?чzImt@ߜwA,J;#{q>[dƗѮWt`G4G5␏E_м1d k/roƽS,,]vS>×6S?kߞlVX~Gk +d8B0)cޗ/H]LHk("OO{<}zBl +g̺Ϛ(ş|y\8Ԝ ~nG7$;qƛ(.>x꽒_MY^R0nlȓ-6O|I@1iF2Nyc;Ml^[&z`D.w3|[N/ź=y<J26f+lo&qA|#>0e{WufO=Oewɚ5ĮV}֠߹NpOgdX71nہ9&N*od +ɯٱofJF8PFsjQZ廩7p~um6JooiO1ݖiKZƟhxوEQ{EG7L+LNW{N^s \i+W_WI0Hpf"W>11d>Y{1Q8O϶TUI*RZ1o5{|/aKvyK :qŧ*-.&n0}Q!̳6]v-r'eƃ ++sKlFV%_XI "vMpp!g؃̶s/Tzٙγ>ZWxCGNfC+>mvH8v`=g$uqpp}'F8q*a%N_ym̧^[կlLrk羝b6pQQ9yH=<,o7tmOw'Ϻ㹙izg%==QIՊ,^dvZքe)Ɣ/ǖrMk[w:[f+Y(lU}uɑUze +WuwJ\.xz >Y G/]~}mօcKf(q$ C ٗL^ +%f痯l$'8UOمEWjb2BXE_;Kⷭ_O^m{>kexS yM !oʠAƽ, +]$͉%vIGlxj`.# +`8{Y;C!%Opb >hhkmUt1Θ_QDHEqz$d >-8nsuGؒ9y4Eη[ +2zwW'ۧbTan\fg*=7S/irggM=sn[71ͲB*Ҭ* +|R`dPV {s2vjǵE>UWۜy))sJ +endstream +endobj +397 0 obj +<< +/FirstChar 0 +/Subtype /Type1 +/BaseFont /MyriadPro-Regular +/FontDescriptor 399 0 R +/Type /Font +/Encoding /WinAnsiEncoding +/LastChar 255 +/Widths [500 500 500 500 500 500 500 500 500 500 +500 500 500 500 500 500 500 500 500 500 +500 500 500 500 500 500 500 500 500 500 +500 500 212 230 337 497 513 792 605 188 +284 284 415 596 207 307 207 343 513 513 +513 513 513 513 513 513 513 513 207 207 +596 596 596 406 737 612 542 580 666 492 +487 646 652 239 370 542 472 804 658 689 +532 689 538 493 497 647 558 846 571 541 +553 284 341 284 596 500 300 482 569 448 +564 501 292 559 555 234 243 469 236 834 +555 549 569 563 327 396 331 551 481 736 +463 471 428 284 239 284 596 282 513 282 +207 513 356 1000 500 500 300 1156 493 255 +894 282 553 282 282 207 207 354 354 282 +500 1000 300 619 396 255 863 282 428 541 +212 230 513 513 513 513 239 519 300 677 +346 419 596 307 419 300 318 596 311 305 +300 553 512 207 300 244 355 419 759 759 +759 406 612 612 612 612 612 612 788 585 +492 492 492 492 239 239 239 239 671 658 +689 689 689 689 689 596 689 647 647 647 +647 541 531 548 482 482 482 482 482 482 +773 447 501 501 501 501 234 234 234 234 +541 555 549 549 549 549 549 596 549 551 +551 551 551 471 569 471] +>> +endobj +398 0 obj +<< +/FirstChar 0 +/Subtype /Type1 +/BaseFont /MyriadPro-Bold +/FontDescriptor 400 0 R +/Type /Font +/Encoding /WinAnsiEncoding +/LastChar 255 +/Widths [500 500 500 500 500 500 500 500 500 500 +500 500 500 500 500 500 500 500 500 500 +500 500 500 500 500 500 500 500 500 500 +500 500 202 268 397 550 555 880 678 205 +314 314 454 596 260 322 260 331 555 555 +555 555 555 555 555 555 555 555 260 260 +596 596 596 445 770 656 604 595 696 534 +527 682 689 285 411 614 511 846 690 717 +581 717 593 540 548 682 636 888 613 603 +577 314 330 314 596 500 300 528 598 451 +596 528 341 585 586 274 291 542 275 860 +586 577 598 595 380 434 367 583 530 759 +519 523 469 314 283 314 596 338 555 338 +260 555 459 1000 524 524 300 1285 540 270 +936 338 577 338 338 260 260 454 454 338 +500 1000 300 650 434 270 868 338 469 603 +202 268 555 555 555 555 283 561 300 677 +378 465 596 322 459 300 356 596 352 347 +300 585 542 260 300 300 386 465 831 831 +831 445 656 656 656 656 656 656 868 597 +534 534 534 534 285 285 285 285 704 690 +717 717 717 717 717 596 717 682 682 682 +682 603 580 600 528 528 528 528 528 528 +803 451 528 528 528 528 274 274 274 274 +574 586 577 577 577 577 577 596 577 583 +583 583 583 523 598 523] +>> +endobj +399 0 obj +<< +/CapHeight 674 +/StemV 88 +/XHeight 484 +/FontBBox [-157 -250 1126 952] +/FontFamily (Myriad Pro) +/Descent -250 +/Type /FontDescriptor +/Flags 32 +/FontName /MyriadPro-Regular +/ItalicAngle 0 +/Ascent 952 +/FontStretch /Normal +/FontWeight 400 +>> +endobj +400 0 obj +<< +/CapHeight 674 +/StemV 152 +/XHeight 489 +/FontBBox [-163 -250 1256 989] +/FontFamily (Myriad Pro) +/Descent -250 +/Type /FontDescriptor +/Flags 32 +/FontName /MyriadPro-Bold +/ItalicAngle 0 +/Ascent 989 +/FontStretch /Normal +/FontWeight 700 +>> +endobj +xref +0 401 +0000000000 65535 f +0000000015 00000 n +0000000201 00000 n +0000000313 00000 n +0000000455 00000 n +0000000118 00000 n +0000000476 00000 n +0000000612 00000 n +0000000748 00000 n +0000000884 00000 n +0000001020 00000 n +0000001157 00000 n +0000001294 00000 n +0000001402 00000 n +0000001616 00000 n +0000001894 00000 n +0000002147 00000 n +0000002467 00000 n +0000002779 00000 n +0000003024 00000 n +0000003256 00000 n +0000003501 00000 n +0000003733 00000 n +0000003952 00000 n +0000004225 00000 n +0000004457 00000 n +0000004689 00000 n +0000004934 00000 n +0000005179 00000 n +0000005424 00000 n +0000005656 00000 n +0000005875 00000 n +0000006120 00000 n +0000006352 00000 n +0000006584 00000 n +0000006829 00000 n +0000007074 00000 n +0000007319 00000 n +0000007551 00000 n +0000007770 00000 n +0000008015 00000 n +0000008247 00000 n +0000008479 00000 n +0000008712 00000 n +0000008970 00000 n +0000009228 00000 n +0000009460 00000 n +0000009692 00000 n +0000010060 00000 n +0000010440 00000 n +0000010808 00000 n +0000011176 00000 n +0000011576 00000 n +0000011932 00000 n +0000012288 00000 n +0000012645 00000 n +0000013014 00000 n +0000013383 00000 n +0000013753 00000 n +0000014147 00000 n +0000014541 00000 n +0000014936 00000 n +0000015294 00000 n +0000015664 00000 n +0000016047 00000 n +0000016441 00000 n +0000016823 00000 n +0000017250 00000 n +0000017620 00000 n +0000017990 00000 n +0000018360 00000 n +0000018730 00000 n +0000019100 00000 n +0000019470 00000 n +0000019840 00000 n +0000020210 00000 n +0000020593 00000 n +0000020976 00000 n +0000021359 00000 n +0000021730 00000 n +0000021837 00000 n +0000024169 00000 n +0000024223 00000 n +0000025514 00000 n +0000025629 00000 n +0000025749 00000 n +0000025867 00000 n +0000025987 00000 n +0000026022 00000 n +0000027216 00000 n +0000028407 00000 n +0000028442 00000 n +0000028496 00000 n +0000031583 00000 n +0000031698 00000 n +0000031733 00000 n +0000032922 00000 n +0000033076 00000 n +0000033111 00000 n +0000033165 00000 n +0000036661 00000 n +0000036777 00000 n +0000036813 00000 n +0000036849 00000 n +0000037112 00000 n +0000037380 00000 n +0000037646 00000 n +0000037912 00000 n +0000038180 00000 n +0000038461 00000 n +0000038787 00000 n +0000039146 00000 n +0000039367 00000 n +0000039641 00000 n +0000039696 00000 n +0000040715 00000 n +0000040831 00000 n +0000040951 00000 n +0000041069 00000 n +0000041189 00000 n +0000041307 00000 n +0000041423 00000 n +0000041459 00000 n +0000041495 00000 n +0000041550 00000 n +0000042652 00000 n +0000042768 00000 n +0000042804 00000 n +0000042840 00000 n +0000042895 00000 n +0000043922 00000 n +0000044038 00000 n +0000044074 00000 n +0000044110 00000 n +0000044165 00000 n +0000046727 00000 n +0000046843 00000 n +0000046879 00000 n +0000046915 00000 n +0000046970 00000 n +0000048148 00000 n +0000048264 00000 n +0000048300 00000 n +0000048336 00000 n +0000048391 00000 n +0000049645 00000 n +0000049761 00000 n +0000049797 00000 n +0000049833 00000 n +0000049888 00000 n +0000053186 00000 n +0000053302 00000 n +0000053338 00000 n +0000053471 00000 n +0000053621 00000 n +0000053657 00000 n +0000053712 00000 n +0000054330 00000 n +0000054446 00000 n +0000054482 00000 n +0000054518 00000 n +0000054573 00000 n +0000056043 00000 n +0000056159 00000 n +0000056195 00000 n +0000056231 00000 n +0000056286 00000 n +0000057346 00000 n +0000057462 00000 n +0000057498 00000 n +0000057534 00000 n +0000057589 00000 n +0000058671 00000 n +0000058787 00000 n +0000058823 00000 n +0000058859 00000 n +0000058914 00000 n +0000061342 00000 n +0000061458 00000 n +0000061494 00000 n +0000061530 00000 n +0000061585 00000 n +0000062885 00000 n +0000063001 00000 n +0000063037 00000 n +0000063073 00000 n +0000063128 00000 n +0000064383 00000 n +0000064499 00000 n +0000064535 00000 n +0000064571 00000 n +0000064626 00000 n +0000067672 00000 n +0000067788 00000 n +0000067824 00000 n +0000067860 00000 n +0000067915 00000 n +0000068511 00000 n +0000068627 00000 n +0000068663 00000 n +0000068699 00000 n +0000068754 00000 n +0000070222 00000 n +0000070338 00000 n +0000070374 00000 n +0000070410 00000 n +0000070465 00000 n +0000071490 00000 n +0000071606 00000 n +0000071642 00000 n +0000071678 00000 n +0000071733 00000 n +0000072815 00000 n +0000072931 00000 n +0000072967 00000 n +0000073003 00000 n +0000073058 00000 n +0000075477 00000 n +0000075593 00000 n +0000075629 00000 n +0000075665 00000 n +0000075720 00000 n +0000076779 00000 n +0000076895 00000 n +0000076931 00000 n +0000076967 00000 n +0000077022 00000 n +0000078264 00000 n +0000078380 00000 n +0000078416 00000 n +0000078452 00000 n +0000078507 00000 n +0000081459 00000 n +0000081575 00000 n +0000081611 00000 n +0000081647 00000 n +0000081702 00000 n +0000082323 00000 n +0000082439 00000 n +0000082475 00000 n +0000082511 00000 n +0000082566 00000 n +0000084036 00000 n +0000084152 00000 n +0000084188 00000 n +0000084224 00000 n +0000084279 00000 n +0000085954 00000 n +0000086070 00000 n +0000086106 00000 n +0000086142 00000 n +0000086197 00000 n +0000091071 00000 n +0000091187 00000 n +0000091223 00000 n +0000091259 00000 n +0000091506 00000 n +0000091751 00000 n +0000091806 00000 n +0000095197 00000 n +0000095313 00000 n +0000095349 00000 n +0000095385 00000 n +0000095626 00000 n +0000095940 00000 n +0000095995 00000 n +0000097292 00000 n +0000097408 00000 n +0000097444 00000 n +0000097480 00000 n +0000097535 00000 n +0000100408 00000 n +0000100524 00000 n +0000100560 00000 n +0000100596 00000 n +0000107799 00000 n +0000107857 00000 n +0000107915 00000 n +0000108492 00000 n +0000108637 00000 n +0000109107 00000 n +0000109614 00000 n +0000110392 00000 n +0000110540 00000 n +0000117334 00000 n +0000117473 00000 n +0000124732 00000 n +0000130773 00000 n +0000135100 00000 n +0000206462 00000 n +0000213728 00000 n +0000220406 00000 n +0000227155 00000 n +0000233929 00000 n +0000240833 00000 n +0000247411 00000 n +0000254760 00000 n +0000255237 00000 n +0000255392 00000 n +0000261648 00000 n +0000267635 00000 n +0000267788 00000 n +0000275186 00000 n +0000282289 00000 n +0000287925 00000 n +0000288353 00000 n +0000293728 00000 n +0000298940 00000 n +0000303986 00000 n +0000304183 00000 n +0000522052 00000 n +0000528864 00000 n +0000535421 00000 n +0000542003 00000 n +0000548088 00000 n +0000554393 00000 n +0000560996 00000 n +0000568036 00000 n +0000574957 00000 n +0000584361 00000 n +0000584838 00000 n +0000593919 00000 n +0000601029 00000 n +0000609184 00000 n +0000609632 00000 n +0000610274 00000 n +0000610456 00000 n +0000637743 00000 n +0000637852 00000 n +0000637961 00000 n +0000638070 00000 n +0000638122 00000 n +0000638378 00000 n +0000638632 00000 n +0000639083 00000 n +0000639336 00000 n +0000639502 00000 n +0000639809 00000 n +0000639918 00000 n +0000640027 00000 n +0000640136 00000 n +0000640245 00000 n +0000640354 00000 n +0000643049 00000 n +0000643208 00000 n +0000643507 00000 n +0000643762 00000 n +0000644505 00000 n +0000644814 00000 n +0000645055 00000 n +0000645311 00000 n +0000645562 00000 n +0000646162 00000 n +0000646609 00000 n +0000646791 00000 n +0000647093 00000 n +0000647355 00000 n +0000647855 00000 n +0000648155 00000 n +0000648700 00000 n +0000649090 00000 n +0000649340 00000 n +0000649606 00000 n +0000649866 00000 n +0000650119 00000 n +0000650358 00000 n +0000650613 00000 n +0000652921 00000 n +0000652969 00000 n +0000653028 00000 n +0000653104 00000 n +0000653401 00000 n +0000653475 00000 n +0000653746 00000 n +0000653822 00000 n +0000654117 00000 n +0000714047 00000 n +0000714123 00000 n +0000714378 00000 n +0000714454 00000 n +0000714724 00000 n +0000714800 00000 n +0000715047 00000 n +0000715123 00000 n +0000715404 00000 n +0000715480 00000 n +0000715755 00000 n +0000771863 00000 n +0000850242 00000 n +0000850293 00000 n +0000850889 00000 n +0000850979 00000 n +0000851503 00000 n +0000851589 00000 n +0000913154 00000 n +0000919279 00000 n +0000969697 00000 n +0001017710 00000 n +0001018905 00000 n +0001020097 00000 n +0001020353 00000 n +trailer +<< +/Info 5 0 R +/ID [<3CE0EF562C09E44F78533F63BBD3C40F> <31652DDF826BC6BA2691B11AA5458B72>] +/Root 1 0 R +/Size 401 +>> +startxref +1020607 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/AcroForm << +/Fields [3 0 R] +/DR 4 0 R +/SigFlags 3 +/DA (/Helv 0 Tf 0 g ) +>> +>> +endobj +5 0 obj +<< +/ModDate (D:20250917065029+02'00') +/Producer (OpenPDF 1.3.43) +>> +endobj +3 0 obj +<< +/FT /Sig +/Type /Annot +/Subtype /Widget +/F 132 +/T (digit-ereceipt-sealing-field) +/Rect [95.0 551.0 520.0 606.0] +/P 13 0 R +/V 401 0 R +/AP << +/N 402 0 R +>> +>> +endobj +4 0 obj +<< +/Font 403 0 R +>> +endobj +13 0 obj +<< +/Contents [79 0 R] +/Type /Page +/Resources << +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/XObject << +/Xi0 80 0 R +>> +>> +/Parent 12 0 R +/Rotate 0 +/MediaBox [0 0 595.32 841.92] +/Annots [3 0 R] +>> +endobj +401 0 obj +<< +/Type /Sig +/Filter /Adobe.PPKLite +/SubFilter /ETSI.CAdES.detached +/Reason (Document digitally sealed) +/M (D:20250917065029+02'00') +/Contents <30821a0606092a864886f70d010702a08219f7308219f3020101310d300b0609608648016503040201300b06092a864886f70d010701a08208a4308208a030820688a003020102021473c21c494b5510a00c32f1e6f50594d39917b0f5300d06092a864886f70d01010d0500305f310b3009060355040613025054312a3028060355040a0c214469676974616c5369676e20436572746966696361646f7261204469676974616c3124302206035504030c1b4449474954414c5349474e205155414c4946494544204341204731301e170d3233313131373130313134365a170d3237313131373130313134365a30820115310b3009060355040613024c5531433041060355040b0c3a43657274696669636174652050726f66696c65202d205175616c6966696564204365727469666963617465202d204f7267616e697a6174696f6e31393037060355040b0c304469726563746f726174652d47656e6572616c20666f72204469676974616c20536572766963657320284449474954293123302106035504610c1a4c454958472d3235343930305a4e594131464c55513955333933311c301a060355040a0c134555524f5045414e20434f4d4d495353494f4e3125302306092a864886f70d010901161664696769742d646d6f4065632e6575726f70612e6575311c301a06035504030c134555524f5045414e20434f4d4d495353494f4e30820222300d06092a864886f70d01010105000382020f003082020a0282020100a59878103d9180111251a71e82513696dbcb8e06f934897201c8f50b725e5623076df8852018c89bd6fa02afa28c27b24ae881f50fe863a6420105657df7e58d2c0707e9a557a61287bd1fd023fdca53d7822a741d395786bcf004917d1d156b5c66409ac3b01656a991f1d0410705cb48179063c93300710c9b85afb800e228b69ddd17fed90370aee0661b37d06e432caa7eaae331db83cf30e3570282d7b684b0b7afeb40b5167209fc554475ade52521a2943e49c9471e4da45ca2dd6bc3a8232ab3958703ff5077debc9dc90ac42cb80ce47fb8afcc7cd8b8f3cf47d52cb1e730afb3bde45af8c1b3d82325f600e4e589e002ec63155c7375ffee0b1fbe2776fa0960449c5f098df529226f7f86e93aae382431bcd5f31cf65bf796ed0a84a7569ac29f5e0edc25d44d93042a484fb8a5bc748ea947625219bb53fb106471cd706159549f313777e60ae5249ebd44f608ec0933e01c8d2a146914c120db03fdecc30efbfbbed6c5d5771c6898e808d92eaf36b24ec32ccc60ef005d7bd4b63af65358eb22b4bb3ad2fb773f8441dcb576b92880b73e95ab0464399b0ef729ead1be7021cc365e995aae3e4d43e7d68935f1e81d79b2d5b4b9dab1d660ec071fedaa6ce0dd87c1a41f01d70734a9162b752a0d9bae96af873b4d686963e86b0b1406ebf2890250996538e2d0f137f2f559e7e51ab4fbb55375df1d03183d0203010001a382029a30820296300c0603551d130101ff04023000301f0603551d230418301680147349f1401c14047c9a127ffa2fcd5c672318e91430818606082b06010505070101047a3078304606082b06010505073002863a68747470733a2f2f7163612d67312e6469676974616c7369676e2e70742f4449474954414c5349474e5155414c4946494544434147312e703762302e06082b06010505073001862268747470733a2f2f7163612d67312e6469676974616c7369676e2e70742f6f63737030210603551d11041a3018811664696769742d646d6f4065632e6575726f70612e6575305f0603551d20045830563037060b2b0601040181c77c0401013028302606082b06010505070201161a68747470733a2f2f706b692e6469676974616c7369676e2e70743010060e2b0601040181c77c0402010101063009060704008bec400103301d0603551d250416301406082b0601050507030206082b060105050703043081bc06082b060105050701030481af3081ac301506082b06010505070b023009060704008bec4901023008060604008e4601013008060604008e4601043013060604008e4601063009060704008e46010602306a060604008e4601053060302e162868747470733a2f2f7163612d67312e6469676974616c7369676e2e70742f5044535f656e2e7064661302656e302e162868747470733a2f2f7163612d67312e6469676974616c7369676e2e70742f5044535f70742e70646613027074304b0603551d1f044430423040a03ea03c863a68747470733a2f2f7163612d67312e6469676974616c7369676e2e70742f4449474954414c5349474e5155414c4946494544434147312e63726c301d0603551d0e0416041494ee61c1c97dffade2b2c9b9f6bf93207789499c300e0603551d0f0101ff040403020640300d06092a864886f70d01010d05000382020100a7f2a8c98537b74ac0fb701f12f240f3b7e0819c9266edb38573db7d214ea22a7b55b633d4e13f9c6223e4f139d3fbfc3b741a614738d908bd6c0df489190e493c1c3e8413eebf312a3f8c558b98b826183f1a961269adbe76415794a7ba49dfa28bf467c014a77ea55f359b5ab23ef25fea2e8c66aee4b4943c8910c43acc89ef0a8ec36d964163403a22a06031f1bd2ee96ca102eab011a702ce77eddb40e29b7b02ed7270f061ee9ab9d6e76ad4ce5e2c6d7a13040b7c175ccf09b11b8d4d2873c49b14d3c80a187ef6c1d4a2b1261c895c837d0b0478a19030b1e262bc27ad09c9b939ec3e14d913b6f55b097c39a7bcdc5f259c5f2c7109dad921f8032a9495cf0e5bd743ead9d4d98b1eb6d791c1ce96a47717c05a9138b6322e406597e47e36639228044ad37a1276aaea0c05ec4b2c96a10a9a1490f17961c56491aa58cafdc9c4530f8d86bbd1e16b8a96f626c6508b423eaaf3d1e1d76d5a5065212f62f65825418d55eabb1eece26bc4083cebb9c9798a56954f7d873b783ca8d2c60f996e9b9dd4e6ffcdbfaf08b721c7f7aba7cedc0179b9a0a31f2089545dccf8663eba527db99e34d0ca8f5a7d48278ebdddcff63094bc2855bc7d8fd99523736e2d59efadcdc96c0898bb19b2abea48c77358c5b9d8de85f9406e6d4864061d0cdae15da9a7b1156ccfb8921f6d1eca0080ae5c1243ffd621064f16b45f7e31821128308211240201013077305f310b3009060355040613025054312a3028060355040a0c214469676974616c5369676e20436572746966696361646f7261204469676974616c3124302206035504030c1b4449474954414c5349474e205155414c4946494544204341204731021473c21c494b5510a00c32f1e6f50594d39917b0f5300b0609608648016503040201a0820106301806092a864886f70d010903310b06092a864886f70d010701302f06092a864886f70d01090431220420a45ab617f29e9873451fdfe841007284b3cace0202ae1e254f4a90934d6d36d03081b8060b2a864886f70d010910022f3181a83081a53081a230819f0420e0a620fbb6747362bb933ac44169d676a553444716cf5f31605f12a22b8396b1307b3063a461305f310b3009060355040613025054312a3028060355040a0c214469676974616c5369676e20436572746966696361646f7261204469676974616c3124302206035504030c1b4449474954414c5349474e205155414c4946494544204341204731021473c21c494b5510a00c32f1e6f50594d39917b0f5300d06092a864886f70d01010b05000482020006076f3acac37a684bc4feade754782c5c4f28c7e3fb29e71aa722921bad9dbeb9670181c1ef5b0adaba0eccc75c58e6150e43344853af0d669560fb567139b4100fce9101ed485e4c2f780df2720f480bb42b5e3537cbadba60a03dd154e7c69b705ddbe5535e53d56d8c893bf741eaff47a78d8a12a7f2a8ce4ecf232b1714de9219754acf20094a338052e8611069ca087e2be838fb33ec6c88e47ba0dfde1317014db7e1706f12191284f433faf2e9b158912876d8351ed7aa6be726edce59ee4d6d42d40352d324d265baa2d84f8789061c2b4cf35b7f73f2e2b256d4c17519083ccb5ccd620194b41843eb9dc59e30d5cbdf14ffc601fa7b6cd965c736a5a2244f5316f2137b2299a060a580e5cbc1fb8388861526e464029dc7c77be991e62ee322c73cdca249aafff21263683504a2c9af5418ad9b44824f435b4ed5a79fd9ded13470c9a4dea57e75a1d5bda33df775194d800a197eee9e6e183da1740dc63ba30d67e18327456d253fff88c4ac2abb9b21f96b6aab5a6b7366226b329cdbf9e65c1e86c1afa8afeb97259a422df4e989b5e68e75d4cd3ba3460da06b233bdcdf48f91f54bf2fe06721fb75d3573e6e9538f798cc8e5acea60178db43e98549683495d91defbb3e35f50968b8488db15fb6fce34d0cd1ab0a41624077493c96177c1c32a76407a9638f58e5d2a920b44a1d619cc212c50662c44c59a1820d7a30820d76060b2a864886f70d010910020e31820d6530820d6106092a864886f70d010702a0820d5230820d4e020103310d300b060960864801650304020130820116060b2a864886f70d0109100104a0820105048201013081fe020101060b2b0601040181c77c020102302f300b060960864801650304020104205e5684c358fd876cfb0b6510b2f2f4cd62783bd547ac8de73beb3fc8e40ce98802085f4e1762ca04be74180f32303235303931373034353033305a0220efe0f27e9e6e016ceb5af24ca94b1001ee4c06353955ded239070d06c63974faa07ea47c307a310b30090603550406130250543118301606035504610c0f56415450542d353037303135383531312a3028060355040a0c214469676974616c5369676e20436572746966696361646f7261204469676974616c3125302306035504030c1c4469676974616c5369676e205175616c696669656420545341205632a08209bd3082026a308201f0a0030201020214362d8f7288a22827e400ff24c62de4ebfa9db6e1300a06082a8648ce3d0403033064310b3009060355040613025054312a3028060355040a0c214469676974616c5369676e20436572746966696361646f7261204469676974616c3129302706035504030c204449474954414c5349474e20474c4f42414c20524f4f54204543445341204341301e170d3231303132313131303735305a170d3436303131353131303735305a3064310b3009060355040613025054312a3028060355040a0c214469676974616c5369676e20436572746966696361646f7261204469676974616c3129302706035504030c204449474954414c5349474e20474c4f42414c20524f4f542045434453412043413076301006072a8648ce3d020106052b81040022036200046e0ba3ab334d1cea4ae8fc048d14a07df0082c5f83ab93d1d27bbad7497d8fec12505fd4b9cbe5f0f933631fc957ec40d8110b97e85216cc298ef406861e38dc3d57c4eeaabdc85404265a271351473d1f1f1a8ea895a433d0cc47cc6db8fc48a3633061300f0603551d130101ff040530030101ff301f0603551d23041830168014ceaf4a8b1a75e2f138e702f016ad5eea64d57bb4301d0603551d0e04160414ceaf4a8b1a75e2f138e702f016ad5eea64d57bb4300e0603551d0f0101ff040403020106300a06082a8648ce3d040303036800306502300a88c4719c44034d8db4c7bca8aed93027356a6b1663d7fce759e1a7891b4c319a235544e6f34321d547276f6d5701aa023100fbb2eae2977f51b59f48ebbc6f3589a86470ab5776cdc0c61460ca7fe2820073f7cc35ea8e249be50859c7048c7378fe3082037a30820301a0030201020214472511c3036cd662ff8625b6dd6b09ae758ee40e300a06082a8648ce3d0403033064310b3009060355040613025054312a3028060355040a0c214469676974616c5369676e20436572746966696361646f7261204469676974616c3129302706035504030c204449474954414c5349474e20474c4f42414c20524f4f54204543445341204341301e170d3231303132323130313533315a170d3436303131353131303735305a3063310b3009060355040613025054312a3028060355040a0c214469676974616c5369676e20436572746966696361646f7261204469676974616c3128302606035504030c1f4449474954414c5349474e205155414c4946494544205453412043412056313076301006072a8648ce3d020106052b810400220362000409ce7e50412f6ba400349c8a3853d07d8e9c88511b5b34dbd6332d030fbd3e2e1eea9f5792936e90f784b4b39e688ad186781e2b80d6ff50780add0afc3b6ea2ab9617e8c00f85a139d38b977e7ef4dee5e499e864fb8f0939e4d71e26820b02a38201733082016f30120603551d130101ff040830060101ff020100301f0603551d23041830168014ceaf4a8b1a75e2f138e702f016ad5eea64d57bb4305d06082b060105050701010451304f304d06082b060105050730028641687474703a2f2f726f6f742d65636473612e6469676974616c7369676e2e70742f4449474954414c5349474e474c4f42414c524f4f54454344534143412e70376230410603551d20043a30383036060b2b0601040181c77c0401013027302506082b060105050702011619687474703a2f2f706b692e6469676974616c7369676e2e707430130603551d25040c300a06082b0601050507030830520603551d1f044b30493047a045a0438641687474703a2f2f726f6f742d65636473612e6469676974616c7369676e2e70742f4449474954414c5349474e474c4f42414c524f4f54454344534143412e63726c301d0603551d0e041604140d232b161217964bedc7f6a51d1a5f1b9834da07300e0603551d0f0101ff040403020106300a06082a8648ce3d0403030367003064023051a443a7ed0fd613ad8328ecbef7769411020d4ecdde6ce25412f5501280f078f64d744bb78c00f40d0cf8fb66e1e27702301bd2eb9e7e94dbd76afbaa7527b5968ebeec3246192d1b0b25e27786c049ed74004132dfcf038e31fd56733b4e9a7e9b308203cd30820353a0030201020214670d50d8ea2b6b3de361ac02a8a1117bcb148bf0300a06082a8648ce3d0403033063310b3009060355040613025054312a3028060355040a0c214469676974616c5369676e20436572746966696361646f7261204469676974616c3128302606035504030c1f4449474954414c5349474e205155414c494649454420545341204341205631301e170d3234303632313131333234305a170d3436303131353131303735305a307a310b30090603550406130250543118301606035504610c0f56415450542d353037303135383531312a3028060355040a0c214469676974616c5369676e20436572746966696361646f7261204469676974616c3125302306035504030c1c4469676974616c5369676e205175616c6966696564205453412056323076301006072a8648ce3d020106052b8104002203620004e9606ebf5dc8d887448429400bed97ca001ce425b21519c6e53e1cbffd410e68c20deb80b64222c6d13768d7e81da9d9045cb0beb7d901d942bcad5ca6b31f256b2547cfdd6557286ea6cef5f83893efdb60acdfa6540d57048916f7f3a65f24a38201af308201ab300c0603551d130101ff04023000301f0603551d230418301680140d232b161217964bedc7f6a51d1a5f1b9834da0730818b06082b06010505070101047f307d304a06082b06010505073002863e68747470733a2f2f717473612d76312e6469676974616c7369676e2e70742f4449474954414c5349474e5155414c4946494544545341434156312e703762302f06082b06010505073001862368747470733a2f2f717473612d76312e6469676974616c7369676e2e70742f6f63737030540603551d20044d304b3037060b2b0601040181c77c0401013028302606082b06010505070201161a68747470733a2f2f706b692e6469676974616c7369676e2e70743010060e2b0601040181c77c04020202010230160603551d250101ff040c300a06082b06010505070308304f0603551d1f044830463044a042a040863e68747470733a2f2f717473612d76312e6469676974616c7369676e2e70742f4449474954414c5349474e5155414c4946494544545341434156312e63726c301d0603551d0e04160414e68d0bd396c0bd59f093738db3e3af6075e80325300e0603551d0f0101ff0404030206c0300a06082a8648ce3d0403030368003065023100b3f4e85ae77c073554737f7b34546d30150232be6137d44bb461f0d096e22ad288e66f76525b78ff5de73aa4c5573f5e023047b7235767ee3e34db77eb76e6d00556665440bd9421c76e2e6f4d8edb2c4562e222dc379cc5585e09c23a8a0eda3b213182025d30820259020101307b3063310b3009060355040613025054312a3028060355040a0c214469676974616c5369676e20436572746966696361646f7261204469676974616c3128302606035504030c1f4449474954414c5349474e205155414c4946494544205453412043412056310214670d50d8ea2b6b3de361ac02a8a1117bcb148bf0300b0609608648016503040201a0820154301a06092a864886f70d010903310d060b2a864886f70d0109100104301c06092a864886f70d010905310f170d3235303931373034353033305a302806092a864886f70d010934311b3019300b0609608648016503040201a10a06082a8648ce3d040302302f06092a864886f70d010904312204206467492f3d87570bc608a3faa10ed8d2e1b3bcefef398add8c6bf8dd45e7e7073081bc060b2a864886f70d010910022f3181ac3081a93081a63081a3042087fa519d0bc2cc13923518cf663420d8e4a428293fa23f251debfb4ef5aee8c5307f3067a4653063310b3009060355040613025054312a3028060355040a0c214469676974616c5369676e20436572746966696361646f7261204469676974616c3128302606035504030c1f4449474954414c5349474e205155414c4946494544205453412043412056310214670d50d8ea2b6b3de361ac02a8a1117bcb148bf0300a06082a8648ce3d0403020466306402306eb8e0f71ff6f5edc352f16a944a877b104f01e6a5ecdaf54d47aff1164a65db6db57b6fc94794971b15a3ab3a69dc530230244375e243789c3017be2f1bf6d634f165fb8fb22d458ae1826e1b65d91c52496d21d081fca7996aa22b1ec6aa7bc06c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> +/ByteRange [0 1029573 1067463 21636] +>> +endobj +402 0 obj +<< +/Length 326 +/Type /XObject +/Subtype /Form +/Resources << +/Font 404 0 R +>> +/FormType 1 +/BBox [0.0 0.0 425.0 55.0] +>> +stream +BT +88.2512 40.1056 Td +17.1596 TL +/F1 11.7371 Tf +('LJLWDOO\\VHDOHGE\\WKH\(XURSHDQ&RPPLVVLRQ) Tj +T* +/F1 11.7371 Tf +('DWH&\(67) Tj +T* +/F1 11.7371 Tf +(5HDVRQ$FNQRZOHGJHPHQWRI5HFHLSW) Tj +T* +ET + +endstream +endobj +403 0 obj +<< +/Helv 405 0 R +/ZaDb 406 0 R +>> +endobj +404 0 obj +<< +/F1 407 0 R +/F2 408 0 R +/F3 409 0 R +>> +endobj +405 0 obj +<< +/Type /Font +/Subtype /Type1 +/BaseFont /Helvetica +/Encoding /WinAnsiEncoding +>> +endobj +406 0 obj +<< +/Type /Font +/Subtype /Type1 +/BaseFont /ZapfDingbats +>> +endobj +407 0 obj +<< +/Type /Font +/BaseFont /AAAGBF+NotoSans-Regular +/Subtype /Type0 +/Encoding /Identity-H +/DescendantFonts [410 0 R] +/ToUnicode 411 0 R +>> +endobj +408 0 obj +<< +/Type /Font +/BaseFont /NotoSansCJKtc-Thin +/Subtype /Type0 +/Encoding /Identity-H +/DescendantFonts [412 0 R] +>> +endobj +409 0 obj +<< +/Type /Font +/BaseFont /NotoSansArabic-Regular +/Subtype /Type0 +/Encoding /Identity-H +/DescendantFonts [413 0 R] +>> +endobj +410 0 obj +<< +/Type /Font +/Subtype /CIDFontType2 +/BaseFont /AAAGBF+NotoSans-Regular +/CIDSystemInfo 414 0 R +/FontDescriptor 415 0 R +/W [0 [600] + 3 [260] + 17 [268] + 19 [572 572 572] + 24 [572 572 572] +28 [572 268] + 36 [639] + 38 [632 730 556] + 53 [622 549 556] + 68 [561 615 480 615 564 344 615 618 258] +78 [534 258 935 618 605 615] + 85 [413 479 361 618] + 90 [786] + 92 [510] +] +/CIDToGIDMap 416 0 R +>> +endobj +411 0 obj +<< +/Length 317 +/Filter /FlateDecode +>> +stream +x]j0 .JBk;,$R c"o?G:!~EHNN͹1Mmy9 6L\icPYw *|ٻoj%oN7_6oxcu ,Tzk7OзmTH~`bdԏ̶:sV©yNLd?C wIw +(Jz!H)@b##aS1\*y0(Qa}TzOB) aAjd/(eIE)8E߷#o΅s/Nvu +endstream +endobj +412 0 obj +<< +/Type /Font +/Subtype /CIDFontType2 +/BaseFont /NotoSansCJKtc-Thin +/CIDSystemInfo 417 0 R +/FontDescriptor 418 0 R +/W [0 [1000 220 275 374] + 4 5 521 6 [880 621 231] + 9 10 299 +11 [427 521 231 324 231 396] + 17 26 521 27 28 231 29 31 +521 32 [435 885 574 632 619 661 562 518 661 698 +257 503 607 508 770 696 714 598 714 589 +569 573 694 532 842 519 482 592 299 396 +299 521 550 586 536 593 492 595 527 279 +530 575] + 74 75 245 76 [499 254 889 580 586] + 81 82 +595 83 [339 441 334 577 466 742 434 468 438 299 +243 299 521 275] + 97 100 521 101 [243 1000 586 815 368 429 521 433 586 336 +1000] + 112 113 +397 114 [586 592 1000 529 586 397 395 429 836 858 +857 435] + 126 131 574 132 [885 619] + 134 137 +562 138 141 257 142 [683 696] + 144 148 714 149 +[1000 714] + 151 154 694 155 [482 614 586] + 158 163 536 164 +[863 492] + 166 169 527 170 173 245 174 [586 580] + 176 +180 586 181 [1000 586] + 183 186 577 187 [468 595 468 574 536 574 536 683 595 562 +527 562 527 257 245 257 245 696 580 696 +580 714 586 714 586 913 937 694 577 694 +577 694 577 521 714 586 705 577 574 536 +257 245 714 586 694 577 694 577 694 577 +694 577 694 577 696 580 604 595 600 1000] + 247 +248 600 249 [500] + 250 251 600 252 256 0 +257 [574 632 529 603 562 592 698 714 257 607 +532 770 696 554 714 694 598 582 573 482 +757 519 724 719 587 592 490 571 474 431 +577 551 255 499 496 592 479 442 573 603 +588 463 577 479 542 700 490 705 732 562 +574 621 632 529 675 562 832 602] + 315 316 705 317 [603 670 770 698 714 694 598 619 573 532 +779 519 684 631 913 918 784 832 621 619 +963 611 536 584 542 434 541 527 681 485] + 347 348 606 +349 [508 548 674 602 586 591 595 492 479 468 +770 434 576 532 780 773 632 687 518 492 +781 540 527] + 372 627 920 628 [770 889 574 536 574 536 574 536 574 536 +574 536 574 536 574 536 574 536 574 536 +574 536 574 536 574 536 562 527 562 527 +562 527 562 527 562 527 562 527 562 527 +562 527 257 245 257 245 714 586 714 586 +714 586 714 586 714 586 714 586 714 586 +714 586 714 586 714 586 714 586 714 586 +694 577 694 577 705 577 705 577 705 577 +705 577 705 577 482 468 482 468 482 468 +482 468 1000 528 881] + 723 724 1000 +725 727 231 728 730 374 731 732 1000 733 +[301] + 734 736 1000 737 [231 374] + 739 740 280 741 +[1000 549 1000 848] + 745 746 687 747 [1000 397] + 749 751 521 752 +753 0 754 759 1000 760 [399 919 1000 662] + 764 766 1000 +767 [881] + 768 830 1000 831 [521] + 832 1328 1000 +1329 [644] + 1330 1354 1000 1355 [1651 2422] + 1357 1437 1000 +1438 1441 0 1442 1443 250 1444 1545 1000 1546 +1547 0 1548 1691 1000 1692 1784 920 1785 1820 +1000 1821 1824 600 1825 1827 1000 1828 [600] + 1829 +47581 1000 47582 58854 920 58855 58973 1000 58974 [566 524 533 812 821] +58979 59141 1000 59142 59204 500 59205 59211 1000 59212 +59217 500 59218 59259 1000 59260 [815] + 59261 59318 1000 +59319 [662 663] + 59321 61863 1000 61864 61865 770 61866 61867 +889 61868 61869 562 61870 61871 527 61872 63107 1000 +63108 [280 275 374 231] + 63112 63113 298 63114 [231 325 231 396] + 63118 63119 231 +63120 [435] + 63121 63124 298 63125 [520 231 538 896] + 63129 63131 231 +63132 63134 374 63135 [548 847] + 63137 63138 686 63139 63142 +1000 63143 [2000 3000] + 63145 63152 1000 63153 63162 521 63163 +[1018] + 63164 63278 500 63279 63282 1000 63283 64402 920 +64403 65139 0 65140 65154 1000 65155 65156 920 65157 +65527 1000 65528 [663] + 65529 65530 1000 65531 65534 0] +/CIDToGIDMap /Identity +>> +endobj +413 0 obj +<< +/Type /Font +/Subtype /CIDFontType2 +/BaseFont /NotoSansArabic-Regular +/CIDSystemInfo 419 0 R +/FontDescriptor 420 0 R +/W [0 [600 0] + 2 3 260 4 [151 405 486 447 507 531 503 507 521 507 +531 503 521 507 531 503 521 507 531 503 +521 507 531 503 521 1239 1257 1152 1140 1720 +1718 1065 1081 1835 1661 1659 1835 1239 1257 0 +1389 1632 238 291] + 48 49 238 +50 [411 235 289 235 238 291 238 0 235 289 +235 760 736 269 760 343 760 736] + 68 69 755 70 73 831 74 [999] +75 76 665 77 [316 369 316 369 235 289] + 83 84 235 85 [289 238 291] +88 89 0 90 [237 1284 1105 498 999 993 1093 269 993 343 +993 1093 269 993 343 993 1093 299 373 993 +1093 299 373 993 1093 299 373 993 1093 299 +373 993 1093 299 373 993 1093 269 343 993 +1093 269 343 993 1093 269 343 1005 1079 918 +906 1716 776 850 918 906 918 906 1716 831 +905 847 921 1073 739 1005 1079] + 157 158 1005 159 [739 993 1093 299 993 373 993 1093 269 343 +7220 1896] +171 172 268 173 [328 310] + 175 176 622 177 [1306 1352 903 1306 949 1306 1352 903 949 1639 +1685 1552 1540] +190 191 2322 192 193 1389 194 [1552 1540 1552 1540 2148 2118 1465 1481 1465 1299 +1345 1639 1685] + 207 208 +1639 209 210 1299 211 [477 532] + 213 214 477 215 +[532] + 216 217 477 218 [532 477 532 477 532 477 532 477 532 477] + 228 229 532 230 +[477 532 477 532 477 532 0 305 270] + 239 244 0 245 [373 0 365 477 532] + 250 251 477 252 +[532 477 245 0] + 256 257 151 258 [993 1093 269 343 983 1098 447 495 774 808 +447 495 658] + 271 273 0 274 +[477 532 477 639 649 589 639 637 760 736 +269 760 343 572] + 288 289 576 290 [1370 269 0 304 270] + 295 300 0 301 +[304 270] + 303 304 0 305 [983 1098 447 983 495 983 1098 447 495 983 +1098 447 495 983 1098 447 495 983 1098 447 +495 983 1098 447 495 983 1098 447 495 1183 +1231 1096 1084 1096 1084 1096 1084 1694 1662 1009 +1025 1809 1183 1231 1183 572 532 545 1083 572 +478 492 510] + 358 359 289 360 +[622 299 877 975 412 877 508 926 975 412 +508 877 975 412 508 877 975 412 508 877 +975 412 508] + 383 388 1148 389 [507 531 503 507 521 507 531 503 521 1239 +1257 1152 1140 1065 1081 1835 1661 1835 1239 1257 +877 975 412 877 508] + 414 415 509 416 +[639 649 589 639 637 659 719 589 637 639 +649 589 637 659 719 589 637 639 649 589 +637 659 719 589 637 639 649 589 637 659 +719 589 637 639 649 589 637 639 649 589 +637 1325 1373 1238 1226 2010 1151 1167] + 464 465 1951 466 [1325 1373 0] + 469 470 411 471 +479 0 480 [405 486 574 405 507 574 614 672 614 574 +672 507 405 486 405 672 614 574 507 1310 +1223 1211 1136 1152 1789 1730 1310 405 479 269 +405 438 405 479 269 438 195 401 411 447 +472 851 736 350 343 0] + 526 527 322 528 [1018 1053 639 649 589 639 637 639 649 589 +637 1325 1373 1238 1226] + 543 +544 2010 545 [1151 1167 1951 1864 1804 1951 1325 1373 0 367 +396 367 882 922 412 882 508 882 922 412 +508 877 975 412 508 882 922 412 508 882 +922 412 508 703 799 1148 1244 1061 1049 1061 +1049 1061 1049 1142 1238 712 808 974 1070 990 +1086 1648 1568 1822 1148 1244] + 601 602 1148 603 [1018 1091 763 838 270 266 0 294 270] + 612 +615 0 616 [304 0 877 975 412 877 508 877 975 412 +508 877 975 412 508 877 975 412 508 877 +975 412 508 877 975 412 508 1148 639 649 +589 639 637 1325 1373] + 651 652 1238 653 [1226 1151 1167 1325 1373] + 658 +659 1325 660 [447 472] + 662 663 447 664 [472 447 695 730 260 695 300 0 710 730 +260 300 695 730 260 300 599 582 710 730 +350 300 695 730 260 300 599 582 695 730 +260 300 599 582 695 730 260 300 599] + 703 +704 582 705 [599] + 706 707 582 708 [599] + 709 +710 582 711 [599 582 662 679 662 996 1036 1091 503 599 +503 650 467 599 467 1165 909 897 1673 1499 +1475 1673 767 909 897 1586 1534 1499 1475 1673 +909 897 1499 1475 822 862 838 878 1527 1475 +1614 1165 1121] + 754 755 1195 756 [996 1036] + 758 +759 996 760 [1165 1195 849] + 763 767 0 768 [600 0 484 562 525 484 578 484 562 525 +578 484 562 525 578 0 484 562 525 578 +869 1261 1174 1162 1799 1740 1951 1174 1162] + 797 +798 1799 799 [1740 1951 1174 1162 1799 1740 1951 1087 1140 1103 +1892 921 1261 921] + 813 814 0 815 [521 2272 260 882 922 412 882 508 877 975 +412 877 508 572] + 829 +830 491 831 [322 685 730 269 685 343 685 730 269 343 +685 730 299 373 685 730 269 343 685 730 +269 343 685 730 299 373 685 730 269 343 +1005 1079 918 906 1716 1484 1716 776 850 918 +906 1716 1629 1543 1542 1484 1716 918 906 831 +905 847 921] + 884 885 1657 886 [1073 739 1005 1079] + 890 +891 1005 892 [739 0 685 730 269 685 343 0 1142 1226 +659 719 589 659 637 447 472 447 572] + 911 912 280 913 915 0 +916 [1308] + 917 918 429 919 [993 1093 299 993 373] + 924 925 1035 +926 927 785 928 931 861 932 [1029 695] + 934 937 +1035 938 [695 983 1098 447 983 495 473 268 833 649 +774 808 447 774 495 774 808 447 774 495 +774 808 447 495 0 774 808 447 495 1183 +1231 1096 1084 1296 1009 1025 1722 1662 1635 1809 +1183 1231 1183 434 2318 1109 367 396] + 986 987 367 988 [396 0 367 396 367 396 367 396 0 367 +396 489 540 367 396 370 374 367 396 367 +396 367 396 367 396 367 396 367 396 335] + 1018 1019 +0 1020 [1200] + 1021 1024 0 1025 [235 685 730 355 685 343 390 396 390 1306 +1352 903 1306 949 0 1306 1352 903 949 1306 +1352 903 949 1306 1352 903 949 1639 1685 1552 +1540 2235 2177 2322] + 1059 1060 +1389 1061 [1540 1752 1465 1481 1465 2089 2059 1299 1345 1639 +1685] + 1072 1073 1639 1074 1075 1299 1076 +[0 608 2286 1939 2107 1209 1269 784 1209 850 +1209 1269 784 850 1209 1269 784 850 1209 1269 +784 850 1209 1269 784 850 1269 784 850 1209 +1269 784 850 1209 1269 784 850 1209 1269 784 +850 1209 1269 784 850 1520 1586 1433 1421 1487 +2058 1291 1357 1433 1421 1487 2223 2058 1433 1421 +1487] + 1137 1138 2223 1139 1140 1346 1141 [1362 1428 2077] + 1144 +1145 1999 1146 [1990 1940 1180 1246 1520 1586] + 1152 1153 1520 1154 1155 1180 +1156 1157 0 1158 [344 572] + 1160 1161 578 1162 [459 0 323 270 323 324 270 378 323 270 +0 351 270 0 351 0 1209 1269 784 1209 +850 1209 1269 784 850 1520 1586 1433 1499 1421 +1487 2049 1999 2223 1291 1357 1433 1499 1421 1487 +2223 1433 1499 1421 1487 1346 1412 1362 1428 2077 +1999 1990 1940 1180 1246 1520 1586] +1219 1220 1520 1221 1222 1180 1223 [411 484 572 504 425 0 235 270] + 1231 1232 +0 1233 [788 831 677 788 710 788 831 677 710 788 +831 677 710 1413 1446 1326 1314 1239 1255 1288 +1937 1892 1833 2024 1413 1446 0 277 0 659 +719 589 659 637 659 719 589 637 659 719 +589 659 637 993 1093 299 993 373 405 486] + 1283 1284 405 1285 [479 993 1093 299 343 993 1093 299 373 993 +1093 299 373 1035 1109 948 936 1659 1573 1514 +806 880 948 936 1746 1514 1746 948 936 1746 +1514 1746 861 935 877 951 1687] + 1322 1324 +1514 1325 [1687 1103 769 1035 1109] + 1330 1331 1035 1332 [769 993 1093 299 993 373 477 532] + 1340 1341 +477 1342 [532 993 1093 299 993 373 1035 1109 785 880 +948 861 935 877 951 1103 769 1035 1109] + 1361 1362 1035 1363 [769 245 572] + 1366 1367 +583 1368 [289 0] + 1370 1371 289 1372 [600] + 1373 1374 +289 1375 1380 0 1381 [993 1093 355 993 343 993 1093 269 993 343 +572] + 1392 1393 487 1394 +1395 289 1396 [150 152 447 472 447 597 531 597 1005 1079 +612 0 507 531 503 521 882 922 412 508 +993 1093 299 373 993 1093 299 373 993 1093 +299 373 367 396 760 736 269 343 983 1098 +447 495 774 808 447 495 685 730 269 343] + 1446 1460 0 1461 [1370 0 261 301 260 300 0 447 472 447 +983 1098 447 983 495 904 0 2093 0 447 +472] + 1482 +1483 447 1484 [472 447 472 447 472 447 181 472 447 472 +447 472 447 472 447 472 1328 760 736 299 +760 373 760 736 299 760 373 760 736 299 +373 760 736 269 760 343 755 829 560 634 +1005 1079 1005 1079 612 918 906 776 850 918] + 1534 1535 906 1536 [831 905 847 921 1073 741 815 739 741 815 +741 815 1005 1079] + 1550 +1551 1005 1552 [741 815 739 760 736 299 373 567 893 850 +760 736 299 373 760 736 299 373 760 736 +269 343 760 736 299 373 760 736 299 373 +760 736 299 373 760 736 299 373 760 736 +299 373 760 736 269 343 1035 1109 948 936 +1746 806 880 948 936 1746 948 936 861 935 +877 951 1513 1455 1687 1103 769 1035 1109 769 +0 942 549] + 1625 1626 942 1627 [549] + 1628 +1629 942 1630 [549 301 373 942 549 301 373 351 447 472 +447 788 831 677 788 710 1239 1255 1288 367 +396] + 1651 1652 367 1653 [396 0 572] + 1656 +1657 295 1658 1660 0] +/CIDToGIDMap /Identity +>> +endobj +414 0 obj +<< +/Registry (Adobe) +/Ordering (Identity) +/Supplement 0 +>> +endobj +415 0 obj +<< +/Type /FontDescriptor +/FontName /AAAGBF+NotoSans-Regular +/Flags 4 +/FontWeight 400.0 +/ItalicAngle 0.0 +/FontBBox [-621.0 -389.0 2800.0 1067.0] +/Ascent 1069.0 +/Descent -293.0 +/CapHeight 714.0 +/XHeight 536.0 +/StemV 444.72998 +/FontFile2 421 0 R +/CIDSet 422 0 R +>> +endobj +416 0 obj +<< +/Length 83 +/Filter /FlateDecode +>> +stream +xuE@ 4JX%LQ×ZjdkIEMCKG(.x +endstream +endobj +417 0 obj +<< +/Registry (Adobe) +/Ordering (Identity) +/Supplement 0 +>> +endobj +418 0 obj +<< +/Type /FontDescriptor +/FontName /NotoSansCJKtc-Thin +/Flags 4 +/FontWeight 100.0 +/ItalicAngle 0.0 +/FontBBox [-991.0 -1050.0 2930.0 1810.0] +/Ascent 1000.0 +/Descent -200.0 +/CapHeight 733.0 +/XHeight 543.0 +/StemV 509.72998 +>> +endobj +419 0 obj +<< +/Registry (Adobe) +/Ordering (Identity) +/Supplement 0 +>> +endobj +420 0 obj +<< +/Type /FontDescriptor +/FontName /NotoSansArabic-Regular +/Flags 4 +/FontWeight 400.0 +/ItalicAngle 0.0 +/FontBBox [-220.0 -548.0 7175.0 1359.0] +/Ascent 1374.0 +/Descent -738.0 +/CapHeight 416.0 +/XHeight 374.0 +/StemV 961.35 +>> +endobj +421 0 obj +<< +/Length 6297 +/Filter /FlateDecode +/Length1 10416 +>> +stream +xZ p[yw$q' |A %H RH" HID#Y,ۑбHvIN&;N:(ӤMfiN:i3{h;rw} FkA}.FN,,6= O2+0gBj.Bvvdv^N|o|" ni勗Ƨe߄V2ӿ"x ='WW[*q@B$4W6!w6MA swt);']K~Fa~B]xM~vx %[Io_ I~*΢7}mWaH^'Y):~\$h"H K06(󇏥f\Μ&R2eEZ47'κneX& cI2d"n 30P4&[bB&k,11Ď\dD,;/KFvru G [`NQ2u2nD9d&(b)zl + .a^o'elc'RnǏٵd"-S=r*7HT C 7&y; &S\)Z)՚qe Вu9d4Hw Ք̾dBs%ͦٴtA0tIH VdM,5bT֊Q,4ȼ7 !4QNRu]S.$d 1aMXrMKex:%iANRAHrI,jf-tŨ"F2=%9D7%@5Z,r$,"m^b@D޽8enGҩ 3BbMR*`#5,@Ȣ`Z1Wr k[ -1 8%F)GHBd c@dCϤ P`Nͱd3 KGR9v>" .7[qC屉T<&lT6iȁkEsFa/Q@X5ջEXV]<]LGҠI&m1ƊlA;Ũ ~z\.*dtbdFF)VٜU<tdôu޴r m+K[h[%xrVK9-mk\ mX_3(d.;tSr:bk!Q:`ώlBHOh[34DRX\X?WL[ +I[TVԪ2AQi6u5Y 6^ZJc)"9$ +;R!|T> t,p"rb'tpkJ.U{>z(bTiIN(T @*B}ywQ~^H]{$2sEG (#J +P [!n{v͎fV$@KrGp d>J} +4$72O|.hQUu"O"OݿWʕB).toʋN4uv;]`~ub6[ 656n ɭ>`|V$f^(EF$0:B@$ֱ222rqPbP(Ĥt ra PX-J;N0NP>| +5Mj"CϤDIYz&%(O?')%NQJ,(rŁZTiE.JQYE.J-)rQjYR(u02ғ#@^P +(Vx.$W`]?T~اpE%)GU2| xT_SI ,0aM%)zry:K4ALGxźl77.`wNiP}$vebL"B EHs,1fwf6sgqKerg5La=8eT,z|x=D 5mV^>_eW] +}F{᭷QT!QvXyPX.' tV+g4EOʚ^^m\t_jl,H$bS/M~n7nPdNCc!x Y4RiEsskk40;J:`sn-h+EQ5  tK=@A3_*vuU|Mfsm[{ۛGCmzdWLδdUGtFHO0^JS"0Cuv2y9yjP>?#wFvw;`:]!U0%v$t-i+vo)X@ *dc,^?=3妣ʮ?&ˇM&rHG)4NQlȌ[6P `)Fıc/ȕQ<zNPJP! c\LEh13T`%lygjW,0ITHtWVn.*),R[vɳhit̊ՇhWp[0~ u:sHONk0E-l{~pIEM]dCn! ҋŒRMT=:x jtE-3w^]ew;fׯ)+6D x} #=CSޝD'G=fOO8y7;w? %9tppBT(KS83F6P)&sog*,^r/ I*WOg>z(1](׏ź^`AϼX^BXei a% O +b8yUvlOCuy/p1xh=LHD}}}`'Bn}7~OԴi셙̙JDt` =dBsu 2`*l,r`G!m6ူqC&Z&dx.6toO ܢsy|u%OPCy"b4`1j D@,%%+PᲱ4 Uq3+ +5{ґW( &gv!9xq0ۥ_Y<^IpݢK&%D"F;CxeX<8RZld0\ 閇Uέ^FH`B Fp + +JPV+7BsfK+ܰ|l0(DjN{G?%m]YءޱCCS[׷EXXMP2vk9tvndvnF˃HK/w3H4F ֋j\`bk XLa"Mcqzb +4S{@~+ͳR)RQ+O-O>xr:O]5 p/0'~EJYei $KBYkz[A /dw!-:F:hCL2c)Tj !kM^]ݓ"t=xHPaEl͊Vsзk&R^S;ܷp) hlΊ?\ٛg}pr55[5/*l>EU=$jUBiw)e+ B33G!Fhj'Q4P"ÅY-9 Y=.i6u%nޮ[.:ŝ'&Gbƺ irMWkx;)4$΁c!i{Lx[,Gv9\{Y~IG̐ -¿WlE\<OOǩ' +M>%id]G|[wl55{#<:p;vp|lhh|_O\IϜ??3TxYZ;-{vp1ù].(…yWE~i)D">2wJ☃'l_:GHOjowM='k͖WtĴylTs'R)! W2=K Jb`XR~%)2pRչBVE}PL0c 0֚8g*^{/ݕZ~q}F8oi>T{ _PupHܔ4^ XRk=VK~5nL ar9Q$rЀ `DX29qkaجrIẢ{ߎma[BZkkҰ1Mɞ^/s%Qgb9ւ^n1% SS8 +b|ѫsDC% o^ f^3G x>0u +rm~;y y2R7Qw(}^XU sEI #!Fd0jm[n<~ʲlA39Qf˒M7xX7j8oS{8+OrOE*7T5By% EgJ?TG^}Y9T"v]1V60tcz S|LvoHB>xҷ٠%QV(؆!TܸtۅIiLѡ~҉“ nx٧?b\Bߢ,9.%{Q, :Y2*+4AȔ;?k(O#2pQoz< RjI*Hqqx>Z<{n@ \BHidxBH:B%?F{`KWchG/2f/<"T]:+`oFwN0Ш*@г ' :D9x*i\!M4RvU45փJP2b}L{I%G^~Ք>_W;GV)STFmͷ uK"dL{~9/~l,%GK|> +stream +x~M +endstream +endobj +xref +0 2 +0000000000 65535 f +0001028788 00000 n +3 3 +0001028996 00000 n +0001029170 00000 n +0001028913 00000 n +13 1 +0001029205 00000 n +401 22 +0001029419 00000 n +0001067522 00000 n +0001068003 00000 n +0001068054 00000 n +0001068113 00000 n +0001068212 00000 n +0001068287 00000 n +0001068441 00000 n +0001068571 00000 n +0001068705 00000 n +0001069107 00000 n +0001069500 00000 n +0001072825 00000 n +0001080730 00000 n +0001080806 00000 n +0001081085 00000 n +0001081243 00000 n +0001081319 00000 n +0001081559 00000 n +0001081635 00000 n +0001081875 00000 n +0001088264 00000 n +trailer +<< +/Info 5 0 R +/ID [<3CE0EF562C09E44F78533F63BBD3C40F> ] +/Root 1 0 R +/Size 423 +/Prev 1020607 +>> +startxref +1088352 +%%EOF diff --git a/docs/Tenders/past tenders/Final bid submissions/QUANTAIR/QUANTAIR_detailed-budget-table_he-ls-euratom_en.xlsx b/docs/Tenders/past tenders/Final bid submissions/QUANTAIR/QUANTAIR_detailed-budget-table_he-ls-euratom_en.xlsx new file mode 100644 index 0000000..974c43a Binary files /dev/null and b/docs/Tenders/past tenders/Final bid submissions/QUANTAIR/QUANTAIR_detailed-budget-table_he-ls-euratom_en.xlsx differ diff --git a/docs/Tenders/past tenders/Final bid submissions/SCAN (HAO CNS)/SCAN Proposal-SEP-211192326.pdf b/docs/Tenders/past tenders/Final bid submissions/SCAN (HAO CNS)/SCAN Proposal-SEP-211192326.pdf new file mode 100644 index 0000000..7df2f5c Binary files /dev/null and b/docs/Tenders/past tenders/Final bid submissions/SCAN (HAO CNS)/SCAN Proposal-SEP-211192326.pdf differ diff --git a/docs/Tenders/past tenders/Final bid submissions/SCAN (HAO CNS)/detailed-budget-table_he-ls-euratom_SCAN_master_v3.0_final_submission_corrected_1509_Ready4Submission.xlsx b/docs/Tenders/past tenders/Final bid submissions/SCAN (HAO CNS)/detailed-budget-table_he-ls-euratom_SCAN_master_v3.0_final_submission_corrected_1509_Ready4Submission.xlsx new file mode 100644 index 0000000..24afd00 Binary files /dev/null and b/docs/Tenders/past tenders/Final bid submissions/SCAN (HAO CNS)/detailed-budget-table_he-ls-euratom_SCAN_master_v3.0_final_submission_corrected_1509_Ready4Submission.xlsx differ diff --git a/docs/Tenders/past tenders/Final bid submissions/SPARTA (NM 2)/SPARTA Proposal-SEP-211192339.pdf b/docs/Tenders/past tenders/Final bid submissions/SPARTA (NM 2)/SPARTA Proposal-SEP-211192339.pdf new file mode 100644 index 0000000..ed5af2d Binary files /dev/null and b/docs/Tenders/past tenders/Final bid submissions/SPARTA (NM 2)/SPARTA Proposal-SEP-211192339.pdf differ diff --git a/docs/Tenders/past tenders/Final bid submissions/SPARTA (NM 2)/detailed-budget-table_he-ls-euratom_SPARTA_master_v2.0_final_Ready4Submission.xlsx b/docs/Tenders/past tenders/Final bid submissions/SPARTA (NM 2)/detailed-budget-table_he-ls-euratom_SPARTA_master_v2.0_final_Ready4Submission.xlsx new file mode 100644 index 0000000..2c02d62 Binary files /dev/null and b/docs/Tenders/past tenders/Final bid submissions/SPARTA (NM 2)/detailed-budget-table_he-ls-euratom_SPARTA_master_v2.0_final_Ready4Submission.xlsx differ diff --git a/docs/Tenders/past tenders/Final bid submissions/STRATUS (HAOSP)/Detailed-budget-table_he-ls-euratom_en_STRATUS_final_submission_Ready4Submission.xlsx b/docs/Tenders/past tenders/Final bid submissions/STRATUS (HAOSP)/Detailed-budget-table_he-ls-euratom_en_STRATUS_final_submission_Ready4Submission.xlsx new file mode 100644 index 0000000..e356030 Binary files /dev/null and b/docs/Tenders/past tenders/Final bid submissions/STRATUS (HAOSP)/Detailed-budget-table_he-ls-euratom_en_STRATUS_final_submission_Ready4Submission.xlsx differ diff --git a/docs/Tenders/past tenders/Final bid submissions/STRATUS (HAOSP)/STRATUS Proposal-SEP-211192028.pdf b/docs/Tenders/past tenders/Final bid submissions/STRATUS (HAOSP)/STRATUS Proposal-SEP-211192028.pdf new file mode 100644 index 0000000..85acac0 Binary files /dev/null and b/docs/Tenders/past tenders/Final bid submissions/STRATUS (HAOSP)/STRATUS Proposal-SEP-211192028.pdf differ diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/101288039_SPARTA_ESR.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/101288039_SPARTA_ESR.txt new file mode 100644 index 0000000..1256fc3 --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/101288039_SPARTA_ESR.txt @@ -0,0 +1,219 @@ + + +=== PAGE 1 === +Proposal Evaluation Form + EUROPEAN COMMISSION +Horizon Europe (HORIZON) +Evaluation Summary +Report - Research and +innovation actions +Call: HORIZON-SESAR-2025-DES-IR-02 +Type of action: HORIZON-JU-RIA +Proposal number: 101288039 +Proposal acronym: SPARTA +Duration (months): 36 +Proposal title: SPARTA — Space-ATM Real-Time Awareness +Activity: IR-02-WA5 +N. Proposer name Country Total +eligible +costs +% Grant +Requested +% +1 EUROCONTROL - EUROPEAN ORGANISATION FOR THE +SAFETY OF AIR NAVIGATION +BE 0 0.00% 0 0.00% +2 DFS DEUTSCHE FLUGSICHERUNG GMBH DE 81,130 1.97% 81,130 1.97% +3 DEUTSCHES ZENTRUM FUR LUFT - UND RAUMFAHRT +EV +DE 908,224.63 22.09% 908,224.63 22.09% +4 LUFTFARTSVERKET SE 315,285.78 7.67% 315,285.78 7.67% +5 ENAV SPA IT 176,917.31 4.30% 176,917.31 4.30% +6 NATS (EN ROUTE) PUBLIC LIMITED COMPANY UK 217,059.41 5.28% 217,059.41 5.28% +7 ENAIRE ES 106,750 2.60% 106,750 2.60% +8 Europe Space Centre GmbH DE 55,835.85 1.36% 55,835.85 1.36% +9 ENTE NAZIONALE PER L'AVIAZIONE CIVILE - ENAC +ITALIAN CIVIL AVIATION AUTHORITY +IT 242,383.75 5.90% 242,383.75 5.90% +10 SkyNav Europe BE 842,928.98 20.50% 842,928.98 20.50% +11 ECOLE NATIONALE DE L AVIATION CIVILE FR 162,470 3.95% 162,470 3.95% +12 LINKOPINGS UNIVERSITET SE 73,237.5 1.78% 73,237.5 1.78% +13 C.I.R.A. CENTRO ITALIANO RICERCHE AEROSPAZIALI +SCPA +IT 279,226.78 6.79% 279,226.78 6.79% +14 SCEYE SPAIN S.L. ES 190,400 4.63% 190,400 4.63% +15 INTERNATIONAL FEDERATION OF AIR TRAFFIC +CONTROLLERS ASSOCIATIONS +CA 116,812.5 2.84% 116,812.5 2.84% +16 OpenUTM Ltd. IE 59,745 1.45% 59,745 1.45% +17 THALES LAS FRANCE SAS FR 114,625 2.79% 114,625 2.79% +18 ANRA TECHNOLOGIES UK LTD UK 168,317.63 4.09% 168,317.63 4.09% +19 HAPS Alliance US 0 0.00% 0 0.00% +  Total:   4,111,350.12   4,111,350.12   +Abstract: + 101288039/SPARTA-28/01/2026-10:01:27 1 / +4 +Associated with document Ref. Ares(2026)968685 - 28/01/2026 + +=== PAGE 2 === +The development of an enhanced Network Real-time Monitoring Module and associated enhanced procedures and eventual enhanced supporting tools +for the management of space-launch and higher-altitude operations at the level of the European ATM Network Manager (NM). It includes space and +higher-altitude operations data integration (from Launch and Re-entry Operators (LRO), Launch and Re-entry site operators (LRSO), STM, Higher +Altitude vehicle and site Operators with the NM and ATM), looking to generate, maintain and broadcast a full European network wide situational +awareness picture. Note that this a continuation of ongoing research embedded in the SESAR 3 project ECHO 2, under the HORIZON-SESAR-2022- +DES-IR-01 Call. +Evaluation Summary Report +Evaluation Result +Total score: 13.62 (Threshold: 10 ) +Criterion 1 - Excellence - weight 40% +Score:  (Threshold: 3 / 5.00 , Weight: - )4.40 +The following aspects will be taken into account, to the extent that the proposed work corresponds to the description in the work programme: +- Clarity and pertinence of the project’s objectives: degree to which the objectives and scope are compliant with the call material, well understood +and fully addressed. +- Soundness of the proposed methodology for developing the SESAR solutions from their initial to their target maturity level, including the +underlying concepts, models, assumptions and interdisciplinary approaches. This criterion also includes appropriate consideration of the +integration of a gender dimension into R&I content and the quality of open science practices, including sharing and management of research +outputs and engagement of citizens, civil society and end users where appropriate. +- Level of awareness of the state of the art: degree to which the proposal demonstrates knowledge of current operations and relevant previous R&D +work (both within and outside SESAR), explains how the proposed work will go beyond the state of the art and demonstrates breakthrough +innovation potential. +SPARTA proposal is in line with the call specifications of WA5-2 ‘’Highly automated ATM for all airspace users'' and addresses the Enhanced automation support +for space-launch management. The concept of operation covers the strategic, pre-tactical and execution of Space Transport Operations (STO) integrated with the +ATM systems and processes. +The proposal identifies two solutions. Solution 1 addresses the strategic and pre-tactical phase of STO Mission Planning integrated with ATM Systems to provide the +NM, ANSPs and State authorities with all the data necessary to assess the impact on the safe and regular management of the air traffic. Solution 2 focuses on the +execution of launches and re-entry operations. These Solutions shall also provide STO/HAO operators with clear and predictable processes. These objectives are +compliant with the call material. +The development of these Solutions is based on the work done on the previous ECHO2 project, but SPARTA extends the scope of launch and re-entry operations to +cover strategic and pre-tactical phases and introduces new elements such as planning frameworks, CDM processes, and the inclusion of HAO/HAPS in an +operational context to be validated at TRL6. This will be done by producing a complete set of deliverables and validated solutions that are ready for +standardization, regulation and eventual deployment. +The scientific methodology is clear and sound. The approach is aligned with the SESAR Framework and associated models, ensuring that the concepts, assumptions, +and architectural elements are applied. The proposal maturity target is well defined. The proposal explains what the solutions are aiming to achieve; however they +are not linked to clear performance objectives and the qualitative performance expectations are not sufficiently described. This is a shortcoming. +The validation activities for reaching the target maturity level are defined very briefly and the proposal explains that the validation activities will be defined in the +VALP. This is a minor shortcoming. +The DMP, the open-science and FAIR aspects are covered to a satisfactory level. +The work of SPARTA is mainly based on previous projects ECHO and ECHO2 as the topic is new and not consistently implemented in Europe. SPARTA goes +beyond the state of the art proposing a standardized, interoperable and harmonized concept and prototypes in scope, with a higher maturity and integrated in the +ATM system. +However, the proposal does not adequately consider the new service delivery model and the level of automation. This is a minor shortcoming. +The proposal defines that live operational systems will not be used to avoid procedural, security, and stability risks. However, it is not clearly determined how the +cybersecurity aspects will be handled. This is a shortcoming. +Criterion 2 - Impact - weight 40% +Score:  (Threshold: 3 / 5.00 , Weight: - )4.70 + 101288039/SPARTA-28/01/2026-10:01:27 2 / +4 +Associated with document Ref. Ares(2026)968685 - 28/01/2026 + +=== PAGE 3 === +The following aspects will be taken into account, to the extent that the proposed work corresponds to the description in the work programme: +- Credibility of the pathways to achieve the expected outcomes and impacts specified in the call material. +- Appropriateness of the contribution to standardisation and regulation: the extent to which the proposal demonstrates that the project will +contribute appropriately to the relevant standardisation and regulatory activities. +- Suitability and quality of the measures in terms of maximising expected outcomes and impacts, as set out in the dissemination and exploitation +(D&E) plan, including communication activities. +The impact on the realization of the objectives and performance identified in the ATM Master Plan (MP) for the phase D can be found in the scope and objectives +of SPARTA. For each Solution, an assessment of the impact has been well-provided in the proposal. The solutions developed in SPARTA will impact operational +and safety, network performance, regulation and interoperability, demonstrating as such its potential breakthrough of the business as usual. By addressing these +elements, SPARTA contributes to making STO and HAO missions integrated in the Digital European Sky, where all the Airspace Users (AUs) have a seamless +access to the airspace with high degree of safety and efficiency as required in the ATM MP Phase D. +The breakthrough of SPARTA versus business as usual is the potential to shift STO mission management from today reactive posture and fragmented document- +based exchanges, to a predictive, responsive and coordinated process at European network level. By enabling faster, more accurate and less disruptive hazard +management, the solution strengthens safety and improves overall efficiency of the network for accounting all kind of operations included STO and HAO. +The impact pathways, while credible, are largely qualitative. Quantitative indicators for assessing system-level benefits and D&E performance are not fully +elaborated. This is a shortcoming. +The outputs of SPARTA's Project Deliverables are suitable, concerning the contribution to standardization and regulation. OSED and Stand and Reg deliverables +will be used for submission to ICAO, EUROCAE, and the EUR STO Project Team, providing direct pathway into standardization, interoperability, regulation and +industrialization. +An initial plan of Communication, Dissemination and Exploitation (CDE) activities is formulated with sufficient details. This is also reflected in the dedicated WP +where activities, milestones and deliverables to be produced are sufficiently described. +The IPR aspect is properly addressed and an IPR framework at Consortium Agreement level will be also implemented. +Criterion 3 - Quality and efficiency of the implementation - weight 20% +Score:  (Threshold: 3 / 5.00 , Weight: - )4.50 +The following aspects will be taken into account, to the extent that the proposed work corresponds to the description in the work programme: +- Quality and effectiveness of the work plan and assessment of risks, and appropriateness of the effort assigned to work packages, and the resources +overall. +- Capacity and role of each participant, and the extent to which the consortium as a whole brings together the necessary expertise. +The SPARTA Work Plan is structured to ensure that all Work Packages contribute to the delivery of two coherent SESAR Solutions, with evidence of strong +alignment across planning and operational phases as the proposal manages interdependencies both vertically (between phases of the same solution) and +horizontally (across solutions and cross-cutting WPs). The breakdown of the WPs is in line with the provisions of the SESAR Framework and Project Handbook. +The Initial Stand & Reg Deliverables are expected to be delivered late at month 18 for both of the solutions. Moreover, all the deliverables' final draft should be +provided two months before the Exit Maturity Gate, however some of them planned to be delivered later than the gate. This is a shortcoming. +The project structure complies with the Lump Sum approach and principles. +While the proposal outlines the main responsibilities of Work Package leaders and provides an overall view of consortium roles, it does not provide sufficient task- +level details of the individual contributions. For example, there is no clear description of the activities to be performed by ANRA Technologies UK Ltd, which is +requesting funding under the project. The proposal does not clearly specify this partner’s concrete responsibilities, deliverables, or level of involvement in specific +work packages. This a minor shortcoming. +Scope of the application +Status:  Yes +Comments (in case the proposal is out of scope) +Not provided +Exceptional funding +A third country participant/international organisation not listed in may exceptionally receive funding if the General Annex to the Main Work Programme +their participation is essential for carrying out the project (for instance due to outstanding expertise, access to unique know-how, access to research +infrastructure, access to particular geographical environments, possibility to involve key partners in emerging markets, access to data, etc.). (For more +information, see the ) HE programme guide +Please list the concerned applicants and requested grant amount and explain the reasons why. +Based on the information provided, the following participants should receive exceptional funding: +Not provided +Based on the information provided, the following participants should NOT receive exceptional funding: +Not provided +Use of human embryonic stem cells (hESC) +Status:  No + 101288039/SPARTA-28/01/2026-10:01:27 3 / +4 +Associated with document Ref. Ares(2026)968685 - 28/01/2026 + +=== PAGE 4 === +If YES, please state whether the use of hESC is, or is not, in your opinion, necessary to achieve the scientific objectives of the proposal and the +reasons why. Alternatively, please state if it cannot be assessed whether the use of hESC is necessary or not, because of a lack of information. +Not provided +Use of human embryos +Status:  No +If YES, please explain how the human embryos will be used in the project. +Not provided +Activities excluded from funding +Status:  No +If YES, please explain. +Not provided +Do no significant harm principle +Status:  Yes +If Partially/No/Cannot be assessed please explain +Not provided +Exclusive focus on civil applications +Status:  Yes +If NO, please explain. +Not provided +Artificial Intelligence +Status:  No +If YES, the technical robustness of the proposed system must be evaluated under the appropriate criterion. +Overall comments +Not provided + 101288039/SPARTA-28/01/2026-10:01:27 4 / +4 +Associated with document Ref. Ares(2026)968685 - 28/01/2026 + +=== PAGE 5 === + + +Commission européenne/Europese Commissie, 1049 Bruxelles/Brussel, BELGIQUE/BELGIË - Tel. +32 22991111 + + + + +This electronic receipt is a digitally signed version of the document submitted by your +organisation. Both the content of the document and a set of metadata have been digitally +sealed. +This digital signature mechanism, using a public -private key pair mechanism, uniquely +binds this eReceipt to the modules of the Funding & Tenders Portal of the European +Commission, to the transaction for which it was generated and ensures its full integr ity. +Therefore a complete digitally signed trail of the transaction is available both for your +organisation and for the issuer of the eReceipt. +Any attempt to modify the content will lead to a break of the integrity of the electronic +signature, which can b e verified at any time by clicking on the eReceipt validation +symbol. +More info about eReceipts can be found in the FAQ page of the Funding & Tenders +Portal. +(https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/support/faq) + \ No newline at end of file diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/101288550_SCAN_ESR.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/101288550_SCAN_ESR.txt new file mode 100644 index 0000000..5fccf04 --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/101288550_SCAN_ESR.txt @@ -0,0 +1,269 @@ + + +=== PAGE 1 === +Proposal Evaluation Form + EUROPEAN COMMISSION +Horizon Europe (HORIZON) +Evaluation Summary +Report - Research and +innovation actions +Call: HORIZON-SESAR-2025-DES-IR-02 +Type of action: HORIZON-JU-RIA +Proposal number: 101288550 +Proposal acronym: SCAN +Duration (months): 36 +Proposal title: SCAN: Reviewing, Adapting and Developing CNS Infrastructure and Services to Ensure the Safe +Integration of HAO And STO Vehicles +Activity: IR-02-WA3-2 +N. Proposer name Country Total +eligible +costs +% Grant +Requested +% +1 EUROCONTROL - EUROPEAN ORGANISATION FOR THE +SAFETY OF AIR NAVIGATION +BE 0 0.00% 0 0.00% +2 DFS DEUTSCHE FLUGSICHERUNG GMBH DE 137,681.25 1.42% 137,681.25 1.42% +3 LUFTFARTSVERKET SE 254,709.88 2.63% 254,709.88 2.63% +4 EUROPEAN SATELLITE SERVICES PROVIDER SAS FR 95,988.2 0.99% 95,988.2 0.99% +5 NATS (EN ROUTE) PUBLIC LIMITED COMPANY UK 56,147.79 0.58% 56,147.79 0.58% +6 DIRECTION DES SERVICES DE LA NAVIGATION +AERIENNE +FR 182,656.25 1.89% 182,656.25 1.89% +7 SkyNav Europe BE 561,397.73 5.80% 561,397.73 5.80% +8 ECOLE NATIONALE DE L AVIATION CIVILE FR 124,162.5 1.28% 124,162.5 1.28% +9 LINKOPINGS UNIVERSITET SE 99,225 1.02% 99,225 1.02% +10 C.I.R.A. CENTRO ITALIANO RICERCHE AEROSPAZIALI +SCPA +IT 178,190.46 1.84% 178,190.46 1.84% +11 SCEYE SPAIN S.L. ES 3,586,975 37.03% 3,586,975 37.03% +12 SKYDWELLER CANARIAS SL ES 1,339,800 13.83% 1,339,800 13.83% +13 SKYDWELLER SL ES 0 0.00% 0 0.00% +14 PARQUE TECNOLOGICO DE FUERTEVENTURASA MP ES 164,281.25 1.70% 164,281.25 1.70% +15 Elson Space España S.L. ES 911,562.75 9.41% 911,562.75 9.41% +16 DEUTSCHES ZENTRUM FUR LUFT - UND RAUMFAHRT +EV +DE 687,225.88 7.09% 687,225.88 7.09% +17 PILDO CONSULTING SL ES 233,187.5 2.41% 233,187.5 2.41% +18 ENAIRE ES 322,866.25 3.33% 322,866.25 3.33% +19 OpenUTM Ltd. IE 81,279.63 0.84% 81,279.63 0.84% +20 ANRA TECHNOLOGIES UK LTD UK 193,909.63 2.00% 193,909.63 2.00% +21 SKYPUZZLER APS DK 475,343.75 4.91% 475,343.75 4.91% +22 HAPS Alliance US 0 0.00% 0 0.00% +  Total:   9,686,590.7   9,686,590.7   +Abstract: + 101288550/SCAN-28/01/2026-11:07:46 1 / +6 +Associated with document Ref. Ares(2026)972016 - 28/01/2026 + +=== PAGE 2 === +In the context of integrating Space and Higher Altitude Operations in European ATM, there is a need to evaluate and mitigate the potential +performance gap between current CNS and HAO specific requirements. Moreover, it has been established that altimetry solutions based on +barometric measurements are not reliable for safe operations above FL 600. It is therefore needed to identify non-barometric altimetry solutions +compatible with HAO. +SCAN will build on the outcome of CNS infrastructure studies and flight trials currently ongoing in the ECHO2 project and will move forward with +the ambition to: +a. Propose a set of feasible technical components and services to serve the CNS needs for diverse vehicles operating in the higher airspace within +Europe and beyond; +b. Engage with airspace users (conventional aviation and HAO operators), ANSPs, industry and aviation authorities to align expectations on benefits +and operational acceptability of the proposed CNS solutions or new paradigms for air traffic management. +c. Support a clear path forward for future CNS developments, including standardisation and regulatory framework evolution to support the European +pioneer initiatives on HAO. +Evaluation Summary Report +Evaluation Result +Total score: 14.76 (Threshold: 10 ) +Criterion 1 - Excellence - weight 40% +Score:  (Threshold: 3 / 5.00 , Weight: - )4.90 + 101288550/SCAN-28/01/2026-11:07:46 2 / +6 +Associated with document Ref. Ares(2026)972016 - 28/01/2026 + +=== PAGE 3 === +The following aspects will be taken into account, to the extent that the proposed work corresponds to the description in the work programme: +- Clarity and pertinence of the project’s objectives: degree to which the objectives and scope are compliant with the call material, well understood +and fully addressed. +- Soundness of the proposed methodology for developing the SESAR solutions from their initial to their target maturity level, including the +underlying concepts, models, assumptions and interdisciplinary approaches. This criterion also includes appropriate consideration of the +integration of a gender dimension into R&I content and the quality of open science practices, including sharing and management of research +outputs and engagement of citizens, civil society and end users where appropriate. +- Level of awareness of the state of the art: degree to which the proposal demonstrates knowledge of current operations and relevant previous R&D +work (both within and outside SESAR), explains how the proposed work will go beyond the state of the art and demonstrates breakthrough +innovation potential. +Proposal’s objectives are in scope of the call addressing R&I needs for IR-3-01 CNSaaS specific to HAO and IR-3-09 CNS for more robust ATM system. +The proposal is delivering one Solution “CNS means to serve HAO” with several clearly stated objectives around the CNS for Higher Airspace Operations (HAO) +including technological, financial, operational and regulatory and standardization goals, including flight trails of HAPs and a rocket launch, which is line with the +Call specification. The objectives are very clear and pertinent to the work program and the Call specification. The high level objective to identify the best CNS +means to serve HAO is highly relevant. +The proposal starts with TRL 2 and aims to reach TRL 6, in line with the call conditions. The proposal intends to complete TRL 6 based on validation in +operational environments with flights of different vehicles, which is adequate. +The objective to use the geometric altimetry in the higher airspace to deal with current limitations of barometric altimetry due to very low air density is relevant. +The combination of flight trials to collect CNS performance data in higher airspace, with a gap analysis and feasibility study of new CNS technologies is useful. +The methods used are straight forward and use mainly using legacy CNS technologies to be tested in HAO. A big number of technologies will be assessed using +different platforms, which is a plus. +The focus on quantitative assessment of key performance indicators (KPIs) using flight trials (in upper airspace) is an effective way to select CNS technologies for +HAO. +Although the diversity is critical for testing the CNS solutions in varied operational environments, it is noted that the Skydweller operates up to FL500, while the +targeted environment is above FL500. The inclusion of this vehicle is insufficiently justified. However, as other vehicles are also included that operate above +FL500. This is a minor shortcoming. +The inclusion of a CBA per technology is a useful consideration when selecting CNS technologies for HAO. +A list of CNS technologies to be assessed has been provided and it is sufficiently complete. +Although the notion of non-cooperating traffic is mentioned, a consideration is missing on the fact that for some HAO the control center may be on the ground with +no need for A/G communication. This is a minor shortcoming. +The concepts, models and assumptions are clear and sound. The validation activities with different flying platforms are described in a very detailed, +comprehensive and credible way. The use of special directional antennas to avoid jamming and interference is strong. +The project adequately builds on the previous SESAR projects ECHO and ECHO2. An explanation of where the boundaries lie between ECHO2 and SCAN is +provided. The relation to the Concept of Operations developed by the ECHO project is sufficiently explained. +It is expanding the maturity of the current R&D towards feasible technical components and services in CNS for HAO. +There are a lot of ground breaking research items, especially the end-to-end layered approach that integrates all enablers, e.g. NAV, telemetry, data fusion and +distribution to authorized stakeholders in a novel approach. +The project’s methodology supports open science principles. Non-sensitive datasets, interface definitions, and technical documentation will be made openly +available, enabling other research and operational projects to build on SCAN’s outputs. The research data management activity is dealt with a Data Management +Plan (WP2) , maintained with update iterations during the length of the project. +The use of AI is not considered. +The topic does not aim at increasing automation to level 4 and it does not explain how the concept can operate in a level 4 environment. This is a shortcoming. +Criterion 2 - Impact - weight 40% +Score:  (Threshold: 3 / 5.00 , Weight: - )5.00 + 101288550/SCAN-28/01/2026-11:07:46 3 / +6 +Associated with document Ref. Ares(2026)972016 - 28/01/2026 + +=== PAGE 4 === +The following aspects will be taken into account, to the extent that the proposed work corresponds to the description in the work programme: +- Credibility of the pathways to achieve the expected outcomes and impacts specified in the call material. +- Appropriateness of the contribution to standardisation and regulation: the extent to which the proposal demonstrates that the project will +contribute appropriately to the relevant standardisation and regulatory activities. +- Suitability and quality of the measures in terms of maximising expected outcomes and impacts, as set out in the dissemination and exploitation +(D&E) plan, including communication activities. +The proposal is declaring in a clear and traceable manner the impact of its results. +The concepts and technologies supporting operations in high altitude airspace are not covered today. The proposal will assess CNS technologies with real flight trials +with various vehicles, hence various trajectories. This is essential for the further development of future High Altitude Operations (HAO). +The contribution of the project towards the expected outcomes of the topic in terms of KPA/KPI and the wider impacts (ATM Master Plan 2025), in the longer term +towards 2030 and 2045 are explained very well, are credible but they are not quantified. This is a minor shortcoming. +There is one WP dedicated to the development of CNS as a Service, which is in line with the New Service Delivery Model. +The relevance of HAO for telecommunications, disaster relief, antenna relay, earth observation and scientific exploration is explained adequately. +Standards and regulations issues are addressed very well and all related regulatory and standardization organizations e.g. ICAO, EUROCAE, EASA are identified. +The process of interacting with these organizations including the proper deliverables and processes are also very well explained. +The proposal convincingly justifies the clear and pressing need for updated standards and regulations across multiple domains, including ATM, UTM, CNS +tracking, deconfliction, and the Specific Operations Risk Assessment (SORA) framework. This requirement is thoroughly addressed, with all relevant regulatory +bodies and standardization organizations (e.g. EUROCAE) listed. +This is done by contributing validated evidence and operational concepts from European HAO trials to EUROCAE and JARUS, facilitating recognition as global +standards at ICAO level. +Moreover, the procedures for engaging with these organizations, along with the expected deliverables, are articulated with clarity and precision. +The communication, dissemination and exploitation (CDE) plan will consider the relevant measures that are introduced in the proposal. Target groups are identified +very well and grouped according to Communication and Dissemination activities. Target group(s) are also very well addressed (e.g. scientific community, end users, +military financial actors, public at large). +Exploitation is specifically mentioned but only at high level. This is a minor shortcoming. +IP aspects are briefly but sufficiently explained referring to the to-be signed Consortium Agreement (CA). +The results of the proposal will be shared with stakeholders and the society according to the content excluding those deliverables with security critical or sensitive +information. +All deliverables listed are of public (PU) nature. +Criterion 3 - Quality and efficiency of the implementation - weight 20% +Score:  (Threshold: 3 / 5.00 , Weight: - )4.80 +The following aspects will be taken into account, to the extent that the proposed work corresponds to the description in the work programme: +- Quality and effectiveness of the work plan and assessment of risks, and appropriateness of the effort assigned to work packages, and the resources +overall. +- Capacity and role of each participant, and the extent to which the consortium as a whole brings together the necessary expertise. +WP tasks are aligned with allocated resources. +The work breakdown is clear and consistent with the needs of the project, distinguishing conceptual and analytical foundations from the validation exercises. The +proposal provides an extensive list of clear activities and milestones with adequate target dates as well as the Exit Maturity gate planned in line with the project +handbook requirements. +All technical deliverables are identified in accordance with the Handbook +Milestones including the Exit Maturity Gate milestone/date per SESAR Solution are identified +The final technical deliverables are planned for M34, while it should be M32 according to the project handbook. This is a minor shortcoming. +The proposed work break down structure is compliant with the handbook. +The lump sum approach is applied. The allocated resources are adequate for the identified WP tasks. However, sub-WPs are defined but not the partners who are +working in the specific sub-WPs. Only for the flight trails of the different vehicle provides is clear who of the partners are the main contributors. In general, the +missing association of partner in the SOWs can lead to uncertainties within the partnership and worst case to duplication of work or no one doing the work needed. +This is a shortcoming. +A comprehensive risk assessment is provided with severities and impacts well defined. Also, several valid mitigation options are provided and are sufficiently +practical. +Although the budget seems very high for the development of a roadmap, it is actually justified by the need to work with single-use HAPS, including a sounding +rocket. +There are two partners with around 1% share of the efforts, another with less than 1% of the workshare (and significantly high rates), representing ANSPs. There +are other ANSPs in the consortium with more effort. There is not enough evidence provided where the two small partners are contributing. It cannot be expected +that there is specific know-how available from these ANSPs than from the other ANSPs involved. This is a minor shortcoming. +The consortium looks very complete and fit to do the job. The consortium would operate under the lead of ECTL (that has been leading ECHO and ECHO2 +already), with participation from Original Equipment Manufacturer (OEM) for High Altitude Platforms (HAPS) and Operators, ANSPs, U-space in dustry, +research institutes. +The individual partners are insufficiently providing evidence of their capabilities in similar activities. This is a minor shortcoming. +However given the nature of those companies developing HAPS, there is a high risk that these partners will get into financial issues and might drop out . There is a +risk associated that cannot be neglected. In the risk assessment this risk is not mentioned. This is a minor shortcoming. +Scope of the application +Status:  Yes + 101288550/SCAN-28/01/2026-11:07:46 4 / +6 +Associated with document Ref. Ares(2026)972016 - 28/01/2026 + +=== PAGE 5 === +Comments (in case the proposal is out of scope) +Not provided +Exceptional funding +A third country participant/international organisation not listed in may exceptionally receive funding if the General Annex to the Main Work Programme +their participation is essential for carrying out the project (for instance due to outstanding expertise, access to unique know-how, access to research +infrastructure, access to particular geographical environments, possibility to involve key partners in emerging markets, access to data, etc.). (For more +information, see the ) HE programme guide +Please list the concerned applicants and requested grant amount and explain the reasons why. +Based on the information provided, the following participants should receive exceptional funding: +Not provided +Based on the information provided, the following participants should NOT receive exceptional funding: +Not provided +Use of human embryonic stem cells (hESC) +Status:  No +If YES, please state whether the use of hESC is, or is not, in your opinion, necessary to achieve the scientific objectives of the proposal and the +reasons why. Alternatively, please state if it cannot be assessed whether the use of hESC is necessary or not, because of a lack of information. +Not provided +Use of human embryos +Status:  No +If YES, please explain how the human embryos will be used in the project. +Not provided +Activities excluded from funding +Status:  No +If YES, please explain. +Not provided +Do no significant harm principle +Status:  Yes +If Partially/No/Cannot be assessed please explain +Not provided +Exclusive focus on civil applications +Status:  Yes +If NO, please explain. +Not provided +Artificial Intelligence + 101288550/SCAN-28/01/2026-11:07:46 5 / +6 +Associated with document Ref. Ares(2026)972016 - 28/01/2026 + +=== PAGE 6 === +Status:  No +If YES, the technical robustness of the proposed system must be evaluated under the appropriate criterion. +Overall comments +The subcontracting costs of SCEYE for external software and cybersecurity support and Elson Space cost for performance degradation of solar arrays would +benefit of further clarification. + 101288550/SCAN-28/01/2026-11:07:46 6 / +6 +Associated with document Ref. Ares(2026)972016 - 28/01/2026 + +=== PAGE 7 === + + +Commission européenne/Europese Commissie, 1049 Bruxelles/Brussel, BELGIQUE/BELGIË - Tel. +32 22991111 + + + + +This electronic receipt is a digitally signed version of the document submitted by your +organisation. Both the content of the document and a set of metadata have been digitally +sealed. +This digital signature mechanism, using a public -private key pair mechanism, uniquely +binds this eReceipt to the modules of the Funding & Tenders Portal of the European +Commission, to the transaction for which it was generated and ensures its full integr ity. +Therefore a complete digitally signed trail of the transaction is available both for your +organisation and for the issuer of the eReceipt. +Any attempt to modify the content will lead to a break of the integrity of the electronic +signature, which can b e verified at any time by clicking on the eReceipt validation +symbol. +More info about eReceipts can be found in the FAQ page of the Funding & Tenders +Portal. +(https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/support/faq) + \ No newline at end of file diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/101288550_SCAN_EthSR.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/101288550_SCAN_EthSR.txt new file mode 100644 index 0000000..0ad34a7 --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/101288550_SCAN_EthSR.txt @@ -0,0 +1,50 @@ + + +=== PAGE 1 === +Ethics Summary Report +Call Reference HORIZON-SESAR-2025-DES-IR-02 +101288550Proposal Number +SCANAcronym + +Ethics Issues +Non-EU countries Yes +Ethics Opinion +Ethics clearance (the proposal is 'ethics ready') +External Independent Ethics Advisor/Board +In your opinion, would it be exceptionally necessary to appoint an external independent ethics advisor +or an ethics board (with a minimum of three experts) reporting periodically to the +Commission/Agency/funding body? +No +No ethics issues identified other than the participation of non-EU entities, with no associated ethics risk. +General requirement applicable to all grants +The beneficiaries must ensure that all ethics issues related to activities in the grant are addressed in compliance with +ethical principles, the applicable international and national law, and the provisions set out in the Grant Agreement. This +includes the ethics issues identified in this report and any additional ethics issues that may emerge in the course of the +grant. In case any substantial new ethics issues arise, beneficiaries should inform the granting authority. For each ethics +issue applicable, beneficiaries must follow the guidance provided in the How to complete your ethics self-assessment. +11 /101288550/SCAN - 16/12/2025-15:47:45 +Associated with document Ref. Ares(2025)11246335 - 16/12/2025 + +=== PAGE 2 === + + +Commission européenne/Europese Commissie, 1049 Bruxelles/Brussel, BELGIQUE/BELGIË - Tel. +32 22991111 + + + + +This electronic receipt is a digitally signed version of the document submitted by your +organisation. Both the content of the document and a set of metadata have been digitally +sealed. +This digital signature mechanism, using a public -private key pair mechanism, uniquely +binds this eReceipt to the modules of the Funding & Tenders Portal of the European +Commission, to the transaction for which it was generated and ensures its full integr ity. +Therefore a complete digitally signed trail of the transaction is available both for your +organisation and for the issuer of the eReceipt. +Any attempt to modify the content will lead to a break of the integrity of the electronic +signature, which can b e verified at any time by clicking on the eReceipt validation +symbol. +More info about eReceipts can be found in the FAQ page of the Funding & Tenders +Portal. +(https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/support/faq) + \ No newline at end of file diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/101289612_QUANTAIR_ESR.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/101289612_QUANTAIR_ESR.txt new file mode 100644 index 0000000..dc7aa70 --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/101289612_QUANTAIR_ESR.txt @@ -0,0 +1,230 @@ + + +=== PAGE 1 === +Proposal Evaluation Form + EUROPEAN COMMISSION +Horizon Europe (HORIZON) +Evaluation Summary +Report - Research and +innovation actions +Call: HORIZON-SESAR-2025-DES-ER-03 +Type of action: HORIZON-JU-RIA +Proposal number: 101289612 +Proposal acronym: QUANTAIR +Duration (months): 24 +Proposal title: Quantum Technologies for Airspace Innovation and Resilience +Activity: ER-03-WA1 +N. Proposer name Country Total +eligible +costs +% Grant +Requested +% +1 DEUTSCHES ZENTRUM FUR LUFT - UND RAUMFAHRT +EV +DE 167,350 17.70% 167,350 17.70% +2 Qoro Quantum Ltd UK 435,086.16 46.02% 435,086.16 46.02% +3 SkyNav Europe BE 342,890.63 36.27% 342,890.63 36.27% +  Total:   945,326.79   945,326.79   +Abstract: +European air traffic management is becoming increasingly complex. The system now has to handle a growing variety of airspace users — from +hypersonic vehicles and high-altitude long-endurance platforms such as stratospheric balloons and HAPS, to conventional subsonic flights. These +vehicles often operate in overlapping altitude bands but have vastly different speeds, climb/descent profiles, and manoeuvring capabilities. +At the same time, environmental policy drivers are stronger than ever. The EU Green Deal, ICAO’s long-term aspirational goals, and national climate +strategies are pushing for measurable reductions in both CO₂ and non-CO₂ impacts, such as persistent contrails. Resilience has also become a priority, +with the network increasingly affected by severe weather, technical failures, and geopolitical events that can close or restrict airspace at short notice. +One of the biggest technical challenges in all of these contexts is that many stakeholders — States, ANSPs, airlines, and defence operators — cannot +freely share operationally, privacy, or commercially sensitive data. Without that data, current modelling and optimisation tools have to work with +partial information, limiting their effectiveness. +Previous European research has already demonstrated that Federated Learning (FL) can bridge this gap, enabling accurate predictions without +requiring data to leave its origin. QUANTAIR proposes to take this further by pairing FL with quantum optimisation — allowing us to integrate +richer, privacy-protected data from multiple stakeholders, and then solve the resulting large-scale, multi-variable problems at speeds suitable for +operational decision-making. +Evaluation Summary Report +Evaluation Result +Total score: 11.30 (Threshold: 10 ) +Criterion 1 - Excellence +Score:  (Threshold: 3 / 5.00 , Weight: - )4.00 + 101289612/QUANTAIR-28/01/2026-09:48:41 1 / +5 +Associated with document Ref. Ares(2026)967916 - 28/01/2026 + +=== PAGE 2 === +The following aspects will be taken into account, to the extent that the proposed work corresponds to the description in the work programme: +- Clarity and pertinence of the proposal: degree to which the objectives, scope and requirements set out in the call material are well understood and +fully addressed. +- Soundness of the proposed methodology for developing the SESAR solutions, including the underlying concepts, models, assumptions and +interdisciplinary approaches. This criterion also includes appropriate consideration of the integration of a gender dimension into R&I content and +the quality of open science practices, including sharing and management of research outputs and engagement of citizens, civil society and end users +where appropriate. +- Level of awareness of the state of the art: degree to which the proposal demonstrates knowledge of current operations and relevant previous R&D +work (both within and outside SESAR), explains how the proposed work will go beyond the state of the art and demonstrates innovation potential. +QUANTAIR proposal is well-structured, in scope and addresses the priority ‘Quantum Computing (QC) applications in ATM’ under Work Area 1. The four diverse +case studies give breadth and robustness to the analysis and ensures relevance across operational domains. +Objectives are realistic and very promising to obtain a collaborative modeling aligned with SESAR Digital European Sky ambitions. Objectives will be realistically +achievable. However, they are broadly defined and therefore their measurability and verifiability are difficult. This approach does not make it possible to establish +KPIs or more concrete expectations at project conclusion. This is a shortcoming. +The proposal fits in idea to application’s spectrum, and it properly identifies the work in early stages of R&I maturity, concluding at TRL1. +The proposal proposes investigation on AI-based techniques and/or systems. However, there is no concretion on which federated learning methods will be used, +leading to difficulty assessing the approach in explainable AI, considering the technical robustness, reproducibility, and reliability. This is a minor shortcoming. +The research framework proposed is well described and logic to explore how Quantum Federated machine Learning (QFL) can be applied in ATM. The four +exploratory cases identified are concise and will guide the investigation. They are well formulated and balanced for resilience, operational efficiency, integration +of new entrants and sustainability. Furthermore, limitations of the actual approaches are well argued and consequently, the expected outputs from each case are +very well identified. +The proposal does not fully provide an adequate rationale on how to address automation level 4 and/or how it would revert to conditional automation level 3. This +is a shortcoming. +The interdisciplinary methodology proposed is convincingly presented in order to achieve the expected outcomes of the project. However, the proposal does not +sufficiently detail candidate models and/or methods to be researched as well as the datasets to cover all cases to generate synthetic data, leading to an insufficient +level of technical insights. This is a shortcoming. +The proposal provides a solid explanation of how distributed learning enables privacy-preserving collaboration across fragmented data sources. It clearly defines +assumptions, limitations, and the role of quantum computing as a conceptual extension rather than immediate delivery. +Open science (OS) practices are of a high standard and are adequately managed in the proposal. OS are aligned with the Horizon Europe guidelines, disseminating +research outputs in open and accessible formats using FAIR rules such as publications, software and modelling artifacts and synthetic data generated. Other +relevant strategies proposed are knowledge-sharing channels and organization of technical workshops. The proposal provides a detailed plan for transparent +research outputs and open access. It includes clear information on documentation, repositories, and licensing. Besides, the proposal also identifies and justifies no +raw data will be disseminated. In addition, the use of open-source data for simulations is convincing. +The research data management plan is properly addressed following the FAIR principles. +The proposal is very innovative because it uses a distributed approach instead of a centralized one for training models with dispersed data sources, something very +common in the ATM environment. +The proposal demonstrates good knowledge of operations, however, the proposal is limited in terms of state of the art review on both, quantum methods and +federated machine learning, outside and inside SESAR, not including sufficient references of SESAR projects such as SINAPSE. This is a shortcoming. +Criterion 2 - Impact +Score:  (Threshold: 3 / 5.00 , Weight: - )4.00 + 101289612/QUANTAIR-28/01/2026-09:48:41 2 / +5 +Associated with document Ref. Ares(2026)967916 - 28/01/2026 + +=== PAGE 3 === +The following aspects will be taken into account, to the extent that the proposed work corresponds to the description in the work programme: +- Credibility of the pathways to achieve the expected outcomes and impacts specified in the call material. +- Suitability and quality of the measures in terms of maximising expected outcomes and impacts, as set out in the dissemination and exploitation +(D&E) plan, including communication activities. +The proposal addresses very well the expected outcomes of the topic, i.e. investigate quantum computing applied to ATM. The project outcomes will positively +contribute to a better understanding of the uses, benefits and limitations of QFL in ATM. It also demonstrates awareness of policy needs and engagements required +to influence and promote across international organizations such as ICAO, EASA and EUROCONTROL. Therefore, the project results will support defining a +pathway in this domain and a research agenda to progress towards higher TRLs in a more structured manner. +The proposal includes strong policy alignment and situational awareness linkages to higher-airspace roadmaps, contingency frameworks and climate work. +The proposal presents a thoughtful impact prospectus by setting a credible goal for collaborative modelling ATM, both in medium-term and to the wider long-term. +ATM challenges are well suited through the four exploratory cases proposed: predictability, higher-airspace entrants, disruption response and contrail mitigation. +The proposal addresses the wider impacts of the ATM Master Plan and justifies adherence to SESAR Deployment Objectives (SDOs) 3, 5 and 8, although in very +general terms. SESAR Phase D implementation and Key Performance Areas (KPAs) are not well considered. This is a shortcoming. +Requirements and key barriers that may influence whether the pathways can be realized are well identified, being data privacy and sovereignty a driver to use +federated machine learning. Potential barriers associated with quantum computing and methods are overlooked in the proposal. The mitigation measures for the +recognized barriers are ambiguous because they are very generically addressed. This is a shortcoming. +Target groups and beneficiaries are properly identified and described. +The communication and dissemination strategy is effective and appropriate with well described common communication channels, target groups and potential +panels and forums at ICAO and EASA, attendance at conferences, marketing material, among others. Open science commitments and programme-level +dissemination routes are well covered too focusing on participation in conferences and publications. Measures to share and reuse outputs with open access and +repositories are proportionate. +However, no clear reference KPIs are established to define targets and assess the performance at project closure, as well as a preliminary list of potential and +relevant peer-reviewed journals for dissemination (publications targets), website and social media reachability targets. In addition, exploitation will be conducted +through institutional channels, but this is insufficiently described in the proposal. All this is a shortcoming. +The intellectual-property approach is generically described. Furthermore, access/licensing terms for reuse and any embargo logic are not clearly specified. This is a +shortcoming. +Criterion 3 - Quality and efficiency of the implementation +Score:  (Threshold: 3 / 5.00 , Weight: - )3.30 +The following aspects will be taken into account, to the extent that the proposed work corresponds to the description in the work programme: +- Quality and effectiveness of the work plan and assessment of risks, and appropriateness of the effort assigned to work packages, and the resources +overall. +- Capacity and role of each participant, and the extent to which the consortium as a whole brings together the necessary expertise. +The work plan proposed is structured in four WPs. However, the work plan is not clearly articulated because the different concrete outputs between WP2 and WP3 +are not clearly distinguished. In addition, there are no clear tasks and assignments of roles among partners in each WP to clearly identify the work and +responsibilities. There are inconsistencies regarding the duration of the work packages and deliverables according to the Project Handbook, because the duration of +the project is 24 months and the last 6 months are dedicated to CDE activities. This implies that technical deliverables should be delivered at M14, for instance, +deliverables 3.1, 3.2 and 3.3 are incorrectly delivered. In addition, deliverables 4.2, 4.3 and 4.4 should be delivered at M22. Furthermore, the GANTT chart shows +a duration for WP2 of 6 months and a duration of 12 months for WP3, whereas in the work package description the duration of WP2 and WP3 is 9 months each. +These issues are collectively hindering the implementation and consequently entail a shortcoming. +CDE activities are split into two different WPs and led by two different partners, which causes unclarity in responsibilities in this aspect. This is a minor +shortcoming. +All technical deliverables required for TRL1 are listed, as well as classified as PU. +Regarding milestones, they are not aligned with the Project Handbook, because there is no explicit “Exit Maturity Gate” milestone. This is a shortcoming. +There is a good list of critical risks identified and categorized with an adequate set of mitigation measures and strategies to manage them. Risk management is +tailored to TRL1 and include inconclusive findings and synthetic-data credibility with pragmatic mitigations as well. +Regarding efforts, allocations and distribution among partners and WPs are reasonable to perform the work, except for WP1. +However, it is noted that SkyNav employs more Person Months than the Coordinator in WP1; this may be justified by SkyNav’s CDE lead, but it is unusual for +management. Furthermore, there are clear incoherences between the information presented in table 3.1a and the information included in table 3.1f, in terms of +PMs allocated to the same partner (DLR WP1 10 PMs vs 5PMs; Ooro WP2 18PMs vs 14PMs). In addition, it is unclear whether the total PM for the project is 50 +(from table 3.1a) or 78.8 (from table 3.1f). This is a shortcoming. +The project team combines researchers, distributed systems engineers and air traffic management experts. Their roles are clearly delineated, and the joint design +approach is well structured for conceptual integration rather than development. Technical work packages are properly distributed at high-level and consistent with +the knowledge and background of partners. Tasks are very convincingly assigned to members of the consortium according to their technical background and +expertise and covers the required scientific and technical disciplines. +The Consortium brings together the necessary expertise required by the project framework and the project coordinator demonstrates also relevant experience in +SESAR for undertaking the project management. +Scope of the application +Status:  Yes + 101289612/QUANTAIR-28/01/2026-09:48:41 3 / +5 +Associated with document Ref. Ares(2026)967916 - 28/01/2026 + +=== PAGE 4 === +Comments (in case the proposal is out of scope) +Not provided +Exceptional funding +A third country participant/international organisation not listed in may exceptionally receive funding if the General Annex to the Main Work Programme +their participation is essential for carrying out the project (for instance due to outstanding expertise, access to unique know-how, access to research +infrastructure, access to particular geographical environments, possibility to involve key partners in emerging markets, access to data, etc.). (For more +information, see the ) HE programme guide +Please list the concerned applicants and requested grant amount and explain the reasons why. +Based on the information provided, the following participants should receive exceptional funding: +Not provided +Based on the information provided, the following participants should NOT receive exceptional funding: +Not provided +Use of human embryonic stem cells (hESC) +Status:  No +If YES, please state whether the use of hESC is, or is not, in your opinion, necessary to achieve the scientific objectives of the proposal and the +reasons why. Alternatively, please state if it cannot be assessed whether the use of hESC is necessary or not, because of a lack of information. +Not provided +Use of human embryos +Status:  No +If YES, please explain how the human embryos will be used in the project. +Not provided +Activities excluded from funding +Status:  No +If YES, please explain. +Not provided +Do no significant harm principle +Status:  Yes +If Partially/No/Cannot be assessed please explain +Not provided +Exclusive focus on civil applications +Status:  Yes +If NO, please explain. +Not provided +Artificial Intelligence + 101289612/QUANTAIR-28/01/2026-09:48:41 4 / +5 +Associated with document Ref. Ares(2026)967916 - 28/01/2026 + +=== PAGE 5 === +Status:  Yes +If YES, the technical robustness of the proposed system must be evaluated under the appropriate criterion. +Overall comments +Not provided + 101289612/QUANTAIR-28/01/2026-09:48:41 5 / +5 +Associated with document Ref. Ares(2026)967916 - 28/01/2026 + +=== PAGE 6 === + + +Commission européenne/Europese Commissie, 1049 Bruxelles/Brussel, BELGIQUE/BELGIË - Tel. +32 22991111 + + + + +This electronic receipt is a digitally signed version of the document submitted by your +organisation. Both the content of the document and a set of metadata have been digitally +sealed. +This digital signature mechanism, using a public -private key pair mechanism, uniquely +binds this eReceipt to the modules of the Funding & Tenders Portal of the European +Commission, to the transaction for which it was generated and ensures its full integr ity. +Therefore a complete digitally signed trail of the transaction is available both for your +organisation and for the issuer of the eReceipt. +Any attempt to modify the content will lead to a break of the integrity of the electronic +signature, which can b e verified at any time by clicking on the eReceipt validation +symbol. +More info about eReceipts can be found in the FAQ page of the Funding & Tenders +Portal. +(https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/support/faq) + \ No newline at end of file diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/101290642_STRATUS_ESR.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/101290642_STRATUS_ESR.txt new file mode 100644 index 0000000..2ffd792 --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/101290642_STRATUS_ESR.txt @@ -0,0 +1,224 @@ + + +=== PAGE 1 === +Proposal Evaluation Form + EUROPEAN COMMISSION +Horizon Europe (HORIZON) +Evaluation Summary +Report - Research and +innovation actions +Call: HORIZON-SESAR-2025-DES-ER-03 +Type of action: HORIZON-JU-RIA +Proposal number: 101290642 +Proposal acronym: STRATUS +Duration (months): 30 +Proposal title: STRATUS — Safety & Transformed Resilience for high-Altitude Traffic Unified Services +Activity: ER-03-WA2 +N. Proposer name Country Total +eligible +costs +% Grant +Requested +% +1 EUROCONTROL - EUROPEAN ORGANISATION FOR THE +SAFETY OF AIR NAVIGATION +BE 0 0.00% 0 0.00% +2 DFS DEUTSCHE FLUGSICHERUNG GMBH DE 73,235 3.56% 73,235 3.56% +3 ENAV SPA IT 73,924.08 3.60% 73,924.08 3.60% +4 LUFTFARTSVERKET SE 180,375 8.78% 180,375 8.78% +5 NATS (EN ROUTE) PUBLIC LIMITED COMPANY UK 119,684.75 5.82% 119,684.75 5.82% +6 ENAIRE ES 95,975 4.67% 95,975 4.67% +7 ENTE NAZIONALE PER L'AVIAZIONE CIVILE - ENAC +ITALIAN CIVIL AVIATION AUTHORITY +IT 102,268.75 4.98% 102,268.75 4.98% +8 CONSORCIO AERODROMO AEROPUERTO DE TERUEL ES 88,000 4.28% 88,000 4.28% +9 SkyNav Europe BE 253,269.75 12.32% 253,269.75 12.32% +10 ECOLE NATIONALE DE L AVIATION CIVILE FR 78,250 3.81% 78,250 3.81% +11 C.I.R.A. CENTRO ITALIANO RICERCHE AEROSPAZIALI +SCPA +IT 53,907.5 2.62% 53,907.5 2.62% +12 STICHTING KONINKLIJK NEDERLANDS LUCHT - EN +RUIMTEVAARTCENTRUM +NL 157,795.25 7.68% 157,795.25 7.68% +13 INTERNATIONAL FEDERATION OF AIR TRAFFIC +CONTROLLERS ASSOCIATIONS +CA 63,125 3.07% 63,125 3.07% +14 INGENIERIA Y ECONOMIA DEL TRANSPORTE SME MP SA ES 97,575 4.75% 97,575 4.75% +15 CENTRO DE REFERENCIA INVESTIGACION +DESARROLLO E INNOVACION ATM, A.I.E. +ES 59,250 2.88% 59,250 2.88% +16 INSTITUUT VOOR INFRASTRUCTUUR, MILIEU EN +INNOVATIE +BE 33,462.5 1.63% 33,462.5 1.63% +17 OpenUTM Ltd. IE 7,237.5 0.35% 7,237.5 0.35% +18 DEUTSCHES ZENTRUM FUR LUFT - UND RAUMFAHRT +EV +DE 153,000 7.44% 153,000 7.44% +19 SCEYE SPAIN S.L. ES 280,175 13.63% 280,175 13.63% +20 ANRA TECHNOLOGIES OU EE 84,656.25 4.12% 84,656.25 4.12% +21 HAPS Alliance US 0 0.00% 0 0.00% + 101290642/STRATUS-28/01/2026-09:52:41 1 / +4 +Associated with document Ref. Ares(2026)968292 - 28/01/2026 + +=== PAGE 2 === +22 UDARAS EITLIOCHTA NA HEIREANN THE IRISH +AVIATION AUTHORITY +IE 0 0.00% 0 0.00% +  Total:   2,055,166.33   2,055,166.33   +Abstract: +STRATUS (Safety and Transformed Resilience for High-Altitude Traffic Unified Services) will define a modular and scalable framework for +integrating Higher Airspace Operations (HAO) and Space Transport Operations (STO) into the European ATM framework. The focus is on the low- +density airspace above conventional traffic, generally above flight level FL550. This is where high-performance supersonic and hypersonic aircraft, +automated High Altitude Platform Systems (HAPS) fleets, and sub-orbital operations are expected to multiply in the coming decade. +Building on the exploratory CONOPS produced in the ECHO project, and taking into account the work now underway in ECHO2, STRATUS will +expand the scope to cover a wider set of operational scenarios, vehicle types and service models. It will address the operational, functional, technical +and regulatory foundations required for integration, in line with the priorities of the European ATM Master Plan for higher-airspace operations, +dynamic airspace configuration, service-oriented architectures and cyber-secure digitalisation. Concentrating on the higher airspace, where traffic +density is relatively low, provides the opportunity to mature and validate innovative concepts and technologies while limiting operational risk to +existing ATM. +The objectives of STRATUS follow a logical progression from establishing operational demand in higher airspace, through the development of +concepts and supporting frameworks, to the consideration of regulatory and other relevant implications that may influence successful implementation. +Evaluation Summary Report +Evaluation Result +Total score: 10.40 (Threshold: 10 ) +Criterion 1 - Excellence +Score:  (Threshold: 3 / 5.00 , Weight: - )4.00 +The following aspects will be taken into account, to the extent that the proposed work corresponds to the description in the work programme: +- Clarity and pertinence of the proposal: degree to which the objectives, scope and requirements set out in the call material are well understood and +fully addressed. +- Soundness of the proposed methodology for developing the SESAR solutions, including the underlying concepts, models, assumptions and +interdisciplinary approaches. This criterion also includes appropriate consideration of the integration of a gender dimension into R&I content and +the quality of open science practices, including sharing and management of research outputs and engagement of citizens, civil society and end users +where appropriate. +- Level of awareness of the state of the art: degree to which the proposal demonstrates knowledge of current operations and relevant previous R&D +work (both within and outside SESAR), explains how the proposed work will go beyond the state of the art and demonstrates innovation potential. +The proposal's objectives are pertinent to the scope of the work programme responding to the identified R&I need 10. “Innovative methodologies for ATM safety, +security, and resilience.” The proposal is focused on developing methods that will integrate higher airspace operations (HAO) and space transport operations (STO) +into the European ATM framework. However, the objectives of the proposal are only briefly described. This is a shortcoming. +The proposal’s discussion of automation focuses only on the service architecture framework rather than automation level 4 functions. The targeted automation +levels of the proposed service architecture are not adequately specified. This is a shortcoming. +The proposal includes considering and assessing the potential impact of the proposed regulatory evolutions on military aviation, in particular military operations +and training. +The methodology is well-structured and coherent, following logical progression from problem definition and concept development to assurance and regulatory +analysis. It demonstrates awareness of SESAR’s expectations for Exploratory Research at TRL 2, with appropriate reliance on expert review and desk-based +validation rather than prototypes or flight trials. +The proposal initiates at less comprehensive TRL2 than the target TRL. So, the initial TRL is unclear lying between 1 and 2. This is a minor shortcoming. +Research data management is briefly described and appropriately built into the methodology. The data management plan (DMP) is planned early (M3) with an +update at M12 and is embedded in the Project Management Plan (PMP), ensuring findable, accessible, interoperable and reusable (FAIR) data, repository use and +open formats for primarily textual/desk-study outputs in line with open science practices. The gender dimension is considered: there is no gender dimension in the +research content. +There is a clear awareness of the state of the art, and the proposal builds on prior research in the area - SEC-AIRSPACE on cyber security, FARO on resilience +metrics, and FCDI. +Criterion 2 - Impact +Score:  (Threshold: 3 / 5.00 , Weight: - )3.00 + 101290642/STRATUS-28/01/2026-09:52:41 2 / +4 +Associated with document Ref. Ares(2026)968292 - 28/01/2026 + +=== PAGE 3 === +The following aspects will be taken into account, to the extent that the proposed work corresponds to the description in the work programme: +- Credibility of the pathways to achieve the expected outcomes and impacts specified in the call material. +- Suitability and quality of the measures in terms of maximising expected outcomes and impacts, as set out in the dissemination and exploitation +(D&E) plan, including communication activities. +The proposal does not demonstrate methodological depth for ensuring credible, transferable, and measurable results within the SESAR Performance Framework. +This is a shortcoming. +There is insufficient indication of which Key Performance Areas (KPAs) the proposed activities address. The performance metrics and assessment methods are not +adequately defined. This is a shortcoming. +As a result, it is not clear how the project’s outcomes will contribute to measurable improvements in ATM performance or align with SESAR’s overarching +performance ambitions. This hampers the credibility of the expected impact and the traceability of results within the SESAR Innovation Pipeline. This is a +shortcoming. +Broader societal and economic impacts are clearly articulated, even if brief. +The proposal provides only a general outline of the dissemination, communication, and exploitation (DCE) plan. Beyond listing a project website, workshops, and +participation in relevant events, there are insufficient details on objectives, target audiences, key messages, communication channels, or timelines. This is a minor +shortcoming. +The exploitation activities are not adequately described. The strategy for identifying or engaging potential users or for translating project results in concrete uptake +pathways in unclear. The limited level of detail hampers the project’s capacity to maximise visibility, stakeholder engagement, and long-term impact. This is a +shortcoming. +Criterion 3 - Quality and efficiency of the implementation +Score:  (Threshold: 3 / 5.00 , Weight: - )3.40 +The following aspects will be taken into account, to the extent that the proposed work corresponds to the description in the work programme: +- Quality and effectiveness of the work plan and assessment of risks, and appropriateness of the effort assigned to work packages, and the resources +overall. +- Capacity and role of each participant, and the extent to which the consortium as a whole brings together the necessary expertise. +The proposal's work plan deliverables and target dates are consistent with the SESAR 3 JU Project Handbook requirements. +The work packages themselves do not sufficiently include any defined tasks or sub-tasks, which does not provide sufficient details on how the work will be +organised and implemented in practice, who will be responsible for specific activities, and how effort will be distributed among partners. This is a shortcoming. +The insufficiently described tasks hamper the traceability between objectives, activities, and expected outputs, reducing the overall credibility of the implementation +plan and the ability to monitor progress effectively. This is a shortcoming. +The exit maturity gate is specified at M22 with the production of the Exploratory Research Report (ERR, D4.3), although no explicit Exit Maturity Gate is identified +at TRL-2. This is a shortcoming. +Some of the participants have already worked together on relevant projects (i.e., ECHO and ECHO2) - this is evidence of a consortium that has the ingredients to +collaborate well and have the necessary expertise to achieve the proposal objectives. +Scope of the application +Status:  Yes +Comments (in case the proposal is out of scope) +Not provided +Exceptional funding +A third country participant/international organisation not listed in may exceptionally receive funding if the General Annex to the Main Work Programme +their participation is essential for carrying out the project (for instance due to outstanding expertise, access to unique know-how, access to research +infrastructure, access to particular geographical environments, possibility to involve key partners in emerging markets, access to data, etc.). (For more +information, see the ) HE programme guide +Please list the concerned applicants and requested grant amount and explain the reasons why. +Based on the information provided, the following participants should receive exceptional funding: +Not provided +Based on the information provided, the following participants should NOT receive exceptional funding: +Not provided +Use of human embryonic stem cells (hESC) +Status:  No + 101290642/STRATUS-28/01/2026-09:52:41 3 / +4 +Associated with document Ref. Ares(2026)968292 - 28/01/2026 + +=== PAGE 4 === +If YES, please state whether the use of hESC is, or is not, in your opinion, necessary to achieve the scientific objectives of the proposal and the +reasons why. Alternatively, please state if it cannot be assessed whether the use of hESC is necessary or not, because of a lack of information. +Not provided +Use of human embryos +Status:  No +If YES, please explain how the human embryos will be used in the project. +Not provided +Activities excluded from funding +Status:  No +If YES, please explain. +Not provided +Do no significant harm principle +Status:  Yes +If Partially/No/Cannot be assessed please explain +Not provided +Exclusive focus on civil applications +Status:  Yes +If NO, please explain. +Not provided +Artificial Intelligence +Status:  No +If YES, the technical robustness of the proposed system must be evaluated under the appropriate criterion. +Overall comments +Not provided + 101290642/STRATUS-28/01/2026-09:52:41 4 / +4 +Associated with document Ref. Ares(2026)968292 - 28/01/2026 + +=== PAGE 5 === + + +Commission européenne/Europese Commissie, 1049 Bruxelles/Brussel, BELGIQUE/BELGIË - Tel. +32 22991111 + + + + +This electronic receipt is a digitally signed version of the document submitted by your +organisation. Both the content of the document and a set of metadata have been digitally +sealed. +This digital signature mechanism, using a public -private key pair mechanism, uniquely +binds this eReceipt to the modules of the Funding & Tenders Portal of the European +Commission, to the transaction for which it was generated and ensures its full integr ity. +Therefore a complete digitally signed trail of the transaction is available both for your +organisation and for the issuer of the eReceipt. +Any attempt to modify the content will lead to a break of the integrity of the electronic +signature, which can b e verified at any time by clicking on the eReceipt validation +symbol. +More info about eReceipts can be found in the FAQ page of the Funding & Tenders +Portal. +(https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/support/faq) + \ No newline at end of file diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/GA Declaration - GAP-101288550 - 870906450.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/GA Declaration - GAP-101288550 - 870906450.txt new file mode 100644 index 0000000..94d0a53 --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/GA Declaration - GAP-101288550 - 870906450.txt @@ -0,0 +1,183 @@ + + +=== PAGE 1 === +DECLARATION OF HONOUR FOR BENEFICIARIES (DoH) (GRANTS) +I, the undersigned: +for natural persons: in my own name +or +for legal persons1: representing the following entity: +SkyNav Europe +Rue Coppens 16 +Brussels 1000 +Belgium +PIC 870906450 +hereby confirm +that (subject to the additional declarations below): +1 — The information provided for action 101288550 — SCAN is correct and complete. +2 — The information concerning the legal status in the Participant Register for me/my organisation +is correct and complete. +3 — I/my organisation commit to comply2 with the eligibility criteria and all other conditions set +out in the call conditions — for the entire duration of the action. +4 — I/my organisation: +– are committed to participate in the action +– have stable and sufficient sources of funding to maintain the activities throughout the +action and to provide any counterpart funding necessary +– have or will have the necessary resources needed to implement the action +– acknowledge to be fully responsible for my affiliated entities which participate in the +action +– for research actions: are committed to comply with the highest standards of ethical +principles and research integrity and confirm that the work is free of plagiarism +– for actions involving EU classified information (EUCI): acknowledge that any sensitive +information or material that qualifies as EU classified information under Commission +1 This includes ‘entities without legal personality’ under Article 200(2) of Regulation (EU, Euratom) 2024/2509 of the +European Parliament and of the Council of 23 September 2024 on the financial rules applicable to the general budget +of the Union (recast) (‘EU Financial Regulation’) (OJ L, 2024/2509, 26.9.2024). +2 ‘Commit to comply’ means complying now and for the duration of the grant. +1 + +=== PAGE 2 === +Decision 2015/4443 must be handled in accordance with specific rules and follow the +instructions given by the EU +– for coordinators of multi-beneficiary actions: are committed to act as the coordinator for +this action. +5a — For applicants from non-EU countries: I/my organisation: +– undertake to comply with the obligations under the agreement and to: +– respect general principles (including fundamental rights, values and ethical +principles, environmental and labour standards, rules on classified information, +intellectual property rights, visibility of funding and protection of personal data) +– for the submission of financial certificates under the agreement: use qualified external +auditors which are independent and comply with comparable standards as those set +out in EU Directive 2006/43/EC +– for controls under the agreement: allow for checks, reviews, audits and investigations +(including on-the-spot checks, visits and inspections) by the granting authority, the +European Anti-Fraud Office (OLAF), the European Prosecutor’s Office (EPPO) and +the European Court of Auditors (ECA) and any persons mandated by them +– and confirm that: +– we can be subject to the jurisdiction of the Belgian courts. +5b — For applicants which are international organisations: I/my organisation: +– undertake to comply with the obligations under the agreement and to: +– respect general principles (including fundamental rights, values and ethical +principles, environmental and labour standards, rules on classified information, +intellectual property rights, visibility of funding and protection of personal data) +– for the submission of certificates under the agreement: use either independent public +officers or external auditors which comply with comparable standards as those set +out in EU Directive 2006/43/EC +– for controls under the agreement: allow for checks, reviews, audits and investigations +(including on-the-spot checks, visits and inspections) by the granting authority, the +European Anti-Fraud Office (OLAF), the European Prosecutor’s Office (EPPO) and +the European Court of Auditors (ECA) and any persons mandated by them +– acknowledge that nothing in the agreement will be interpreted as a waiver of the +organisation’s privileges or immunities, as accorded by its constituent documents or +international law +– acknowledge that special rules apply concerning applicable law and dispute settlement +3 See Commission Decision 2015/544/EU,Euratom of 13 March 2015 on the security rules for protecting EU classified +information (OJ L 72, 17.3.2015, p. 53). +2 + +=== PAGE 3 === +– acknowledge that if the organisation has concluded a framework agreement with the EU, +it may rely on the provisions set out in that framework agreement, provided that they +do not call into question the decision awarding the agreement or breach the principle of +equal treatment of applicants or beneficiaries. +6 — For applicants which are subject to Articles 138 and 139 of the EU Financial Regulation: I/my +organisation: +– are NOT subject to an administrative sanction (i.e. exclusion or financial penalty +decision)4 +I/my organisation (or persons with unlimited liability for debts): +– are NOT in one of the following exclusion situations5: +– bankrupt, being wound up, having the affairs administered by the courts, entered +into an arrangement with creditors, suspended business activities or subject to any +other similar proceedings or procedures +– in breach of social security or tax obligations +I/my organisation (or persons having powers of representation, decision-making or control, +beneficial owners or persons who are essential for the award/implementation of the action): +– are NOT in one of the following exclusion situations6: +– guilty of grave professional misconduct7 +– committed fraud, corruption, links to a criminal organisation, money laundering, +terrorism-related crimes (including terrorism financing), child labour or human +trafficking +– shown significant deficiencies in complying with main obligations under an EU +procurement contract, grant agreement, prize, expert contract, or similar +– guilty of irregularities within the meaning of Article 1(2) of Regulation +No 2988/95 +– created under a different jurisdiction with the intent to circumvent fiscal, social +or other legal obligations in the country of origin (including creation of another +entity with this purpose). +4 See Article 138 EU Financial Regulation 2024/2509. +5 See Articles 138 and 143 EU Financial Regulation 2024/2509. +6 See Articles 138 and 143 EU Financial Regulation 2024/2509. +7 ‘Professional misconduct’ includes, in particular, the following: violation of ethical standards of the profession; +wrongful conduct with impact on professional credibility; breach of generally accepted professional ethical standards; +false declarations/misrepresentation of information; participation in a cartel or other agreement distorting competition; +violation of IPR; attempting to influence decision-making processes by taking advantage, through misrepresentation, +of a conflict of interests, or to obtain confidential information from public authorities to gain an advantage; incitement +to discrimination, hatred or violence or similar activities contrary to the EU values where negatively affecting or risking +to affect the performance of a legal commitment. +3 + +=== PAGE 4 === +– intentionally and without proper justification resisted 8 an investigation, check or +audit carried out by an EU authorising officer (or their representative or auditor), +OLAF, the EPPO, or the European Court of Auditors. +7 — I/my organisation are NOT subject to a conflict of interest in connection with this grant and +will notify — without delay — any situation which could give rise to a conflict of interests. +8 — I/my organisation have NOT and will NOT, neither directly nor indirectly, grant, seek, obtain +or accept any advantage in connection with this grant that would constitute an illegal practice +or involve corruption. +9 — I/my organisation havenot received any other EU grant for this action and will give notice +of any future EU grants related to this action AND of any EU operating grant(s) 9 given to my +organisation. +10 — I/my organisation are aware that false declarations may lead to rejection, suspension, +termination or reduction of the grant and to administrative sanctions (i.e. financial penalties and/ +or exclusion from all future EU funding, such as grants, tenders, prizes, contribution agreements, +expert contracts, etc). +and acknowledge +that: +1 — The grant will be signed and managed electronically, through the Funding & Tenders Portal +Electronic Exchange System (accessible via your Funding & Tenders Portal account10). +2 — Access and use of this system is subject to the Funding & Tenders Portal Terms & Conditions11. +3 — Personal data submitted or otherwise collected by the EU will be subject to the Funding & +Tenders Portal Privacy Statement12. +4 — Payments under the grant are done at consortium-level, through the coordinator, and will be +automatically lowered if one of the consortium members has outstanding debts towards the +EU (granting authority or other EU bodies). Such debts will be offset in accordance with the +conditions set out in the grant agreement. +8 ‘Resisting an investigation, check or audit’ means carrying out actions with the goal or effect of preventing, hindering +or delaying the conduct of any of the activities needed to perform the investigation, check or audit, such as refusing +to grant the necessary access to its premises or any other areas used for business purposes, concealing or refusing to +disclose information or providing false information. +9 See Article 183 EU Financial Regulation 2024/2509. +10 Available at https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/myarea/projects. +11 Available at https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/common/ftp/tc_en.pdf. +12 Available at https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/support/legalnotice. +4 + +=== PAGE 5 === +SIGNATURE +For the applicant: +[--TGSMark#signature-870906450_75_210--] +5 + +=== PAGE 6 === + + +Commission européenne/Europese Commissie, 1049 Bruxelles/Brussel, BELGIQUE/BELGIË - Tel. +32 22991111 + + + + +This electronic receipt is a digitally signed version of the document submitted by your +organisation. Both the content of the document and a set of metadata have been digitally +sealed. +This digital signature mechanism, using a public -private key pair mechanism, uniquely +binds this eReceipt to the modules of the Funding & Tenders Portal of the European +Commission, to the transaction for which it was generated and ensures its full integr ity. +Therefore a complete digitally signed trail of the transaction is available both for your +organisation and for the issuer of the eReceipt. +Any attempt to modify the content will lead to a break of the integrity of the electronic +signature, which can b e verified at any time by clicking on the eReceipt validation +symbol. +More info about eReceipts can be found in the FAQ page of the Funding & Tenders +Portal. +(https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/support/faq) + \ No newline at end of file diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/Invitation Letter including the information out of ranking.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/Invitation Letter including the information out of ranking.txt new file mode 100644 index 0000000..57f760d --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/Invitation Letter including the information out of ranking.txt @@ -0,0 +1,80 @@ + + +=== PAGE 1 === +Ovidiu DUMITRACHE +EUROCONTROL - EUROPEAN +ORGANISATION FOR THE SAFETY OF +AIR NAVIGATION +Rue de la Fusée 96 +1130 BRUXELLES +BELGIUM +Subject: Horizon Europe (HORIZON) +Call: HORIZON-SESAR-2025-DES-IR-02 +Project: 101288550 — SCAN +GAP invitation letter +Dear Applicant, +I am writing in connection with your proposal for the above-mentioned call. +Having completed the evaluation, we are pleased to inform you that your proposal has passed this +phase and that we would now like to start grant preparation. +Please find enclosed the evaluation summary report (ESR) for your proposal. +Invitation to grant preparation +Grant preparation will be based on the following: +1. Project: +Project number and name: 101288550 — SCAN +Topic: HORIZON-SESAR-2025-DES-IR-02-WA3-2 — Enhanced CNS capabilities +Type of action: HORIZON JU Research and Innovation Actions +Requested grant amount (proposal): 9 686 590.70 EUR +Maximum grant amount (after evaluation): 9 686 590.70 EUR +Project duration: 36 months +2. Timetable and deadlines: +Preparation of grant data and annexes: 3 weeks after receiving this letter +Declaration of honour (DoH): 6 weeks after receiving this letter +Signature: within 3 months after receiving this letter (planned date) +1 +Ref. Ares(2026)1020943 - 29/01/2026 + + +=== PAGE 2 === +The grant agreement data and annexes (description of the action, estimated budget, etc.) must be based on the +proposal you submitted and the clarifications we requested (if any). You may normally NOT make changes to the +project/project budget/consortium composition (except if required by us). Please immediately inform your project +officer if you need to make a change (e.g. bankruptcy, etc.). +Once we have checked the information you have encoded, you will have 2 weeks to submit your final version +— to bring it in line with our comments. +3. Participant Register +All partners participating as beneficiaries or affiliated entities must be registered and validated in the Participant +Register. +Please note that some of your legal and financial data in this Register is read-only and can be updated only by +a LEAR (via the Portal My Organisation(s) page). If you do not already have one, we will contact you soon for +their nomination. +4. How to contact us +Project officer: Nefeli POLITI STERGIOU +Grant preparation and grant signature will be done exclusively through the Funding & Tenders Portal (login via +your Portal account). The Portal allows you to upload documents, send Messages and Formal Notifications. Avoid +contacting us via other means (email, letter, etc.); this will allow us to keep the full project file all in the same place. +Please note that affiliated entities cannot directly access the Portal Grant Management System; grant preparation +will therefore have to be done by their beneficiaries for them. +5. Other +Detailed guidance on the Grant Agreement Preparation steps will follow up within the next 2 weeks at latest. +For more information on grant preparation, see the Online Manual. + Please note that this letter does NOT constitute a formal commitment for funding . The final +decision on your project (including the grant amount to be awarded) can be taken only later, when we +have finalised grant preparation and the checks that still need to be done (LEAR appointment, legal +entity validation, financial capacity assessment, non-exclusion check, ethics review, security review, +etc.). +We will try to proceed as swiftly as possible, but we rely on your good cooperation. If you do not +reply to our requests or repeatedly miss grant preparation deadlines, we will consider that you are no +longer interested in our grant (and reject your proposal). +More information on the evaluation of the call is published in a topic update in the Funding & Tenders +Portal. +I would be grateful if you could inform everyone involved in your proposal of this letter. +For any questions, please contact us via your Funding & Tenders Portal account > My Project(s) > +Actions > Manage Project > Process communications. +2 + +=== PAGE 3 === +Yours faithfully, +Andreas BOSCHEN +Executive Director +Enclosure: Evaluation summary report (ESR) +3 \ No newline at end of file diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/QUANTAIR Proposal-SEP-211215087.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/QUANTAIR Proposal-SEP-211215087.txt new file mode 100644 index 0000000..115dd04 --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/QUANTAIR Proposal-SEP-211215087.txt @@ -0,0 +1,2838 @@ + + +=== PAGE 1 === +Administrative forms +Page 1 of 33 Last saved 17/09/2025 06:50Horizon Europe ver 1.00 20241022 +Call: HORIZON-SESAR-2025-DES-ER-03 + (Digital European Sky Exploratory Research 03) +Topic: HORIZON-SESAR-2025-DES-ER-03-WA1-3 +Type of Action: HORIZON-JU-RIA + (HORIZON JU Research and Innovation Actions) +Proposal number: 101289612 +Proposal acronym: QUANTAIR +Type of Model Grant Agreement: HORIZON Lump Sum Grant +Table of contents +Section Title Action +1 General information +2 Participants +3 Budget +4 Ethics and security +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 2 === +Administrative forms +Page 2 of 33 +Proposal ID 101289612 +Acronym QUANTAIR +Horizon Europe ver 1.00 20241022 Last saved 17/09/2025 06:50 +1 - General information +Fields marked * are mandatory to fill. +Topic HORIZON-SESAR-2025-DES-ER-03-WA1-3 +Type of Model Grant Agreement HORIZON-AG-LS +Type of Action HORIZON-JU-RIA +Call HORIZON-SESAR-2025-DES-ER-03 +Acronym QUANTAIR +Proposal title Quantum Technologies for Airspace Innovation and Resilience +Note that for technical reasons, the following characters are not accepted in the Proposal Title and will be removed: < > " & +Duration in +months 24 +Free keywords +Quantum Federated Learning, Quantum Machine Learning, Data Security, Privacy preservation, Demand Capacity +Balancing, ETOT optimisation, Improve Predictability of ATM operations +Abstract * +European air traffic management is becoming increasingly complex. The system now has to handle a growing variety of airspace +users — from hypersonic vehicles and high-altitude long-endurance platforms such as stratospheric balloons and HAPS, to +conventional subsonic flights. These vehicles often operate in overlapping altitude bands but have vastly different speeds, climb/ +descent profiles, and manoeuvring capabilities. + +At the same time, environmental policy drivers are stronger than ever. The EU Green Deal, ICAO’s long-term aspirational goals, and +national climate strategies are pushing for measurable reductions in both CO₂ and non-CO₂ impacts, such as persistent contrails. +Resilience has also become a priority, with the network increasingly affected by severe weather, technical failures, and geopolitical +events that can close or restrict airspace at short notice. + +One of the biggest technical challenges in all of these contexts is that many stakeholders — States, ANSPs, airlines, and defence +operators — cannot freely share operationally, privacy, or commercially sensitive data. Without that data, current modelling and +optimisation tools have to work with partial information, limiting their effectiveness. + +Previous European research has already demonstrated that Federated Learning (FL) can bridge this gap, enabling accurate +predictions without requiring data to leave its origin. QUANTAIR proposes to take this further by pairing FL with quantum +optimisation — allowing us to integrate richer, privacy-protected data from multiple stakeholders, and then solve the resulting large- +scale, multi-variable problems at speeds suitable for operational decision-making. +Remaining characters 315 +Has this proposal (or a very similar one) been submitted in the past 2 years in response to a call for + proposals under any EU programme, including the current call? +Yes No +Please give the proposal reference or contract number. +Previously submitted proposals should be with either 6 or 9 digits. +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 3 === +Administrative forms +Page 3 of 33 +Proposal ID 101289612 +Acronym QUANTAIR +Horizon Europe ver 1.00 20241022 Last saved 17/09/2025 06:50 +Declarations +Field(s) marked * are mandatory to fill. +1) We declare to have the explicit consent of all applicants on their participation and on the content of this proposal. * +2) We confirm that the information contained in this proposal is correct and complete and that none of the project +activities have started before the proposal was submitted (unless explicitly authorised in the call conditions). * +3) We declare: + - to be fully compliant with the eligibility criteria set out in the call + - not to be subject to any exclusion grounds under the EU Financial Regulation 2018/1046 + - to have the financial and operational capacity to carry out the proposed project. * +4) We acknowledge that all communication will be made through the Funding & Tenders Portal +electronic exchange system and that access and use of this system is subject to the Funding & Tenders Portal Terms +and Conditions. * +5) We have read, understood and accepted the Funding & Tenders Portal Terms & Conditions and +Privacy Statement that set out the conditions of use of the Portal and the scope, purposes, retention periods, etc. for +the processing of personal data of all data subjects whose data we communicate for the purpose of the application, +evaluation, award and subsequent management of our grant, prizes and contracts (including financial transactions and +audits). * +6) We declare that the proposal complies with ethical principles (including the highest standards of research integrity +as set out in the ALLEA European Code of Conduct for Research Integrity, as well as applicable international and +national law, including the Charter of Fundamental Rights of the European Union and the European Convention on +Human Rights and its Supplementary Protocols. Appropriate procedures, policies and structures are in place to foster +responsible research practices, to prevent questionable research practices and research misconduct, and to handle +allegations of breaches of the principles and standards in the Code of Conduct. * +7) We declare that the proposal has an exclusive focus on civil applications (activities intended to be used in military +application or aiming to serve military purposes cannot be funded). If the project involves dual-use items in the sense +of Regulation 2021/821, or other items for which authorisation is required, we confirm that we will comply with the +applicable regulatory framework (e.g. obtain export/import licences before these items are used). * +8) We confirm that the activities proposed do not +- aim at human cloning for reproductive purposes; +- intend to modify the genetic heritage of human beings which could make such changes heritable + (with the exception of research relating to cancer treatment of the gonads, which may be financed), or +- intend to create human embryos solely for the purpose of research or for the purpose of stem + cell procurement, including by means of somatic cell nuclear transfer. +- lead to the destruction of human embryos (for example, for obtaining stem cells) +These activities are excluded from funding. * +9) We confirm that for activities carried out outside the Union, the same activities would have been allowed in at least +one EU Member State. * +10) For Lump Sum Grants with a detailed budget table: We understand and accept that the EU lump sum grants must +be reliable proxies for the actual costs of a project and confirm that the detailed budget for the proposal has been +established in accordance with our usual cost accounting practices and in compliance with the basic eligibility +conditions for EU actual cost grants (see AGA - Annotated Grant Agreement, art 6) and exclude costs that are ineligible +under the Programme. Purchases and subcontracting costs must be done taking into account best value for money +and must be free of conflict of interest. * +The coordinator is only responsible for the information relating to their own organisation. Each applicant remains responsible for the information declared for +their organisation. If the proposal is retained for EU funding, they will all be required to sign a declaration of honour. +False statements or incorrect information may lead to administrative sanctions under the EU Financial Regulation. +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 4 === +Administrative forms +Page 4 of 33 +Proposal ID 101289612 +Acronym QUANTAIR +Horizon Europe ver 1.00 20241022 Last saved 17/09/2025 06:50 +2 - Participants +List of participating organisations +# Participating Organisation Legal Name Country Role Action +1 DEUTSCHES ZENTRUM FUR LUFT - UND RAUMFAHRT EV Germany Coordinator +2 Qoro Quantum Ltd UK Partner +3 SkyNav Europe BE Partner +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 5 === +Administrative forms +Page 5 of 33 Last saved 17/09/2025 06:50 +Organisation data +PIC +999981731 +Legal name +DEUTSCHES ZENTRUM FUR LUFT - UND RAUMFAHRT EV +Short name: DLR + +Address +Town KOLN +Postcode 51147 +Street LINDER HOHE +Country Germany +Webpage www.dlr.de +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 03/01/2022 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... 28/10/2008 - no +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 6 === +Administrative forms +Page 6 of 33 Last saved 17/09/2025 06:50 +Departments carrying out the proposed work +Department 1 +Department name Space Operations and Astronaut Training +Street Münchener Straße 20 +Town Oberpfaffenhofen-Weßling +Same as proposing organisation's address +not applicable +Country Germany +Postcode 82234 +Links with other participants +Type of link Participant +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 7 === +Administrative forms +Page 7 of 33 Last saved 17/09/2025 06:50 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Andreas Last name* Spörl +E-Mail* andreas.spoerl@dlr.de +Town Oberpfaffenhofen-Weßling Post code 82234 +Street Münchener Straße 20 +Website Please enter website +Position in org. group lead +Department Space Operations and Astronaut Training +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country Germany +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Catharina Broocks catharina.broocks@dlr.de +xxx xxxxxxxxx +Sylvia Hutzschenreuter sylvia.hutzschenreuter@dlr.de +xxx xxxxxxxxx +Mirjam Kopp mirjam.kopp@dlr.de +xxx xxxxxxxxx +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 8 === +Administrative forms +Page 8 of 33 Last saved 17/09/2025 06:50 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr Andreas Spörl Man Germany andreas.spoerl@ +dlr.de Category B Senior resea Leading 0009-0003-0727- +440X +Orcid ID +Ms Catharina Broocks Woman Germany catharina.broock +s@dlr.de +Category D First stage r Team member 0000-0002-4965- +1934 +Orcid ID +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 9 === +Administrative forms +Page 9 of 33 Last saved 17/09/2025 06:50 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 10 === +Administrative forms +Page 10 of 33 Last saved 17/09/2025 06:50 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +"Evolving Spacecraft Quantum On-Call Scheduling" (Prüfer S., Sajko W. et al (DLR), +SpaceOps-2023, ID 388) explores applying Grover's algorithm on quantum computers to +optimize a simplified operator shift scheduling problem at the German Space Operations +Center (GSOC). The study of this combinatorial optimization problem improves constraint +handling and achieves reduced gate costs of up to 90%. While focused on spacecraft, these +methods are also applicable to other scheduling tasks. +Publication +"QUARGS – Quantum Reinforced Ground Station Scheduling" (Leidreiter D. A., Petrak A., et al +(DLR); SpaceOps-2025; ID 267) investigates the application of quantum computing to optimize +ground station scheduling for satellite operations. It introduces the QUARGS library that +utilizes quantum algorithms like QAOA, QA, VQE, and E-VQE. The study compares these +methods to classical solvers and addresses challenges in scalability and constraint +implementation. +Publication +“QEOPS – Quantum Earth Observation Planning System” (Prüfer S., Anderle M. A. (DLR); IWPSS +2025) discusses a spacecraft mission planning use-case from the Quantum Mission Planning +Challenges (QMPC) project by the German Quantum Computing Initiative at DLR. It formalizes +the problem as an Integer Linear Programming (ILP) task, shares insights from applying +quantum computing, and compares early results between classical solvers and quantum +optimization algorithms. +Software +QUEASARS - Quantum Evolving Ansatz Variational Solver (Leidreiter D. A., Prüfer S. (DLR), +https://github.com/DLR-RB/QUEASARS) is an open-source, qiskit-based, python package +implementing quantum variational eigensolvers which use evolutionary algorithms to find a +good ansatz during the optimization process, like E-VQE, MoG-VQE or QNEAT. Currently only +EVQE is implemented. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +QMPC +Quantum Mission Planning Challenges (QMPC) is a DLR QCI project (Nov�2022–Oct�2026) +developing quantum algorithms to solve real-world mission planning optimization problems +such as on call operator scheduling, ground station contact planning, and earth observation +acquisition for the German Space Operations Center (GSOC). It integrates hybrid and quantum +methods into GSOC workflows and extends to a Vehicle to Grid use case with the project +partner E.ON. +MuQuaNet +MuQuaNet (Munich Quantum Network) is a QKD-based quantum network in Munich, +enabling secure communication for research and government use. Within it, DLR’s QSOC +integrates QKD into space operations by linking GSOC to the network and testing quantum- +encrypted data transmission. These efforts support future QKD-based space missions and +extend QSOC's role from quantum computing to secure quantum communication. +QAthMOS +QAthMOS (Quantum Telemetry and Health Monitoring System) is a QSOC led project aiming +to enhance satellite operations via quantum powered anomaly detection and predictive +analytics on telemetry data. It applies quantum machine learning techniques to monitor +satellite health, detect irregularities, and forecast issues—advancing the integration of +quantum technologies into operational spaceflight systems. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 11 === +Administrative forms +Page 11 of 33 Last saved 17/09/2025 06:50 +Quantum computers and +Simulators +Our connection to the DLR-QCI (Quantum Computing Initiative) allows access to a variety of +quantum computers and simulators based on different quantum hardware platforms. Small +scaled demo examples can therefore be computed and executed on actual quantum +hardware. +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 12 === +Administrative forms +Page 12 of 33 Last saved 17/09/2025 06:50 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 13 === +Administrative forms +Page 13 of 33 Last saved 17/09/2025 06:50 +PIC +870017348 +Legal name +Qoro Quantum Ltd +Short name: Qoro Quantum Ltd + +Address +Town Harwell +Postcode OX11 0QX +Street R27 Atlas Building, Fermi Avenue, +Country United Kingdom +Webpage https://qoro.uk +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 18/08/2025 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 14 === +Administrative forms +Page 14 of 33 Last saved 17/09/2025 06:50 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 15 === +Administrative forms +Page 15 of 33 Last saved 17/09/2025 06:50 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Stephen Last name* DiAdamo +E-Mail* stephen@qoroquantum.de +Town Harwell Post code OX11 0QX +Street R27 Atlas Building, Fermi Avenue, +Website www.qoroquantum.net +Position in org. CTO & Co-Founder +Department Qoro Quantum Ltd +Phone +4915254519041 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country United Kingdom +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Dan Holme dan@qoro.uk +xxx xxxxxxxxx +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 16 === +Administrative forms +Page 16 of 33 Last saved 17/09/2025 06:50 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr Stephen DiAdamo Man Italy stephen@qoroqu +antum.uk Category B Senior resea Leading 0000-0001-5758- +9563 +Orcid ID +Ms Amana Liaqat Woman United Kingdom amana@qoroqua +ntum.uk +Category C Recognised Team member +Mr Dan Holme Man United Kingdom dan@qoro.uk Category C Recognised Leading +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 17 === +Administrative forms +Page 17 of 33 Last saved 17/09/2025 06:50 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 18 === +Administrative forms +Page 18 of 33 Last saved 17/09/2025 06:50 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +"QAOA in Quantum Datacenters: Parallelization, Simulation, and Orchestration." 2025 IEEE +International Conference on Quantum Software, 2025. Introduces Qoro’s architecture for +automated quantum software execution across distributed computing networks. +Demonstrates orchestration strategies that parallelize workloads and allocate resources +dynamically, critical foundations for federated quantum computing. +Publication +"Practical quantum k-means clustering: Performance analysis and applications in energy grid +classification." IEEE Transactions on Quantum Engineering 3, 2022. Demonstrates hardware- +aware quantum machine learning methods, showing performance gains when hardware +constraints are integrated into software design. Provides evidence for scaling machine +learning and optimization workloads over heterogeneous quantum-classical infrastructures. +Publication + "Quantum algorithms and simulation for parallel and distributed quantum computing." 2021 +IEEE/ACM Second International Workshop on Quantum Computing Software. IEEE, 2021. +Presents a software framework for parallel execution of quantum algorithms across clusters. +Lays groundwork for distributed execution models, including federated approaches used in +this project. +Software +Qoro's Divi. Divi is a Python-based software development kit that builds and parallelizes +quantum programs. It partitions tasks and transmits them to distributed compute resources +through Composer, enabling large-scale workloads such as optimization and machine +learning. It supports hybrid execution, key to federated computing. +Software +Qoro's Composer. Composer is a scheduling and orchestration engine that dynamically selects +resources for distributed workloads. It evaluates real-time network and device conditions to +route jobs efficiently, forming the backbone of federated learning and computation in hybrid +HPC-quantum environments. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ESA Business Incubation +Selected for ESA’s incubation program, Qoro applied Divi and Composer to satellite +communications optimization. Demonstrated distributed computing and task partitioning +over satellite constellations, proving the scalability and adaptability of our approach for +mission-critical environments. +Pilot projects with HPC centers +In partnership with CESGA, we deployed Composer to orchestrate quantum-classical +workloads over HPC nodes, integrating security and scheduling for multi-node execution. This +work validated interoperability across heterogeneous systems and demonstrated scaling +strategies relevant to air traffic management. +Pilot projects with Enterprise +Collaborated with enterprise partners (e.g., E.ON, Multiverse Computing) to integrate Divi into +energy and finance workflows. Showcased parallelization and partitioning of real-world +optimization problems over hybrid clusters, demonstrating readiness to bring federated +models to complex industries. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +Qoro's cloud computing service +A scalable cloud platform hosting Qoro’s distributed orchestration stack, enabling +deployment, benchmarking, and execution of federated quantum-classical workloads across +multiple sites. +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 19 === +Administrative forms +Page 19 of 33 Last saved 17/09/2025 06:50 +Qoro's GPU-based quantum +simualator +High-performance GPU-accelerated simulator for quantum circuits, optimized for batch +execution and hybrid workflows, enabling realistic modeling of large-scale federated +computing scenarios. +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 20 === +Administrative forms +Page 20 of 33 Last saved 17/09/2025 06:50 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 21 === +Administrative forms +Page 21 of 33 Last saved 17/09/2025 06:50 +PIC +870906450 +Legal name +SkyNav Europe +Short name: SkyNav Europe + +Address +Town Brussels +Postcode 1000 +Street Rue Coppens 16 +Country Belgium +Webpage www.skynavintl.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 27/09/2024 - yes +SME self-assessment ........................................... 27/09/2024 - yes +SME validation ...................................................... unknown +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 22 === +Administrative forms +Page 22 of 33 Last saved 17/09/2025 06:50 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 23 === +Administrative forms +Page 23 of 33 Last saved 17/09/2025 06:50 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Ben Last name* Kings +E-Mail* ben.kings@skynavintl.com +Town Brussels Post code 1000 +Street Rue Coppens 16 +Website https://skynavintl.com/ +Position in org. Managing Director/Owner +Department SkyNav Europe +Phone +31615625092 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Belgium +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Duncan Auld duncan.auld@skynavintl.com +xxx xxxxxxxxx +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 24 === +Administrative forms +Page 24 of 33 Last saved 17/09/2025 06:50 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Ben Kings Man ben.kings@skyna +vintl.com Category A Top grade reLeading +Mr Duncan Auld Man duncan.auld@sky +navintl.com +Category A Top grade reLeading +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 25 === +Administrative forms +Page 25 of 33 Last saved 17/09/2025 06:50 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 26 === +Administrative forms +Page 26 of 33 Last saved 17/09/2025 06:50 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Service +Operational ATM experience +Decades of global, operational Air Traffic Control experience across all ATC disciplines (Tower, +Approach, Area, Oceanic) and at all function levels. Operational supervision, flow +management, training, training management, safety and technical committee +representation, operational procedure development, international cross-border negotiations, +airspace design, safety risk assessments and environmental impact studies +Service +Project Management & Leadership Expertise +Extensive track record in project and organisational leadership, including executive roles +within IFATCA (International Federation of Air Traffic Controllers’ Associations). Demonstrated +ability to manage complex international initiatives, coordinate diverse stakeholders, and +oversee multi-million-euro budgets. Proven experience in steering strategic aviation projects, +ensuring delivery of innovative outcomes aligned with European policy & industry need +Service +ECHO2 subcontractor +Participation in the ECHO2 consortium as a contractor focusing on higher airspace and space +transport integration. Contributions include operational concept refinement, validation +planning, stakeholder mapping, and alignment with ANSP procedures and Network functions. +The work informs scalable approaches for trajectory management and airspace reservations. +Includes project management and deliverable lead. +Service +ICAO drafting and representation +Contributed to drafting and review activities at ICAO in relation to Annex 11, Annex 10 and +PANS-ATM material. Work includes requirements structuring, procedure text, and consistency +checks across datasets and guidance, supporting globally harmonised ATM provisions +relevant to STO and HAO integration. Leading working groups on ATM planning & +implementation, development of Global ATM Operational Concept, development of Aviation +System Block Upgrades +Service +State regulatory drafting and representation +Several years of regulatory drafting support for a Gulf State authority, updating national civil +aviation regulations, AMC/GM-style guidance and implementation procedures across ANS, +operations and oversight. Emphasis on practicality, traceability and alignment with ICAO and +regional provisions. Leadership of ICAO regional groups and task forces related to integration +of space transport activities. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SESAR ECHO / ECHO2 – HAO +Integration +Participation in ECHO and ECHO2 on higher airspace and space transport integration. Roles +covered operational scenarios, requirements traceability, validation planning, stakeholder +engagement and alignment with EUROCONTROL and ICAO practices for cross-border +coordination and dynamic, minimal-impact airspace management. +iNEO – Project Management Plan +& Governance Appr. +Development of a rigorous PMP and governance model for multi-partner R&D, covering +schedule baselining, risk and compliance, quality assurance, and reporting. The approach +underpins efficient WP coordination and is directly reusable for other HORIZON projects. +UAE National Regulations +Development Programme +Regulatory drafting support for a Gulf State authority, updating national civil aviation +regulations, AMC/GM-style guidance and implementation procedures across ANS, operations +and oversight. Emphasis on practicality, traceability and alignment with ICAO and regional +provisions. +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 27 === +Administrative forms +Page 27 of 33 Last saved 17/09/2025 06:50 +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment Short description (Max 300 characters) +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 28 === +Administrative forms +Page 28 of 33 Last saved 17/09/2025 06:50 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 29 === +Administrative forms +Page 29 of 33 +Proposal ID 101289612 +Acronym QUANTAIR +Horizon Europe ver 1.00 20241022 Last saved 17/09/2025 06:50 +3 - Budget +No Name of Beneficiary Country Role Requested grant +amount + Income generated +by the action +Financial +contributions + Own resources Total estimated +income +1 Deutsches Zentrum Fur Luft - Und Raumfahrt Ev DE Coordinator 167 350.00 0 0 0 167 350.00 +2 Qoro Quantum Ltd UK Partner 435 086.16 0 0 20 000 455 086.16 +3 Skynav Europe BE Partner 342 890.63 0 0 0 342 890.63 +Total 945 326.79 20 000 +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 30 === +Administrative forms +Page 30 of 33 +Proposal ID 101289612 +Acronym QUANTAIR +Horizon Europe ver 1.00 20241022 Last saved 17/09/2025 06:50 +4 - Ethics & security +Ethics Issues Table +1. Human Embryonic Stem Cells and Human Embryos Page +Does this activity involve Human Embryonic Stem Cells (hESCs)? Yes No +Does this activity involve the use of human embryos? Yes No +2. Humans Page +Does this activity involve human participants? Yes No +Does this activity involve interventions (physical also including imaging technology, +behavioural treatments, etc.) on the study participants? Yes No +Does this activity involve conducting a clinical study as defined by the Clinical Trial Regulation +(EU 536/2014)? (using pharmaceuticals, biologicals, radiopharmaceuticals, or advanced +therapy medicinal products) +Yes No +3. Human Cells / Tissues (not covered by section 1) Page +Does this activity involve the use of human cells or tissues? Yes No +4. Personal Data Page +Does this activity involve processing of personal data? Yes No +Does this activity involve further processing of previously collected personal data (including +use of preexisting data sets or sources, merging existing data sets)? +Yes No +Is it planned to export personal data from the EU to non-EU countries? Yes No +Is it planned to import personal data from non-EU countries into the EU or from a non-EU +country to another non-EU country? +Yes No +Does this activity involve the processing of personal data related to criminal convictions or +offences? +Yes No +5. Animals Page +Does this activity involve animals? Yes No +6. Non-EU Countries Page +Will some of the activities be carried out in non-EU countries? Yes No 0 +United Kingdom +In case non-EU countries are involved, do the activities undertaken in these countries raise +potential ethics issues? Yes No +It is planned to use local resources (e.g. animal and/or human tissue samples, genetic material, +live animals, human remains, materials of historical value, endangered fauna or flora samples, +etc.)? +Yes No +Is it planned to import any material (other than data) from non-EU countries into the EU or +from a non-EU country to another non-EU country? For data imports, see section 4. Yes No +Is it planned to export any material (other than data) from the EU to non-EU countries? For +data exports, see section 4. Yes No +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 31 === +Administrative forms +Page 31 of 33 +Proposal ID 101289612 +Acronym QUANTAIR +Horizon Europe ver 1.00 20241022 Last saved 17/09/2025 06:50 +Does this activity involve low and/or lower middle income countries, (if yes, detail the benefit- +sharing actions planned in the self-assessment) Yes No +Could the situation in the country put the individuals taking part in the activity at risk? Yes No +7. Environment, Health and Safety Page +Does this activity involve the use of substances or processes that may cause harm to the +environment, to animals or plants.(during the implementation of the activity or further to the +use of the results, as a possible impact) ? +Yes No +Does this activity deal with endangered fauna and/or flora / protected areas? Yes No +Does this activity involve the use of substances or processes that may cause harm to humans, +including those performing the activity.(during the implementation of the activity or further +to the use of the results, as a possible impact) ? +Yes No +8. Artificial Intelligence Page +Does this activity involve the development, deployment and/or use of Artificial Intelligence- +based systems? Yes No 0 +9. Other Ethics Issues Page +Are there any other ethics issues that should be taken into consideration? Yes No +I confirm that I have taken into account all ethics issues above and that, if any ethics issues apply, I will complete the +ethics self-assessment as described in the guidelines How to Complete your Ethics Self-Assessment +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 32 === +Administrative forms +Page 32 of 33 +Proposal ID 101289612 +Acronym QUANTAIR +Horizon Europe ver 1.00 20241022 Last saved 17/09/2025 06:50 +Ethics Self-Assessment +Ethical dimension of the objectives, methodology and likely impact +6. Non-EU Countries +Will some of the activities be carried out in non-EU countries? + +Parts of the research is carried out in UK. The work is of documentary type. +No impacts and/or misuses on environment, social or political groups are expected. + + +8. Artificial intelligence +Does this activity involve the development, deployment and/or use of Artificial Intelligence-based systems? +Yes, first for text generation and second, because the project elaborates on concepts (quantum) machine learning approaches. + +Remaining characters 4491 +Compliance with ethical principles and relevant legislations +6. Non-EU Countries +Due to the involvement of UK as non-EU country, the project confirms compliance to the highest ethical standards. +All research conducted (in either EU Memberstates or UK) will be of legal type in all mentioned countries. + + +8. Artificial intelligence +QUANTAIR’s actively integrates privacy, safety, fairness, environmental responsibility, dual-use safeguards, and transparency into its +objectives. Wherever AI is used, it only contributes as a prelimenary step for further verfication. + + +Remaining characters 4492 +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 33 === +Administrative forms +Page 33 of 33 +Proposal ID 101289612 +Acronym QUANTAIR +Horizon Europe ver 1.00 20241022 Last saved 17/09/2025 06:50 +Security issues table +1. EU Classified Information (EUCI)2 Page +Does this activity involve information and/or materials requiring protection against +unauthorised disclosure (EUCI)? Yes No +Does this activity involve non-EU countries which need to have access to EUCI? Yes No +2. Misuse Page +Does this activity have the potential for misuse of results? Yes No +3. Other Security Issues Page +Does this activity involve information and/or materials subject to national security restrictions? +If yes, please specify: (Maximum number of characters allowed: 1000) +Yes No +Are there any other security issues that should be taken into consideration? +If yes, please specify: (Maximum number of characters allowed: 1000) +Yes No +Security self-assessment +(No Security Issue was marked with Yes) +Remaining characters 4961 +2According to the Commission Decision (EU, Euratom) 2015/444 of 13 March 2015 on the security rules for protecting EU classified information, “European Union +classified information (EUCI) means any information or material designated by an EU security classification, the unauthorised disclosure of which could cause varying +degrees of prejudice to the interests of the European Union or of one or more of the Member States”. +3Classified background information is information that is already classified by a country and/or international organisation and/or the EU and is going to be used by the +project. In this case, the project must have in advance the authorisation from the originator of the classified information, which is the entity (EU institution, EU Member +State, third state or international organisation) under whose authority the classified information has been generated. +4EU classified foreground information is information (documents/deliverables/materials) planned to be generated by the project and that needs to be protected from +unauthorised disclosure. The originator of the EUCI generated by the project is the European Commission. +This proposal version was submitted by Andreas Spörl on 16/09/2025 11:51:52 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 34 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 1 of 50 + +Proposal template Part B: technical description +QUANTAIR +[This document is tagged. Do not delete the tags; they are needed for processing.] #@APP-FORM-HERIAIA@# +List of participants +Participant No. * Participant organisation name Country +1 (Coordinator) Deutsches Zentrum für Luft- und Raumfahrt (DLR e.V.) Germany +2 Qoro Quantum United Kingdom +3 SkyNav International Belgium + + +1. Excellence #@REL-EVA-RE@# +1.1 Objectives and ambition #@PRJ-OBJ-PO@# +QUANTAIR investigates the feasibility of applying Quantum Federated machine Learning (QFL) to Air Traffic +Management (ATM) at TRL 1. Federated Machine Learning (FedML) is a distributed approach in which models are +trained across multiple independent data sources without requiring the exchange of raw data. This is of clear relevance +to ATM, where operational datasets are fragmented across various stakeholders such as airlines, ANSPs, airports, +and regulators, and where data protection, confidentiality, and sovereignty considerations prevent centralisation. +Quantum computing is still at an early stage and cannot yet be used in operational systems. However, research in +other fields suggests that certain quantum algorithms can eventually provide advantages when dealing with very large +or complex problems, such as those involving many interdependent variables [1]. FedML, by contrast, is already a +recognised approach that allows different stakeholders to train models collaboratively without sharing their raw data +[2]. In QUANTAIR, the focus is on exploring the feasibility of combining FedML with the capabilities of Quantum +computing for ATM at TRL 1. +The project aims to provide the first structured assessment of QFL for ATM. Its contribution is not the development +of prototypes or operational tools, but rather the creation of a conceptual and methodological foundation on which +future SESAR research can build. QUANTAIR clarifies whether QFL represents a promising research direction for +ATM, defines the conditions under which it might deliver benefits, estimates quantum resources, and identifies the +steps required to advance to TRL 2–3. The previous work by EUROCONTROL for the SESAR programme, called +AICHAIN [3], proved that classical federated learning (FL) can improve ATM predictions such as ETOT and route +forecasting without requiring sensitive data to be centralised. This showed clear value in applying FedML to +fragmented, confidential datasets across airline s, ANSPs, and airports. However, classical FedML faces limits as +ATM problems grow in size and complexity. Multi-flight trajectory optimisation, higher airspace operations, contrail +modelling, and large -scale disruption management create exponential decisi on spaces and high -dimensional data +where classical methods struggle. +QFL offers a pathway beyond these constraints. Quantum machine learning and sampling techniques could improve +scalability and trainability, speed up convergence, and capture correlations that classical FedML may miss [4]. They +also enable richer modelling of rare but safety -critical events, strengthening resilience. The benefit is twofold: +immediate applicability through privacy-preserving FedML, and long-term potential to exploit quantum acceleration +once hardware matures. This positions QFL as both a natu ral evolution of AICHAIN’s work and a future -proofed +approach aligned with SESAR’s digital and green ATM priorities [5]. By targeting ATM, the project provides a + +=== PAGE 35 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 2 of 50 + +demanding testbed for QFL. ATM data is fragmented across many stakeholders, highly sensitive, and time-critical, +which pushes QFL beyond simpler academic demonstrations. Developing the ATM use cases will expose how QFL +copes with heterogeneous datasets, pr ivacy constraints, and multi -objective optimisation. These lessons will be +transferable to other sectors that face similar challenges, such as energy grids, healthcare networks, or logistics chains +[1]. The project also clarifies where quantum methods add value beyond classical FL, for example in scaling federated +models, simulating rare events, or solving complex optimisation problems. In doing so, it creates benchmarks, +reference architectures, and research roadmaps that the wider QFL community can build upon. The outputs therefore +go beyond ATM: they define generic methods, highlight open technical questions, and establish a foundation for +advancing QFL across domains. +To achieve the project objectives, the work is organised around four Exploratory Cases, each representing a distinct +ATM challenge. +• PREDICT (Privacy-Respecting Enhanced Departure Integration with Coordinated Timing ) focuses +on departure predictability and slot allocation. Today, flight departure times are subject to frequent +uncertainty, creating knock -on effects for network efficiency and traffic flow management. The case +investigates whether federated models train ed across multiple stakeholders could improve A -CDM +performance in areas such as estimate accuracy (Estimated Take-Off Time (ETOT), Target Take-Off Time +(TTOT), etc.) and CTOT regula tion application (supporting the SESAR goal of reduced CTOT allocation +through 4D trajectory management), without requiring the sharing of commercially sensitive data. +• HORIQON (High-altitude Operations with Real -time Integrated Quantum -Optimised Navigation) +examines trajectory planning and integration in higher airspace. As new entrants, such as high -altitude +platforms and space transport operations, begin to interact with conventional aviation, new methods will be +required to manage trajectories where littl e operational data currently exists. The case explores how QFL +could enable collaborative modelling of such trajectories in a way that protects sensitive data and supp orts +safe integration. +• SHIELD (Strengthened Handling of Irregular Events and Landing Diversions) addresses diversion +capacity and network resilience. Disruptions such as weather, technical failures, or security incidents often +require diversions, but the available diversion capacity across the network is not always visible to all actors. +This case considers whether QFL could allow stakeholders to model and share diversion capacity information +without exposing sensitive or commercially confidential data, improving the network’s ability to respond to +disruptions. +• CONTRADE (Climate-Optimised Navigation for TRAjectory DEsign) investigates contrail prediction +to support environmentally optimised planning. Avoiding persistent contrails is recognised as a key measure +for reducing the climate impact of aviation, but predicting where contrails will form requires combining data +from multiple sources. The case explores whether QFL could be used to generate contrail risk maps +collaboratively, improving environmental outcomes while respecting data ownership and privacy. +PREDICT focuses on operational efficiency and network capacity. HORIQON addresses the integration of new +entrants such as high-altitude and space transport operations. SHIELD responds to the need for resilience in the face +of disruption. CONTRADE tackles e nvironmental sustainability by examining contrail avoidance strategies. +Together, they demonstrate how QFL could be applicable to very different aspects of the ATM system rather than +concentrating on a single narrow problem. +Together, these cases ensure that the research addresses operational efficiency, integration of new entrants, resilience, +and sustainability. They provide representative contexts for assessing QFL concepts at TRL 1, without moving into +prototyping or operational validation. They were chosen to ensure that results are relevant across the breadth of the +European ATM Master Plan. + + +=== PAGE 36 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 3 of 50 + +QUANTAIR sets out to achieve the following objectives: +1. Investigate whether FedML is conceptually applicable to ATM problems, while also considering where +quantum methods might support its scalability. +• The first objective is to determine the feasibility of applying QFL to representative ATM challenges. +This involves examining whether distributed learning methods can be adapted to the constraints of +ATM, such as heterogeneous data sources, privacy restric tions, and operational time -criticality. It +also considers whether quantum techniques could, in future, play a role in scaling these methods to +larger or more complex problems. The outcome will be a feasibility analysis supported by conceptual +models and indicators. +2. Develop high-level frameworks for QFL in each Exploratory Case. +• Each of the four cases is chosen to represent a distinct ATM challenge. For each case, the project +will develop a conceptual framework describing how QFL could be applied, what the learning +architecture might look like, what kinds of data would be needed, and how results could support +operational decision-making. These frameworks will be high -level and exploratory, but they will +provide a structured representation that can be taken forward in subsequent research. +3. Identify potential benefits, limitations, and open research questions. +• The third objective is to move beyond purely speculative discussion by systematically assessing both +advantages and drawbacks. Potential benefits may include improved predictability, resilience, or +environmental outcomes. Limitations may relate to data qua lity, computational constraints, or +explainability of the models. Open questions may include how federated models could be validated +in a safety -critical environment or how quantum methods could be integrated when hardware +becomes more mature. The identification of such gaps is itself a valuable outcome, as it directs future +SESAR work towards areas of highest relevance. +4. Define the steps needed to advance this research to TRL 2–3 in future work. +• Finally, the project aims to provide a roadmap for subsequent SESAR research. This includes +identifying the data -sharing frameworks, modelling techniques, and validation approaches that +would be required for TRL 2–3 studies. It also considers how and when quantum machine learning +methods might become relevant. This ensures that the project’s outputs are not isolated academic +results but are directly linked to the SESAR innovation pipeline. +QUANTAIR responds directly to the scope of HORIZON -SESAR-2025-DES-ER-03-WA1-3 by investigating the +application of quantum computing methods to ATM. At TRL 1, the emphasis is placed on federated learning +approaches and their conceptual integration into ATM, while also identifying where quantum machine learning could +in future support scalability. The objectives are realistic within a TRL 1 framework and are measurable through +conceptual indicators such as model fidelity, scalability analysis, and qualitative assessment of potential benefits. In +doing so, the project provides a structured contribution to the SESAR Master Plan’s long-term vision of the Digital +European Sky and the research priorities set out in the Work Programme. +In terms of ambition and positioning, QUANTAIR fills a critical research gap. FedML has been explored in limited +ways within aviation, mostly for localised applications such as airport processes or isolated ANSP datasets. There +has been no systematic investigation of whether these techniques could be scaled across the network or used in multi- +stakeholder settings where privacy and sovereignty concerns prevent centralised data sharing. Similarly, while +quantum computing research is advancing rapidly, applications to ATM have not yet been explored. QUANTAIR is +therefore the first structured attempt to bring all of the previous research initiatives together into a tangible plan for +development towards future ATM solutions beyond TRL 3. +The project targets TRL 1 and does not intend to develop prototypes, demonstrators, or operational tools. Its ambition +lies instead in being the first project to provide a structured assessment of QFL in holistic ATM, grounded in +representative use cases, and linked to SESAR’s strategic objectives. The outputs will be conceptual frameworks, +feasibility analyses, and roadmaps that guide the next phase of research. This ensures that the project is both realistic +in its scope and ambitious in its contribution, establishing a research direction that could shape European ATM +innovation for the next decade. + +=== PAGE 37 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 4 of 50 + +#§PRJ-OBJ-PO§# +1.2 Methodology #@CON-MET-CM@# #@COM-PLE-CP@# +FedML is a machine-learning approach in which models are trained collaboratively across distributed data sources +without the need to pool raw data in a central repository. This is relevant to ATM, where operational data is +fragmented between stakeholders (such as airlines, ANSPs, airports, and regulators) and where concerns over +privacy, sovereignty, and commercial sensitivity prevent centralisation. By allowing stakeholders to contribute to +shared models without releasing their raw data, FedML provides a potential way of overcoming these barriers. +In defining the methodology, QUANTAIR focuses on the use of quantum computing as a conceptual analysis. The +project is scoped at TRL 1 not due to a lack of capability, but because current quantum hardware is not yet sufficiently +mature to enable higher -TRL validation in ATM. QUANTAIR therefore focuses on conceptual feasibility while +identifying the pathways that can be pursued once the technology advances. The research examines how federated +learning frameworks in ATM could, in principle, benefit from quant um methods for future TRLs, particularly in +handling large-scale optimisation and high-dimensional learning tasks. This ensures the project remains grounded in +what is achievable at TRL 1, while establishing a forward-looking research pathway relevant to SESAR’s long-term +ambitions. +In QUANTAIR, QFL[DS1] is defined as the use of federated learning to enable distributed model training across +ATM stakeholders, combined with an explicit recognition of the potential role of quantum methods in future TRLs. +The research is not intended to deliver operational tools but to establish whether this approach is feasible and useful +in an ATM context. +The methodology is based on several assumptions. It assumes that relevant data is distributed across multiple +stakeholders, that this data varies in quality and format, and that privacy and sovereignty concerns will prevent full +centralisation. It assumes that local training and global aggregation can be adapted to ATM use cases, and that +scalability may require quantum-enabled methods in future TRLs. These assumptions frame the scope of the work +and define the limits of the feasibility analysis. +This conceptual basis is well suited to the project’s objectives. The aim is not to deliver prototypes but to investigate +feasibility, develop high-level frameworks, identify potential benefits and limitations, and define pathways towards +higher-TRL research. FedML provides the structure for exploring distributed collaboration in ATM, and quantum +computing offers a forward-looking perspective that connects the work to the long-term vision of SESAR. +FedML is a machine-learning approach in which models are trained collaboratively across distributed data sources +without the need to pool raw data in a central repository. This is relevant to ATM, where operational data is +fragmented between stakeholders ( such as airlines, ANSPs, airports, and regulators) and where concerns over +privacy, sovereignty, and commercial sensitivity prevent centralisation. By allowing stakeholders to contribute to +shared models without releasing their raw data, FedML provides a potential way of overcoming these barriers. +In defining the methodology, QUANTAIR focuses on the use of quantum computing as a conceptual analysis. The +project is scoped at TRL 1 not due to a lack of capability, but because current quantum hardware is not yet sufficiently +mature to enable higher -TRL validation in ATM. QUANTAIR therefore focuses on conceptual feasibility, while +identifying the pathways that can be pursued once the technology advances. The research examines how federated +learning frameworks in ATM could, in principle, benefit from quan tum methods once they become more capable, +particularly in handling large-scale optimisation and high-dimensional learning tasks. This ensures that the project +remains grounded in what is achievable at TRL 1, while still establishing a forward-looking research pathway that is +relevant to SESAR’s long-term ambitions. +In QUANTAIR, QFL is defined as the use of federated learning to enable distributed model training across ATM +stakeholders, combined with an explicit recognition of the potential role of quantum methods in overcoming +computational bottlenecks in the future. The research is not intended to deliver operational tools but to establish + +=== PAGE 38 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 5 of 50 + +whether this approach is feasible and useful in an ATM context. +The methodology is based on several assumptions. It assumes that relevant data is distributed across multiple +stakeholders, that this data varies in quality and format, and that privacy and sovereignty concerns will prevent full +centralisation. It assumes that local training and global aggregation can be adapted to ATM use cases, and that +scalability may eventually require quantum-enabled methods. These assumptions frame the scope of the work and +define the limits of the feasibility analysis. +This conceptual basis is well suited to the project’s objectives. The aim is not to deliver prototypes but to investigate +feasibility, develop high-level frameworks, identify potential benefits and limitations, and define pathways towards +higher-TRL research. FedML provides the structure for exploring distributed collaboration in ATM, and quantum +computing offers a forward-looking perspective that connects the work to the long-term vision of SESAR. +Exploratory Case 1: PREDICT (Privacy-Respecting Enhanced Departure Integration with Coordinated +Timing) +One of the four exploratory cases is PREDICT, which examines the problem of departure predictability and slot +allocation. In the current ATM system, uncertainty in the timing of departures is a persistent source of inefficiency. +Airlines, airports, and the Network Manager rely on estimates for the various trigger points within the flight, which +are used to consider airspace loading and whether regulation needs to be applied to protect the airspace. This includes +estimates used within A -CDM, such as Target Off -Blocks Time (TOBT), Target Start Approval Time (TSAT), +Estimated Take-Off Time (ETOT) etc., which are used to plan the allocation of slots via Calculated Take-Off Time +(CTOT) and to coordinate traffic flows, but these estimates are often unreliable and have a tolerance window applied. +Delays caused by late boarding, pushback, or ground handling propagate through th e system, leading to inefficient +use of airport capacity and sub -optimal flow management decisions. Improving departure predictability has been a + + +=== PAGE 39 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 6 of 50 + +long-standing goal in SESAR, but progress has been constrained by the limitations of centralised modelling +approaches. +The challenge is that the information required to predict departures accurately is distributed across multiple actors. +Airlines hold data on crew, passengers, and turnaround processes. Airports manage gate availability, ground +handling, and sequencing. Air navigation service providers track surface movements and manage departure +clearances. The network manager needs a system-wide picture in order to coordinate slots at a regional level. At +present, much of this information is kept within individual organisations, either because it is operationally sensitive +or because there are no mechanisms to share it in real time. As a result, centralised models rely on incomplete data, +and their predictions lack the accuracy needed to deliver significant improvements. +The PREDICT case investigates whether FedML could provide a more effective framework. In a federated approach, +each stakeholder would train a local model on its own data, and only model parameters would be shared. A global +model could then be constructed t hat reflects the behaviour of the entire system without requiring the exchange of +raw data. For example, an airline’s local model could capture patterns in boarding times, while another airport’s +model could capture ground handling delays. The aggregated m odel could then produce more reliable A -CDM +estimates, which in turn could improve slot allocation and flow management decisions. +At TRL 1, the project does not attempt to build such models but rather to examine their conceptual feasibility. The +methodology involves defining a high -level framework for how federated models might be constructed in this +context, identifying what types of data would be needed at each node, and analysing the assumptions required for the +models to function. Indicators such as potential improvements in model fidelity, the robustness of aggregation across +heterogeneous datasets, and the scalability of the app roach will be considered. The analysis will also examine the +limitations of FedML in this application, such as the risk of bias if data quality differs significantly between +stakeholders or the difficulty of validating models in a safety-critical environment. +The role of quantum computing is considered solely as a conceptual pathway for future TRLs. With more accurate +ETOT predictions produced by federated models, the subsequent task of sequencing departure slots becomes a +high‑dimensional, NP‑hard scheduling problem in which classical methods are known to struggle. +Here, the federated setup is essential: only by combining distributed insights from airlines, airports, and network +managers can a sufficiently rich optimisation space be created for downstream quantum‑machine‑learning algorithms +to act upon. The project w ill evaluate how quantum techniques, particularly hybrid quantum‑classical approaches +such as the Quantum Approximate Optimization Algorithm (QAOA), variational quantum circuits, and +quantum‑annealing‑based methods, could be applied at this global level. F or example, quantum‑machine‑learning +models, seeded with federated‑learning‑derived estimates, could generate high‑quality slot sequences that minimise +delay propagation. +Furthermore, we will investigate whether quantum computers can effectively evaluate the probability of rare but +critical events, such as sector congestion, enabling unsafe or inefficient allocations to be rejected without exhaustive +simulation. Hybrid workflows will be designed so that classical pre‑processing (e.g., feature extraction, constraint +filtering) feeds into the quantum optimiser, while classical post‑processing (e.g., solution refinement, robustness +checks) cleans and validates the quantum output. +These techniques illustrate how federated learning provides the conceptual foundation for future quantum integration, +while hybrid quantum‑classical methods offer a practical bridge between current capabilities and the eventual +deployment of fully quantum‑enhanced scheduling solutions. +The expected output of the PREDICT case is therefore twofold: first, a conceptual framework showing how federated +learning can provide a privacy-preserving yet system-wide approach to departure predictability and slot allocation; +and second, a roadmap outlining how quantum machine learning could build on this federated foundation in future +TRL 2–3 work. By emphasising that accurate, system-wide models can only emerge in a federated setting, the case +highlights that quantum methods are not an alternative to data sharing but a complement that relies on federated + +=== PAGE 40 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 7 of 50 + +inputs to be effective. This dual perspective will clarify both the feasibility and the limitations of QFL, and determine +whether distributed learning combined with quantum acceleration offers a credible path toward improved A -CDM +accuracy, operational efficiency, and capacity management. + +Exploratory Case 2: HORIQON (High-altitude Operations with Real-time Integrated Quantum-Optimised +Navigation) +HORIQON addresses trajectory planning and integration in higher airspace. New entrants such as high -altitude +platforms, sub-orbital vehicles, supersonic and hypersonic aircraft, space transport systems, and certain military +operations create demands that d iffer significantly from conventional traffic. These vehicles operate with unique +performance profiles, often cross through controlled airspace at high speed, and interact with en-route flows at non- +standard altitudes. Current trajectory planning methods a re not well adapted to these conditions, and the lack of +operational data makes it difficult to develop predictive models. HORIQON investigates whether QFL could provide +a framework for sharing knowledge across stakeholders, enabling collaborative modellin g of higher -airspace and +high-speed trajectories while protecting sensitive operational and security-related data. +The main difficulty is that responsibility for higher airspace operations is spread across multiple organisations. All +stakeholders hold sensitive operational data, individual states maintain oversight of safety and sovereignty, and +ANSPs must manage interactions with conventional traffic within current controlled airspace. Sharing of information +is complex due to national security considerations, the commercial confidentiality of operational profiles, and +financial sensitivities. As a result, efforts to model higher airspace trajectories are often fragmented, and the lack of +integrated predictive capability makes it difficult to anticipate how such operations will affect the wider network. +The HORIQON case examines whether QFL could provide a way of combining insights from distributed datasets +without requiring disclosure of sensitive information. A federated model could allow the various stakeholders to train +local models on their own data while contributing to a global model that captures trajectory behaviours in higher +airspace. For example, space operators could train models on ascent and descent profiles, while ANSPs could +contribute models on interactions with controlled airspace. Aggre gating these models could improve the ability to +predict trajectories and their impact on the network, without requiring operators to reveal sensitive operational details. +At TRL 1, the focus is on developing a conceptual framework for how such federated models might be constructed +and on identifying the assumptions needed for them to function. The feasibility analysis will consider factors such as +the extreme heterogeneity of data sources, the sparsity of available datasets, and the sensitivity of mission +information. Indicators of feasibility will include the ability of federated models to generalise from limited local data, +the robustness of aggregation when nodes have ver y different information, and the potential scalability of the +approach. +The role of quantum computing is considered solely as a conceptual pathway for future TRLs. High -altitude 4D +trajectory deconfliction requires balancing safety, mission objectives, restricted zones, and sovereignty constraints +across multiple flight inform ation regions. This rapidly becomes a computationally hard problem, where classical +methods are unlikely to scale. A federated setup is indispensable since no single operator or authority can or will +provide the data diversity required to model high-altitude trajectories; only by linking their local models can a realistic +system-wide view emerge. On this federated foundation, quantum methods could potentially be applied in future +TRLs. +We will analyse if quantum machine learning algorithms and hybrid approaches are able to provide scalable ansatzes +to explore the large space of possible solutions, thus converging more rapidly to high -quality, conflict-free routes +than classical only approaches may allow. Quantum enhanced algorithms could evaluate rare-event probabilities such +as high-altitude conflict likelihood or space-weather-induced route degradation, leveraging distributed risk models +trained by operators. Quantum kernel methods are able to classify trajectory feasibility under multiple constraints, +refining the features provided. + +=== PAGE 41 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 8 of 50 + +While quantum computing offers significant benefits for high -altitude 4D trajectory deconfliction, it is essential to +consider the potential obstacles that may arise during implementation, such as hardware limitations, regulatory +obstacles, and difficultie s in integrating quantum algorithms with existing classical systems. Addressing these +concerns will help ensure that the proposed solution is feasible and effective in practice. +The project will analyse the basic application principles of appropriate hybrid quantum algorithms in ATM according +to TRL 1. +Higher airspace, generally above flight level 550, is at present largely unused by commercial aviation. This relative +vacancy offers a rare opportunity to introduce new technologies and working methods without the immediate +constraints of dense traffic. By treating this environment as a testing ground, ATM can explore innovative approaches +to integration, coordination, and trajectory management more rapidly than in lower airspace, where changes are +slowed by operational complexity and legacy systems. +The expected output of the HORIQON case is therefore twofold: first, a conceptual framework for using federated +learning to support collaborative trajectory modelling in higher airspace; and second, a roadmap identifying where +quantum machine learning, and classification techniques could naturally extend this framework in later TRLs. By +making the federated approach explicit as the necessary foundation, the case highlights that quantum computing is +not a substitute for collaboration, but a complement that depends on federated inputs to be effective. +Exploratory Case 3: SHIELD (Strengthened Handling of Irregular Events and Landing Diversions) +SHIELD addresses the challenge of diversion capacity and network resilience. Air traffic management must be able +to cope with unexpected events such as severe weather, technical failures, medical emergencies, or security incidents. +When diversions occur, the availability of suitable airports and the capacity of surrounding airspace become critical +factors. At present, diversion planning is often managed locally, with each airline or ANSP focusing on its own area +of responsibility. The wider network view is limited, and information on diversion capacity is not always shared +across stakeholders. This leads to situations where capacity is underused in some areas while others face excessive +pressure, reducing the resilience of the system as a whole. +A key difficulty is that the data required to build a comprehensive picture of diversion capacity is distributed and +often sensitive. Airlines hold data on operational priorities and alternate airport preferences. Airports manage runway +and parking availab ility, ground handling resources, and emergency procedures. ANSPs control the surrounding +airspace and determine how many diversions can be safely accommodated. The Network Manager is responsible for +regional coordination but does not always have access to timely or detailed information from all stakeholders. At a +broader level, the European Aviation Crisis Coordination Cell (EACCC) is tasked with coordinating responses to +major disruptions, but its effectiveness depends on the availability of accurate and up-to-date information from across +the network. This fragmentation makes it difficult to anticipate the network-wide impact of diversions or to allocate +resources effectively during disruptions. +The SHIELD case explores whether federated learning could support more effective modelling of diversion capacity. +In this approach, each stakeholder would train a local model on its own data, capturing patterns such as airport +throughput under different we ather conditions or airline diversion preferences. These models could then be +aggregated to create a broader picture of diversion capacity at the network level, without requiring any actor to release +its raw operational data. Such a framework could improve situational awareness and decision -making during +disruptive events, helping the system to absorb shocks more effectively. +At TRL 1, the work does not involve implementing such models but rather examining their feasibility. The analysis +will define a conceptual framework showing how QFL might be applied to diversion capacity modelling. It will +consider assumptions such as the availability of local data, the variability of conditions across airports, and the need +for near-real-time aggregation during an unfolding disruption. Feasibility will be assessed using indicators such as +whether federated approaches can capture the divers ity of conditions across the network, how robust aggregated +models would be to incomplete or delayed inputs, and what kinds of benefits might arise in terms of resilience. + +=== PAGE 42 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 9 of 50 + + +The role of quantum computing is considered solely as a conceptual pathway for future TRLs. Diversion planning +requires balancing multiple constraints (such as fuel states, alternate readiness, sector loads, and weather) while +ensuring safety and minimising delay. This quickly becomes a largescale combinatorial optimisation problem, +especially during cascading disruptions where time pressure is critical. For diversion capacity, federation is crucial: +airlines, airports, ANSPs, and the Network Manager each control different pieces of the puzzle, and only their +combined local models can reveal the network’s true resilience during disruptions. +On this federated foundation, quantum techniques could potentially be applied in future TRLs. Kernelbased quantum +anomaly detection could identify unusual diversion patterns from historical disruptions, enabling early recognition +of bottlenecks in evolving crises. Quantum random walks could explore the connectivity graph of airports and sectors, +rapidly highlighting underused alternates and feasible redirection chains. Quantum algorithms for probability +estimation could assess the likelihood of alternate ov erload or excessive airborne holding for candidate diversion +plans, improving safety assessments without the need for extensive classical Monte Carlo runs. +Hybrid quantumclassical methods (such as variational quantum circuits), the Quantum Approximate Optimization +Algorithm (QAOA), and quantumannealing based solvers will be evaluated for the diversion allocation problem +itself. These algorithms can encode the allocation task, producing high -quality allocations that minimise overload +and delay even with lastminute changes, while classical pre and postprocessing handles data preparation and result +validation. +The project will analyse the basic application principles of appropriate hybrid quantum algorithms in ATM according +to TRL 1. +The expected output of the SHIELD case is a feasibility assessment of federated learning for diversion capacity +modelling, coupled with a forward -looking roadmap showing how quantum optimisation, anomaly detection, and +probability estimation could reinforce network resilience under disruption. By making the federated approach explicit +as the foundation, the case highlights that quantum computing is not an alternative to collaboration but a complement +that depends on federated inputs. In doing so, SHIELD wil l clarify whether distributed approaches can improve +visibility and coordination during crises, supporting the long-term goal of a more resilient and robust European ATM +system. +Exploratory Case 4: CONTRADE (Climate-Optimised Navigation for TRAjectory DEsign) +CONTRADE investigates contrail prediction to support environmentally optimised planning. Persistent contrails and +the cirrus clouds they can form are recognised as a significant contributor to the climate impact of aviation. Avoiding +contrail-forming regions can therefore reduce the environmental footprint of flights, but predicting where contrails +will occur is technically challenging. Accurate prediction maps require the integration of meteorological data, +complex atmospheric conditions, aircraft performance characteristics, and traffic patterns. At present, this integration +is limited, and decision-making relies on simplified models that cannot capture the full variability of the prevailing +atmospheric conditions. +The challenge lies in the distributed nature of the relevant data. Meteorological agencies produce forecasts of +temperature, humidity, and wind fields at multiple altitudes. Airlines hold data on aircraft performance and +operational routing preferences, in cluding cost-index settings that determine whether the airline prioritises speed, +fuel efficiency, or other operational factors. This information is highly sensitive, as it reflects commercial strategies +and fuel-burn targets. ANSPs manage the airspace structure and flow constraints that determine whether avoidance +trajectories are feasible. In addition, contrail mitigation itself involves a complex trade-off: avoiding contrail-forming +regions may require flying at less efficient altitudes, leading to highe r fuel burn and associated harmful emissions. +Each actor therefore possesses part of the information needed, but there is no mechanism for combining it into shared +contrail-risk maps without significant data exchange. Concerns over intellectual property, operational sensitivity, and +the lack of common standards further hinder centralised approaches. + +=== PAGE 43 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 10 of 50 + +The CONTRADE case investigates whether federated learning could provide a framework for collaborative contrail- +risk modelling. In this approach, each stakeholder would train local models that capture how their data contributes to +contrail formation. Meteorological agencies could model atmospheric conditions, while aircraft manufacturers could +contribute data on performance characteristics and contrail sensitivity of specific airframes and engines. Airlines +would provide models based on their operational use of these aircraft, including cost-index preferences that determine +whether flights are optimised for speed, fuel efficiency, or specific fuel-burn targets. ANSPs could contribute models +that reflect operational feasibility in terms of sector capacity and airspace restrictions. Aggregating these models +could produce risk maps that are richer and more accurate than those generated by any single actor, without requiring +raw data to be shared. +At TRL 1, the work is limited to conceptual analysis. The methodology involves defining the types of local models +that might be trained, the assumptions needed for aggregation, and the indicators that could be used to judge +feasibility. These indicators in clude the potential improvement in the resolution and reliability of risk maps, the +robustness of results when datasets are incomplete or inconsistent, and the scalability of the approach to larger +geographic regions. The analysis will also consider limitations, such as the challenge of validating contrail predictions +against observed outcomes and the computational demands of processing large volumes of atmospheric data. +The role of quantum computing is considered a potential future enabler. Contrail avoidance routing is inherently a +multi-objective optimisation problem: flights must minimise climate forcing, fuel burn, and congestion +simultaneously. Classical methods struggle as the number of route/altitude combinations grows. +Here, the federated setup is essential: only by combining local models from meteorological agencies, aircraft +manufacturers, airlines, and ANSPs can the diverse data needed for contrail prediction be assembled without +compromising sensitive inputs. +On this federated foundation, quantum methods could extend capability. Hybrid quantumclassical optimisation (such +as variational quantum circuits or the Quantum Approximate Optimization Algorithm (QAOA)) could evaluate many +potential route –altitude combina tions more efficiently, enabling targeted contrail avoidance without degrading +overall network performance. Quantum algorithms for probability estimation could assess the chance of contrail +persistence along candidate routes using aggregated weather performance models, reducing the need for largescale +classical sampling. Finally, quantum kernels could project aggregated weather performance data into high - +dimensional feature spaces where persistent contrail conditions become linearly separable, improving the precision +of contrail riskmaps. +The expected outcome of the CONTRADE case is to demonstrate whether federated learning can provide a practical +basis for collaborative contrail -risk mapping, and to highlight where quantum methods could eventually enhance +such models. Rather than positioning quantum as a separate solution, the analysis will explore how machine learning, +estimation, and classification techniques can be layered on top of federated inputs to deliver more accurate and +actionable risk maps. By extending QFL into the environmenta l domain, CONTRADE broadens the project’s +relevance: alongside efficiency, integration, and resilience, it directly supports SESAR’s strategic objective of +reducing aviation’s climate impact and making Europe the most environmentally sustainable region to fly. +A Coordinated approach +Taken together, the four exploratory cases ensure that the methodology is comprehensive and representative of the +challenges facing European ATM. PREDICT addresses operational efficiency in day -to-day traffic management, +HORIQON looks ahead to the integration of new entrants in higher airspace, SHIELD focuses on network resilience +under disruption, and CONTRADE examines environmental sustainability. By covering efficiency, integration, +resilience, and environment, the project avoids concentrating on a single niche problem and instead demonstrates +how Quantum Federated Learning could, in principle, be applied across the full scope of the European ATM Master +Plan. This breadth ensures that the feasibility analysis is robust, highlights both common and domain -specific +challenges, and maximises the value of the results for guiding future SESAR research. + +=== PAGE 44 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 11 of 50 + +Transversal cross-cutting +The four exploratory cases provide the primary structure for the research, but several cross -cutting considerations +influence the methodology as a whole. These reflect the interdisciplinary nature of the work, the constraints under +which the research must operate, and the principles that ensure it is consistent with European policy goals. +The project requires expertise from multiple domains. Air traffic management provides the operational context, +defining the problems that need to be addressed and the performance criteria against which solutions must be judged. +Machine learning contributes the methods for distributed model training, while quantum research provides the longer- +term perspective on scalability and algorithmic possibilities. Regulatory and policy insight ensures that the proposed +frameworks remain realistic in the institutional environment of European aviation. The combination of these +perspectives is essential; no single discipline is capable of addressing the research questions in isolation. The +methodology is therefore deliberately interdisciplinary, ensuring that technical fe asibility is always considered in +relation to operational relevance and policy constraints. +The assumptions underpinning the methodology are also common across the exploratory cases. These include the +expectation that operational data will remain fragmented across multiple stakeholders, that privacy and sovereignty +concerns will prevent full centralisation, and that datasets will be heterogeneous in both quality and structure. The +feasibility analyses therefore focus on whether federated learning can function under these conditions rather than +assuming idealised data availability. A further assumption is that validation of distributed models in a safety-critical +domain will pose challenges that cannot be fully resolved at TRL 1. Instead, the project aims to identify those +challenges explicitly, providing a roadmap for how they could be addressed in higher-TRL work. +The research is conducted in accordance with the “do no significant harm” principle of the EU Taxonomy Regulation. +The work involves only conceptual frameworks and analyses, and does not generate environmental impacts directly. +Its contribution is instead positive, particularly in the CONTRADE case, where the methodology is explicitly directed +towards reducing the climate impact of aviation by enabling contrail avoidance strategies. The project also contributes +indirectly to sustainability by exploring meth ods that may improve efficiency and resilience, thereby reducing +unnecessary fuel burn. +Because the project involves the application of machine learning concepts, attention is given to the robustness and +explainability of such methods. Federated learning introduces specific risks, including the potential for bias if local +datasets are unbalanced and the difficulty of validating aggregated models when raw data is not accessible. These +issues will be examined systematically in the feasibility analyses, and potential safeguards will be identified. The +project anticipates that any future integration of quantum methods will require similar attention to transparency and +verification, particularly in a safety-critical environment. The project therefore aligns with European principles on +trustworthy AI by ensuring that robustness, reproducibility, and explainability are considered from the outset, even +at TRL 1. +In summary, the methodology integrates expertise from multiple disciplines, is grounded in explicit assumptions +about the ATM environment, complies with European sustainability principles, and recognises the importance of +robustness and explainability in AI methods. These cross-cutting considerations ensure that the exploratory analyses +are not only technically sound but also aligned with the broader requirements of the aviation system and the European +research framework. +Open Scientific Principles and Responsible Research +The methodology also incorporates principles of open science and responsible research management. Although the +project is exploratory and limited to TRL 1, the outputs include conceptual frameworks, feasibility assessments, and +analytical results that can be openly shared. Publications will be made available in open -access journals or +repositories in line with Horizon Europe requirements. Preprints and working papers will be released where +appropriate to support early dissemination and peer feedback. Models and analytical frameworks developed during + +=== PAGE 45 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 12 of 50 + +the project will be documented and, where possible, shared in a way that enables scrutiny and reuse by the wider +research community. +Research data management follows the FAIR principles (Findable, Accessible, Interoperable, Reusable). The project +will not generate new operational datasets from its activities. Instead, it will make use of modest datasets that may +include synthetic data c reated for illustrative purposes, publicly available sources such as EUROCONTROL +performance statistics or open meteorological data, and structured documentation of modelling assumptions. These +materials will be curated with clear documentation of provenance, scope, and format. A data management plan will +be produced by month six of the project and updated as required. Persistent identifiers will be used to ensure +findability, and trusted repositories will be selected for long -term preservation. Access will be granted in line with +open-access requirements, while any data subject t o restrictions for confidentiality or security will be documented +with clear justification. Reusability will be supported by applying open licences where appropriate and by providing +explanatory documentation of models and algorithms. +The project recognises that the integration of a gender dimension in research content is mandatory under Horizon +Europe unless clearly irrelevant. In the case of QUANTAIR, the subject matter involves the conceptual exploration +of federated learning and qua ntum computing in ATM. The scientific and operational questions addressed are not +influenced by biological sex or social gender factors, and the research outputs do not have a differentiated impact +along those lines. For this reason, the gender dimension is not directly relevant to the research content. However, the +project will ensure that dissemination and communication activities are inclusive, using language and imagery that +reflect diversity, and ensuring that engagement with stakeholders and end users is representative of the community. +These measures ensure that QUANTAIR is aligned with the principles of open and responsible science. The outputs +will be accessible to the wider research community, the data will be managed transparently, and inclusivity will be +ensured in dissemination and communication. Even at TRL 1, these practices increase the value of the research by +making it reproducible, transparent, and usable as a foundation for future SESAR work. +Leveraging National and International R&I Activities +The proposed research builds directly upon major European R&I activities and SESAR strategic priorities, ensuring +continuity and maximising return on investment from prior programmes. One important foundation is AI-CHAIN +(EUROCONTROL, 2022–2024), which validated the use of collaborative machine learning on distributed, privacy- +sensitive ATM datasets, including Estimated Take-Off Times (ETOT) and trajectory prediction. AI-CHAIN +showed that federated models could deliver improved accuracy without requiring raw data sharing. QUANTAIR +will extend these results by exploring Quantum Federated Learning (QFL) as a means to address the scalability and +machine learning challenges identified in AI-CHAIN. This will be achieved by reusing AI-CHAIN benchmarks, +adapting its federated architectures, and maintaining close contact with EUROCONTROL stakeholders to +guarantee methodological alignment. +The SESAR Master Plan 2025 provides further direction. It explicitly recognises that “machine learning is used in +combination with conventional deterministic algorithms for trajectory prediction, ATFM and ATC conflict +detection” and calls for the development of AI capabilities enabling the next generation of ATM platforms. It also +underlines the importance of “virtualisation and cyber-secure data sharing” and identifies “AI for aviation” as an +industrial research priority. Furthermore, the Master Plan stresses the need for ATM modernisation to shift towards +“a modern, data-driven and cloud-based service-oriented architecture,” facilitating privacy-preserving and +interoperable collaboration across stakeholders. QUANTAIR responds to these calls by investigating QFL as a +privacy-preserving AI mechanism to overcome sovereignty and sensitivity barriers that prevent centralised data +sharing, aligning its exploratory cases (departure predictability, higher airspace integration, diversion capacity, and +contrail avoidance) with SESAR Strategic Deployment Objectives, notably SDO 3 on Dynamic Airspace +Configuration, SDO 5 on the Transformation to Trajectory-Based Operations (TBO), and SDO 8 on Service- +Oriented Delivery Models. In doing so, the project contributes to SESAR’s long-term roll-out objectives, directly +addressing the shift towards SDO 5 for precise 4D trajectory optimisation, enabling resilience and scalability in line +with SDO 3, and supporting the transition to SDO 8. It also adds value to SESAR’s automation and AI research + +=== PAGE 46 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 13 of 50 + +stream, particularly in the areas of high-dimensional optimisation, safety-critical validation, and cross-stakeholder +model aggregation. +Beyond SESAR, QUANTAIR will connect to the broader European and international R&I ecosystem. It will +ensure consistency with Digital Sky Demonstrators, align its environmental work on contrail avoidance and +climate-optimised trajectories with the Clean Aviation and Zero-Emission Aircraft programmes, and take into +account international initiatives such as ICAO, FAA NextGen, and NASA ATM-X to ensure interoperability and +standardisation. +To embed its results in the SESAR ecosystem, QUANTAIR will feed its conceptual frameworks and feasibility +analyses into SESAR repositories and knowledge-sharing channels, organise technical workshops with AI-CHAIN +and SESAR 3 JU expert groups to align assumptions and validation methods, and publish results in open-access +venues while maintaining strong links with SESAR Innovation Days and technical consultation fora. In this way, +the project will not duplicate previous work but rather extend and complement SESAR’s federated learning +strategy, anchoring its results in the Master Plan 2025 vision of a Digital European Sky enabled by AI, privacy- +preserving data sharing, and service-oriented architectures. +Interdisciplinary Integration of Expertise +The consortium combines three complementary disciplines essential to the project: quantum algorithms, distributed +orchestration, and operational ATM. DLR QSOC contributes expertise in quantum computing, quantum machine +learning and optimisation, leading the scientific feasibility assessment of applying quantum methods to federated +learning. Qoro Quantum brings knowledge of distributed systems and orchestration, ensuring that the frameworks +are technically realistic, privacy-preserving, and aligned with SESAR’s transition to service-oriented architectures. +SkyNav International adds operational ATM and navigation expertise, embedding safety, regulatory, and +interoperability requirements into the exploratory cases so that the results reflect real-world constraints and +stakeholder needs. +Integration will be achieved through co-design workshops, joint development of conceptual frameworks, and +systematic cross-review of results. DLR will validate the scientific soundness of the approaches, Qoro will ensure +architectural robustness and scalability, and SkyNav will test operational relevance against SESAR’s Strategic +Deployment Objectives. This structure ensures that the project outputs are not isolated academic exercises but +practical and credible contributions to SESAR’s research pipeline, providing actionable pathways for future work +on Quantum Federated Learning in ATM. +The combined skill set is both unique and directly relevant to the project’s aims. Quantum algorithm research alone +cannot address operational feasibility; distributed orchestration expertise alone cannot resolve ATM privacy and +sovereignty barriers; and operational ATM expertise alone cannot scale to emerging computational methods. By +uniting these three perspectives, the consortium can evaluate Quantum Federated Learning in a way no single +partner could achieve in isolation. This integration ensures that the project bridges the gap between theoretical +research, technical system design, and operational ATM practice, delivering results that are both innovative and +usable within the SESAR framework. +Role of Social Sciences and Humanities (SSH) +The proposed work does not directly require integration of Social Sciences and Humanities (SSH) disciplines, as +the focus is on the conceptual feasibility of Quantum Federated Learning for Air Traffic Management at TRL 1. +The research is primarily technical, combining quantum algorithmics, distributed computing architectures, and +operational ATM knowledge. Its outputs will be high-level frameworks, feasibility analyses, and pathways for +future research rather than social or behavioural studies. +That said, the consortium recognises that ATM modernisation is a socio-technical transformation. The SESAR +Master Plan 2025 explicitly highlights the evolving role of human operators in human–machine teaming and the + +=== PAGE 47 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 14 of 50 + +need for trustworthy AI-based systems to ensure adoption in safety-critical contexts. These aspects fall outside the +TRL 1 scope of QUANTAIR but are highly relevant to subsequent SESAR research. The project will therefore +remain attentive to SSH findings from related SESAR activities on data governance, human–machine trust, and +stakeholder acceptance, and ensure that its conceptual frameworks are compatible with future interdisciplinary +studies. In this way, while SSH integration is not required for the current exploratory work, the project establishes a +technical foundation that can be enriched by SSH contributions in later phases. +Research Data Management and Research Outputs +QUANTAIR is scoped at TRL 1 and will not generate large operational datasets. The main outputs will be +conceptual frameworks, feasibility analyses, modelling artefacts, and small synthetic datasets used to test federated +learning and quantum machine learning concepts. Outputs will be textual (reports, frameworks), numerical +(synthetic trajectory/weather data), and software-based (lightweight code templates), with total volume <10 GB. +Where public datasets (e.g. Eurocontrol performance reports, meteorological data) are combined with synthetic +data, provenance will be documented. +Findability. All outputs will be assigned persistent identifiers (DOIs) via trusted repositories. Metadata will follow +Horizon Europe requirements to ensure indexing and searchability. +Accessibility. Deliverables and publications will be open access. Software and modelling artefacts will be hosted on +GitHub. Sensitive information, if any, will be restricted but metadata will remain visible for verification. +Importantly, in line with the federated learning approach, only trained model weights and parameters will be +shared, never raw stakeholder data. +Interoperability. Data and code will be provided in non-proprietary formats (CSV, JSON, Python notebooks). +Metadata will use recognised standards (e.g. Dublin Core) and SESAR taxonomies to ensure compatibility with +other ATM projects. +Reusability. Outputs will carry open licenses (CC-BY for documents, Apache 2.0 or MIT for code) to enable reuse +and integration into future SESAR projects. Documentation and environment files will accompany software to +support reproducibility. +Curation and Storage. DLR will curate scientific data and models, Qoro will maintain software repositories, and +SkyNav will validate operational relevance. Outputs will be preserved in institutional repositories for at least ten +years. A Data Management Plan will be delivered by Month 6 and updated before project close. +This approach ensures compliance with FAIR principles and makes results directly reusable by the SESAR +community in follow-on TRL 2–3 activities. + +#§CON-MET-CM§# #§COM-PLE-CP§# #§REL-EVA-RE§# +2. Impact #@IMP-ACT-IA@# +2.1 Project’s pathways towards impact +The results of QUANTAIR are expected to make a meaningful contribution to the SESAR programme’s medium - +term outcomes and to the wider long -term impacts described in the Work Programme. The project is positioned at +TRL 1, and its immediate outputs are conceptual frameworks and feasibility assessments. The impact therefore lies +not in the delivery of deployable systems, but in shaping the research agenda by establishing whether Quantum +Federated Learning (QFL) provides a credible new approach for ATM. By clarifying the potential scope, identifying + +=== PAGE 48 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 15 of 50 + +enabling conditions, and defining pathways to higher-TRL research, the project provides the knowledge base required +for Europe to maintain leadership in this field, both in federated approaches to ATM and in the application of +emerging quantum methods for large-scale optimisation and risk assessment. +The pathways to impact extend across four domains that correspond to the project’s exploratory cases. Each case +addresses a distinct challenge within the ATM Master Plan, ensuring that the project’s contribution is broad and +relevant. +The PREDICT case supports efficiency and capacity by addressing the challenge of departure predictability and slot +allocation. Delays at departure propagate through the network, and current models are limited because the relevant +information is fragmented across stakeholders. By investigating whether QFL could enable collaborative prediction +without compromising data privacy, the project contributes to the SESAR objective of improving predictability as a +foundation for advanced demand–capacity balancing. Even at TRL 1, the project identifies how federated approaches +might reduce uncertainty in departure planning and sets out pathways for higher-TRL research that could ultimately +improve the efficiency of European airspace. +The HORIQON case supports the safe integration of new entrants in higher airspace. The growing presence of high- +altitude platforms, sub -orbital flights, super - and hyper-sonic vehicles, and space transport operations introduces +uncertainty into ATM, and the lack of shared data across stakeholders makes it difficult to model these trajectories. +QUANTAIR explores whether QFL could provide a framework for collaborative trajectory modelling under strict +confidentiality constraints. This aligns with SESAR’s objective of ensuring the seamless integration of all airspace +users and supports the EASA Higher Airspace Operations roadmap. It also complements ICAO’s ongoing work in +the ATMOPS Panel, ATMRPP, and ICAO Paris, where the need for new coordination mechanisms for high-altitude +operations has been identified. The project’s outputs provide a research basis that can inform both European and +global efforts in this domain. +The SHIELD case contributes to resilience and contingency management by addressing diversion handling and rapid +network reorganisation. Current approaches are fragmented, with limited visibility of network-wide capacity during +disruptions. By examining whe ther QFL could enable distributed modelling of diversion capacity, the project +explores how resilience could be enhanced without requiring stakeholders to share sensitive operational data. This +directly supports SESAR’s long-term ambition of building a more resilient Digital European Sky. It also aligns with +ICAO’s GATMOC, which emphasises the need for globally harmonised contingency procedures and collaborative +decision-making. By identifying how distributed modelling could underpin these objectives, QUANT AIR +contributes to the policy and research foundations required to manage disruptions more effectively at both regional +and global levels. +The CONTRADE case contributes to environmental sustainability by considering contrail prediction mapping. +Persistent contrails represent one of aviation’s most significant climate impacts, but predicting them requires +combining data from meteorological agencies, airlines, and ANSPs. QUANTAIR explores whether QFL could be +used to generate richer and more reliable contrail prediction maps without requiring raw data exchange. This supports +SESAR’s environmental pillar, directly addresses the Horizon Europe priority of making Europe the most +environmentally friendly region to fly, and complements wider European climate objectives. It also aligns with +ICAO’s sustainability agenda by exploring methods to reduce the non -CO₂ impacts of aviation. By identifying +pathways for integrating distributed contrail modelling into ATM processes, the project sets the stage for future +research that could enable environmentally optimised trajectory planning. +Across these domains, the project contributes to the realisation of the Digital European Sky vision. QFL represents +a novel way of enabling scalable services supported by a digital ecosystem, where distributed data sources can +contribute to shared models w ithout compromising sovereignty or security. This directly addresses one of the +structural challenges of the Digital European Sky: how to build a networked architecture that is both data -rich and +privacy-preserving. While QUANTAIR does not deliver technica l systems, it identifies how distributed and +potentially quantum -enabled approaches could contribute to this architecture in the longer term, by combining +federated models with quantum machine learning, estimation, and classification methods capable of han dling the + +=== PAGE 49 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 16 of 50 + +scale and complexity of future ATM services. +The expected impacts also extend beyond SESAR. By addressing data-sharing challenges in ATM through QFL, the +project informs EASA’s regulatory strategies for higher airspace, ICAO’s work on contingency and environmental +management, and the global framework established by the GATMOC. It provides European stakeholders with early +insight into how quantum methods might eventually support large -scale, secure, and collaborative ATM services, +strengthening Europe’s position as a leader in both ATM modernisation and quantum research. +The scale and significance of these impacts must be interpreted in the context of TRL 1. The project does not produce +immediate operational benefits, but it does set the agenda for higher -TRL work that could. Its contribution lies in +providing the first st ructured assessment of QFL in ATM, across efficiency, new entrants, resilience, and +sustainability. By demonstrating that the concept is feasible in principle, QUANTAIR enables future SESAR projects +to pursue targeted TRL 2 –3 developments with confidence. If successful, this pathway could, over the medium to +long term, support Europe’s ambition to deliver the most environmentally friendly, efficient, resilient, and digitally +integrated ATM system in the world. +The achievement of these impacts depends on several factors beyond the scope of the project. Progress in quantum +hardware and algorithms may be slower than anticipated, delaying the availability of scalable quantum methods. +Conversely, rapid advances could create opportunities earlier than expected, underlining the importance of SESAR +being prepared with conceptual frameworks and use cases that can be taken up as soon as technology allows. +Stakeholders may also be cautious about adopting federated approaches if they perceive the governance, validation, +or liability arrangements as unclear. Regulatory frameworks for higher airspace and environmental modelling may +evolve at different speeds across regions, creating asymmetries in adoption. These are not risks to the project itself, +but barriers that may influence whether the pathways identified can be realised in practice. By identifying them early, +QUANTAIR ensures that future SESAR and policy work can anticipate these challenges and address them +systematically. + +2.2 Measures to maximise impact - Dissemination, exploitation and communication #@COM-DIS-VIS-CDV@# +The project adopts a proportionate but structured approach to dissemination, exploitation, and communication to +ensure that its results are visible, usable, and positioned to generate impact beyond the immediate project lifetime. +At TRL 1, the outputs are primarily conceptual frameworks, feasibility analyses, and structured assessments of +Quantum Federated Learning (QFL) in ATM. The plan therefore emphasises knowledge sharing, policy relevance, +and preparing pathways for follow-on research, rather than commercialisation. +Communication activities will be modest but continuous, designed to ensure visibility of the project and to inform a +wider audience about its purpose and benefits. The consortium will establish a project website as a primary +information point, complemented by short news items and updates on professional social media platforms. These +activities will highlight the relevance of quantum computing and federated learning to aviation in terms +understandable to non-specialists, showing how such research contributes to efficiency, resilience, sustainability, and +the safe integration of new entrants. Outreach will be proportionate to the scale of the project, relying on existing +channels within the consortium, which collectively offers a global and cross-disciplinary network of contacts across +research, industry, and regulatory communities. +Dissemination will focus on the scientific and technical community, particularly those engaged in ATM +modernisation and quantum computing research. Results will be published in open-access journals and presented at +conferences such as SESAR Innovation Days and relevant academic venues. Where appropriate, preprints will be +released to encourage early engagement and peer feedback. The project will also contribute to SESAR knowledge- +sharing channels and technical workshops to ensure that results feed directly into the wider programme. +Dissemination will be coordinated so that outputs are available in formats that are accessible and reusable, consistent +with open science practices. + +=== PAGE 50 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 17 of 50 + +Exploitation will take place primarily through institutional and programme channels. The conceptual frameworks +and feasibility assessments generated by QUANTAIR are intended for direct uptake by future SESAR research at +TRL 2–3. They also provide material of interest to ATM stakeholders, who can use the findings to inform early +thinking on data -sharing models and the potential of federated approaches. Regulators such as EASA, and +international bodies such as ICAO, will also benefit from the insights generat ed, particularly in areas of higher +airspace operations, contingency management, and environmental sustainability. Although no commercial +exploitation is expected at TRL 1, the intellectual outputs represent a foundation that can be carried forward in +subsequent projects or policy initiatives. Intellectual property will be managed in line with Horizon Europe rules, +with ownership of results defined in the consortium agreement. Given the conceptual nature of the work, results will +primarily be disseminated openly, with protection measures applied only if necessary to safeguard future exploitation +potential. +Feedback to policy measures is an integral part of the plan. The project’s outputs are directly relevant to ongoing +European and international discussions, including EASA’s Higher Airspace Operations roadmap, ICAO’s ATMOPS +and ATMRPP panels, and the global framework provided by the GATMOC. By sharing findings through technical +workshops, regulatory consultations, and programme -level interactions, QUANTAIR will provide evidence to +support policy development and help shape future research agendas. +This first version of the dissemination and exploitation plan provides a framework that is appropriate to the scope +and maturity of the project. A detailed plan will be produced as a mandatory deliverable within three months of +project start and updated as necessary during the project. Together, these measures will ensure that the outputs of +QUANTAIR are widely disseminated, appropriately exploited, and communicated effectively to the scientific +community, policymakers, stakeholders, and the public. + +References +[1] Abbas, Amira, et al. "Challenges and opportunities in quantum optimization." Nature Reviews Physics (2024): 1-18. +[2] Li, Li, et al. "A review of applications in federated learning." Computers & Industrial Engineering 149 (2020): 106854. +[3] Ruiz, Sergio, et al. "Privacy-preserving federated machine learning in ATM: experimental results from two use cases." +Proceedings of the 12th SESAR Innovation days (2022). +[4] Ballester, Rocco, Jesus Cerquides, and Luis Artiles. "Quantum federated learning: a comprehensive literature review +of foundations, challenges, and future directions." Quantum Machine Intelligence 7.2 (2025): 1-29. +[5] SESAR Joint Undertaking, European ATM Master Plan 2025 Edition (2025). + +#§COM-DIS-VIS-CDV§# + +=== PAGE 51 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 18 of 50 + +2.3 Summary +KEY ELEMENT OF THE IMPACT SECTION + + + + + +D & E & C MEASURES +What dissemination, exploitation and communication +measures will you apply to the results? + +Results will be communicated through a dedicated +website, social media updates, and targeted news items +for non-specialist audiences. Dissemination to the +scientific community will use open-access journals, +preprints, and conferences (SESAR Innovation Days, +quantum/AI venues). Exploitation will occur through +SESAR follow-on projects, input to regulatory +roadmaps (EASA, ICAO), and alignment with +international R&I activities. All outputs will be openly +shared under FAIR principles, with repositories +ensuring transparency and reuse. A mid-project and +final dissemination event will engage stakeholders +directly. +EXPECTED RESULTS +What do you expect to generate by the end of the +project? + +By the end of the project, QUANTAIR will deliver: +• Conceptual frameworks for applying QFL to +four representative ATM challenges +(departure predictability, higher -airspace +integration, diversion capacity, contrail +avoidance). +• Feasibility analyses identifying assumptions, +indicators, potential benefits, and limitations. +• Roadmaps defining steps towards TRL 2 –3, +including conditions under which quantum +methods may provide added value. +• Open, reproducible outputs (reports, models, +synthetic datasets) supporting future SESAR +research. + +SPECIFIC NEEDS +What are the specific needs that triggered this +project? + +Air Traffic Management (ATM) faces structural +barriers to data sharing, scalability, and +resilience. Operational datasets are fragmented +across airlines, ANSPs, airports, and regulators, +making centralised modelling infeasible due to +sovereignty, confidentiality, and security +constraints. At the same time, growing system +complexity (multi-flight optimisation, +integration of higher-airspace entrants, +resilience to disruption, and contrail avoidance +pushes classical methods to their limits. Europe +requires a structured assessment of whether +Quantum Federated Learning (QFL) can provide +a privacy-preserving, scalable framework for +collaborative modelling that is aligned with +SESAR’s Digital European Sky ambitions. + + + +=== PAGE 52 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 19 of 50 + + + + + +#§IMP-ACT-IA§# +TARGET GROUPS +Who will use or further up-take the results of the +project? Who will benefit from the results of the +project? + +• SESAR research community and Joint +Undertaking programme teams. +• ATM operational stakeholders (airlines, +ANSPs, airports, Network Manager). +• Regulatory and policy bodies (EASA, ICAO +panels, European Commission). +• Academic and industrial researchers in +federated learning, quantum computing, and +AI for aviation. +• Wider environmental and climate policy +stakeholders interested in contrail mitigation +and sustainable aviation. +OUTCOMES +What change do you expect to see after +successful dissemination and +exploitation of project results to the +target group(s)? + +The project will provide the first +structured evidence base for QFL in +ATM, enabling SESAR to judge +whether and how to pursue higher- +TRL development. Stakeholders will +gain conceptual frameworks that +inform data-sharing models, +integration of new entrants, resilience +strategies, and climate-optimised +navigation. Dissemination ensures that +results are embedded in SESAR +roadmaps, regulatory debates, and +international standardisation efforts. + +IMPACTS +What are the expected wider scientific, economic and societal +effects of the project contributing to the expected impacts outlined +in the respective destination in the work programme? + +Wider impacts include: +• Scientific: establishment of benchmarks and +methodologies for QFL across distributed, safety -critical +domains. +• Economic: foundations for more efficient, resilient, and +sustainable European ATM, reducing costs from delay, +disruption, and inefficient fuel burn. +• Societal: enhanced resilience of the air transport system, +reduced climate impact via contrail avoidance, and +strengthened European leadership in privacy-preserving AI +and quantum research. +In the longer term, QUANTAIR contributes directly to the +Work Programme objective of delivering the most +environmentally friendly, efficient, resilient, and digitally +integrated ATM system worldwide. + +=== PAGE 53 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 20 of 50 + +3. Quality and efficiency of the implementation #@QUA-LIT-QL@# #@WRK-PLA-WP@# +3.1 Work plan and resources +The design of the QUANTAIR work plan reflects both the scope of a TRL 1 exploratory research project and the +need to provide clear evidence of progress at defined review points. The structure is kept deliberately lean, with four +work packages that separate management and outreach activities from the research, while ensuring that each of the +project’s objectives is addressed in a coherent way. This approach avoids unnecessary fragmentation but still gives +full visibility to the mandatory elements of management, dissemination, exploitation, and data management. + + +GANTT-Chart overview including work packages, milestones and deliverables + +The first work package covers project management and the cross-cutting activities on communication, dissemination, +and exploitation. This ensures that the day-to-day running of the project, financial and administrative tasks, reporting +to the SESAR JU, and quality assurance are all handled in one place. The same package also includes the production +and maintenance of the Project Management Plan, the Data Management Plan, and the Communication and +Dissemination Plan. These are not treated as box -ticking exercises but as tools to give the consortium a common +framework for how the work will be organised and how outputs will be shared with the wider research and +stakeholder community. + +The research itself is divided into two phases. The first nine months (WP2) are dedicated to setting the foundations. +This includes scoping the four exploratory cases - PREDICT, HORIQON, SHIELD, and CONTRADE - agreeing the +assumptions and indicators that will be used to test feasibility, and producing the initial research plan and exploratory +report. This early phase is designed to provide tangible outputs that can be reviewed and challenged at the interim +stage, while still leaving scope for refinement. It allows the consortium to put forward initial concepts and +frameworks without claiming premature certainty, which is consistent with the TRL 1 nature of the project. + +The second research phase (WP3) runs from month 10 to month 18 and builds directly on the initial results. Here the +consortium revisits the assumptions, tests them across the four cases, and develops the final research plan and report. +The emphasis in this phase is on refinement and integration: drawing out the lessons that are common across cases, +understanding where QFL may have genuine promise for ATM, and identifying the open questions that must be +addressed in future TRL 2–3 research. This structure gives the project a rhythm: first to establish and scope, then to + + +=== PAGE 54 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 21 of 50 + +refine and consolidate. By the end of month 18, the core research outputs are complete and ready for review. + +The final work package (WP4) is dedicated to ensuring that the results are not only written down but also +communicated, preserved, and made available for exploitation. This includes the production of the final exploitation +and impact strategy, compliance with open science and repository requirements, and the organisation of a final event +to share the findings with both the research community and operational stakeholders. Dedicating a separate work +package to this task provides clarity and ensures that disse mination and exploitation are not left to the margins of +project management, but treated as substantive outputs in their own right. + +The sequencing of activities is straightforward. WP2 provides the initial research outputs and ensures that the +consortium can demonstrate progress at the interim review. WP3 takes these results forward, deepening the analysis +and completing the research e ffort. WP4 then consolidates the outputs and ensures their visibility. WP1 runs +throughout, providing governance, coordination, and quality assurance. The interdependencies are limited but clear: +WP2 feeds WP3, WP3 feeds WP4, and WP1 underpins the whole process. This simplicity is deliberate, allowing the +consortium to concentrate on the substance of the research rather than the mechanics of coordination. + +Overall, the work plan balances clarity with proportionality. The structure makes it possible to demonstrate progress +at the interim and final stages, while keeping the number of work packages aligned to the scale of a TRL 1 activity. +Most of the effort is concentrated in the two research phases, where the exploratory cases are scoped, analysed, and +refined. Management, communication, and exploitation activities run in parallel but remain light and focused, +ensuring that resources are directed primarily to the research. In this way, the plan ensures that the project’s objectives +can be met within the available timeframe and that the results are prepared for further development in future SESAR +research. +3.2 Capacity of participants and consortium as a whole #@CON-SOR-CS@# #@PRJ-MGT-PM@# +The consortium for QUANTAIR is deliberately small and highly focused. It brings together three partners with +complementary expertise that together cover the full range of knowledge needed for exploratory research on Quantum +Federated Learning in Air Traffic Management. This structure avoids fragmentation while ensuring that the project +objectives are addressed from scientific, operational, and regulatory perspectives. + +The disciplinary scope is broad. The project combines expertise in advanced computing and federated learning, in +ATM modelling and SESAR research methods, and in the operational and regulatory environment of European +aviation. This inter-disciplinary mix is central to the project’s feasibility. Quantum computing and federated learning +alone cannot be meaningfully assessed without ATM expertise to define realistic use cases and indicators, and ATM +modelling by itself cannot explore the potential of novel com putational paradigms. By combining the three, the +project ensures that technical exploration remains grounded in operational reality, while operational questions are +informed by the latest research in computing and data science. + +Each partner contributes distinct capabilities. One partner provides established experience in ATM research and +modelling, including the frameworks and methods that underpin SESAR exploratory research. A second partner +contributes deep expertise in quantum computing and federated learning, with access to state-of-the-art algorithmic +research and computational frameworks. The third partner contributes operational and regulatory insight, drawing on +direct experience with ATM stakeholders, industry bodies, and international regulators. This combination ensures +that the project not only develops and analyses conceptual frameworks, but also tests their plausibility in the context +of the real ATM system. + +The consortium also has access to the infrastructures required for this work. The ATM research partner maintains +modelling platforms and reference datasets that support exploratory analysis in a SESAR context. The quantum +computing partner has access to qu antum simulators and federated learning frameworks suitable for conceptual +testing. The operational partner brings established stakeholder networks and access to policy and regulatory processes +that allow the project results to be evaluated in relation to real-world governance and adoption constraints. Together, +these infrastructures provide the project with all the tools needed for TRL 1 exploration. + +=== PAGE 55 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 22 of 50 + + +The partners complement one another across the research chain. The computing expertise ensures that new methods +are explored rigorously, the ATM research expertise ensures that methods are tested against relevant operational +questions, and the operational expertise ensures that outputs are credible for stakeholders and aligned with regulatory +processes. None of these alone would be sufficient; together they provide a coherent and proportionate team for the +project. + +Cross-cutting considerations are also addressed. The consortium applies open science practices in line with Horizon +Europe requirements, including publication in open -access journals, sharing of analytical frameworks, and +compliance with FAIR data management principles. The project also acknowledges that the integration of the gender +dimension in R&I is not directly relevant to the scientific content, since the research addresses computational and +operational questions without differentiated gender impacts. However, dissemination and communication activities +will be inclusive, with attention to diversity in language, imagery, and stakeholder engagement. + +Overall, the consortium is proportionate to the scale and ambition of QUANTAIR. It combines complementary +expertise in computing, ATM research, and operational regulation, has access to the required infrastructures, and is +well positioned to deliver the pr oject’s objectives while preparing the ground for future SESAR research at higher +maturity levels. + +#§CON-SOR-CS§# #§PRJ-MGT-PM§# +Tables for section 3.1 +Table 3.1a: List of work packages +Work +package +No +Work Package +Title +Lead +Participant +No +Lead +Participant +Short Name +Person- +Months +Start +Month +End +month +1 Project +Management & +CDE +1 DLR 10 01 24 +2 QUANTAIR +Research +Activity, Part A +2 Qoro 18 01 09 +3 QUANTAIR +Research +Activity, Part B +2 Qoro 18 09 18 +4 CDE Wrap-up 3 SkyNav 4 18 24 + + +Table 3.1b: Work package description +For each work package: +Work package number 1 +Work package title Project Management & CDE + + +=== PAGE 56 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 23 of 50 + +Objectives +This work package ensures that the project is managed efficiently and in full alignment with Horizon Europe +and SESAR 3 JU requirements. It provides governance, financial and administrative management, reporting, +and quality assurance across the project. I t also covers the planning and execution of communication, +dissemination, exploitation, and data management activities, ensuring that results are properly documented and +shared. In doing so, it establishes the framework for the project’s visibility and impact, and leads directly into +the final CDE phase (WP4) where these activities are consolidated and completed. +The specific objectives are to: +1. Ensure effective project governance and coordination, including quality assurance and compliance +with SESAR 3 JU requirements. +2. Establish and maintain the project’s management framework through delivery and updating of the +Project Management Plan (PMP), Data Management Plan (DMP), and related documentation. +3. Provide timely and accurate reporting, including periodic reports and preparation for SESAR reviews. +4. Plan and implement communication, dissemination, and exploitation activities, including the +Communication and Dissemination Plan (CDE), project website, online presence, and events. +5. Support long-term uptake and impact by drafting and finalising the exploitation and impact strategy, +ensuring compliance with open science and FAIR data requirements, and preparing the transition into +the final CDE wrap-up phase. + +Description of work +Governance will be provided by a Project Management Board (PMB), chaired by the Coordinator and +composed of one representative from each partner. The PMB will meet quarterly to review progress, monitor +risks, and take decisions on both technical and admini strative issues. The Project Coordinator will manage +day-to-day operations and act as the primary interface with SESAR 3 JU. A Kick-off Meeting (KoM) in Month +1 will formally establish working procedures, confirm roles and responsibilities, and launch project activities. + +A Project Management Plan (PMP) will be delivered in Month 3 to formalise procedures for governance, +reporting, quality assurance, and risk management. This will include internal review mechanisms to ensure +that all deliverables are technically sound, consistent, and aligned with SESAR standards before submission. +The PMP will be updated at mid -point (M12) to reflect lessons learned and adjustments. Progress will be +monitored continuously, with corrective measures applied promptly in case of deviations. + +Research data will be managed under a Data Management Plan (DMP), produced in Month 3 and updated as +needed. The DMP will describe the types of data generated, their provenance, and how FAIR principles +(Findable, Accessible, Interoperable, Reusable) will be applied. Where confidentiality or security constraints +apply, these will be documented with clear justification. Datasets and analytical outputs will be preserved in +trusted repositories with persistent identifiers to ensure long-term access. + +The Communication, Dissemination and Exploitation (CDE) Plan will also be delivered in Month 3 and +updated at least once during the project (M12). It will define the channels and activities to ensure visibility and +uptake of results, including the project website, open -access publications, contributions to SESAR +dissemination events, and targeted outreach to scientific, operational, and policy audiences. A mid -project +dissemination event will be held at M12 to share initial results and prepare the ground for the final wrap -up +phase. WP1 therefore establishes the framework for CDE activities, while the final consolidation and impact +reporting are delivered in WP4. + +Exploitation measures will focus on enabling results to be taken forward in future SESAR research and by +stakeholders such as ANSPs, regulators, and ICAO working groups. Intellectual property will be managed in + +=== PAGE 57 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 24 of 50 + +line with Horizon Europe rules and the consortium agreement, with a principle of openness unless specific +protection is required to preserve exploitation potential. A draft post-research exploitation and impact strategy +will be delivered in M24, which then feeds into WP4 for finalisation and promulgation. + +Reporting will cover all mandatory submissions to SESAR 3 JU, including periodic reports at the end of each +reporting period and the final project report at closure. SESAR review meetings will be treated as milestones +in project governance. The consortium will prepare collectively for these reviews, ensuring that deliverables, +presentations, and supporting evidence are complete and coherent. Internal review meetings will be scheduled +in advance to prepare for each review and ensure alignment with SESAR expectations. + + + +Work package number 2 +Work package title QUANTAIR Research Activity, Part A + +Objectives +This work package establishes the conceptual and analytical foundations for applying Quantum Federated +Learning (QFL) in Air Traffic Management. It provides the first structured exploration of how QFL could be +framed within ATM constraints, how it might operate across distributed stakeholders, and what benefits or +limitations may arise in different operational contexts. The emphasis is on scoping and structuring the research, +and on producing verifiable outputs that are consistent with the TRL 1 nature of the project and suitable for +review at the end of the first reporting period. +The specific objectives are to: +1. Define the conceptual framework for QFL in ATM, including assumptions on data distribution, +privacy constraints, stakeholder behaviour, and computational resources. +2. Scope and characterise the four exploratory cases (PREDICT, HORIQON, SHIELD, CONTRADE), +identifying the ATM challenges they represent and their relevance to SESAR priorities. +3. Develop baseline analytical models for each case, using synthetic data and structured representations +of ATM processes to test conceptual feasibility. +4. Identify potential benefits, limitations, and open research questions arising from each case, recording +these in interim deliverables. +5. Produce a consolidated interim report that synthesises findings across all cases and highlights cross - +cutting requirements for advancing to TRL 2–3 research. + + +Description of work +The purpose of WP2 is to establish the conceptual and analytical basis of the project. The first nine months are +dedicated to scoping the research in a structured way, producing tangible outputs that allow progress to be +verified at the interim review. This reflects both the TRL 1 nature of QUANTAIR and the SESAR requirement +for clear evidence of achievement within the first reporting period. The work ensures that Quantum Federated +Learning is not treated as an abstract concept, but is defined in relation to the constraints and opportunities of +Air Traffic Management. + +The work begins with the development of the conceptual framework for QFL in ATM. This framework sets +out the core assumptions on which the research is based, including the distribution and heterogeneity of data +sources, the privacy constraints that prevent raw data exchange, the behavioural preferences of stakeholders + +=== PAGE 58 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 25 of 50 + +such as airlines’ cost -index settings, and the computational resources that can realistically be assumed at +different maturity levels. It also addresses governance considerations, such as how trust and participation are +established between stakeholders, and what indicators of feasibility can be applied at TRL 1. This step creates +the common reference point against which each exploratory case can be analysed. + +Each of the four exploratory cases is then scoped in detail. For PREDICT, HORIQON, SHIELD, and +CONTRADE, the partners will describe the operational challenge, its connection to SESAR Master Plan +objectives, and the specific way in which QFL could apply. This scoping ensures that the project covers a +broad spectrum of ATM challenges (predictability, high -altitude integration, resilience, and environmental +optimisation) rather than variations on a single theme. It also defines for each case the boundaries of what can +be assessed at TRL 1, the types of data or models that would be relevant, and the expected indicators of benefit +or limitation. + +Once the scoping is complete, baseline analytical models will be developed for each case. These models will +use synthetic data and structured representations of ATM processes, rather than operational datasets, to ensure +that the work remains feasible within a TRL 1 scope. The models are intended to test conceptual feasibility: +whether QFL can in principle represent the ATM dynamics involved, whether stakeholder constraints can be +incorporated in a distributed way, and whether potential benefits can be expressed in measurable terms. This +activity requires close collaboration between the partners: the quantum computing expertise to design federated +and distributed model structures, the ATM research expertise to represent operational processes, and the +operational expertise to validate the plausibility of assumptions. + +Findings from the framework and case models will be captured continuously and compared across cases. This +cross-case analysis is a critical part of WP2: it ensures that common themes are identified, that lessons from +one case inform the others, and that ga ps and limitations are recorded in a way that can guide WP3. Interim +deliverables, including the Exploratory Research Plan (ERP), Exploratory Research Report (ERR), and +Concept Outlines, provide formal records of this work. These deliverables will undergo internal review and +PMB approval before submission to SESAR 3 JU, ensuring technical soundness and alignment with SESAR +standards. + +Resource allocation in WP2 reflects the intensity of this phase. All three partners are engaged in parallel across +the four cases, with effort distributed according to expertise: ATM research leads the case scoping and +conceptual assumptions, the quantum partner leads federated modelling structures, and the operational partner +ensures realism, regulatory alignment, and tra ceability to stakeholder concerns. The effort in WP2 is +proportionately the largest, as it defines the trajectory for the remainder of the project and provides the evidence +required at the first review milestone. + +By the end of WP2, the project will have established a conceptual framework for QFL in ATM, scoped and +modelled its application across four distinct operational contexts, and produced the first structured assessment +of feasibility. These outputs provide the foundation for refinement and integration in WP3, and allow SESAR +to judge progress at the interim stage with confidence that the project is on track. + + +Work package number 3 +Work package title QUANTAIR Research Activity, Part B + +Objectives +This work package builds directly on the foundations established in WP2. Whereas WP2 defined the + +=== PAGE 59 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 26 of 50 + +conceptual framework and developed initial models for the exploratory cases, WP3 is focused on refinement, +cross-case synthesis, and the production of final research outputs. The emphasis is on consolidating results +into a coherent assessment of Quantum Federated Learning (QFL) in ATM, and on defining realistic pathways +for future research at higher maturity levels. WP3 therefore completes the scientific work of the project before +the CDE wrap-up phase begins. +The specific objectives are to: +1. Refine and extend the exploratory case models developed in WP2, incorporating lessons learned and +addressing the open questions identified in the first reporting period. +2. Conduct systematic cross-case analysis to identify common challenges, benefits, and limitations of +QFL across diverse ATM domains. +3. Develop structured recommendations for advancing QFL research towards TRL 2 –3, including the +conditions under which quantum machine learning and other quantum methods could provide +additional value. +4. Produce a consolidated final research report that synthesises the project’s findings, documents +conceptual advances, and defines priorities for future SESAR research. +5. Frame the results to support dissemination and exploitation, ensuring that outputs are relevant for +SESAR follow-on projects, ATM stakeholders, and international bodies such as ICAO and EASA. + + +Description of work +WP3 represents the second phase of the research activity and builds directly on the foundations established in +WP2. While the first nine months of the project are focused on scoping and baseline modelling, the following +nine months are dedicated to refinement, integration, and the delivery of the final research outputs. The aim is +to consolidate the work of the exploratory cases into a coherent assessment of Quantum Federated Learning in +ATM, and to provide recommendations and pathways for how this early-stage research can be taken forward +at higher maturity levels. + +The work begins with refinement of the exploratory case models. Each case - PREDICT, HORIQON, SHIELD, +and CONTRADE - will be revisited using the frameworks and assumptions established in WP2. The baseline +models developed earlier will be extended to incorporate lessons learned, address gaps identified in the interim +review, and respond to stakeholder feedback where appropriate. Refinement may include adjusting +assumptions on data distribution or stakeholder behaviour, testing alternative formulations of the federated +learning approach, or clarifying the conditions under which conceptual feasibility is most evident. This ensures +that the case outputs are not static one -off analyses but part of an iterative process of validation and +improvement. + +Once the case models have been refined individually, the consortium will conduct systematic cross -case +analysis. The purpose of this activity is to extract common themes and divergences across the four contexts. +For example, it may be that QFL appears most promising in situations where privacy constraints dominate (as +in SHIELD or CONTRADE), but less so where operational predictability is already supported by centralised +models (as in PREDICT). Cross -case analysis allows the consortium to identify these patterns, quantify +similarities and differences where possible, and derive generalisable insights. It also ensures that the project +delivers more than four separate case studies: the results are integrated into a broader understanding of where +QFL can contribute to ATM and where its limitations are most apparent. + +In parallel, WP3 develops structured recommendations for the future. These recommendations will set out the +steps required to advance QFL research to TRL 2 –3, including what kinds of datasets, computational tools, +and stakeholder collaborations will be needed. They will also identify where quantum optimisation and other +quantum computing methods could in future provide additional value, recognising that current hardware is not + +=== PAGE 60 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 27 of 50 + +yet sufficient for operational validation but that pathways towards higher maturity can be mapped. The +recommendations will be positioned within the SESAR programme context, linking to Master Plan objectives +and ensuring coherence with European and international research agendas. + +The culmination of WP3 is the production of the final consolidated research report. This document will +synthesise the project’s findings, document the conceptual advances achieved, and set out the open questions +that remain. It will provide the first structured TRL 1 assessment of QFL in ATM, written in a way that supports +both technical follow -on research and policy -level consideration. The report will be accompanied by +consolidated concept outlines for each case, ensuring that results are clearly traceabl e and can be compared +across contexts. + +The work in WP3 also contributes directly to dissemination and exploitation. By framing results in a way that +is relevant for SESAR follow -on projects, ATM stakeholders, and international bodies such as ICAO and +EASA, the outputs of WP3 are designed to be immediately useful beyond the project itself. This includes +highlighting potential contributions to international guidance documents (such as ICAO’s GATMOC) and to +regulatory roadmaps such as the EASA AI and Higher Airspace Operations strategies. + +The resources allocated to WP3 reflect the need for intensive collaborative work. All partners are fully +engaged: quantum computing expertise is used to refine federated modelling structures and assess long -term +scalability; ATM research expertise leads th e cross -case synthesis and ensures coherence with SESAR +frameworks; and operational and regulatory expertise ensures that recommendations are framed in a way that +is credible to stakeholders and aligned with the wider aviation ecosystem. WP3 therefore represents the point +where the strands of the project are brought together, refined, and translated into outputs that are not only +scientifically sound but also operationally meaningful. + +By the end of WP3, the project will have moved from initial feasibility exploration to a consolidated set of +findings. The results will provide a clear picture of how QFL could contribute to ATM, what limitations must +be addressed, and what steps are required to move forward. This provides a natural transition into WP4, where +dissemination, exploitation, and open science compliance are finalised and the project’s impact is secured. + +Work package number 4 +Work package title Post Research CDE Activity + +Objectives +This work package consolidates and amplifies the results of the project, ensuring that the outputs of +QUANTAIR are visible, accessible, and usable for future research, regulatory processes, and operational +stakeholders. While CDE activities are initiated in WP1, the final phase provides dedicated focus o n +exploitation, open science compliance, and high -impact dissemination. WP4 demonstrates the consortium’s +commitment to maximising the value of Horizon Europe and SESAR investment, by delivering results that are +technically credible, operationally relevant, and aligned with European and international aviation strategies. +The specific objectives are to: +1. Finalise the exploitation and impact strategy, translating project results into clear recommendations +for SESAR follow -on activities, national and European research agendas, and international bodies +such as ICAO and EASA. +2. Ensure compliance with open science and FAIR principles , producing a repository of project +outputs (reports, models, datasets, metadata) in trusted long-term archives with persistent identifiers. +3. Maximise dissemination to the research community , through open -access publications, +contributions to SESAR dissemination events, and active presence in scientific fora. + +=== PAGE 61 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 28 of 50 + +4. Promote visibility towards operational and policy stakeholders , including ANSPs, airlines, +regulators, and industry, by framing project results in terms of operational feasibility, policy relevance, +and long-term research pathways. +5. Deliver a final public event and supporting materials, showcasing the project’s achievements and +providing a platform for dialogue with the wider ATM community, demonstrating the value of SESAR +exploratory research and its contribution to the Digital European Sky vision. + +Description of work +WP4 consolidates the results of the project and ensures that they are visible, accessible, and exploitable beyond +the lifetime of QUANTAIR. While communication, dissemination, and exploitation activities are initiated +under WP1 to give early visibility, th is final phase provides dedicated focus on maximising impact. The +emphasis is on producing a final exploitation and impact strategy, ensuring compliance with open science +principles, and delivering a high-quality public event that promotes the project’s results to both technical and +policy audiences. + +The first strand of work concerns the exploitation and impact strategy. A draft version is developed under +WP1, but in WP4 this is finalised based on the complete research results. The strategy translates conceptual +findings into concrete recommendations for SESAR follow-on activities, as well as guidance for national and +European research agendas. It also identifies how the results can support international bodies such as ICAO, +for example through inputs to the Global Air Traffic Management Operational Con cept (GATMOC), and +EASA, through alignment with the AI Roadmap and Higher Airspace Operations strategy. By framing the +results in terms of both research and policy pathways, the strategy ensures that QUANTAIR provides +maximum value to SESAR and the wider aviation community. + +The second strand addresses open science and data preservation. A final repository of project outputs will be +prepared, ensuring that reports, conceptual models, metadata, and other analytical products are made available +in trusted long-term archives. All materials will carry persistent identifiers to guarantee findability and access, +and licensing conditions will be clearly stated to encourage reuse where possible. This ensures that the research +remains transparent and accessible, in line with the FAIR pri nciples (Findable, Accessible, Interoperable, +Reusable) and Horizon Europe’s open science obligations. Sensitive or restricted material will be clearly +documented, with justifications for any limitations on access. + +The third strand is dissemination to the research community. Results will be submitted for publication in open- +access journals and conference proceedings, ensuring peer-reviewed visibility and providing a foundation for +subsequent academic and industrial r esearch. The consortium will also contribute to SESAR dissemination +events, workshops, and thematic fora, presenting QUANTAIR as a case study of how Horizon Europe +exploratory research can be used to investigate emerging concepts at TRL 1. This creates continuity with other +SESAR activities and supports the integration of results into the wider Digital European Sky programme. + +A fourth strand focuses on visibility towards operational and policy stakeholders. While the research is +conceptual, its framing will be tailored to the concerns of ANSPs, airlines, regulators, and manufacturers. +Materials will highlight the operational implications of the findings, such as the handling of sensitive airline +preferences (e.g. cost index), or the potential for privacy-preserving collaboration on contrail avoidance. The +project will also prepare concise policy briefs, targeted at European institutions, to make the research outputs +accessible to decision-makers without requiring them to engage with technical detail. + +Finally, WP4 delivers a high-impact final dissemination event. This event, organised at the end of the project, +will bring together the SESAR research community, operational stakeholders, and policy representatives. It +will showcase the project’s achievements, present the consolidated results, and provide a forum for discussion + +=== PAGE 62 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 29 of 50 + +on how QFL research should be taken forward. Supporting materials, including an event report, presentations, +and a digital archive of outputs, will ensure that the visibility of the project extends beyond the event itself. +The work in WP4 requires contributions from all partners. The ATM research partner ensures that the +exploitation strategy is aligned with SESAR frameworks. The quantum computing partner provides visibility +on how the conceptual work can evolve as technolog y matures. The operational partner ensures that +dissemination is framed in terms that resonate with industry and regulators. Together, the consortium ensures +that the final outputs are technically credible, operationally meaningful, and presented in a way that maximises +their uptake. + +By the end of WP4, QUANTAIR will have delivered not only a comprehensive set of scientific results, but +also the supporting materials, strategies, and outreach activities needed to ensure that those results have impact. +The project will leave behind a transparent and accessible record of its findings, contribute to SESAR’s long- +term research programme, and demonstrate the role of Horizon Europe exploratory research in shaping the +future of ATM. + +Table 3.1c: List of Deliverables +Nr. Deliverable +name Short description +Work +package +number +Short +name of +lead +participant +Type +Disse +minati +on +level +Delivery +date +(in +months) +1.1 KOM Report Report from the Kick-off +Meeting 1 DLR R PU 1 +1.2 Initial PMP +Initial Project +Management Plan 1 DLR R PU 3 +1.3 Initial CDE +Plan +Initial Communication, +Dissemination & +Exploitation plan +1 SkyNav R PU 3 +1.4 Online +presence +Project Website and +Online presence 1 SkyNav DEC PU 3 +1.5 Initial DMP Initial Data Management +Plan 1 DLR R PU 6 +1.6 HE Report Periodic HE technical and +Financial report 1 Qoro R CO 9 +1.7 Updated +PMP +Updated Project +Management Plan 1 DLR R PU 12 +1.8 Updated +CDE Plan +Updated Communication, +Dissemination & +Exploitation plan +1 SkyNav R PU 12 +1.9 Mid-project +Event +Information event about +research progress 1 SkyNav OTH PU 12 +1.10 Updates +DMP +Updated Data +Management Plan 1 DLR R PU 15 +1.11 Final project +report Final project report 1 DLR R CO 24 + +=== PAGE 63 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 30 of 50 + +2.1 Initial ERP Initial Exploratory +Research Plan 2 Qoro R PU 4 +2.2 Initial ERR Initial Exploratory +Research Report 2 Qoro R PU 6 +2.3 Initial CO Initial Concept Outline 2 Qoro R PU 6 +3.1 Final ERP Final Exploratory Research +Plan 3 Qoro R PU 16 +3.2 Final ERR Final Exploratory Research +Report 3 Qoro R PU 18 +3.3 Final CO Final Concept Outline 3 Qoro R PU 18 +4.1 Initial EI +Strategy +Initial Post-Research +Exploitation & Impact +Strategy +4 SkyNav R PU 20 +4.2 Final EI +Strategy +Final Exploitation & Impact +Strategy 4 SkyNav R PU 24 +4.3 Compliance +Report +Repository & Open Science +Compliance Report 4 SkyNav R PU 24 +4.4 Final Event +Report +Final Promulgation Event +Report 4 SkyNav R PU 24 + +Table 3.1d: List of milestones +Milestone +number +Milestone name Related work +package(s) +Due date (in month) Means of verification +MS1.1 Project Governance +Established +1 1 PMB in place; KoM held; +PMP development +launched. + KoM report (D1.1). +MS1.2 + +Management and +CDE Frameworks +Approved +1 3 PMP, DMP, and initial +CDE Plan delivered and +accepted. +Submission of +D1.2/1.3/D1.5. +MS1.3 + +Mid-Project Review +Prepared +1 12 Updated PMP and CDE +delivered; Mid-project +event held. +Submission of D1.5–D1.8. +MS1.4 + +Draft Exploitation & +Impact Strategy +Produced + +1 18 Exploitation and impact +strategy delivered in draft, +ready for hand-over to +WP4. +Submission of D1.10. +MS1.5 + +Final Review & +Project Closure +1, 4 24 Final project report +delivered; SESAR final +review completed. +Acceptance of D1.9– +D1.10. + + +=== PAGE 64 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 31 of 50 + +Table 3.1e: Critical risks for implementation #@RSK-MGT-RM@# +Description of risk (indicate level of +(i) likelihood, and (ii) severity: +Low/Medium/High) +Work package(s) +involved +Proposed risk-mitigation measures +R1. QFL concept does not yield +meaningful insights at TRL 1 +(Likelihood: Medium; Severity: High). +Interim models show no plausible +feasibility signals across exploratory +cases. +WP2 WP3 Treat inconclusive or negative results as +valid TRL 1 outcomes; ensure each case +has at least two formulations so +alternatives can be tested; document +limits clearly and extract learning for +future TRL 2–3 work. +R2. Assumptions and frameworks +diverge between cases leading to +inconsistent or incomparable results +(Likelihood: Medium; Severity: +Medium). +WP2 WP3 + +Maintain a common framework agreed +in D2.1; record all assumptions in an +“assumptions register” reviewed by +PMB; hold cross-partner review sessions +before submitting deliverables. +R3. Baseline models cannot capture +distributed ATM constraints +realistically (privacy, governance, +airline cost-index preferences) +(Likelihood: Medium; Severity: +Medium). +WP2 Start with simplified synthetic scenarios; +expand gradually; involve operational +experts early; record limitations +explicitly in interim reports. +R4. Exploratory cases overlap too +much, reducing distinct insights +(Likelihood: Medium; Severity: +Medium). +WP2 WP3 + +Enforce differentiation when scoping +cases; PMB validates distinct objectives +for each; adjust case emphasis if overlap +is detected. +R5. Over-reliance on synthetic data +reduces credibility of results +(Likelihood: Medium; Severity: +Medium). +WP2 WP3 + +Anchor synthetic datasets to published +SESAR references; use sensitivity +analyses to show robustness; invite +stakeholder feedback at mid-project +event. +R6. Role of quantum computing is +overstated or too vague (Likelihood: +Medium; Severity: High). +WP2 WP3 + +Link all quantum-related statements to +clear conditions of validity; maintain a +“claims register”; ensure internal peer +review of evidence before submission. +R7. Limited stakeholder engagement +reduces visibility and uptake +(Likelihood: Low; Severity: Medium). +WP1 WP4 + +Use consortium networks across ATM, +regulatory, and research communities; +organise mid-project and final events; +publish open-access outputs and policy +briefs. +R8. Unavailability of key staff due to +illness, turnover, or conflicting +commitments (Likelihood: Medium; +Severity: Medium). +WP1 WP2 WP3 WP4 + +Redistribute effort across the consortium +where possible, using flexibility in the +Horizon Europe rules; adjust timelines +for lower-priority tasks to protect critical +deliverables; replace staff within the +same partner if necessary, ensuring +continuity of expertise. + +#§RSK-MGT-RM§# + + +=== PAGE 65 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + + + +Part B - Page 32 of 50 + +Table 3.1f: Summary of staff effort + WP1 WP2 WP3 WP4 Total Person- +Months per Participant +1/DLR 5 5 5 1 16 +2/Qoro 6 14 12 3 35 +3/SkyNav 11.8 6 6 4 27.8 +Total Person Months 22.8 25 23 8 78.8 + +Table 3.1h: ‘Purchase costs’ items (travel and subsistence, equipment and other goods, works and +services) +1/DLR + Cost (€) Justification +Travel and subsistence 5000 Travel for conferences, workshops, and team meetings + +Equipment - +Other goods, works and +services +- +Remaining purchase costs +(<15% of pers. Costs) +- +Total 5000 + +2/Qoro + Cost (€) Justification +Travel and subsistence 12500 Travel for conferences, workshops, and team meetings + +Equipment - +Other goods, works and +services +2000 Consortia events, venue and facilities +Remaining purchase costs +(<15% of pers. Costs) +- +Total 12500 + +3/SkyNav + Cost (€) Justification +Travel and subsistence 17500 Travel for conferences, workshops, and team meetings + +Equipment - +Other goods, works and +services +- +Remaining purchase costs +(<15% of pers. Costs) +- +Total 17500 + +#§QUA-LIT-QL§# #§WRK-PLA-WP§# + +=== PAGE 66 === + + +Commission européenne/Europese Commissie, 1049 Bruxelles/Brussel, BELGIQUE/BELGIË - Tel. +32 22991111 + + + + +This electronic receipt is a digitally signed version of the document submitted by your +organisation. Both the content of the document and a set of metadata have been digitally +sealed. +This digital signature mechanism, using a public -private key pair mechanism, uniquely +binds this eReceipt to the modules of the Funding & Tenders Portal of the European +Commission, to the transaction for which it was generated and ensures its full integr ity. +Therefore a complete digitally signed trail of the transaction is available both for your +organisation and for the issuer of the eReceipt. +Any attempt to modify the content will lead to a break of the integrity of the electronic +signature, which can b e verified at any time by clicking on the eReceipt validation +symbol. +More info about eReceipts can be found in the FAQ page of the Funding & Tenders +Portal. +(https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/support/faq) + \ No newline at end of file diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/Rejection decision Information Letter - QUANTAIR.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/Rejection decision Information Letter - QUANTAIR.txt new file mode 100644 index 0000000..fb3b98c --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/Rejection decision Information Letter - QUANTAIR.txt @@ -0,0 +1,48 @@ + + +=== PAGE 1 === +Andreas SPÖRL +DEUTSCHES ZENTRUM FUR LUFT - UND +RAUMFAHRT EV +LINDER HOHE +51147 KOLN +GERMANY +Subject: Horizon Europe (HORIZON) +Call: HORIZON-SESAR-2025-DES-ER-03 +Project: 101289612 — QUANTAIR +Rejection letter +Dear Applicant, +I am writing in connection with your proposal for the above-mentioned call. +Having completed the evaluation, we regret to inform you that your proposal, despite its merits, can +unfortunately not be funded, given the budgetary resources available for the call. +Please find enclosed the evaluation summary report (ESR). +More information on the evaluation of the call is published in a topic update in the Funding & Tenders +Portal. +I would be grateful if you could inform everyone involved in your proposal of this letter. +We thank you for your interest and hope that you will not be discouraged from applying to our calls +in the future. +Yours faithfully, +Andreas BOSCHEN +Executive Director +Enclosure: Evaluation summary report (ESR) +1 +Ref. Ares(2026)1020198 - 29/01/2026 + + +=== PAGE 2 === +Information on the means of redress +If you believe that the rejection of your proposal was based on an error in the selection procedure, you can submit a: +– request for admissibility/eligibility or evaluation review (redress review) — within 30 days of receiving this letter +(via your Funding & Tenders Portal account > My Proposal(s) > Actions > Follow-up > Launch new interaction +with the EU) +– action for annulment under Article 263 TFEU — within 2 months of receiving the letter (by application to the +EU General Court). + Please be aware that complaints against decisions taken by an EU executive agency or other EU body must be directed +against that agency/body, NOT against the European Commission. + You are free to choose any of the above means of redress. However, in the interest of good administration and procedural +efficiency, it is recommended to use first the available administrative review procedures (if any). The objective of these +procedures is to re-examine the circumstances of the selection procedure and to reach a final decision on your application. +Deadlines for further redress will therefore run as from when you receive our reply with the final position. +For more information and conditions (including on other types of complaints, such as to the European Ombudsman, etc), +please see the Online Manual and IT How To. +2 \ No newline at end of file diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/Rejection decision Information Letter - SPARTA.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/Rejection decision Information Letter - SPARTA.txt new file mode 100644 index 0000000..d607635 --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/Rejection decision Information Letter - SPARTA.txt @@ -0,0 +1,49 @@ + + +=== PAGE 1 === +Ovidiu DUMITRACHE +EUROCONTROL - EUROPEAN +ORGANISATION FOR THE SAFETY OF +AIR NAVIGATION +Rue de la Fusée 96 +1130 BRUXELLES +BELGIUM +Subject: Horizon Europe (HORIZON) +Call: HORIZON-SESAR-2025-DES-IR-02 +Project: 101288039 — SPARTA +Rejection letter +Dear Applicant, +I am writing in connection with your proposal for the above-mentioned call. +Having completed the evaluation, we regret to inform you that your proposal, despite its merits, can +unfortunately not be funded, given the budgetary resources available for the call. +Please find enclosed the evaluation summary report (ESR). +More information on the evaluation of the call is published in a topic update in the Funding & Tenders +Portal. +I would be grateful if you could inform everyone involved in your proposal of this letter. +We thank you for your interest and hope that you will not be discouraged from applying to our calls +in the future. +Yours faithfully, +Andreas BOSCHEN +Executive Director +Enclosure: Evaluation summary report (ESR) +1 +Ref. Ares(2026)1020589 - 29/01/2026 + + +=== PAGE 2 === +Information on the means of redress +If you believe that the rejection of your proposal was based on an error in the selection procedure, you can submit a: +– request for admissibility/eligibility or evaluation review (redress review) — within 30 days of receiving this letter +(via your Funding & Tenders Portal account > My Proposal(s) > Actions > Follow-up > Launch new interaction +with the EU) +– action for annulment under Article 263 TFEU — within 2 months of receiving the letter (by application to the +EU General Court). + Please be aware that complaints against decisions taken by an EU executive agency or other EU body must be directed +against that agency/body, NOT against the European Commission. + You are free to choose any of the above means of redress. However, in the interest of good administration and procedural +efficiency, it is recommended to use first the available administrative review procedures (if any). The objective of these +procedures is to re-examine the circumstances of the selection procedure and to reach a final decision on your application. +Deadlines for further redress will therefore run as from when you receive our reply with the final position. +For more information and conditions (including on other types of complaints, such as to the European Ombudsman, etc), +please see the Online Manual and IT How To. +2 \ No newline at end of file diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/Rejection decision Information Letter - STRATUS.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/Rejection decision Information Letter - STRATUS.txt new file mode 100644 index 0000000..0a69aa2 --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/Rejection decision Information Letter - STRATUS.txt @@ -0,0 +1,49 @@ + + +=== PAGE 1 === +Ovidiu DUMITRACHE +EUROCONTROL - EUROPEAN +ORGANISATION FOR THE SAFETY OF +AIR NAVIGATION +Rue de la Fusée 96 +1130 BRUXELLES +BELGIUM +Subject: Horizon Europe (HORIZON) +Call: HORIZON-SESAR-2025-DES-ER-03 +Project: 101290642 — STRATUS +Rejection letter +Dear Applicant, +I am writing in connection with your proposal for the above-mentioned call. +Having completed the evaluation, we regret to inform you that your proposal, despite its merits, can +unfortunately not be funded, given the budgetary resources available for the call. +Please find enclosed the evaluation summary report (ESR). +More information on the evaluation of the call is published in a topic update in the Funding & Tenders +Portal. +I would be grateful if you could inform everyone involved in your proposal of this letter. +We thank you for your interest and hope that you will not be discouraged from applying to our calls +in the future. +Yours faithfully, +Andreas BOSCHEN +Executive Director +Enclosure: Evaluation summary report (ESR) +1 +Ref. Ares(2026)1020185 - 29/01/2026 + + +=== PAGE 2 === +Information on the means of redress +If you believe that the rejection of your proposal was based on an error in the selection procedure, you can submit a: +– request for admissibility/eligibility or evaluation review (redress review) — within 30 days of receiving this letter +(via your Funding & Tenders Portal account > My Proposal(s) > Actions > Follow-up > Launch new interaction +with the EU) +– action for annulment under Article 263 TFEU — within 2 months of receiving the letter (by application to the +EU General Court). + Please be aware that complaints against decisions taken by an EU executive agency or other EU body must be directed +against that agency/body, NOT against the European Commission. + You are free to choose any of the above means of redress. However, in the interest of good administration and procedural +efficiency, it is recommended to use first the available administrative review procedures (if any). The objective of these +procedures is to re-examine the circumstances of the selection procedure and to reach a final decision on your application. +Deadlines for further redress will therefore run as from when you receive our reply with the final position. +For more information and conditions (including on other types of complaints, such as to the European Ombudsman, etc), +please see the Online Manual and IT How To. +2 \ No newline at end of file diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/SCAN Proposal-SEP-211192326.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/SCAN Proposal-SEP-211192326.txt new file mode 100644 index 0000000..ca0cb3d --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/SCAN Proposal-SEP-211192326.txt @@ -0,0 +1,6586 @@ + + +=== PAGE 1 === +Administrative forms +Page 1 of 167 Last saved 16/09/2025 18:16Horizon Europe ver 1.00 20241022 +Call: HORIZON-SESAR-2025-DES-IR-02 + (Digital European Sky Industrial Research 02) +Topic: HORIZON-SESAR-2025-DES-IR-02-WA3-2 +Type of Action: HORIZON-JU-RIA + (HORIZON JU Research and Innovation Actions) +Proposal number: 101288550 +Proposal acronym: SCAN +Type of Model Grant Agreement: HORIZON Lump Sum Grant +Table of contents +Section Title Action +1 General information +2 Participants +3 Budget +4 Ethics and security +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 2 === +Administrative forms +Page 2 of 167 +Proposal ID 101288550 +Acronym SCAN +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 18:16 +1 - General information +Fields marked * are mandatory to fill. +Topic HORIZON-SESAR-2025-DES-IR-02-WA3-2 +Type of Model Grant Agreement HORIZON-AG-LS +Type of Action HORIZON-JU-RIA +Call HORIZON-SESAR-2025-DES-IR-02 +Acronym SCAN +Proposal title SCAN: Reviewing, Adapting and Developing CNS Infrastructure and Services to Ensure the Safe Integration of +HAO And STO Vehicles +Note that for technical reasons, the following characters are not accepted in the Proposal Title and will be removed: < > " & +Duration in +months 36 +Free keywords +Higher Altitude Operations Space Transport Operations CNS equipment performance non-barometric altimetry +HAPS integration new entrants +Abstract * +In the context of integrating Space and Higher Altitude Operations in European ATM, there is a need to evaluate and mitigate the +potential performance gap between current CNS and HAO specific requirements. Moreover, it has been established that altimetry +solutions based on barometric measurements are not reliable for safe operations above FL 600. It is therefore needed to identify non- +barometric altimetry solutions compatible with HAO. + +SCAN will build on the outcome of CNS infrastructure studies and flight trials currently ongoing in the ECHO2 project and will move +forward with the ambition to: +a. Propose a set of feasible technical components and services to serve the CNS needs for diverse vehicles operating in the +higher airspace within Europe and beyond; +b. Engage with airspace users (conventional aviation and HAO operators), ANSPs, industry and aviation authorities to align +expectations on benefits and operational acceptability of the proposed CNS solutions or new paradigms for air traffic management. +c. Support a clear path forward for future CNS developments, including standardisation and regulatory framework evolution to +support the European pioneer initiatives on HAO. +Remaining characters 804 +Has this proposal (or a very similar one) been submitted in the past 2 years in response to a call for + proposals under any EU programme, including the current call? +Yes No +Please give the proposal reference or contract number. +Previously submitted proposals should be with either 6 or 9 digits. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 3 === +Administrative forms +Page 3 of 167 +Proposal ID 101288550 +Acronym SCAN +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 18:16 +Declarations +Field(s) marked * are mandatory to fill. +1) We declare to have the explicit consent of all applicants on their participation and on the content of this proposal. * +2) We confirm that the information contained in this proposal is correct and complete and that none of the project +activities have started before the proposal was submitted (unless explicitly authorised in the call conditions). * +3) We declare: + - to be fully compliant with the eligibility criteria set out in the call + - not to be subject to any exclusion grounds under the EU Financial Regulation 2018/1046 + - to have the financial and operational capacity to carry out the proposed project. * +4) We acknowledge that all communication will be made through the Funding & Tenders Portal +electronic exchange system and that access and use of this system is subject to the Funding & Tenders Portal Terms +and Conditions. * +5) We have read, understood and accepted the Funding & Tenders Portal Terms & Conditions and +Privacy Statement that set out the conditions of use of the Portal and the scope, purposes, retention periods, etc. for +the processing of personal data of all data subjects whose data we communicate for the purpose of the application, +evaluation, award and subsequent management of our grant, prizes and contracts (including financial transactions and +audits). * +6) We declare that the proposal complies with ethical principles (including the highest standards of research integrity +as set out in the ALLEA European Code of Conduct for Research Integrity, as well as applicable international and +national law, including the Charter of Fundamental Rights of the European Union and the European Convention on +Human Rights and its Supplementary Protocols. Appropriate procedures, policies and structures are in place to foster +responsible research practices, to prevent questionable research practices and research misconduct, and to handle +allegations of breaches of the principles and standards in the Code of Conduct. * +7) We declare that the proposal has an exclusive focus on civil applications (activities intended to be used in military +application or aiming to serve military purposes cannot be funded). If the project involves dual-use items in the sense +of Regulation 2021/821, or other items for which authorisation is required, we confirm that we will comply with the +applicable regulatory framework (e.g. obtain export/import licences before these items are used). * +8) We confirm that the activities proposed do not +- aim at human cloning for reproductive purposes; +- intend to modify the genetic heritage of human beings which could make such changes heritable + (with the exception of research relating to cancer treatment of the gonads, which may be financed), or +- intend to create human embryos solely for the purpose of research or for the purpose of stem + cell procurement, including by means of somatic cell nuclear transfer. +- lead to the destruction of human embryos (for example, for obtaining stem cells) +These activities are excluded from funding. * +9) We confirm that for activities carried out outside the Union, the same activities would have been allowed in at least +one EU Member State. * +10) For Lump Sum Grants with a detailed budget table: We understand and accept that the EU lump sum grants must +be reliable proxies for the actual costs of a project and confirm that the detailed budget for the proposal has been +established in accordance with our usual cost accounting practices and in compliance with the basic eligibility +conditions for EU actual cost grants (see AGA - Annotated Grant Agreement, art 6) and exclude costs that are ineligible +under the Programme. Purchases and subcontracting costs must be done taking into account best value for money +and must be free of conflict of interest. * +The coordinator is only responsible for the information relating to their own organisation. Each applicant remains responsible for the information declared for +their organisation. If the proposal is retained for EU funding, they will all be required to sign a declaration of honour. +False statements or incorrect information may lead to administrative sanctions under the EU Financial Regulation. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 4 === +Administrative forms +Page 4 of 167 +Proposal ID 101288550 +Acronym SCAN +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 18:16 +2 - Participants +List of participating organisations +# Participating Organisation Legal Name Country Role Action +1 EUROCONTROL - EUROPEAN ORGANISATION FOR THE SAFBelgium Coordinator +2 DFS DEUTSCHE FLUGSICHERUNG GMBH DE Partner +3 LUFTFARTSVERKET SE Partner +4 EUROPEAN SATELLITE SERVICES PROVIDER SAS FR Partner +5 NATS (EN ROUTE) PUBLIC LIMITED COMPANY UK Partner +6 DIRECTION DES SERVICES DE LA NAVIGATION AERIENNE FR Partner +7 SkyNav Europe BE Partner +8 ECOLE NATIONALE DE L AVIATION CIVILE France Partner +9 LINKOPINGS UNIVERSITET SE Partner +10 C.I.R.A. CENTRO ITALIANO RICERCHE AEROSPAZIALI SCPA IT Partner +11 SCEYE SPAIN S.L. ES Partner +12 SKYDWELLER CANARIAS SL ES Partner +13 SKYDWELLER SL ES Affiliated +14 PARQUE TECNOLOGICO DE FUERTEVENTURASA MP Spain Partner +15 Elson Space España S.L. ES Partner +16 DEUTSCHES ZENTRUM FUR LUFT - UND RAUMFAHRT EV DE Partner +17 PILDO CONSULTING SL ES Partner +18 ENAIRE ES Partner +19 OpenUTM Ltd. IE Partner +20 ANRA TECHNOLOGIES UK LTD UK Partner +21 SKYPUZZLER APS DK Partner +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 5 === +Administrative forms +Page 5 of 167 +Proposal ID 101288550 +Acronym SCAN +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 18:16 +# Participating Organisation Legal Name Country Role Action +22 HAPS Alliance United States Associated +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 6 === +Administrative forms +Page 6 of 167 Last saved 16/09/2025 18:16 +Organisation data +PIC +999483733 +Legal name +EUROCONTROL - EUROPEAN ORGANISATION FOR THE SAFETY OF AIR NAVIGATION +Short name: EUROCONTROL + +Address +Town BRUXELLES +Postcode 1130 +Street Rue de la Fusée 96 +Country Belgium +Webpage www.eurocontrol.int +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... yes +Secondary or Higher education establishment ...... no +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 14/02/2022 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 7 === +Administrative forms +Page 7 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name Aviation Transformation Directorate +Street Rue de la Fusée 96 +Town BRUXELLES +Same as proposing organisation's address +not applicable +Country Belgium +Postcode 1130 +Department 2 +Department name Network Manager Directorate +Street Rue de la Fusée 96 +Town BRUXELLES +Same as proposing organisation's address +not applicable +Country Belgium +Postcode 1130 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 8 === +Administrative forms +Page 8 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Ovidiu Last name* DUMITRACHE +E-Mail* ovidiu.dumitrache@eurocontrol.int +Town BRUXELLES Post code 1130 +Street Rue de la Fusée 96 +Website www.eurocontrol.int +Position in org. Project Manager +Department Aviation Transformation Directorate +Phone +32 2 729 3052 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Belgium +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +CM Team EUROCONTROL atd.ppu.cmt@eurocontrol.int +xxx xxxxxxxxx +Pablo HARO pablo.haro@eurocontrol.int +xxx xxxxxxxxx +Augustin UDRISTIOIU augustin.udristioiu@eurocontrol.int +xxx xxxxxxxxx +Fiona MULLAN fiona.mullan@eurocontrol.int +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 9 === +Administrative forms +Page 9 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Pablo Haro Man Spain pablo.haro@euro +control.int Category B Senior resea Team member +Mr Ovidiu Dumitrache Man Romania ovidiu.dumitrach +e@eurocontrol.in +t +Category B Senior resea Leading +Ms Marta Fernandez +Castrillo +Woman Spain marta.fernandez- +castrillo@euroco +ntrol.int +Category C Recognised Team member +Mrs Fiona Mullan Woman Ireland fiona.mullan@eur +ocontrol.int +Category D First stage r Team member +Mr Dragos Tonea Man Romania dragos.tonea@eu +rocontrol.int +Category B Senior resea Team member +Mr Augustin Udristioiu Man Romania augustin.udristioi +u@eurocontrol.in +t +Category C Recognised Leading +Mr Edgar Reuber Man Germany edgar.reuber@eu +rocontrol.int +Category C Recognised Team member +Mr Gabor Fugedi Man Hungary gabor.fugedi@eu +rocontrol.int +Category C Recognised Team member +Mr Octavian Fota Man Romania octavian.fota@eu +rocontrol.int +Category B Senior resea Team member +Mrs Lucia Sandu Woman Moldova lucia.sandu@eur +ocontrol.int +Category D First stage r Team member +Mr Stefano Tiberia Man Italy stefano.tiberia@e +urocontrol.int +Category B Senior resea Team member +Mrs Aleksandra Owoc-Berson Woman Poland aleksandra.owoc- +berson@eurocon +trol.int +Category D First stage r Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 10 === +Administrative forms +Page 10 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 11 === +Administrative forms +Page 11 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Other achievement +As a founding member of the SESAR Programme and Joint Undertaking, EUROCONTROL has +been involved in all the phases (Definition, Development and Deployment) contributing +significantly to many of its most important achievements, such as the definition and +maintenance of the European ATM Master Plan, the SESAR 3 Strategic Research and +Innovation Agenda and a large number of Solutions delivered in the context of the SESAR 1 +and SESAR 2020. +Dataset +The EUROCONTROL Base of Aircraft Data (BADA) Aircraft Performance Model (APM) is a +globally recognized reference database containing aircraft-specific coefficients and +theoretical models used to calculate aircraft performance parameters. +Service +The EUROCONTROL Network Manager Operations Centre (NMOC) permanently monitors the +airspace capacity against traffic load. This allows us to have an accurate picture of the current +and expected European ATM network situation. To ensure the transparent and efficient +operation of the network, we collect all of the real-time data generated by the network and +share it with all operational partners through our Data Collection and Distribution Services +(DCS and DDS). +Service +At the EUROCONTROL NMOC we measure, investigate and report on operational processes +and activities throughout all domains relevant to Air Traffic Flow and Capacity Management. +All stakeholders provide feedback on the efficiency of the flight planning and airspace data +processing. We compare forecasts with the actual measured outcome in terms of delay and +route extension, while taking into account performance targets. This helps us improve the +performance of the European ATM Network. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO 2 project (Ref 101114697) +ECHO-2 is building on the deliverables of the ECHO (European Concept of Higher airspace +Operations) project, starting from the +Concept of Operations, to propose validated solutions paving the way towards the +operational integration of HAO in ATM. +ECHO project (ref. SESARER4- +19-2019) +The ECHO (European Concept of Higher airspace Operations) Project aimed at delivering a +comprehensive demand analysis and a comprehensive, innovative and feasible Concept of +Operations enabling near term and future Higher Airspace operations in a safe and orderly +manner. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +NMVP +Validation platform allowing to design and validate solutions for Network Management in a +more flexible way. Validations can now be replayed across NM’s backend systems (Enhanced +Tactical Flow Management System, Integrated Initial Flight Plan Processing System) and the +front-end systems. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 12 === +Administrative forms +Page 12 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 13 === +Administrative forms +Page 13 of 167 Last saved 16/09/2025 18:16 +PIC +999936820 +Legal name +DFS DEUTSCHE FLUGSICHERUNG GMBH +Short name: DFS + +Address +Town LANGEN +Postcode 63225 +Street AM DFS CAMPUS 10 +Country Germany +Webpage www.dfs.de +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is unknown (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... unknown +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 14 === +Administrative forms +Page 14 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 15 === +Administrative forms +Page 15 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Andreas Last name* UDOVIC +E-Mail* andreas.udovic@dfs.de +Town LANGEN Post code 63225 +Street AM DFS CAMPUS 10 +Website www.dfs.de +Position in org. Project Manager +Department Operational Planing +Phone +49610370705758 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Germany +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Alexander SEYBOLD alexander.seybold@dfs.de +49610370702034 +Oliver ALBERT oliver.albert@dfs.de +4961037072073 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 16 === +Administrative forms +Page 16 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 17 === +Administrative forms +Page 17 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 18 === +Administrative forms +Page 18 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication • Presentation of „Obelisk“ auf den Kongress „HAPS4ESA Workshop“, 12-14.02.2024, +Leiden +Publication +• Article: Obelisk - Operationelles Betriebskonzept zur sicheren und effizienten +Luftraumintegration von Stratosphärenplattformen, DFS-Zeitschrift „Innovation im Fokus“ +publication in preparation for 2025 foreseen +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +OBELISK • German national founded projetct „Obelisk Operationelles Betriebskonzept zur +sicheren und effizienten Luftraumintegration von Stratosphärenplattformen“ 2019-2024 +ECHO2 • Participation on „ECHO 2 European Concept für High Altitude Operations 2” +2023-2026 +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 19 === +Administrative forms +Page 19 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 20 === +Administrative forms +Page 20 of 167 Last saved 16/09/2025 18:16 +PIC +942346077 +Legal name +LUFTFARTSVERKET +Short name: SWEDISH CIVIL AVIATION ADMINISTRATION + +Address +Town NORRKOPING +Postcode 602 27 +Street HOSPITALSGATAN 30 +Country Sweden +Webpage http://www.lfv.se +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 20/03/2014 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 21 === +Administrative forms +Page 21 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 22 === +Administrative forms +Page 22 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Lindsey Last name* MARTENEZ-HERMOSILLA +E-Mail* lindsey.martenez-hermosilla@lfv.se +Town NORRKOPING Post code 602 27 +Street HOSPITALSGATAN 30 +Website www.lfv.se +Position in org. LFV SESAR Programme- and Contribution Manager +Department LUFTFARTSVERKET +Phone +46 721 429 192 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Ms +Same as proposing organisation's address +Country Sweden +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Stefan SIGGELIN stefan.siggelin@lfv.se +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 23 === +Administrative forms +Page 23 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 24 === +Administrative forms +Page 24 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 25 === +Administrative forms +Page 25 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SESAR IR1 ECHO2 +The SESAR IR1 ECHO2 project was built on the deliverables of the ECHO (European Concept of +Higher airspace Operations) project. LFV participated in ECHO2 withc ATCO expertise, both +with the Concept of Operations, but also as active participants of the project EXE. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +LFV Research and Innovation +Centre +Located at ATCC Malmö, the LFV R&D Centre is equipped with lab, simulators, and conference +facilities, and is capable of conducting human-in-the-loop simulations and demonstrations. +The available simulators include NARSIM (for ACC, APP, and TWR), the SAAB RTS simulator, +and the UTM City platform. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 26 === +Administrative forms +Page 26 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 27 === +Administrative forms +Page 27 of 167 Last saved 16/09/2025 18:16 +PIC +969294229 +Legal name +EUROPEAN SATELLITE SERVICES PROVIDER SAS +Short name: ESSP + +Address +Town TOULOUSE +Postcode 31400 +Street 3 RUE TARFAYA +Country France +Webpage essp-sas.eu +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 25/09/2008 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 28 === +Administrative forms +Page 28 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name Service Provision Unit +Street carretera de la base +Town TORREJON DE ARDOZ +Same as proposing organisation's address +not applicable +Country Spain +Postcode 28850 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 29 === +Administrative forms +Page 29 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Alvaro Last name* MORILLO +E-Mail* alvaro.morillo@essp-sas.eu +Town Torrejón de Ardoz Post code 28850 +Street Carretera de la base km 0,8 +Website www.essp-sas.eu +Position in org. Surveillance key account manager +Department Strategy and Business Development +Phone +34 672 280 598 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Spain +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Peter LUBRANI peter.lubrani@essp-sas.eu +34 (9182) 62176 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 30 === +Administrative forms +Page 30 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 31 === +Administrative forms +Page 31 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 32 === +Administrative forms +Page 32 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO2 Contribution to different deliverables: SPR, OSED, CBA, Standards and regulations +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 33 === +Administrative forms +Page 33 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 34 === +Administrative forms +Page 34 of 167 Last saved 16/09/2025 18:16 +PIC +997542763 +Legal name +NATS (EN ROUTE) PUBLIC LIMITED COMPANY +Short name: NATS + +Address +Town FAREHAM +Postcode PO15 7FL +Street 4000 PARKWAY WHITELEY +Country United Kingdom +Webpage www.nats.aero +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is unknown (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... unknown +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 35 === +Administrative forms +Page 35 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name NATS (En Route) Public Limited Company (CTC) +Street 4000 PARKWAY WHITELEY +Town FAREHAM +Same as proposing organisation's address +not applicable +Country United Kingdom +Postcode PO15 7FL +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 36 === +Administrative forms +Page 36 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Patrick Last name* GILES +E-Mail* patrick.giles@nats.co.uk +Town FAREHAM Post code PO15 7FL +Street 4000 PARKWAY WHITELEY +Website www.nats.aero +Position in org. Manager, ATM Portfolio - D&B Future Concepts +Department NATS (En Route) Public Limited Company (CTC) +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country United Kingdom +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Alison ROBERTS alison.roberts@nats.co.uk +447917558035 +Richard PUGH richard.pugh@nats.co.uk +447827954671 +Matthew GREEN matthew.green@nats.co.uk +xxx xxxxxxxxx +Richard HAYWARD richard.hayward@nats.co.uk +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 37 === +Administrative forms +Page 37 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Patrick Giles Man United Kingdom patrick.giles@nat +s.co.uk Category B Senior resea Leading +Mr Richard Hayward Man United Kingdom richard.hayward +@nats.co.uk +Category C Recognised Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 38 === +Administrative forms +Page 38 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 39 === +Administrative forms +Page 39 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Other achievement Participation in SESAR ECHO 2 project, including leading the development of the OSED +document for WP - High Altitude Platform Systems. +Service Operational support to UK Ministry of Defence / US Air Force in Europe with regard to current +(military) high altitude operations. +Service Past operational experience of operating very high / very fast commercial airliners (Concorde). +Service NATS provides Communication, Navigation and Surveillance services to commercial, private, +and military aircraft within its designated areas of responsibility. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SESAR 3 ECHO 2 +The ECHO 2 project is further developing concepts identified in the initial ECHO Concept of +Operations document. This work will be a key input to the HAO-SCAN project as it is in the +ECHO2 discussions that the need for the HAO-SCAN project was identified. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 40 === +Administrative forms +Page 40 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 41 === +Administrative forms +Page 41 of 167 Last saved 16/09/2025 18:16 +PIC +928673636 +Legal name +DIRECTION DES SERVICES DE LA NAVIGATION AERIENNE +Short name: DSNA + +Address +Town PARIS +Postcode 75720 +Street 50 RUE HENRY FARMAN +Country France +Webpage https://www.ecologie.gouv.fr/controle-aerien +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 15/04/2015 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 42 === +Administrative forms +Page 42 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name DSNA +Street 50 RUE HENRY FARMAN +Town PARIS +Same as proposing organisation's address +not applicable +Country France +Postcode 75720 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 43 === +Administrative forms +Page 43 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Thierry Last name* ANDRE +E-Mail* thierry-d.andre@aviation-civile.gouv.fr +Town Toulouse Cedex 1 Post code 31035 +Street 1 Av. du Dr Maurice Grynfogel - BP 53584 +Website Please enter website +Position in org. ATC expert +Department Direction de la Technique et de l'Innovation +Phone +33 660364397 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country France +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Laurence LAPOTRE laurence.lapotre@regis-dgac.net +xxx xxxxxxxxx +Francois-Xavier PRACH francois-xavier.prach@aviation-civile.gouv.fr +33 661711125 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 44 === +Administrative forms +Page 44 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 45 === +Administrative forms +Page 45 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 46 === +Administrative forms +Page 46 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO 2 +European concept of higher altitude operations - Phase 2: Towards ATM-HAO integration +The objective is integration, management and monitoring of HAPS, super/hyper sonic, and +space mission operations. +ECHO European concept of higher altitude operations - Phase 1: Comprehensive demand analysis +and basic concept operations (Conops) for higher airspace. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 47 === +Administrative forms +Page 47 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 48 === +Administrative forms +Page 48 of 167 Last saved 16/09/2025 18:16 +PIC +870906450 +Legal name +SkyNav Europe +Short name: SkyNav Europe + +Address +Town Brussels +Postcode 1000 +Street Rue Coppens 16 +Country Belgium +Webpage www.skynavintl.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 27/09/2024 - yes +SME self-assessment ........................................... 27/09/2024 - yes +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 49 === +Administrative forms +Page 49 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 50 === +Administrative forms +Page 50 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Ben Last name* KINGS +E-Mail* ben.kings@skynavintl.com +Town Brussels Post code 1000 +Street Rue Coppens 16 +Website https://skynavintl.com/ +Position in org. Managing Director/Owner +Department SkyNav Europe +Phone +31615625092 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Belgium +Same as organisation +name +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 51 === +Administrative forms +Page 51 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Ben Kings Man ben.kings@skyna +vintl.com Category A Top grade reLeading Other ID +Mr Duncan Auld Man duncan.auld@sky +navintl.com +Category A Top grade reLeading +Mr Zheng Tao Man zheng.tao@skyna +vintl.com +Category B Senior resea Team member +Ms Qina Diao Woman qina.diao@skyna +vintl.com +Category B Senior resea Team member +Ms Julie Caraga Woman julie.caraga@sky +navintl.com +Category D First stage r Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 52 === +Administrative forms +Page 52 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 53 === +Administrative forms +Page 53 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Service +ECHO2 subcontractor +Participation in the ECHO2 consortium as a contractor focusing on higher airspace and space +transport integration. Contributions include operational concept refinement, validation +planning, stakeholder mapping, and alignment with ANSP procedures and Network functions. +The work informs scalable approaches for trajectory management and airspace reservations. +Includes project management and deliverable lead. +Service +Operational ATM experience +Decades of global, operational Air Traffic Control experience across all ATC disciplines (Tower, +Approach, Area, Oceanic) and at all function levels. Operational supervision, flow +management, training, training management, safety and technical committee +representation, operational procedure development, international cross-border negotiations, +airspace design, safety risk assessments and environmental impact studies +Service +ICAO drafting and representation +Contributed to drafting and review activities at ICAO in relation to Annex 11, Annex 10 and +PANS-ATM material. Work includes requirements structuring, procedure text, and consistency +checks across datasets and guidance, supporting globally harmonised ATM provisions +relevant to STO and HAO integration. Leading working groups on ATM planning & +implementation, development of Global ATM Operational Concept, development of Aviation +System Block Upgrades +Service +State regulatory drafting and representation +Several years of regulatory drafting support for a Gulf State authority, updating national civil +aviation regulations, AMC/GM-style guidance and implementation procedures across ANS, +operations and oversight. Emphasis on practicality, traceability and alignment with ICAO and +regional provisions. Leadership of ICAO regional groups and task forces related to integration +of space transport activities. +Service +Project Management & Leadership Expertise +Extensive track record in project and organisational leadership, including executive roles +within IFATCA (International Federation of Air Traffic Controllers’ Associations). Demonstrated +ability to manage complex international initiatives, coordinate diverse stakeholders, and +oversee multi-million-euro budgets. Proven experience in steering strategic aviation projects, +ensuring delivery of innovative outcomes aligned with European policy & industry need +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SESAR ECHO / ECHO2 – HAO +Integration +Participation in ECHO and ECHO2 on higher airspace and space transport integration. Roles +covered operational scenarios, requirements traceability, validation planning, stakeholder +engagement and alignment with EUROCONTROL and ICAO practices for cross-border +coordination and dynamic, minimal-impact airspace management. +iNEO – Project Management Plan +& Governance Appr. +Development of a rigorous PMP and governance model for multi-partner R&D, covering +schedule baselining, risk and compliance, quality assurance, and reporting. The approach +underpins efficient WP coordination and is directly reusable for other HORIZON projects. +UAE National Regulations +Development Programme +Regulatory drafting support for a Gulf State authority, updating national civil aviation +regulations, AMC/GM-style guidance and implementation procedures across ANS, operations +and oversight. Emphasis on practicality, traceability and alignment with ICAO and regional +provisions. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 54 === +Administrative forms +Page 54 of 167 Last saved 16/09/2025 18:16 +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 55 === +Administrative forms +Page 55 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 56 === +Administrative forms +Page 56 of 167 Last saved 16/09/2025 18:16 +PIC +996375756 +Legal name +ECOLE NATIONALE DE L AVIATION CIVILE +Short name: ENAC + +Address +Town TOULOUSE +Postcode 31400 +Street AVENUE EDOUARD BELIN 7 +Country France +Webpage www.enac.fr +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... yes +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 27/05/2020 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 57 === +Administrative forms +Page 57 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name ENAC LAB +Street AVENUE EDOUARD BELIN 7 +Town TOULOUSE +Same as proposing organisation's address +not applicable +Country France +Postcode 31400 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 58 === +Administrative forms +Page 58 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Georges Last name* MYKONIATIS +E-Mail* georges.mykoniatis@enac.fr +Town TOULOUSE Post code 31400 +Street AVENUE EDOUARD BELIN 7 +Website Please enter website +Position in org. Head of Business Development +Department ENAC LAB +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country France +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Aurelie PEAUD aurelie.peuaud@enac.fr +xxx xxxxxxxxx +Florence LAPORTERIE-DEJEAN florence.laporterie-dejean@enac.fr +33562259509 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 59 === +Administrative forms +Page 59 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr Murat Bronz Man France murat.bronz@en +ac.fr Category A Top grade reLeading 0000-0002-1098- +5240 +Orcid ID +Dr Rodolphe Fremond Man France rodolphe.fremon +d@enac.fr +Category D First stage r Team member 0009-0008-1513- +9597 +Orcid ID +Mr Georges Mykoniatis Man France georges.mykonia +tis@enac.fr +Category B Senior resea Leading 0000-0002-5550- +579X +Orcid ID +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 60 === +Administrative forms +Page 60 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 61 === +Administrative forms +Page 61 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +Elmira Fattahzadeh, G Mykoniatis. COOPERATIVE STRATEGIC DECONFLICTION FOR THE +HIGHER AIRSPACE USERS. 9th International Conference on Experiments/Process/System +Modeling/Simulation/Optimization, Jul 2021, Athens, Greece. ?hal-03320530? +Publication +R. Kallaka, J. Zhao, R. Fremond and A. Tsourdos, "Hierarchical Reinforcement Learning for +Multi-Objective UAV Routing Considering Operational Complexities," 2025 Integrated +Communications, Navigation and Surveillance Conference (ICNS), Brussels, Belgium, 2025, pp. +1-13, doi: 10.1109/ICNS65417.2025.10976917. +Publication +Avoni, L., Bronz, M., Condomines, J. P., & Moschetta, J. M. (2025). Enhancing ASWING Flight +Dynamics Simulations with Closed-Loop Control for Flexible Aircraft. In AIAA AVIATION +FORUM AND ASCEND 2025 (p. 3425). +Publication +A. Guitart, C. Demouge, D. Delahaye and E. Feron, "Multi Criteria Methodology for Aircraft +Trajectory Planning Algorithm Selection: A Survey," in IEEE Transactions on Intelligent +Transportation Systems, vol. 25, no. 10, pp. 12893-12911, Oct. 2024, doi: 10.1109/ +TITS.2024.3397331. +Publication +Hachem, M., Roos, C., Miquel, T., & Bronz, M. (2025). Improving Incremental Nonlinear +Dynamic Inversion Robustness Using Robust Control in Aerial Robotics. arXiv preprint +arXiv:2501.07223. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO +European Concept of Higher Airspace Operations - SESAR +A concept of operations (ConOps) for higher airspace +https://higherairspace.eu/echo-project/ +ECHO2 +Towards the integration between ATM and Higher Altitude Operations - SESAR +https://higherairspace.eu/echo2-project/ +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 62 === +Administrative forms +Page 62 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 63 === +Administrative forms +Page 63 of 167 Last saved 16/09/2025 18:16 +PIC +999852236 +Legal name +LINKOPINGS UNIVERSITET +Short name: LIU + +Address +Town LINKOPING +Postcode 581 83 +Street CAMPUS VALLA +Country Sweden +Webpage www.liu.se +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... yes +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 17/01/2022 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... 28/10/2008 - no +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 64 === +Administrative forms +Page 64 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name Communications and Transport Systems +Street ITN +Town Norrköping +Same as proposing organisation's address +not applicable +Country Sweden +Postcode 60374 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 65 === +Administrative forms +Page 65 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Valentin Last name* POLISHCHUK +E-Mail* valentin.polishchuk@liu.se +Town Norrköping Post code 60374 +Street ITN +Website http://tiny.cc/valatm +Position in org. Associate Professor +Department Communications and Transport Systems +Phone +460736569219 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country Sweden +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Billy JOSEFSSON billy.josefsson@liu.se +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 66 === +Administrative forms +Page 66 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Billy Josefsson Man Sweden billy.josefsson@li +u.se Category B Senior resea Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 67 === +Administrative forms +Page 67 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 68 === +Administrative forms +Page 68 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication L. Sedov, V. Polishchuk, V. Bulusu. Ground risk vs. Efficiency in Urban Drone Operations. ATM +Seminar'21 +Publication L. Sedov, V. Polishchuk, T. Maury, M. Ulloa, D. Lykova. Qualitative and quantitative risk +assessment of urban airspace operations. SID'21 +Publication J. Nunez-Portillo, T. Polishchuk, V. Polishchuk, H. Hardell. Evaluating Impact of Non-nominal +Space Mission Event on Conventional Air Traffic. SID'23 +Publication V. Duchamp, L. Sedov, V. Polishchuk. Density-Adapting Layers towards PBN for UTM. ATM +Seminar'19 +Software GUI for identifying areas subject to risk depending on CNS capabilities https:// +undefiened.github.io/uav_risk/ +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO2 EU HAO ConOps Phase 2 +UTMOK influence of CNS on VLL airspace capacity +DAA UAV CNS requirements +QRA identifying urban areas subject to risk depending on CNS capabilities + Space data for CNS coordination with the US actors on CNS for rockets +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +Quantitative Risk Analysis GUI for identifying areas subject to risk depending on CNS capabilities https:// +undefiened.github.io/uav_risk/ +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 69 === +Administrative forms +Page 69 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 70 === +Administrative forms +Page 70 of 167 Last saved 16/09/2025 18:16 +PIC +999789768 +Legal name +C.I.R.A. CENTRO ITALIANO RICERCHE AEROSPAZIALI SCPA +Short name: CIRA + +Address +Town CAPUA +Postcode 81043 +Street VIA MAIORISE +Country Italy +Webpage www.cira.it +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 25/01/2022 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... 26/06/2008 - no +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 71 === +Administrative forms +Page 71 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name Cross-Cutting Research Direction +Street VIA MAIORISE +Town CAPUA +Same as proposing organisation's address +not applicable +Country Italy +Postcode 81043 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 72 === +Administrative forms +Page 72 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Domenico Last name* Pascarella +E-Mail* d.pascarella@cira.it +Town CAPUA Post code 81043 +Street VIA MAIORISE +Website Please enter website +Position in org. Deputy Head of Security Research Unit +Department Cross-Cutting Research Direction +Phone +390823623105 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country Italy +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Angela VOZELLA a.vozella@cira.it +xxx xxxxxxxxx +Giovanni Cuciniello g.cuciniello@cira.it +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 73 === +Administrative forms +Page 73 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr Domenico Pascarella Man Italy d.pascarella@cira. +it Category B Senior resea Leading 0000-0003-1332- +4234 +Orcid ID +Dr Angela Vozella Woman Italy a.vozella@cira.it Category B Senior resea Team member 0000-0002-3215- +9011 +Orcid ID +Dr Ivan Iudice Man Italy i.iudice@cira.it Category B Senior resea Team member 0000-0001-8504- +7075 +Orcid ID +Dr Vittorio Ugo Castrillo Man Italy v.castrillo@cira.it Category B Senior resea Team member 0000-0003-4604- +9750 +Orcid ID +Dr Giovanni Cuciniello Man Italy g.cuciniello@cira. +it +Category B Senior resea Team member 0000-0001-8715- +7606 +Orcid ID +Dr Gianfranco Morani Man Italy g.morani@cira.it Category B Senior resea Team member 0000-0002-9390- +9736 +Orcid ID +Dr Gianluca Corraro Man Italy g.corraro@cira.it Category B Senior resea Team member 0000-0001-6188- +4370 +Orcid ID +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 74 === +Administrative forms +Page 74 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 75 === +Administrative forms +Page 75 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +Automated Identification and Evaluation of Threat Scenarios for U-Space Solutions (https:// +doi.org/10.1145/3735978) – This paper provides a preliminary definition of a model-based +methodology for the automated security risk assessment of U-space solutions, employing the +SESAR Security Risk Assessment Methodology (SecRAM) as a baseline. Results are presented for +a case study about drone-based pharmaceutical delivery in U-space environment. +Publication +Security Assessment of Drone Teams and Swarms Using an Extended SecRAM Methodology +(https://doi.org/10.1109/TechDefense63521.2024.10863721) – The paper provides a security +risk assessment approach for multi-drone systems, based on an enhanced version of the SESAR +Security Risk Assessment Methodology (SecRAM). A sandwich methodology is proposed, +integrating model-based notation and systematic literature review. The approach is tested on +a use case involving a drone team and a mobile edge server. +Publication +Design of Stacked Intelligent Metasurfaces With Reconfigurable Amplitude and Phase for +Multiuser Downlink Beamforming (https://ieeexplore.ieee.org/document/10824842) – The +paper proposes a novel technology based on stacked intelligent metasurfaces (SIM) in wireless +communication applications for multiuser downlink beamforming. +Publication +Navigation Algorithms for Precision Re-Entry of a Launcher First-Stage (http:// +dx.doi.org/10.2514/6.2025-4094) – Development of Navigation Algorithms for re-entry of re- +usable launcher systems. +Publication +Dual-Frequency Multi-Constellation Global Navigation Satellite System/Inertial +Measurements Unit Tight Hybridization for Urban Air Mobility Applications (https:// +doi.org/10.3390/aerospace11110955). Development of a tightly coupled sensor fusion +between a dual-frequency multi-constellation GNSS receiver, an inertial measurements unit +and the barometric altitude from an air data computer. The implemented navigation +algorithm is integrated with autonomous fault detection and of GPS/Galileo/BeiDou +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +JARVIS +SESAR IR Project (2023-2026) - CIRA is the SESAR solution leader of the ATC-DA (SESAR solution +0365) for conflict resolution leveraging Reinforcement Learning. CIRA is also leading the task +for providing the security risk assessment of ATC-DA. +U-ELCOME +CINEA Project (2022-2025) - Among other things, CIRA led and performed execution of the U- +space Security Risk Assessment for the Italian cluster, providing: the specification and design of +a model-based automated methodology for the Security Risk Assessment of U-space solutions; +the implementation of the methodology to U-space pharmaceutical delivery. +SMART +Italian PNRR Project (2024-2025) - Development of smart metasurfaces for advancing radio +technologies in smart propagation environments for dual IoT 6G applications. CIRA +contributes to the development/prototyping of algorithms for the synthesis of reconfigurable +metasurfaces platforms in use cases related to future aerial platforms assisting 6G and beyond +future communications. +SALFGEN +Development of Avionics for Future Generation Reusable Launchers funded by Italian Space +Agency. In this framework CIRA performed the development and numerical verification of the +Guidance, Navigation and Control algorithms for the re-entry and precision landing of a +Launcher First-Stage and supported the partners in the definition of an Automatic Flight +Termination System for Launchers. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 76 === +Administrative forms +Page 76 of 167 Last saved 16/09/2025 18:16 +USV-DTFT2 +Development of the GNC system for both ascent and descent phase of the CIRA FTB-2 +unmanned Re-entry vehicle which performed an unpropelled re-entry Drop-Test from an +altitude of about 25Km carried-up by a stratospheric balloon. GNC algorithms include +dedicate Virtual air data sensor aimed to estimate air data measurement without dedicate air +data sensors. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 77 === +Administrative forms +Page 77 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 78 === +Administrative forms +Page 78 of 167 Last saved 16/09/2025 18:16 +PIC +870545901 +Legal name +SCEYE SPAIN S.L. +Short name: Sceye Spain + +Address +Town Madrid +Postcode 28002 +Street Suero de Quiñones 34-36 +Country Spain +Webpage www.sceye.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 04/09/2025 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 79 === +Administrative forms +Page 79 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 80 === +Administrative forms +Page 80 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Alfredo Last name* SERRANO +E-Mail* as@sceye.com +Town Madrid Post code 28002 +Street Suero de Quiñones 34-36 +Website Please enter website +Position in org. Director of EMEA +Department SCEYE SPAIN S.L. +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Spain +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Stephanie LUONGO sl@sceye.com +xxx xxxxxxxxx +Leonard BOYGUES leonard.bouygues@gmail.com +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 81 === +Administrative forms +Page 81 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Leonard Bouygues Non-binary France lb@sceye.com Category A Top grade reLeading +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 82 === +Administrative forms +Page 82 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 83 === +Administrative forms +Page 83 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Other achievement +Sceye platform is the most capable LTA HAPS currently in operation. Sceye has flown +successfully more than 20 missions into the stratosphere, demonstrating day-night endurance +using solar power and battery storage, while keeping station over the area of operation. +We have flown multiple payloads, including optical and hyperspectral imaging cameras, SAR, +4G telecommunications, infrasonic sensors, and aerosol particle spectrometers, validating the +platform’s ability to carry diverse instrument +Other achievement +Cooperation with NASA +Demonstrated cooperative deconfliction capabilities with other HAPS operators through +NASA-led CE1.5 simulation +Publication +Cooperative, Seamless, and Global Digital Skies for Higher Airspace (2025) - HAPS Alliance +Aviation Working Group +The Aerospace Industries Association proposes collaborative traffic management for higher +airspace to manage exponential growth of UAS, supersonic, HAPS, and commercial space +operations. This involves community-based rules (user-formed, CAA-approved) and operators +sharing intent via service providers for conflict identification and resolution, ensuring safe and +equitable global mnmg +Publication +Acceptable Levels of Risks for HAPS (2024) - HAPS Alliance Aviation Working Group +For High Altitude Platform Systems, the HAPS Alliance advocates third-party-centric risk +metrics, measuring risk to ground populations and manned aircraft. This replaces inadequate +platform-centric aviation metrics. The framework sets individual and collective risk limits, +aligned with existing infrastructure risks (e.g.UK ALARP), enabling operators to dynamically +self-manage risk by controlling operational factor +Publication +HAPS Operation Using Attended Autonomous Fleet Systems (2022) - HAPS Alliance Aviation +Working Group +A proposal for Collaborative Traffic Management for the Stratosphere (CTMS) for Attended +Autonomous Fleet Systems. This strategy enables safe, scalable HAPS operations through +automation for fleet management and M2M conflict resolution. It uses Community Based +Rules (CBR) and is an exception-centric approach, where human supervisory networks +manage system anomalies, not individual vehicles +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Direct-to-Device Connectivity +In May 2021, Sceye set a long range record in 4G broadband connectivity from the +stratosphere connecting directly with smartphones on the ground . For this demonstrator, +Sceye used the latest generation OpenRAN equipment and demonstrated true direct-to-device +broadband connectivity up to a distance of 140Km with only 5 MHz spectrum. +MIMO Array Antenna +In October 2021, Sceye successfully connected a 4G antenna with 3D beamforming from the +stratosphere. +This was the first time that an active array antenna with 3D beamforming technology +connected directly from the stratosphere to a smartphone on the ground, demonstrating that +Sceye's HAPS can use its altitude and range to efficiently extend broadband across areas +without coverage. +First Full-Diurnal Flight for LTA +In August 2024), Sceye achieved a 24+ hour stratospheric flight, demonstrating day-night +endurance using solar power and battery storage. Sceye is the first HAPS platform to ever +demonstrate closure of power loop while staying over an area of operation. The HAPS +maintained position over a target area, carried advanced payloads (optical cameras, infrared +sensors, synthetic aperture radar), and enabled wildfire detection, and methane leak +monitoring +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 84 === +Administrative forms +Page 84 of 167 Last saved 16/09/2025 18:16 +NASA and EPA Partnership +Signed a Space Act Agreement with NASA and a cooperating research and development +agreement with the USGS to use HAPS for climate and disaster monitoring (e.g., methane +leaks, wildfires, ecosystem surveys). Sceye achieved world’s first real-time methane detection +from the stratosphere in partnership with U.S EPA & State of New Mexico +Pre-commercial Telecom +Demonstrator +Engaged with international Telecom operators to fly communication and observation +missions in the Americas and East Asia to demonstrate 4G/5G coverage from stratosphere for +unserved areas and provide emergency communication and observation support to first +responders in case of natural disaster. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +HAPS Platform +Sceye's High Altitude Platform System (HAPS) is a Lighter-than-Air platform designed, built, +and tested to ensure reliable launch, ascent, and transition to float altitude in the stratosphere. +Sceye's HAPS can carry and power 200kg+ of diverse payload systems, enabling it as a multi- +mission platform +Stratoport Hangar +Sceye has established cooperation with Government of Aragon in Spain to set up a Hangar at +Teruel Airport facilities spanning across 20ha, for production and operations of Sceye HAPS to +support commercial missions across EMEA which will support the creation of highly-skilled +employment in the region +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 85 === +Administrative forms +Page 85 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 86 === +Administrative forms +Page 86 of 167 Last saved 16/09/2025 18:16 +PIC +875470494 +Legal name +SKYDWELLER CANARIAS SL +Short name: SKYDWELLER CANARIAS SL + +Address +Town PUERTO DEL ROSARIO +Postcode 35612 +Street ANTIGUO AEROPUERTO DE LOS ESTANCOS +Country Spain +Webpage +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 07/11/2024 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 87 === +Administrative forms +Page 87 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name Business Development +Street Carretera de Fuencarral 5 +Town Alcobendas +Same as proposing organisation's address +not applicable +Country Spain +Postcode 28108 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 88 === +Administrative forms +Page 88 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Sebastien Last name* RENOUARD +E-Mail* sebastien.renouard@skydweller.aero +Town Alcobendas Post code 28108 +Street Calle de Fuencaral 5 +Website https://www.skydweller.aero/ +Position in org. Chief Commercial Officer EMEA +Department Business Development +Phone +34648235463 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Spain +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Antoine LECA antoine.leca@skydweller.aero +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 89 === +Administrative forms +Page 89 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Jose Vega Man Spain jose.vega@skydw +eller.aero Category B Senior resea Leading +Mr Ruben Moreno Man Spain ruben.moreno@s +kydweller.aero +Category B Senior resea Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 90 === +Administrative forms +Page 90 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 91 === +Administrative forms +Page 91 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO 2 +SKYDWELLER participates in this project that will build on research from the ECHO project on +developing a concept of operations (CONOPS) for higher airspace. Specifically, the project will +focus on introducing to the CONOPS a module on space launch real-time monitoring, and +packages covering ground and air-ground operational integration procedures. The +integration of High-Altitude Platform Systems (HAPS) is also covered. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +Skydweller HAPS The Skydweller HAPS is based on the Solar Impulse 2 aircraft– the culmination of 14 years of +engineering work and over €190 million in research and development +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 92 === +Administrative forms +Page 92 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 93 === +Administrative forms +Page 93 of 167 Last saved 16/09/2025 18:16 +PIC +892237138 +Legal name +SKYDWELLER SL +Short name: SKYDWELLER + +Address +Town CIUDAD REAL +Postcode 13300 +Street AERODROMO MANUEL SANCHEZ VALDEPENAS +Country Spain +Webpage skydweller.aero +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is unknown (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... unknown +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 94 === +Administrative forms +Page 94 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name Business Development +Street Carretera de Fuencarral 5 +Town Alcobendas +Same as proposing organisation's address +not applicable +Country Spain +Postcode 28108 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 95 === +Administrative forms +Page 95 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 96 === +Administrative forms +Page 96 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 97 === +Administrative forms +Page 97 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 98 === +Administrative forms +Page 98 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 99 === +Administrative forms +Page 99 of 167 Last saved 16/09/2025 18:16 +PIC +906263241 +Legal name +PARQUE TECNOLOGICO DE FUERTEVENTURASA MP +Short name: PARQUE TECNOLOGICO DE FUERTEVENTURASA MP + +Address +Town PUERTO DEL ROSARIO +Postcode 35613 +Street LUGAR AEROPUERTO DE LOS ESTANCOS +Country Spain +Webpage www.ptfue.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 14/12/2021 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 100 === +Administrative forms +Page 100 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name Communications and Transport Systems +Street ITN +Town Norrköping +Same as proposing organisation's address +not applicable +Country Sweden +Postcode 60374 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 101 === +Administrative forms +Page 101 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Sergio David Last name* DIAZ MARTINEZ +E-Mail* sdiaz@ptfue.com +Town PUERTO DEL ROSARIO Post code 35613 +Street LUGAR AEROPUERTO DE LOS ESTANCOS +Website Please enter website +Position in org. HEAD OF SPECIAL PROGRAMS AND STRATEGIC PROJECTS AREA +Department SPECIAL PROGRAMS AND STRATEGIC PROJECTS +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Spain +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Ayose Kim HERNANDEZ akim@ptfue.com +xxx xxxxxxxxx +Jorge FERREIRA GOMEZ jferreira@ptfue.com +xxx xxxxxxxxx +Alvaro LOPEZ alopez@ptfue.com +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 102 === +Administrative forms +Page 102 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 103 === +Administrative forms +Page 103 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 104 === +Administrative forms +Page 104 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 105 === +Administrative forms +Page 105 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 106 === +Administrative forms +Page 106 of 167 Last saved 16/09/2025 18:16 +PIC +875281053 +Legal name +Elson Space España S.L. +Short name: Elson Space España + +Address +Town Teruel +Postcode 44195 +Street Poligano Industrial PLATEA ZONA LI-1, Num. 5 +Country Spain +Webpage https://elsonspace.com/ +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 19/11/2024 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 107 === +Administrative forms +Page 107 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 108 === +Administrative forms +Page 108 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Míriam Last name* Royo Navarro +E-Mail* miriam@elsonspace.com +Town Teruel Post code 44195 +Street Poligano Industrial PLATEA ZONA LI-1, Num. 5 +Website https://elsonspace.com/elson-space-espana/ +Position in org. Managing Director +Department Elson Space España S.L. +Phone +34639277383 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Ms +Same as proposing organisation's address +Country Spain +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Chris Hall chris.h@elsonspace.com +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 109 === +Administrative forms +Page 109 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 110 === +Administrative forms +Page 110 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 111 === +Administrative forms +Page 111 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 112 === +Administrative forms +Page 112 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 113 === +Administrative forms +Page 113 of 167 Last saved 16/09/2025 18:16 +PIC +999981731 +Legal name +DEUTSCHES ZENTRUM FUR LUFT - UND RAUMFAHRT EV +Short name: DLR + +Address +Town KOLN +Postcode 51147 +Street LINDER HOHE +Country Germany +Webpage www.dlr.de +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 03/01/2022 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... 28/10/2008 - no +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 114 === +Administrative forms +Page 114 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name Institut of Flight Guidance +Street Lilienthalplatz 7 +Town Braunschweig +Same as proposing organisation's address +not applicable +Country Germany +Postcode 38108 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 115 === +Administrative forms +Page 115 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Sven Last name* Kaltenhaeuser +E-Mail* sven.kaltenhaeuser@dlr.de +Town Braunschweig Post code 38108 +Street Lilienthalplatz 7 +Website dlr.de/fl +Position in org. Head of Department ATM-SIM +Department Institut of Flight Guidance +Phone +49 531 295 2560 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Germany +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Lorenz Losensky lorenz.losensky@dlr.de +49 531 295 1155 +Dirk-Roger Schmitt dirk-roger.schmitt@dlr.de +49 172 295 4416 +Andreas Hasselberg andreas.hasselberg@dlr.de +49 531 295 2427 +fl controlling fl-controlling@dlr.de +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 116 === +Administrative forms +Page 116 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Richard Hörder Man Germany richard.hoerder@ +dlr.de Category D First stage r Team member Orcid ID +Mr Jens Hampe Man Germany Jens.Hampe@dlr. +de +Category B Senior resea Team member 0000-0003-3105- +1516 +Orcid ID +Mr Frank Morlang Man Germany Frank.Morlang@d +lr.de +Category B Senior resea Team member 0000-0003-3636- +5215 +Orcid ID +Mr Maximilian Neumann Man Germany Maximilian.Neum +ann@dlr.de +Category D First stage r Team member Orcid ID +Mr Tobias Rabus Man Germany tobias.rabus@dlr. +de +Category D First stage r Team member 0000-0003-1947- +5447 +Orcid ID +Mr Lorenz Losensky Man Germany lorenz.losensky@ +dlr.de +Category D First stage r Team member 0000-0003-2085- +7979 +Orcid ID +Mr Sven Kaltenhäuser Man Germany sven.kaltenhaeus +er@dlr.de +Category B Senior resea Leading 0000-0002-8762- +1971 +Orcid ID +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 117 === +Administrative forms +Page 117 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 118 === +Administrative forms +Page 118 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +Kaltenhäuser, Sven und Klünker, Carmo und Schmitt, Dirk-Roger (2022) Interoperable data +exchange for safe and efficient launch and re-entry operations in an international +environment, In: Proceedings of the International Astronautical Congress, IAC. 73rd +International Astronautical Congress (IAC), 18.-22. Okt. 2022, Paris, France +Publication +Stahnke, Anouk und Rabus, Tobias und Kaltenhäuser, Sven (2022) Supporting the safety and +efficiency of airspace transition for launch and re-entry operations in Europe, 2nd +International Conference on Flight Vehicles, Aerothermodynamics and Re-entry Missions & +Engineering (FAR), 19 - 23 June 2022. Heilbronn, Germany +Other achievement +MAPHEUS is DLR’s annual sounding rocket programme, reaching ~260 km altitude and ~6 +minutes of microgravity. Since 2009, 15 missions enabled high-impact experiments in +materials science, life sciences, and technology testing. Achievements include rapid payload +turnaround, safe recovery, and results published in international journals, strengthening +Europe’s leadership in microgravity research. +Publication +Kaltenhäuser, Sven und Hampe, Jens und Rabus, Tobias und Morlang, Frank und Losensky, +Lorenz (2024) The SpaceTracks approach for an efficient Integration of Launch Operations in +European Airspace. In: 1st International Symposium on Small Launchers and Spaceports. 1st +International Symposium on Small Launchers and Spaceports, 2024-10-28 - 2024-10-30, +Harwell, Vereinigtes Königreich. Volltext nicht online. +Publication +Kaltenhäuser, Sven und Hampe, Jens und Rabus, Tobias und Morlang, Frank und Losensky, +Lorenz (2024) Towards Efficient Integration of Rocket Launches and Re-entry Operations in +European Airspace: Development and Testing of a Launch Coordination Center. In: +Proceedings of the International Astronautical Congress, IAC. 75th International Astronautical +Congres, 2024-10-14 - 2024-10-18, Mailand, Italien. ISSN 0074-1795. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO Project +European Concept of Higher Airspace Operations. +https://higherairspace.eu/echo-project/ +Project led by EUROCONTROL with major DLR participation delivering a comprehensive +demand analysis and the concept of operations (ConOps) for higher airspace to allow safe, +efficient and scalable operations.The ConOps also provide the basis to identify future +infrastructure needs that is required to support Higher Airspace Operations (HAO). +DLR/FAA DEP +DLR - FAA Data Exchange Project. +https://www.dlr.de/content/en/articles/news/2019/04/20191025_dlr-and-us-federal- +aviationadministration-are-cooperating.html +DLR and the Office of Commercial Space Transportation of the US Federal Aviation +Administration (FAA) identified the data that need to be exchanged between United States +and European Air Navigation Service Providers (ANSPs) prior to, during and after a launch. +ECHO2 +https://higherairspace.eu/echo2-project/ +The ECHO 2 Project is dedicated to enhancing air traffic management by integrating space +mission monitoring for launches and re-entries within the EUROCONTROL Network Manager +area. It focuses on creating operational frameworks to manage space operations, including +orbital and sub-orbital trajectories, ensuring they harmonize with existing air traffic. +MAPHEUS +MAPHEUS is a DLR rocket programme providing a proven platform for interdisciplinary +microgravity research, managed end-to-end by DLR institutes and partners. Activities include +payload development, qualification, campaign execution, and post-flight analysis. With 15 +successful launches, MAPHEUS demonstrates strong capacity for complex, multi-partner +missions, directly relevant to space access, technology validation, and ESA cooperation +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 119 === +Administrative forms +Page 119 of 167 Last saved 16/09/2025 18:16 +DLR Launch Coordination Center +(LCC) Development - +https://www.dlr.de/en/latest/news/2021/03/20210923_dlr-is-developing-a-launch- +coordination-center +DLR's LCC integrates software-based procedures for safe, efficient space launch coordination +through airspace. System includes automated planning components, real-time mission +monitoring via Space Operations Dashboard, and enhanced air traffic controller interfaces. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +Air Traffic Validation Center +https://www.dlr.de/fl/en/desktopdefault.aspx/tabid-1140/ +DLR facilities for the validation of concepts, technologies and procedures in air traffic +management. Together, these facilities are known as the Air Traffic Validation Center and are +unique in Europe. +MAPHEUS +https://www.dlr.de/en/research-and-transfer/projects-and-missions/mapheus +MAPHEUS DLR rocket programme providing a proven platform for interdisciplinary research +with sounding rockets. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 120 === +Administrative forms +Page 120 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 121 === +Administrative forms +Page 121 of 167 Last saved 16/09/2025 18:16 +PIC +998162690 +Legal name +PILDO CONSULTING SL +Short name: PILDOLABS + +Address +Town BARCELONA +Postcode 08019 +Street c/ Bac de Roda 120 (Local 2) +Country Spain +Webpage http://www.pildo.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 31/12/2021 - yes +SME self-assessment ........................................... 31/12/2021 - yes +SME validation ...................................................... 17/02/2009 - yes +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 122 === +Administrative forms +Page 122 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name Engineering Business Unit +Street c/ Bac de Roda 120 (Local 2) +Town BARCELONA +Same as proposing organisation's address +not applicable +Country Spain +Postcode 08019 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 123 === +Administrative forms +Page 123 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Santiago Last name* Soley +E-Mail* santiago.soley@pildo.com +Town BARCELONA Post code 08019 +Street c/ Bac de Roda 120 (Local 2) +Website https://pildo.com/ +Position in org. CEO +Department PILDO CONSULTING SL +Phone +34 931828840 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Spain +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Daniel Garcia daniel.garcia@pildo.com +34 931828840 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 124 === +Administrative forms +Page 124 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 125 === +Administrative forms +Page 125 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 126 === +Administrative forms +Page 126 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Software +The OWL: Software tool aimed at monitoring GNSS and SBAS performances and detect RF +interferences at airports, heliports, and vertiports, ensuring the signal is compliant with ICAO +requirements. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SBAS Altimetry Project funded by EUROCONTROL to validate the use of SBAS as in support to altimetry and +speed determination in current helicopter GNSS-based operations. +SAMVA +Led by PildoLabs, the project aimed to foster the adoption of EGNOS technology in rotorcraft +service provision, laying the groundwork for the seamless integration of autonomous VTOL +aircraft. +DELOREAN +Led by PildoLabs, the project aimed to develop EGNSS requirements for the integration of +urban air mobility operations. The project was underpinned by operational cases, engaging +two main commercial service operators. The project was based on the use of COTS drones, and +experimental avionics with advanced EGNSS receivers. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +PildoBox +Compact custom-designed device that integrates a MCMF GNSS receiver, an ADS-B receiver, +and a small-form computer. Designed for 24/7 operation, with support for remote +configuration and diagnostics. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 127 === +Administrative forms +Page 127 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 128 === +Administrative forms +Page 128 of 167 Last saved 16/09/2025 18:16 +PIC +997701843 +Legal name +ENAIRE +Short name: ENAIRE + +Address +Town MADRID +Postcode 28022 +Street AVENIDA DE ARAGON S/N BLOQUE 330, PORTAL +Country Spain +Webpage http://www.enaire.es +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 14/06/1991 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 129 === +Administrative forms +Page 129 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name Innovation Division +Street AVENIDA DE ARAGON S/N BLOQUE 330, PORTAL +Town MADRID +Same as proposing organisation's address +not applicable +Country Spain +Postcode 28022 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 130 === +Administrative forms +Page 130 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Francisco Jose Last name* JIMENEZ RONCERO +E-Mail* fjroncero@enaire.es +Town MADRID Post code 28022 +Street AVENIDA DE ARAGON S/N BLOQUE 330, PORTAL 2 PARQUE EMPRESARIAL LAS +Website www.enaire.es +Position in org. Innovation Manager +Department Innvoation Division +Phone +34 634 880 079 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Spain +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Daniel Dominguez Perez ddoperez@enaire.es +xxx xxxxxxxxx +Javier Garcia Moreno jgmoreno@enaire.es +xxx xxxxxxxxx +Francisco Manuel Tortosa Lopez fmtortosa@enaire.es +xxx xxxxxxxxx +Alberto Blanch Romero abromero@enaire.es +xxx xxxxxxxxx +Jorge Vellon Benito jvellon@e-externas.enaire.es +xxx xxxxxxxxx +Jesus Mario GARCIA CANO jmgcano@enaire.es +xxx xxxxxxxxx +Fernando DIAZ GARCIA fdigarcia@enaire.es +xxx xxxxxxxxx +Mohammed SHIPON mshipon@enaire.es +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 131 === +Administrative forms +Page 131 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 132 === +Administrative forms +Page 132 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 133 === +Administrative forms +Page 133 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO 2 +The main objective of this project is the modernisation and adaptation of the European ATM +system that allows the integration of the so-called high-altitude operations or Higher Airspace +Operations (HAO). These types of operations occur above flight level FL550, that is, operations +above 17,000 meters, while flights usually take place around 10,000 meters. +EUSTM +EUSTM is an end-to end activity towards the definition of a future STM capability: +· Defining the needs in terms of organisation and responsibilities, technology, policy, laws, +guidelines, best practices and standards +· Elaborating detailed specs, a preliminary design, a reference roadmap and a ROM cost +analysis +· Developing an innovative collaborative platform for exchange of information inside the team +and with external stakeholders +· Creating a community of interest on STM +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 134 === +Administrative forms +Page 134 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 135 === +Administrative forms +Page 135 of 167 Last saved 16/09/2025 18:16 +PIC +873172467 +Legal name +OpenUTM Ltd. +Short name: OpenUTM + +Address +Town Dublin +Postcode D04 T4A6 +Street Mespil Business Center, Mespil House, Sussex Ho +Country Ireland +Webpage https://openutm.net +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 14/02/2025 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 136 === +Administrative forms +Page 136 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name Communications and Transport Systems +Street Mespil Business Center, Mespil House, Su +Town Dublin +Same as proposing organisation's address +not applicable +Country Ireland +Postcode D04 T4A6 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 137 === +Administrative forms +Page 137 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Hrishikesh Last name* Ballal +E-Mail* hb@openutm.net +Town Dublin Post code D04 T4A6 +Street Mespil Business Center, Mespil House, Sussex House +Website Please enter website +Position in org. Managing Director +Department OpenUTM Ltd. +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Ireland +Same as organisation +name +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 138 === +Administrative forms +Page 138 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr Hrishikesh Ballal Man Ireland hb@openutm.net Category B Senior resea Leading +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 139 === +Administrative forms +Page 139 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 140 === +Administrative forms +Page 140 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Software + OpenUTM is an open-source, standards-compliant stack for Unmanned Traffic Management +(UTM), designed to help organizations build and deploy regulation-ready systems for +managing drone and unmanned aircraft traffic. Its architecture is built around two core +components: Flight Blender, a backend service handling Remote ID, air traffic data, +geofencing, and strategic deconfliction, and Flight Spotlight, a frontend interface providing +maps, timelines, flight noticeboards, and 3D visualizations. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 141 === +Administrative forms +Page 141 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 142 === +Administrative forms +Page 142 of 167 Last saved 16/09/2025 18:16 +PIC +894907645 +Legal name +ANRA TECHNOLOGIES UK LTD +Short name: ANRA TECHNOLOGIES UK LTD + +Address +Town CRANFIELD, BEDS +Postcode MK43 0DG +Street 114 HIGH STREET +Country United Kingdom +Webpage www.flyanra.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 09/09/2025 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 143 === +Administrative forms +Page 143 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name Communications and Transport Systems +Street 114 HIGH STREET +Town CRANFIELD, BEDS +Same as proposing organisation's address +not applicable +Country United Kingdom +Postcode MK43 0DG +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 144 === +Administrative forms +Page 144 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Amit Last name* Ganjoo +E-Mail* aganjoo@flyanra.com +Town CRANFIELD, BEDS Post code MK43 0DG +Street 114 HIGH STREET +Website Please enter website +Position in org. CEO +Department ANRA TECHNOLOGIES UK LTD +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle +Same as proposing organisation's address +Country United Kingdom +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Brent Klavon bklavon@flyanra.com +xxx xxxxxxxxx +Ajay Modha amodha@flyanra.com +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 145 === +Administrative forms +Page 145 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr Ajay Modha Man United Kingdom amodha@flyanra. +com Category A Top grade reLeading +Mr David Murphy Man United Kingdom dmurphy@flyanr +a.com +Category B Senior resea Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 146 === +Administrative forms +Page 146 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 147 === +Administrative forms +Page 147 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Software +ANRA NOON: ANRA is an EASA certified U-space Service Provider, and ANRA NOON is an +airspace management software platform for uncrewed aircraft. U-space services support the +management of uncrewed aircraft operations in U-space airspace. +Software +ANRA's AWARE tool: Provides supplemental data for flight safety and business intelligence. The +service facilitates geospatial data layers such as network infrastructure or weather to be +included into UTM services such as flight authorisation and monitoring services during flight. +Software ANRA's SIM tool: Provides the engine to drive a Digital Twin experience for virtual drone +operations +Software ANRA AAM Traffic Management tool: airspace management for Advanced Air Mobility aircraft +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Corus five (2025-2028) +Corus five aims to facilitate full airspace integration of UAS systems alongside existing +airspace users providing a reference architecture, addressing air traffic management service +gaps in flight rules and airspace management and informing both regulatory gaps and future +R&D requirements +Managing Shared Airspace (2025 - +2026) +The project aims to implement and validate a UK Concept of Operations for UTM supported +UAS operations. It seeks to operationalise an industry-driven approach for UTM services that +support multiple overlapping Beyond Visual Line of Sight (BVLOS) operations within shared +airspace. +U-ELCOME (2022-2025) +The U-ELCOME project is designed to support Europe-wide U-space implementation off the +ground by fostering a fully scalable market uptake of U1 and U2 U-space services through a set +of tests and demonstrations in various operational environments across 15 locations, +including includes integrations with national ATC providers, in Spain, Italy, and France. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +Cloud-based service Cloud service access in line with commercially deployed ones +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 148 === +Administrative forms +Page 148 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 149 === +Administrative forms +Page 149 of 167 Last saved 16/09/2025 18:16 +PIC +881888402 +Legal name +SKYPUZZLER APS +Short name: Skypuzzler + +Address +Town COPENHAGEN +Postcode 1100 +Street OSTERGADE 16 4 +Country Denmark +Webpage www.skypuzzler.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 20/07/2023 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... 31/12/2023 - yes +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 150 === +Administrative forms +Page 150 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 151 === +Administrative forms +Page 151 of 167 Last saved 16/09/2025 18:16 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Sebastian Last name* Babiarz +E-Mail* sebastian.babiarz@skypuzzler.com +Town COPENHAGEN Post code 1100 +Street OSTERGADE 16 4 +Website https://www.skypuzzler.com/ +Position in org. Director Business Development +Department SKYPUZZLER APS +Phone +48882404111 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Denmark +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Ronni Winkler Østergaard ronni.ostergaard@skypuzzler.com +4524422752 +Jacob Løfdahl jacob.loefdahl@skypuzzler.com +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 152 === +Administrative forms +Page 152 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr Elgiz Baskaya Woman France elgiz.baskaya@sk +ypuzzler.com Category B Senior resea Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 153 === +Administrative forms +Page 153 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 154 === +Administrative forms +Page 154 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Service Nordic Patent Service: Skypuzzler patent for Tactical Deconfliction of Unmanned Aerial +Vehicles European Patent Application no. 23179563.4 +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +CONDUCT +The project aimed to develop a breakthrough solution for automated tactical drone +deconfliction. This will enable safe and efficient flight route adjustments in real-time when +multiple drones are flying in the same airspace beyond visual line of sight. +EIC: SKYPUZZLER +Project: 101188110 — Skypuzzler — HORIZON-EIC-2024-ACCELERATOR-02 +Skypuzzler is a novel Digital Air Traffic Control (ATC) software project aimed at empowering +the global commercial drone market through its autonomous tactical deconfliction service to +solve a rising problem of drone safety. By using a sophisticated mathematical algorithm, +Skypuzzler integrates seamlessly into Unmanned Traffic Management (UTM) systems enabling +drones to avoid collisions +Autonomous deConfliction of +Drone-Congested areas +The Skypuzzler AC-DC (Autonomous deConfliction of Drone-Congested areas) Kick-Start +Project, under the ESA ARTES programme, focuses on the objective of enabling our integrated +Digital Air Traffic Control (iDATC) product to deconflict drones at higher levels of precision by +using our software-to-software approach, integrating with the drone's SatNav capabilities, +thereby removing the need for installing extra cost or energy-consuming equipment on the +drone. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +iDATC as a Service +Integrated Digital ATC system provides Conflict Resolution Service, an advanced deterministic +algorithm that can be incorporated as a software-to-software module to UTM and drone +operator systems. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 155 === +Administrative forms +Page 155 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 156 === +Administrative forms +Page 156 of 167 Last saved 16/09/2025 18:16 +PIC +869703941 +Legal name +HAPS Alliance +Short name: High Altitude Platform Station Alliance Inc. + +Address +Town Wakefield +Postcode 01880 +Street 401 Edgewater Place, Suite 600 +Country United States +Webpage www.hapsalliance.org +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 30/08/2025 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 157 === +Administrative forms +Page 157 of 167 Last saved 16/09/2025 18:16 +Departments carrying out the proposed work +Department 1 +Department name Communications and Transport Systems +Street ITN +Town Norrköping +Same as proposing organisation's address +not applicable +Country Sweden +Postcode 60374 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 158 === +Administrative forms +Page 158 of 167 Last saved 16/09/2025 18:16 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 159 === +Administrative forms +Page 159 of 167 Last saved 16/09/2025 18:16 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 160 === +Administrative forms +Page 160 of 167 Last saved 16/09/2025 18:16 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +Cooperative, Seamless, and Global Digital Skies for Higher Airspace : The purpose of the paper +is to assist the aviation and aerospace global communities in understanding an industry +perspective and vision for a global harmonized, cross-border, and integrated Higher Airspace +Operations Traffic Management, which supports the seamless integration of highly +automated operations. +Publication +HAPS Certification Pathways: The purpose of this document is to identify the key challenges +faced by the High Altitude Platform System (HAPS) community in getting regulatory approval +to start commercial operations and recommended actions that the HAPS Alliance can take to +address these challenges. Operational challenges are covered only from the perspective of the +potential impact they have on air vehicle performance. +Publication +Acceptable Levels of Risk for HAPS : This paper discusses setting acceptable levels of risk for +High Altitude Platform System (HAPS). It discusses the safety metrics traditionally used in +aviation are not adequate to establish target levels of safety for HAPS. Then it proposes to set +acceptable levels of risk to be consistent with the risk already accepted by the exposed parties. +Then it proposes a framework by which an operator self-manages the collective risk it +generates. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 161 === +Administrative forms +Page 161 of 167 Last saved 16/09/2025 18:16 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 162 === +Administrative forms +Page 162 of 167 +Proposal ID 101288550 +Acronym SCAN +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 18:16 +3 - Budget +No Name of Beneficiary Country Role Requested grant +amount + Income generated +by the action +Financial +contributions + Own resources Total estimated +income +1 Eurocontrol - European Organisation For The Safety Of Air +Navigation BE Coordinator 0.00 0 0 1 972 168 1 972 168.00 +2 Dfs Deutsche Flugsicherung Gmbh DE Partner 137 681.25 0 59 006 0 196 687.25 +3 Luftfartsverket SE Partner 254 709.88 0 0 109 161 363 870.88 +4 European Satellite Services Provider Sas FR Partner 95 988.20 0 0 41 138 137 126.20 +5 Nats (En Route) Public Limited Company UK Partner 56 147.79 0 0 24 064 80 211.79 +6 Direction Des Services De La Navigation Aerienne FR Partner 182 656.25 0 78 281 0 260 937.25 +7 Skynav Europe BE Partner 561 397.73 0 0 240 569 801 966.73 +8 Ecole Nationale De L Aviation Civile FR Partner 124 162.50 0 0 53 213 177 375.50 +9 Linkopings Universitet SE Partner 99 225.00 0 0 42 525 141 750.00 +10 C.i.r.a. Centro Italiano Ricerche Aerospaziali Scpa IT Partner 178 190.46 0 0 76 367 254 557.46 +11 Sceye Spain S.l. ES Partner 3 586 975.00 0 0 1 537 275 5 124 250.00 +12 Skydweller Canarias Sl ES Partner 1 339 800.00 0 0 574 200 1 914 000.00 +13 Skydweller Sl ES Affiliated 0.00 0 0 0 0.00 +14 Parque Tecnologico De Fuerteventurasa Mp ES Partner 164 281.25 0 0 70 406 234 687.25 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 163 === +Administrative forms +Page 163 of 167 +Proposal ID 101288550 +Acronym SCAN +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 18:16 +15 Elson Space España S.l. ES Partner 911 562.75 0 0 390 670 1 302 232.75 +16 Deutsches Zentrum Fur Luft - Und Raumfahrt Ev DE Partner 687 225.88 0 0 294 525 981 750.88 +17 Pildo Consulting Sl ES Partner 233 187.50 0 0 99 938 333 125.50 +18 Enaire ES Partner 322 866.25 0 0 138 371 461 237.25 +19 Openutm Ltd. IE Partner 81 279.63 0 0 34 834 116 113.63 +20 Anra Technologies Uk Ltd UK Partner 193 909.63 0 0 83 104 277 013.63 +21 Skypuzzler Aps DK Partner 475 343.75 0 0 203 719 679 062.75 +22 Haps Alliance US Associated 0.00 0 0 0 0.00 +Total 9 686 590.70 137 287 5 986 247 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 164 === +Administrative forms +Page 164 of 167 +Proposal ID 101288550 +Acronym SCAN +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 18:16 +4 - Ethics & security +Ethics Issues Table +1. Human Embryonic Stem Cells and Human Embryos Page +Does this activity involve Human Embryonic Stem Cells (hESCs)? Yes No +Does this activity involve the use of human embryos? Yes No +2. Humans Page +Does this activity involve human participants? Yes No +Does this activity involve interventions (physical also including imaging technology, +behavioural treatments, etc.) on the study participants? Yes No +Does this activity involve conducting a clinical study as defined by the Clinical Trial Regulation +(EU 536/2014)? (using pharmaceuticals, biologicals, radiopharmaceuticals, or advanced +therapy medicinal products) +Yes No +3. Human Cells / Tissues (not covered by section 1) Page +Does this activity involve the use of human cells or tissues? Yes No +4. Personal Data Page +Does this activity involve processing of personal data? Yes No +Does this activity involve further processing of previously collected personal data (including +use of preexisting data sets or sources, merging existing data sets)? +Yes No +Is it planned to export personal data from the EU to non-EU countries? Yes No +Is it planned to import personal data from non-EU countries into the EU or from a non-EU +country to another non-EU country? +Yes No +Does this activity involve the processing of personal data related to criminal convictions or +offences? +Yes No +5. Animals Page +Does this activity involve animals? Yes No +6. Non-EU Countries Page +Will some of the activities be carried out in non-EU countries? Yes No +In case non-EU countries are involved, do the activities undertaken in these countries raise +potential ethics issues? Yes No +It is planned to use local resources (e.g. animal and/or human tissue samples, genetic material, +live animals, human remains, materials of historical value, endangered fauna or flora samples, +etc.)? +Yes No +Is it planned to import any material (other than data) from non-EU countries into the EU or +from a non-EU country to another non-EU country? For data imports, see section 4. Yes No +Is it planned to export any material (other than data) from the EU to non-EU countries? For +data exports, see section 4. Yes No +Does this activity involve low and/or lower middle income countries, (if yes, detail the benefit- +sharing actions planned in the self-assessment) Yes No +Could the situation in the country put the individuals taking part in the activity at risk? Yes No +7. Environment, Health and Safety Page +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 165 === +Administrative forms +Page 165 of 167 +Proposal ID 101288550 +Acronym SCAN +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 18:16 +Does this activity involve the use of substances or processes that may cause harm to the +environment, to animals or plants.(during the implementation of the activity or further to the +use of the results, as a possible impact) ? +Yes No +Does this activity deal with endangered fauna and/or flora / protected areas? Yes No +Does this activity involve the use of substances or processes that may cause harm to humans, +including those performing the activity.(during the implementation of the activity or further +to the use of the results, as a possible impact) ? +Yes No +8. Artificial Intelligence Page +Does this activity involve the development, deployment and/or use of Artificial Intelligence- +based systems? Yes No +9. Other Ethics Issues Page +Are there any other ethics issues that should be taken into consideration? Yes No +I confirm that I have taken into account all ethics issues above and that, if any ethics issues apply, I will complete the +ethics self-assessment as described in the guidelines How to Complete your Ethics Self-Assessment +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 166 === +Administrative forms +Page 166 of 167 +Proposal ID 101288550 +Acronym SCAN +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 18:16 +Ethics Self-Assessment +Ethical dimension of the objectives, methodology and likely impact +Explain in detail the identified issues in relation to: + - objectives of the activities (e.g. study of vulnerable populations, etc.) + - methodology (e.g. clinical trials, involvement of children, protection of personal data, etc.) + - the potential impact of the activities (e.g. environmental damage, stigmatisation of particular social +groups, political or financial adverse consequences, misuse, etc.) +Remaining characters 5000 +Compliance with ethical principles and relevant legislations +Describe how the issue(s) identified in the ethics issues table above will be addressed in order to adhere to the ethical principles and +what will be done to ensure that the activities are compliant with the EU/national legal and ethical requirements of the country or +countries where the tasks are to be carried out. It is reminded that for activities performed in a non-EU countries, they should also be +allowed in at least one EU Member State. +Remaining characters 5000 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 167 === +Administrative forms +Page 167 of 167 +Proposal ID 101288550 +Acronym SCAN +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 18:16 +Security issues table +1. EU Classified Information (EUCI)2 Page +Does this activity involve information and/or materials requiring protection against +unauthorised disclosure (EUCI)? Yes No +Does this activity involve non-EU countries which need to have access to EUCI? Yes No +2. Misuse Page +Does this activity have the potential for misuse of results? Yes No +3. Other Security Issues Page +Does this activity involve information and/or materials subject to national security restrictions? +If yes, please specify: (Maximum number of characters allowed: 1000) +Yes No +Are there any other security issues that should be taken into consideration? +If yes, please specify: (Maximum number of characters allowed: 1000) +Yes No +Security self-assessment +Please specify: (Maximum number of characters allowed: 5000) +Remaining characters 5000 +2According to the Commission Decision (EU, Euratom) 2015/444 of 13 March 2015 on the security rules for protecting EU classified information, “European Union +classified information (EUCI) means any information or material designated by an EU security classification, the unauthorised disclosure of which could cause varying +degrees of prejudice to the interests of the European Union or of one or more of the Member States”. +3Classified background information is information that is already classified by a country and/or international organisation and/or the EU and is going to be used by the +project. In this case, the project must have in advance the authorisation from the originator of the classified information, which is the entity (EU institution, EU Member +State, third state or international organisation) under whose authority the classified information has been generated. +4EU classified foreground information is information (documents/deliverables/materials) planned to be generated by the project and that needs to be protected from +unauthorised disclosure. The originator of the EUCI generated by the project is the European Commission. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 11:57:36 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 168 === + +Part B - Page 1 of 49 +Proposal template Part B: technical description +SCAN: REVIEWING, ADAPTING AND DEVELOPING CNS INFRASTRUCTURE AND SERVICES +TO ENSURE THE SAFE INTEGRATION OF HAO AND STO VEHICLES +[This document is tagged. Do not delete the tags; they are needed for processing.] #@APP-FORM-HERIAIA@# +List of participants +Participant No. * Participant organisation name Country +1 (Coordinator) EUROCONTROL Belgium (BE) +2 DFS Deutsche Flugsicherung GmbH Germany (DE) +3 Swedish Civil Aviation Administration Sweden (SE) +4 European Satellite Services Provider France (FR) +5 NATS United Kingdom (UK) +6 Direction des Services de la Navigation Aérienne France (FR) +7 SkyNav Europe Belgium (BE) +8 Ecole Nationale de l’Aviation Civile France (FR) +9 Linkopings Universitet Sweden (SE) +10 C.I.R.A. Centro Italiano di Ricerche Aerospaziali Italy (IT) +11 Sceye Spain SL Spain (ES) +12 Skydweller Canarias SL Spain (ES) +12-AE13 Skydweller SL Spain (ES) +14 Parque Tecnologico de Fuerteventura SA Spain (ES) +15 Elson Space Espana SL Spain (ES) +16 Deutsches Zentrum fur Luft - und Raumfahrt Germany (GE) +17 Pildo Consulting SL Spain (ES) +18 ENAIRE Spain (ES) +19 OpenUTM Ltd. Ireland (IE) +20 ANRA Technologies United Kingdom (UK) +21 Skypuzzler APS Denmark (DK) +22 (Associated partner) HAPS Alliance United States (USA) + + +=== PAGE 169 === + +Part B - Page 2 of 49 +1. Excellence #@REL-EVA-RE@# +1.1 Objectives and ambition #@PRJ-OBJ-PO@# +Recent technological breakthroughs have enabled the development of new vehicles with new mission profiles, +ranging from low-speed High-Altitude Platform Systems (HAPS) to very high-speed operations, notably supersonic +and hypersonic transport, plus commercial space transport activities transiting from and to European States. These +new Higher Airspace Operations (HAO) will need to be integrated with traditional and new airspace users (drones, +RPAS, U-space) as they will temporarily transit the current ATM environment and will be generally conducted above +most General Air Traffic (GAT) and Operational Air Traffic (OAT) on a global scale. Moreover, some of their +mission profiles consider extended durations of operations up to several months. +Communications, Navigation and Surveillance (CNS) infrastructure, and the radio spectrum they require, are the +foundation of the aviation operational performance, enabling ever -increasing airspace capacity. Without them , air +transport could not be safely and expeditiously performed. To safely accommodate this growth in current areas of +operation, it is essential to appropriately manage scarce resources like radio frequency bands, secondary surveillance +radar (SSR) codes and Mode S interrogator codes sustainably. However, many of these elements may not be usable +within higher airspace, for example, due to reach and coverage limitations , and therefore new and innovative CNS +capabilities need to be considered. The appropriate elements of the CNS infrastructure will be technical enablers for +the effective integration of HAO. While very limited HAO missions are supported today by existing ATM processes +and systems in segregated airspace, the number of operations is expected to grow substantially in the coming years +due to swiftly developing innovation in HAO and airspace management technologies appropriate for use within the +higher airspace. This will involve different geographical distributions and types of vehicles. +New entrants will provide new challenges in terms of flight -performance envelopes, operating at altitudes sparsely +used today and where their operational behaviour and performance may generate additional complexity regarding +traffic management. Due to the wide range of trajectories of these vehicles and the lack of accuracy in altimetry at +high levels (reportedly up to 3000 ft difference between barometric altimetry and geometric altimetry due to very +low air density), using current ATM methods in higher airspace operations and space launches often results in a +requirement for segregation of large areas. It is therefore imperative that such operations take place safely, efficiently +and without a disproportional impact on more conventional air traffic operations. Change is needed to evolve from +how we work today for these operations to fully achieve their economical, national security, and societal benefits in +Europe, and ensure equitable access to airspace to all users, including civil and military operators. +Therefore, a major challenge is to assess the behaviour of current CNS systems and research new CNS solutions in +the higher airspace needed for a safe, fair and effective integration of these vehicles. By providing validated flight +trajectories that would better characterize these new operational profiles, procedural packages, real time CNS +capabilities and potentially other types of services , e.g. space weather forecast, catering for the unconventional +operational needs of HAO and STO, Europe would position itself at the forefront through the SCAN project. +Specific Objectives +The objectives of the SCAN project are directly derived from the scope of the topic HORIZON-SESAR-2025-DES- +IR-02-WA3-2: Enhanced CNS capabilities, addressing more specifically R&I needs for: +o IR-3-01 regarding resilient integrated CNS/MET as a service accommodating the specific needs of higher +airspace operations (HAO), and +o IR-3-09 on CNS capabilities to increase ATM system robustness. +The project aims to build further on the work delivered in the ECHO “European Concept of Operations for Higher +Airspace Operations” and the ongoing ECHO2 Horizon 2020 SESAR funded projects. https://higherairspace.eu/ +The SCAN project will deliver one SESAR Solution “CNS means to serve HAO”, with the following objectives: +a. Assess the current Communication, Navigation and Surveillance (CNS) capabilities and limitations for HAO +(including HAPS, supersonic-hypersonic and space launch and re-entry) at altitudes higher than FL500; + +=== PAGE 170 === + +Part B - Page 3 of 49 +b. Perform flight trials (with multiple diverse HAPS platforms and sounding rockets) to collect CNS data and +assess their actual performances in the higher airspace; +c. To gather CNS user needs for HAO, considering the need for resilience, e.g. in GNSS denied scenarios, and +cost-effectiveness; +d. Perform a gap analysis to assess whether the user needs are met by the available or innovative CNS +capabilities; +e. Investigate the use of geometric altimetry in the higher airspace to deal with current limitations of barometric +altimetry due to very low air density; Define procedures for transition between barometric and geometric; +f. Explore new business model for CNS as a Service (CNSaaS) to enhance resilience of current CNS +infrastructure using and interfacing space-based assets; +g. Explore the feasibility of new CNS technologies and new paradigms for supporting future air traffic +management methods, such as Cooperative Operating Environments, for HAO integration; +h. Define and validate a set of at least 5 quantitative KPIs (e.g., for accuracy, availability, latency) to benchmark +new CNS technologies against the state-of-the-art; +i. Improve telemetry for airspace management of space launches; +j. Investigate the potential to use cryptographically verified identity and 4D position of HAO vehicles; +k. Provide recommendations for standardisation and regulation with respect to CNS provision and HAO vehicle +requirements equipage; +Ambition +SCAN will build on the outcome of CNS infrastructure studies and flight trials currently ongoing in the ECHO2 +project and will move forward with the ambition to: +a. Propose a set of feasible technical components and services to serve the CNS needs for diverse vehicles +operating in the higher airspace within Europe and beyond; +b. Engage with airspace users (conventional aviation and HAO operators) , ANSPs, industry and aviation +authorities to align expectations on benefits and operational acceptability of the proposed CNS solutions or +new paradigms for air traffic management. +c. Support a clear path forward for future CNS developments, including standardisation and regulatory +framework evolution to support the European pioneer initiatives on HAO. +Initial TRL: 2-6, functional prototype and early validation in ECHO2. +Target TRL: 6, pre-deployment validation in operationally representative environment with wider scope than ECHO2 +since SCAN is a large-scale initiative to flight-validate a multi-layered, resilient CNS architecture using diverse +HAPS platforms and a sounding rocket. +#§PRJ-OBJ-PO§# +1.2 Methodology #@CON-MET-CM@# #@COM-PLE-CP@# +The activities to be performed to accomplish the objectives of the SESAR solution “CNS means to serve HAO” +will largely follow a waterfall type methodology, with various phases aiming at delivering the mandatory SESAR +solution data pack for Industrial Research activities, as identified within the SESAR 3 JU Project Handbook, edition +02.00, released in December 2024 by the SJU. The solution target output is at TRL6 maturity level , so it requires +validation in a relevant environment close to operations. + +=== PAGE 171 === + +Part B - Page 4 of 49 +The work will be carried out in six work packages . WP1 “Project Management” and WP2 “Communication, +Dissemination & Exploitation” run for the whole duration of the project. The core of the studies on CNS for HAO +on deriving user needs and CNS capabilities for HAO is done in WP3 “CNS means to serve HAO – Part 1” whereas +WP “4 Validation Trials – Part 1" is where CNS features will be tested in flight with diverse HAPS platforms and +a sounding rocket in the first half of the project. Likewise, in the second half of the project , WP5 “CNS means to +serve HAO – Part 2” will assess to which extent the CNS user needs are met with current or i nnovative CNS +services, complemented with additional HAO flight trials in WP6 “Validation Trials – Part 2”. +The solution will align to the following phases: +Phase 1 – scope definition will delineate the operational and technological envelope of the solution, starting from +the relevant elements on CNS and user needs assessed in the ECHO2 project and other national initiatives. The main +deliverable of Phase 1 is a preliminary version of the Contextual Note for the solution , in terms of scope, main +operational and performance benefits, relevant system impacts as well as recommendations regarding additional +activities to be conducted during the industrialization or as part of deployment. Phase 1 – scope definition will be +developed in WP3 “CNS means to serve HAO – Part 1” (M01 – M18). +Phase 2 – Operational requi rements definition will a ddress the safety and performance requirements, and +interoperability requirements related to CNS for HAO. Phase 2 will be developed in WP3 "CNS means to serve HAO +– Part 1”, that will collect CNS user needs for HAO and perform a theoretical assessment of CNS technological +solutions and will deliver the initial SPR-INTEROP/OSED (M01-M18) followed by WP5 "CNS means to serve +HAO – Part 2” that will perform gaps and risks analysis for the CNS solutions, resulting in the delivery of the final +SPR-INTEROP/OSED (M19-M36). +Phase 3 – System/procedure design and development will focus on describing the functional, non-functional and +interface requirements related to the CNS for HAO solution. The main deliverable of Phase 3 is the technical +specifications/interface requirements (TS/IRS) that will be developed in WP5 "CNS means to serve HAO – Part 2” +(M19-M36). +Phase 4 – Validation will address validation planning, execution and reporting. Validation planning will identify +how many and what type of validation exercises, mostly based on actual flight trials with HAPS and sounding rockets, +are required and sufficient to ensure that the solution CNS for HAO achieve its objectives. For each of these exercises, +scenarios derived from the operational and functional requirements will be developed, including the description of +the validation objectives and associated KPIs, and of all related CNS features to be assessed in flight. Based on these +scenarios, the foreseen validation activities will be executed and, upon their completion, the results against defined +KPIs, findings and lessons learned will be documented in comprehensive reports. +The main deliverables of Phase 4 are the actual validation exercises, together with the corresponding validation plans +(VALP) and validation reports (VALR). WP4 “Validation trials – Part 1” will produce the initial VALP and initial +VALR (M01-M18) whereas WP6 “Validation trials – Part 2” will result in the final VALP and final VALR (M19- +M36). +Phase 5 – Cost-Benefit Analysis will illustrate the potential benefits of the proposed CNS solutions to serve +operations in the higher airspace, and whether they are expected to exceed the incurred costs over a given time +horizon. The main deliverable of Phase 5 is the Cost -benefit analysis (CBA) to be developed in WP5 "CNS means +to serve HAO – Part 2” (M19-M36). The CBA assumptions will be discussed and validated during workshops and +communication events as well as with the Advisory Board. +Phase 6 – Standardisation and Regulation will perform gap analyses and proposals for updating the pertinent +standardisation (STAND) e.g. via EUROCAE, as well as the applicable regulation (REG) including Acceptable +Means of Compliance (AMC) and Guidance Material (GM) for HAO. These deliverables will be developed in WP3 +(M01-M18) and WP5 (M19-M36). This activity will work on the outcomes of ECHO2 and collaborate with relevant +activities in the frame of EUROCAE WG-105 UAS, EASA (e.g. guidance material on the "regulatory sandbox” for +HAO), and JARUS (e.g. HAO use case – to define changes needed to SORA to assess the risk of HAO with UAS , + +=== PAGE 172 === + +Part B - Page 5 of 49 +and JARUS CS -HAPS, Airworthiness recommendations for HAPS, http://jarus-rpas.org/publications/) as well as +with national initiatives such as the “national HAO WG” led by AESA in Spain. +CNS technological components will be considered for evaluation in the higher airspace, as described below. +Communications. SCAN aims to examine the suitability of current and innovative solutions for communication +service provision in the higher airspace, such as, but not limited to: +• VHF/UHF/HF +• VHF/HF Datalink +• SATCOM (including highly directional phased array terminals), e.g. Iris +• E-band and 5G backhauling +• Free Space Optic Communication (FSOC) +• Ground-ground communication +• Innovative means e.g. connected aircraft technologies (between HAPS and their operators via diverse +commercial link providers). + +The current communication infrastructure for conventional aviation is not always suited for higher airspace +operations. Technologies such as VHF, UHF, and HF are limited by line-of-sight and signal strength at high altitudes. +SATCOM offers global coverage but can suffer from latency issues and bandwidth limitations for high -data-rate +applications, and highly directional phased array terminals are needed to support specific mission profiles. The +project will assess the performance and limitations of these te chnologies for various HAO and STO use cases. The +project will also explore emerging communication technologies like 5G backhauling, Free Space Optic +Communication (FSOC), and connected aircraft concepts to support resilient and high -bandwidth data links. An +overview of each system's advantages, disadvantages, current levels of support for HAO and STO, and costs will be +performed, including proof-of-concept with flight tests (with HAPS and sounding rockets). +Navigation (positioning). The project aims to examine the suitability of current and innovative solutions for +Positioning, Navigation and Timing (PNT) service provision in the higher airspace: +• Multi-frequency multi-constellation (MFMC) GNSS receivers, including augmentations such as ABAS and +SBAS(EGNOS), leveraging Galileo differentiators e.g. authentication schemes enabled by OSNMA. +• Pressure/geometric altimetry sensors, as input to the navigation and position reporting (SUR) functions. +• SATCOM Multilateration +• Inertial Navigation System (INS) +• Magnetometer +• Celestial navigation (star trackers) +• VHF Omni-Directional Range (VOR), Distance Measuring Equipment (DME), TACAN (Tactical Air +Navigation Systems), provided the Size, Weight and Power-Cost (SWaP-C) constraints are met. +• 6G +• Ground-based navigation support by new technologies, e.g. Mode N (a ground-based alternative navigation +system concept aiming to provide reliable aircraft navigation by passive signal reception from ground +stations, enhancing resilience against GNSS outages and spectrum congestion in current systems). +• Other Alternative PNT means +• Multi-sensor fusion with uncertainty estimate. +• Barometric conversion to geometric height estimate using MET data. +Navigation in the higher airspace presents unique challenges, particularly due to the low air density, which makes +traditional barometric altimetry unreliable. The project will conduct a detailed assessment of various navigation +technologies to ensure they meet the PNT requirements for HAO and STO. This includes a deep dive into advanced +GNSS receivers, particularly those leveraging Galileo's authentication schemes to detect spoofing. The project will + +=== PAGE 173 === + +Part B - Page 6 of 49 +also investigate alternative PNT sources like celestial navigation (star trackers) and magnetometers, which can +provide a robust backup in GNSS -denied scenarios. Additionally, the project will explore the use of multi -sensor +fusion to combine data from different sources into a single, highly accurate position estimate. A critical part of this +work will be the assessment of geometric altimetry and the definition of transition procedures between barometric +and geometric altitude, as this is essential for seamless integration with conventional air traffic. An overview of each +system's advantages, disadvantages, current levels of support for HAO and STO, and costs will be performed, +including proof-of-concept with flight tests (with HAPS and sounding rockets). +Surveillance. SCAN aims to examine the suitability of current and innovative solutions for surveillance service +provision in the higher airspace, such as: +• Position reporting over IP networks, e.g. adaptation of Network remote ID, a concept taken from the UAS +domain. +• Primary/Secondary Surveillance Radar (PSR/SSR) +• Multi-lateration (MLAT) +• ADS-B, including s atellite-based ADS-B, enabling tracking of HAO vehicles over areas without radar +coverage. +• ADS-C +• Direct telemetry data from HAO operators +An overview of each system's advantages, disadvantages, current levels of support for HAO and STO and costs will +be performed, including proof-of-concept with flight tests (with HAPS and sounding rockets). +Some radar installations are capable of tracking multiple vehicles expected to operate in higher airspace, including +HAPS and supersonic aircraft. However, Secondary Surveillance Radars (SSR) are dependent on accurate +measurements from pressure altimeters, many of which may not be reliable above FL560 due to lack of testing and +certification specifications for this altitude band. Industry development of high -altitude barometric altimeters could +potentially support SSR surveillance of traffic above FL600 . However, many automation systems with inputs from +SSR have software settings that limit coverage ceilings. +Version 2 1090 Extended Squitter ADS-B may be an adequate surveillance source for many HAO participants, both +in continental and oceanic airspace. However, as with radar, more accurate altimeters may be necessary to support +HAO. Additionally, Version 2 ADS -B would likely be limited to vehicles traveling below Mach 2.03 due to both +encoding limitations and ITAR restrictions on GNSS receivers that provide position and velocity data. Version 3 +ADS-B messages could potentially support operations up to a geometr ic altitude of roughly 1,000,000 ft AGL, +however ITAR speed restrictions would still apply. SCAN will investigate innovative methods for the tracking of +high-speed vehicles which respect international restrictions such as those applied by ITAR. +All systems considered with SCAN will be assessed from a civil/military dual use perspective , so the project will +seek to identify feasible ways of monitoring vehicles moving faster than Mach 2.03 with due consideration towards +the security sensitivity of those elements . Data concerning accuracy, integrity, availability, continuity and +functionality of the current European CNS infrastructure as well as from new innovative solutions will be gathered +through flight trials with multiple diverse HAPS performed at flight levels above FL500, complemented with data +collected with sounding rockets. This will allow the extension of navaids, communication and surveillance +performance models to include the characterization of vertical performance beyond currently used flight level bands, +enabling an informed decision-making process to outline optimal CNS solutions for HAO integration. +Cross-cutting methodology elements +SCAN brings together expertise from multiple disciplines to address the full range of technical, operational, and +regulatory challenges associated with the CNS infrastructure necessary to successfully integrating HAO and STO +into the European network. Air traffic management specialists, CNS experts, spaceflight operations experts, HAPS +operators, U-space (or third party) service providers, systems engineers, data scientists, and regulatory authorities +will work in close coordination, ensuring that the solut ions are grounded in both operational reality and technical +feasibility. Additional inputs will come from cybersecurity experts. HAO such as HAPS are highly exposed Cyber- + +=== PAGE 174 === + +Part B - Page 7 of 49 +Physical Systems that, due to the integration of novel technologies, have vulnerabilities that could lead to several +threat scenarios. This necessitates a focus on HAO cyber security and the adoption of "security -by-design" +approaches to ensure that future solutions meet security requirements from the early design stages. +This combination of disciplines ensures that the CNS solution for HAO is not developed in isolation but considers +the operational, technical, and environmental factors that affect their use. +The project will maintain an active link with relevant national and international initiatives. Results from the ECHO2 +project will be a starting point for S CAN’s work, ensuring continuity in concepts, interfaces, and validation assets. +Engagement with standardisation bodies such as EUROCAE will enable technical specifications, data models, and +operational procedures developed in SCAN to feed into wider industry adoption. +In line with the “Do No Significant Harm” principle under the EU Taxonomy Regulation, the methodology includes +a focus on minimising the environmental footprint of HAO and STO operations. By optimising hazard volumes, +improving predictability, and enabling more efficient reroutes, the CNS solution aim to optimise energy consumption. +Environmental performance will be monitored as part of the validation process, with adjustments made where +necessary to ensure that no significant harm is caused to environmental objectives. SCAN is also aligned with the +EU Green Deal, as HAPS are enabling elements for green aviation and earth monitoring services. Concerning the +European Strategic Autonomy, SCAN strengthens Europe's position, e.g. by leveraging Galileo's unique features +(like OSNMA) and reducing reliance on non-European CNS solutions. +The project’s methodology supports open science principles. Non -sensitive datasets, interface definitions, and +technical documentation will be made openly available, enabling other research and operational projects to build on +SCAN’s outputs. Research outputs will follow the FAIR (Findable, Accessible, Interoperable, Reusable) principles: +they will be stored in trusted repositories with persistent identifiers, published under open licences where possible, +and documented to facilitate reuse. SCAN will generate open-source code and technologies that will be in the public +domain. Sensitive operational data will be subject to controlled access arrangements, ensuring it can be used for +verification without compromising security. +Although the gender dimension is not expected to influence the technical design of the solution, human factors will +be considered in interface and procedure development to ensure that systems are usable and effective for a diverse +operational workforce. The project team will include diverse perspectives in workshops and validation exercises, +ensuring that the developed concepts and tools are accessible and intuitive for all users. +These cross-cutting elements are integral to the methodology rather than being treated as separate concerns. By +embedding interdisciplinarity, alignment with external initiatives, environmental safeguards, open science practices, +and inclusivity into the c ore of the work, S CAN maximises the likelihood that its solutions will be accepted, +standardised, and deployed across the European ATM network and beyond. + 1.3 State of the art +Within European airspace, traffic density varies across Europe. In the ATM context, traffic complexity refers to the +number of simultaneous or near-simultaneous interactions of trajectories in a given volume of airspace that generates +additional workload for the Air Traffic Controller (ATCO) to resolve before a conflict would occur. Trajectories refer +to the flight paths of individual aircraft, and interactions occur when these trajectories come into proximity or conflict +with each other. Complexity of the traffic and flows have a major impact on the definition, scoping and execution of +Air Traffic Service (ATS) provided in today’s airspace environment. +In the ECHO1 project, a study was conducted to observe the airspace classification of European Civil Aviation +Conference FIRs above FL660. ATS is provided by more than 60 Area Control Centres (ACC) and by more than 30 +Air Navigation Service Providers (ANSPs) where Class C airspace has been published from FL195 up to FL660. +Many States have declared in the national AIPs their airspace above FL660 as G -class airspace. On the other hand, +some States have opted for no airspace definition (e.g. UK, Poland, Switzerland, Bulgaria, Romania, Czech Republic, +Albania, Armenia and Azerbaijan) or unclassified airspace (as it is the case for Turkey, Ukraine, Croatia, Belgium, +and Slovakia). + + +=== PAGE 175 === + +Part B - Page 8 of 49 +Consequently, this airspace class declaration (e.g.: G-class above FL660) implies that ATS such as Flight Information +Services and Alerting services can be currently provided in the present ATM environment. It should be noted that +today there is little, or no surveillance and communication capability provided by ANSPs above FL660. However, it +is generally believed that the current CNS capabilities are not adequate for service provision at altitudes above FL600 +in terms of antennae signal protection, strength and coverage width. Thus, the provision of CNS with the current +systems could only be limited to the lower levels of HAO. Additionally, increases of jamming and spoofing incidents +in GNSS frequency bands, due to current geopolitical contexts , are driving calls for a more resilient CNS +infrastructure. +The management of the European ATM network has been built on strong cooperation between all stakeholders based +on the Collaborative Decision Making (CDM) principle (e.g. airspace users, service providers, regulators, the EU +and its agencies, international organizations, etc.). It has been supported and codified by a coherent set of EU +regulations which confers clear responsibilities on all actors involved. Hence, the management of the network is an +essential component of the European ATM system , and by exte nsion for HAO , which will be an integral part of +network operations and where the airspace is seen as a continuum. +How SCAN goes beyond +HAO offers a unique opportunity to promote an operational vision that, from the outset, aims to address some of the +structural elements that in the past have required significant time and effort to improve. Perhaps one of the most +familiar examples, the airspace organization and structure across the Network Manager area, has been subject to +constant developments to reduce fragmentation and improve interoperability. Such improvements have required a +bottom-up approach and several decades to be fully implemented across the network. The lessons learned from this +experience should be taken into consideration and the development of the higher airspace should start with a new +approach. The higher airspace has been utilised almost entirely by military actors and as transit for space vehicles in +the past. Challenges posed by new entrants and the underlying conditions of their operations will lead to an increase +in interactions among HAO and between HAO and conventional air traffic and STO transits in the airspaces below. +Assessing the demand for HAO is critical for the evaluation of future operational means to ensure a safe and +practicable use of airspace. Within the ECHO project, a thorough demand analysis was conducted, including the +development of specific demand scenarios and an impact assessment of new entrant’s operations. +Within the diversity of vehicles expected to operate in the higher airspace, High Altitude Platform Systems (HAPS) +represent a class of low -velocity and economical aerial vehicle, characterized by their constrained manoeuvring +capabilities, which can operate in the stratosphere for extensive periods of time spanning days, weeks and months. +The viability of these operations derives from using solar irradiation as a primary energy source, keeping the +equipment functioning at these elevated altitudes for extended durations. Three types of HAPS emerge based on their +construction mechanism: Heavier Than Air (HTA) HAPS category, distinguished by small propulsion systems and +large wingspans with gliding capabilities for descent; the motorized Lighter Than Air (LTA) variant, characterized +by utilization of fluids lighter than air for controlled elevation changes apart from the motors to control speed and +manoeuvrability; and Balloons, which are the group most limited in terms of manoeuvrability, using wind +predictions and other fluids to control the position. +While the ECHO project defined the conceptual framework for HAO and ECHO2 is planning early flight trials with +HAPS, SCAN moves decisively beyond by being the first large-scale initiative to flight-validate a multi-layered, +resilient CNS architecture using three distinct HAPS from leading operators such as Elson Space and Skydweller +(with HTA vehicles) as well as Sceye (LTA airship HAPS) and a sounding rocket. This will provide empirical data +on CNS performance above FL500 in European airspace and beyond , a critical gap ECHO could only address +theoretically. Elson Space and Sceye have their operation base s at Teruel airport (LETL) whereas Skydweller is +based at the Fuerteventura stratoport in the Canary Islands. +The main applications of HAPS cover domains such as telecommunications, disaster relief, antenna relay, earth +observation, ISR, and scientific exploration among others. These remotely controlled or managed platforms can be +orchestrated into fleets to facilitate broader application scope and extended coverage. Initial projections made in the + +=== PAGE 176 === + +Part B - Page 9 of 49 +ECHO research project suggested an anticipated deployment of 1000 HAPS in Europe annually before the close of +the current decade. Although it now appears that this level of traffic is less likely to be experienced prior to 2030, it +is reasonable to consider that traffic numbers will surpass that level within the 2030s. HAPS services can be expected +to be utilised predominantly for telecommunications in low to medium densely populated areas. In addition, HAPS +can be used, among other things, for maritime surveillance and border security measures. European regions with +apparent potential for HAPS deployment are ther efore peripheral areas like Scandinavia or the Mediterranean. +Unfavourable environmental conditions, e.g. at higher al titudes or during winter season, however, pose significant +hurdles for current technology. Due to the limited manoeuvrability and low speeds, the transition through ATS +airspace is a critical flight phase for HAPS. Blocking large volumes of highly utilized airspace for a considerable +amount of time like in the core area must be assessed and particularly minimized regarding the potential impact on +the entire network. Nevertheless, HAPS must address some challenges to achieve their entrance at scale in this new +era of aviation. Transition of HAPS from Lower to Higher Airspace is crucial without impacting and ensuring +minimal disruption to traditional air traffic flows. Furthermore, operations may cover several Flight Information +Regions (FIR) from different countries, thereby standard regulation and flight authorization protocols are required. +Lastly, among other challenges, the enhancement of meteorological forecasting assumes a paramount relevance for +these types of vehicles. +Currently available CNS services, certified in conformity with Regulation (EU) 2017/373, will not necessarily be +capable of supporting HAO operations. The requirements for certain CNS services might be extended to also meet +the HAO needs, once defined, although innovative solutions that may include new paradigms of ATM may prove to +be more suitable for HAO. The CNS equipment for HAO , meeting the required performance levels, should be +established with a technology agnostic approach, independently from existing aviation equipment, taking into +account the specificity of HAO in terms of very high altitude, sometimes high-speed, exposure to radiation and space +weather effects, as well as SWaP-C requirements considering also the diversity of vehicles. +Current CNS capabilities for STO in higher airspace rely primarily on ground -based radars, space -based tracking +networks, and limited ADS -B/MLAT coverage. Traditional SSR/MSSR radars have poor coverage at extreme +altitudes and steep trajectories due to bea m geometry and radar horizon limitations. Current space surveillance +networks and specialized tracking radars can detect fast moving vehicles but often lack the latency and precision +required to track diverse vehicle-types in an integrated traffic environment. ADS-B in its current specification and +use is ineffective for most launch vehicles due to equipment constraints, antenna orientation, and line -of-sight loss +during high-speed ascent or re-entry. Space-based ADS-B constellations have the potential to improve coverage but +face latency, bandwidth, and certification challenges for safety-critical operations. Optical and infrared tracking offer +high precision but are weather-dependent and limited in real-time integration with ATC systems. Data fusion across +disparate surveillance sources is inconsistent, and standardised interfaces for sharing real-time trajectory data with +civil ATM are lacking. High-velocity and high-dynamic vehicles challenge existing tracking algorithms, leading to +prediction errors. There is currently no globally harmonized surveillance framework for suborbital and orbital re - +entry traffic in controlled airspace. A potential solution to addressing these gaps would be robust, low-latency, multi- +sensor surveillance networks, including telemetry data provided by an operator, with space-based augmentation and +real-time data sharing standards. Modifications of the existing ADS-B standard, extending the maximum +transmittable altitude beyond 126.700 ft, may allow purely passive reception of transponders within quasi -optical +range from terrestrial locations or from earth orbit on a satellite and potentially covering the whole range of HAO. +New approaches can also be developed based on cooperative operating environments in which operators will +maintain safe distance using cooperative strategic conflict detection and resolution based on shared intent. +Depending on the air traffic management operations and responsibilities in HAO (which are to be defined in +STRATUS project), appropriate CNS technology should be selected. RF interference and performance impacts to +existing CNS systems w ill be studied and considered, including the allocation of exclusive radio frequencies, if +needed. In this regard, the EU Space Surveillance and Tracking service, providing today space debris re -entry +predictions could provide additional and more general support to civil aviation: it would have to be assessed whether +its sensors and assets (radars, telescopes, etc.) could track not only re -entering debris, but also higher airspace +operations. Due to the high altitude, HAO will be more exposed to space weather effects. However, while today MET + +=== PAGE 177 === + +Part B - Page 10 of 49 +services provide space weather forecast for conventional aviation, they do not provide forecast for the layer of +airspace above FL600. +The Concept of Operations (v1.0, Dec 2022) developed by the ECHO project indicates that during the transiting +phase of HAO through the conventional traffic, separation will be ensured by ATC based on established separation +criteria. In the Higher Airspace, HAO will be carried out based on the agreed trajectory or 4D operating zone, acting +as a dynamic airspace reservation. Assuming that HAO will be made up of cooperating traffic and non -cooperating +traffic, (i.e. traffic that can change their flight trajectory and those who cannot), dedicated HAO separation rules will +be necessary in addition to Regulation (EU) 923/2012, the Standardised European Rules of the Air (SERA). These +rules should reflect the different types of movement, speed and manoeuvring capability. Separation should be ensured +also for vertical moving vehicles and any kind of 4D trajectory. The principle of vertical separation measured in +barometric altitude might not be applicable in HAO due to very low air pressure which makes a reliable pres sure +altitude unavailable. SCAN will study altimetry solutions for HAO including tests in flight of geometric and +barometric positioning sources as well as transition criteria among them. Airborne collision avoidance, as regulated +in Regulation (EU) 1332/2011, might not be feasible in HAO traffic for the same reasons. The capability of current +airborne collision avoidance needs to be assessed and potentially amended for HAO usage , complemented with +strategic conflict detection tools. +Regarding the value proposition to address the SESAR WA3-2 on “Enhanced CNS capabilities”, SCAN will focus +on demonstrating a highly cost -effective, resilient and secure CNS solution for HAO , that will be proven in +flight with HAPS platforms and a sounding rocket, and will adapt UTM technologies to HAO, e.g. network remote +ID. +SCAN will develop the solution following an end-to-end layered approach as illustrated in the following figure: + +Figure 1: Overall CNS as a modular network architecture +• Layer #1 – multi-sensor PNT onboard the HAO platforms. The vehicles determine their 4D position, velocity +and time with multiple diverse sensors with dissimilar modes of failure, such as MFMC GNSS, inertial, satellite- +based MLAT. Each positioning source provides an independent PNT solution and quality indicators that can be +fused onboard or reported for later on assessment. + + +=== PAGE 178 === + +Part B - Page 11 of 49 +• Layer #2 – secure telemetry via redundant, dissimilar and asynchronous general -purpose data links +(satellite links, proprietary links, etc.). The aircraft transmits telemetry messages over asynchronous datalinks. +The telemetry is prioritized according to the available bandwidth and routed over available data links, enabling +the system to gracefully degrade. +• Layer #3 – real time information available to the HAO operator on position-velocity-time and uncertainty +estimation of HAO vehicles. When not done on the aircraft, the telemetry measures are fused into a single +position estimate with uncertainty computation, which can degrade gracefully if sensors are unavailable. +• Layer #4 – Authenticated aircraft identity, position and uncertainty estimates shared with interested and +authorized parties with need-to-know over secure network via web API (adapted from Network Remote ID). +• Transversal cyber-security layer – Modern Zero-Trust cybersecurity framework along the entire chain. This +includes GNSS satellite authentication (e.g. Galileo OSNMA), aircraft authentication over telemetry, digital +signature of telemetry messages, authentication and authorization framewo rk over API exchanges, and +encryption where necessary/desired. +The flow of information through the entire chain from the HAO vehicle to the end-recipient, e.g. an ANSP, is secured +by using authentication mechanisms guaranteeing that the position and identity of all vehicles are true. Moreover, +multi-sensor and redundancies across the whole chain ensure the resiliency of the CNS solution, considering RF +interference events, ionospheric activity, failure of individual systems, etc. +This approach on CNS for HAO will be researched in WP 3 and WP5. Those elements that are mature enough will +be tested in flight during the planned validation trials with HAPS in WP4 and WP6. +#§CON-MET-CM§# #§COM-PLE-CP§# #§REL-EVA-RE§# +2. Impact #@IMP-ACT-IA@# +2.1 Project’s pathways towards impact +The s olution “CNS means to serve HAO ” addresses the technical, operational, standardisation and regulatory +challenges concerning the necessary CNS infrastructure and services, both existing and innovative, that will allow +HAO operations into European airspace and beyond. +The SCAN project will provide benefits to internal and external stakeholders, while significantly advancing th e +definition and validation of CNS systems and services suitable to HAO . Within the project, EUROCONTROL and +ANSPs are concern ed with obtaining a validated SESAR solution for HAO that is operationally feasible in both +continental and remote/oceanic airspace including cross-border missions. +Moreover, the aviation industry and leading HAPS operators are interested in testing and validating in flight different +CNS solutions onboard their HAPS vehicles. External to the project, European institutions, aviation authorities, +ICAO, standardisation and regulatory bodies will benefit from the project's developments. SCAN will set up an +Advisory Board to provide visibility to key external stakeholders and gather their views and recommendations to +ensure that the project's objectives are met, i.e. to define and demonstrate feasible, cost-effective, resilient and secure +CNS means to serve HAO. Relevant stakeholders, e.g. the European Union Aviation Safety Agency (EASA) and the +Spanish aviation safety agency (AESA) have already expressed their willingness to join the SCAN's Advisory Board. +Contribution of the project results to the outcomes in the topic +• Environment; suitable CNS infrastructure and services will allow for a more efficient utilisation of the airspace, +allowing for preferred routes of the vehicles, e.g. affected airlines burning less fuel or supersonic vehicles flying +low noise profiles. On the other hand, the HAPS vehicles involved in the project enable more widespread use of +environmentally sustainable platforms, which could reduce the need for more emitting vehicles. +• Capacity; the availability of suitable and wide-spread CNS services will allow reduced separations resulting in + +=== PAGE 179 === + +Part B - Page 12 of 49 +the possibility to accommodate more vehicles in the concerned volumes of airspace. +• Cost-efficiency, innovative CNS services such as those to be explored in SCAN (e.g. satcom, and network-based +telemetry) can significantly reduce the need for ground-based infrastructure investments to support HAO. +• Operational efficiency, as the availability of CNS services tailored to HAO help reduce the need for large airspace +reservations, enabling also cooperative operating environments allowing shared airspace use. +• Safety, as a result of proposing and testing in flight onboard performance monitoring and alerting CNS functions +as well as redundancies and robust and resilient CNS systems able to cope with RF interference events or +ionospheric activity. +Contribution of the project results to the wider impacts in the longer term +• Scientific outcomes and impact, based mainly on the collection and assessment of CNS data in actual flight trials +in the higher airspace what will illustrate current performances and identify possible gaps to meet user needs. +The results of the SCAN project will provide valuable inputs on standardisation and regulation and will pave the +way for future commercial operations of new entrants in the higher airspace. +• Economic/technological impacts, as resilient and secure CNS services tailored to HAO will allow more operators +to perform diverse and innovative missions. The potential use of these vehicles to support the CNS infrastructure +further strengthens this resilience and provides business opportunities for higher airspace operators. CNS as a +Service use cases will be explored within SCAN with a view to promoting economic and technological +development within Europe. +• Societal outcomes and impact, improving the efficient integration of HAO and STO transits will support access +to the higher airspace in Europe. Moreover, tailored CNS solutions for HAO will enable the minimisation of the +impact of HAO on conventional air traffic, contributing to en vironmentally friendly and cost -efficient air +transport for European citizens. Finally, it will also result i n job creation for highly skilled positions , as new +manufacturing centres for HAO vehicles as well as operation centres and ground infrastructure, e.g. stratoports, +start to be deployed in several locations in Europe. +Scale and significance of project's contribution to the expected outcomes and impact +The scale of the project's contribution to the expected outcome will be influenced by the extent to which its SESAR +solution is deployed. The adoption of the CNS for HAO solution provides a cornerstone to facilitate safe, efficient +and scalable HAO operations and it would position European industry and service providers to compete and win +significant portions of the global market for HAO. +In addition, the significance of the SCAN project's contribution can be explained in qualitative terms: +• market access for innovative concepts; +• safeguarding the use of the higher airspace for emerging commercial operators; +• clarity in the CNS requirements and equipage for users; +• enabling new Earth observation and remote sensing services providing persistence and flexibility to complement +existing satellite, unmanned and manned aircraft operations in a growing market estimated to be 4bn euro pa by +2026. +• environmental benefits through increased use of solar electric platforms and services to persistently monitor and +enable reducing the impact from greenhouse gases, wildfires or certain illegal activities such as oil dumping. + + + +=== PAGE 180 === + +Part B - Page 13 of 49 +Project's content towards impact +The regulatory and standardisation state of the art for CNS in HAO is currently in rapid development, with several +European and international bodies actively working towards the establishment of harmonised frameworks. The +SCAN project will help align these efforts to maximise industrialisation impact and ensure safe, efficient integration +of new entrants such as HAPS, supersonic, hypersonic, and STO in European higher airspace. +Regulatory State of the Art +EASA is leading a multi -year initiative to develop a regulatory framework for HAO, addressing safety, security, +environmental, and cyber risks, with deliverables including technical studies on CNS civil needs and capacities at +high altitudes, demand analys is, and draft regulatory amendments. A regulatory roadmap has been published by +EASA, highlighting preparatory actions, literature reviews, market analysis, and initial CNS spectrum needs required +for developing HAO regulations. Concerning PBN, certain nav igation specifications for civil aviation may be +considered as starting point to assess their applicability for operations in the higher airspace, e.g. RNP 1, and facilitate +compatibility with evolving CNS services. SESAR activities and the ATM Master Plan emphasise scalable, +interoperable solutions for emerging HAO traffic, coordinated with institutional partners including +EUROCONTROL, EDA, ESA, and EASA, to accelerate regulatory alignment and deployment. A key element for +converging towards a proportionate regulatory frame is to implement "regulatory sandboxes”, as described in EASA's +roadmap on HAO, “supporting Member States and the industry to conduct the first tests and demonstrations in the +EU, exempting these tests from the application of relevant EU regulations”. +Standardisation State of the Art +EUROCAE develops minimum performance specifications and means of compliance for aircraft CNS equipment. +Its technical working groups extend activities to airborne and ground -based CNS/ATM systems and collaborate +globally with RTCA (US) to promote harmonisation. EUROCAE standards serve as reference means of compliance +to EASA and national authorities, underlining their direct influence on regulatory implementation for CNS +technologies. Ongoing standardisation efforts include updates for ATM functions, ground systems, and airborne CNS +capabilities, with attention to the unique operational and environmental demands at high altitudes. +The strategy for developing and consolidating needs +• Establish a fluent dialogue between the SCAN project and the key stakeholders: EASA, EUROCAE, JARUS, +and National Supervisory Authorities to prioritise regulatory and standardisation needs emerging from HAO +flight trials and studies. +• Use flight trial findings to identify CNS capability gaps, validate theoretical models, and derive operational +requirements, including spectrum management and contingency procedures. +• Derive proposals as candidate standards and regulatory amendments, and submit these to EUROCAE for +Working Group development, ensuring they are aligned with EASA regulatory processes and ICAO global +initiatives. +• Engage stakeholder consultation (industry, research, service providers) to iteratively refine requirements, with +oversight by National Aviation Authorities for certification procedures and operational authorisations. +• Support standardisation by contributing validated evidence and operational concepts from European HAO trials +to EUROCAE and JARUS, facilitating recognition as global standards at ICAO level. +2.2 Measures to maximise impact - Dissemination, exploitation and communication #@COM-DIS-VIS-CDV@# +The project will maximise its impact by executing a comprehensive plan for dissemination, exploitation, and +communication activities, designed to ensure project results are effectively shared, adopted, and recognised across +diverse stakeholder groups. Thes e measures leverage best practice frameworks from SESAR and Horizon Europe, +with activities strategically tailored to every segment of the airspace ecosystem. + +=== PAGE 181 === + +Part B - Page 14 of 49 +Dissemination Measures +• Scientific Community: Publication of research results and technical deliverables in open access journals and +presentation at international conferences and workshops (e.g., SESAR Innovation Days, ATM and CNS +symposia). +• End Users (air navigation service providers, operators): Custom workshops, webinars, and demonstration events +showcasing flight trial outcomes and practical CNS solution guidelines. +• Industry: Engagement via SESAR innovation platforms, joint panels with EUROCAE, and technical papers in +trade publications to encourage uptake and further R&D investment. +• Dissemination outputs will include technical reports, data sets, standardisation proposals, and policy briefs +regularly updated and distributed through the project website, digital repository, and direct mailing. +Exploitation Measures +• Intellectual Property: Early identification and protection of key exploitable results (KERs), including patents +where applicable, supported by a confidential results tracking system shared among project partners. +• Technical Standards: Preparation of validated CNS requirements and contributing project outcomes to +EUROCAE working groups, JARUS, and EASA for incorporation into new standards and regulatory guidance. +• Commercialisation: Stakeholder mapping and engagement with financial actors , coupled with business +architecture workshops to build exploitation capacity among members and industry users. +• Monitoring and feedback mechanisms will be in place to adapt exploitation strategies as project results mature. +Communication Measures +• Targeted stakeholders: Information days, newsletters, and interactive website updates will ensure ongoing +accessibility and transparency of project progress towards the benefits of innovative CNS solutions for HAO. +• Proactive use of social media (LinkedIn, X/Twitter), press releases, podcasts, and video explainers to inform and +engage the general public. +• Public events and content will be in multiple languages where appropriate to broaden reach across Europe. +• Communication activities are supported by metrics for reach, engagement, and impact, with periodic updates +based on analytics. +Target Groups +• Scientific community: publications, conferences, workshops for increased research uptake towards materialising +highly-cost effective, resilient and secure CNS as a service solution for HAO +• ANSPs: workshops, webinars, technical briefs, in order to a ccelerate awareness on the role and limitations of +current CNS for HAO as well as innovative CNS means for HAO. +• HAO operators: to discuss and consolidate the CNS user needs identified in the project and to disseminate the +outcomes on the role and limitations of current and innovative CNS means for HAO. +• EASA: to ensure the project's findings on CNS are fed into the regulatory activities, e.g. sandbox to facilitate +early flight trials. +• National Supervisory Authorities, to provide them with visibility on the CNS user needs and feasible means of +compliance, as well as to address the flight authorisation of the proposed HAPS flight trials in European airspace. + +=== PAGE 182 === + +Part B - Page 15 of 49 +• ICAO: to ensure regional developments on CNS for HAO are harmonised and integrated into their global vision +on HAO. +• Standardisation bodies, notably EUROCAE and the relevant WGs such as WG-105 UAS. +• Military authorities, NATO and EDA, to ensure that needs of military operations in the higher airspace and civil- +military convergence requirements on CNS are properly addressed. +• Industry: trade events, standardisation panels, to foster innovation transfer. +• Financial actors: Business workshops, investor guide, to enable commercialisation. +• Public at large: social media, press, info events, aiming at boosting awareness and engagement. +All activities will be reviewed and updated regularly, with the initial plan delivered in month 3 and major revisions +at project milestones, ensuring focus and alignment with the evolving airspace landscape. + Intellectual property rights (IPR) and results ownership +SCAN will generate a range of results, including technical specifications on CNS for HAO , software prototypes, +validation methodologies, operational procedures, acceptable means of compliance and guidance material on +airborne and ground CNS equipment suitable for HAO . The consortium will manage intellectual property in a way +that protects individual contributions while ensuring the widest possible uptake of the results. +An IPR framework will be agreed in the Consortium Agreement before the project start. This will define ownership +rules, access rights, and conditions for both internal use and external exploitation. Results created by a single partner +will remain the property of that partner. Results developed jointly will be owned collectively, with clear arrangements +for use and decision-making agreed in advance. +The project will distinguish between outputs intended for open publication and those requiring controlled access. +Public deliverables such as non-sensitive specifications, operational guidance, and performance assessments will be +released under open licences to support adoption and interoperability. For results containing commercially sensitive +or security-critical information, access will be restricted to authorised stakeholders under agreed conditions. In such +cases, the consortium will determine the most appropriate protection mechanism, which may include copyright, +design rights, or, where relevant, patent applications. +#§COM-DIS-VIS-CDV§# + + +=== PAGE 183 === + +Part B - Page 16 of 49 +2.3 Summary +KEY ELEMENT OF THE IMPACT SECTION +SPECIFIC NEEDS EXPECTED RESULTS D & E & C MEASURES +What are the specific needs that triggered +this project? + +Need to gather CNS needs for HAO +missions performed by diverse vehicles, +such as HAPS and supersonic/hypersonic. +Cyber-security and aircraft authentication +for infrastructure supporting highly +automated operations. +Cost-effectiveness of infrastructure +supporting HAO operations, enabling +scaled, low-margin HAO applications +such as connectivity provision. +Need to assess the behaviour in the higher +airspace of current CNS systems and +services, which is mostly unknown. +Need to study suitability of +barometric/geometric altimetry for HAO. +Need for establishing CNS means of +compliance for HAO missions. +What do you expect to generate by the end of the +project? + +Validated solution data pack at target TRL 6, based +on flight trials to assess CNS means, for the SESAR +solution “CNS means to serve HAO” that would +facilitate the integration of HAO missions in +European airspace and beyond. +Contributions of suitable elements to enable HAO +as input to the standardisation and regulatory +bodies, mainly EUROCAE, EASA, JARUS. +Communication, dissemination and exploitation +measures with target stakeholders in the HAO +domain. +What dissemination, exploitation and communication +measures will you apply to the results? + +Dissemination, organising workshops, webinars, and +demonstration events showcasing flight trial outcomes and +practical CNS solution guidelines. Engagement of industry +via SESAR innovation platforms, joint panels with +EUROCAE, and technical papers in trade publications to +encourage uptake and further R&D investment. Scientific +Community: Publication of research results in open access +journals and presentation at international conferences and +workshops (e.g., SESAR Innovation Days, ATM and CNS +symposia). +Exploitation. Technical Standards: Preparation of validated +CNS requirements and contributing project outcomes to +EUROCAE working groups, JARUS, and EASA for +incorporation into new standards and regulatory guidance. +Intellectual Property: Early identification and protection of +key exploitable results (KERs), including patents where +applicable, supported by a confidential results tracking +system shared among project partners. Commercialisation: +Stakeholder mapping and engagement with financial actors +(venture capital, strategic investors), coupled with business +architecture workshops to build exploitation capacity +among members and industry users. +Communication. Public Awareness: proactive use of social +media (LinkedIn, X/Twitter), press releases, podcasts, and + +=== PAGE 184 === + +Part B - Page 17 of 49 + +TARGET GROUPS OUTCOMES IMPACTS +Who will use or further up-take the results +of the project? Who will benefit from the +results of the project? + +HAO operators: to gather their CNS user +needs and evaluate available current and +innovative CNS solutions. +EASA: to ensure the project's findings on +CNS are fed into the regulatory activities, +e.g. sandbox to facilitate early flight trials. +HAO Service provider s: appropriate and +suitable infrastructure is required for the +safe and efficient operation of traffic +within HAO airspace. +ANSPs: to understand the limitations of +current CNS, maintain general situational +awareness within airspace managed by +them (including traffic not managed or +separated by ANSPs), as well as +awareness and implementation, as +required, of new and innovative CNS +necessary for HAO vehicles. +What change do you expect to see after successful +dissemination and exploitation of project results to +the target group(s)? + +Environment; suitable CNS infrastructure and +services will allow for more efficient utilisation of +the airspace, allowing for preferred routes of the +vehicles, e.g. affected airlines burning less fuel or +supersonic vehicles flying low noise profiles. +Capacity; the availability of suitable and wide - +spread CNS services for HAO will enable the wide +utilisation of the higher airspace, allowing the +accommodation of an increasing number of vehicles +as demand evolves. +Cost-efficiency, innovative CNS services such as +those to be explored in SCAN e.g. ground-ground. +Communications, and networked infrastructure +leveraging internet -based APIs , can significantly +reduce the need for ground-based infrastructure for +HAO operations. +Operational efficiency, e.g. because of flying user - +preferred routes for HAO missions enabled by +What are the expected wider scientific, economic and +societal effects of the project contributing to the expected +impacts outlined in the respective destination in the work +programme? + +Scientific outcomes and impact, based mainly on the +collection and assessment of CNS data in actual flight trials +in the higher airspace, will illustrate current performances +and identify possible gaps to meet user needs. The results of +the SCAN project will provide valuable inputs on +standardisation and regulation and will pave the way for +future commercial operations of new entrants in the higher +airspace. +Economic/technological impacts, by conducting flight trials +with HAPS the potential use of these aircraft can be shown, +and possible new business cases may be identified. +CNS as a Service use cases will be developed ensuring CNS +services are provided in the required volumes of airspace at +an affordable cost. +Societal outcomes and impact, improving the efficient +integration of HAO and STO transits will support access to +the higher airspace in Europe. Moreover, tailored CNS +solutions for HAO will enable the minimisation of the +video explainers to inform and engage the general public +about HAO and the benefits of innovative CNS solutions. +Broader Stakeholders: Information days, targeted +newsletters, and interactive website updates will ensure +ongoing accessibility and transparency of project progress. +Public events and content will be in multiple languages +where appropriate to broaden reach across Europe. + +=== PAGE 185 === + +Part B - Page 18 of 49 +Standardisation bodies, notably +EUROCAE. National Supervisory +Authorities, to provide them with +visibility on the CNS user needs and +feasible means of compliance, as well as +to address the flight authorisation of the +proposed HAPS flight trials in European +airspace. +National security agencies, providing +awareness on resiliency and security +(particularly for verified aircraft identity) +gaps of existing CNS solutions to support +highly automated fleet operations, and +verify the identity of aircraft. +ICAO: to ensure regional developments +on CNS for HAO are harmonised and +integrated into their global vision on +HAO. +Military authorities, NATO and EDA, to +ensure that needs of military operations in +the higher airspace and civil -military +convergence requirements on CNS are +properly addressed. +Other agencies such as FRONTEX , +European Environment Agency, etc. +wide-spread CNS services. +Safety, as a result of proposing and testing in flight +onboard performance monitoring and alerting CNS +functions as well as redundancies and robust and +resilient CNS systems able to cope with RF +interference events or ionospheric activity. +Security and Cybersecurity – Gap identification, +recommendations and possible solutions to meet the +needs of increased airspace automation. +Overall ecosystem resilience – A modular +infrastructure ecosystem that can gracefully degrade +without collapsing, enabling the dynamic +adaptation of deconfliction margins. +Privacy / Confidentiality – The ability for sensitive +operations (e.g. defence operations, or national +security sensitive a irborne connectivity +infrastructure) to report 4D position confidentially +to authorized recipients on a need-to-know basis. +impact of HAO on conventional air traffic, contribut ing to +environmentally friendly and cost-efficient air transport for +European citizens. Finally, it will also result in job creation +for highly skilled positions, as new manufacturing centres +for HAO vehicles as well as operation centres and ground +infrastructure, e.g. stratoports, start to be deployed in several +locations in Europe. + + + +#§IMP-ACT-IA§# + +=== PAGE 186 === + +Part B - Page 19 of 49 +3. Quality and efficiency of the implementation #@QUA-LIT-QL@# #@WRK-PLA-WP@# +3.1 Work plan and resources +The SCAN project includes six work packages, as depicted in Figure 1. + +Figure 2: Work Breakdown Structure +WP1 “Project Management”: coordination of all activities, financial and administrative oversight, quality assurance, +risk management, and reporting to SESAR 3 JU. +WP2 “Communication, Dissemination & Exploitation”: stakeholder engagement, promotion of results, exploitation +planning, communication with specialist and public audiences, and application of the FAIR principles for all project +outputs, supported by a managed public and internal repository. +WP3 “CNS means to serve HAO – Part 1” and WP “4 Validation Trials – Part 1" will take place in the first reporting +period, followed by a similar scheme for the second on e WP5 “CNS means to serve HAO – Part 2 ” and WP6 +“Validation Trials – Part 2”. +Timing and sequencing +The first phase (M1 –M6) focuses on requirements gathering, stakeholder engagement, and assessment of CNS +capabilities for HAO. After the initial assessment of CNS user needs and CNS capabilities, a gap analysis will be +carried out, and a set of specific CNS features will be proposed for testing in-flight with HAPS and a sounding rocket +within the Validation Trials work packages. Work on the flight trials will start early in the project regarding the flight +authorisation process with the corresponding aviation authorities. +Interdependencies +WP1 provides coordination, governance, and quality control for all other work packages. +WP2 supports WP3–WP6 through communication, data management, and stakeholder engagement. +WP3–WP5 develop the solution "CNS means to serve HAO” as illustrated in Figure 2. + + +=== PAGE 187 === + +Part B - Page 20 of 49 + +Figure 3: WP interdependencies + + +=== PAGE 188 === + +Part B - Page 21 of 49 + +The Gantt chart is shown in Figure 4. + +Figure 4: SCAN's Gantt chart + + +=== PAGE 189 === + +Part B - Page 22 of 49 +3.2 Capacity of participants and consortium as a whole #@CON-SOR-CS@# #@PRJ-MGT-PM@# +The SCAN consortium is a robust, multi -disciplinary team uniquely positioned to meet the project's objectives by +bringing together Europe's leading actors from across the entire aviation value chain. +A Comprehensive, Pan-European Partnership +The consortium's structure is designed to ensure a holistic approach, blending high -level regulatory and network +oversight with hands -on operational experience and specialised technical expertise. This composition ensures that +the developed outcomes are not only technologically advanced but also operationally viable, safe, and aligned with +future European regulatory frameworks. The partnership includes a representative cross-section of ANSPs, industry, +aerospace research organisations, flight testing experts, and major HAPS operators. +Key Partner Capabilities +• Coordinator and Network Manager (EUROCONTROL) : As project coordinator, EUROCONTROL +provides unparalleled pan-European expertise in air navigation safety, network management, and civil -military +coordination. It will ensure the project aligns with the broader European ATM network strategy, provide essential +network data for analysis, and act as a crucial bridge to regulatory bodies and the wider ATM community. +• Operational Validation and Infrastructure (HAPS Operators) : The direct involvement of three leading +HAPS operators, Elson Space, Skydweller (HTA vehicles), and Sceye (LTA airship), is a cornerstone of the +project. This provides access to diverse flight platforms for the validation trials in WP4 and WP6, led by Sceye. +This diversity is critical for testing the CNS solutions in varied operational environments, ensuring the results +are robust and not limited to a single vehicle type. The HAPS Operators are supported by the HAPS Alliance as +an associated partner. Furthermore, the German Aerospace Center (DLR) enables payload integration and flight +testing of solution prototypes on a research rocket (suborbital). +• Air Navigation Service Provision (ANSPs) : The participation of ANSPs including NATS (UK), DFS +(Germany), DSNA (France), LFV (Sweden) and ENAIRE (Spain) grounds the project's solutions in the realities +of current and future air traffic service provision. They provide critical input on real -world ATC procedures, +safety requirements, and the operational feasibility of integrating HAO traffic, ensuring the pr oject's outcomes +are practical for deployment within European airspace. ESSP provide CNS focused service delivery experience +and, as a multi-service CNS provider, operate complex space -based systems and deliver critical services under +strict regulation conditions. +• Research and Scientific rigour: The German Aerospace Center (DLR), as a leading Research and Technology +Organisation, provides the scientific foundation for the project. DLR will contribute its advanced modelling and +simulation capabilities, ensure the methodological soundness of the validation activities, and perform +independent analysis of CNS performance data, adding a layer of scientific validation to the project's results. +This is supported by input from LIU, CIRA, ENAC (France) and other research focused institutions, ensuring +that the output of the project is scientifically robust and adheres to Open Scientific Principles. Along with their +scientific contributions, ENAC (France) will contribute to the dissemination activity completing the link back +into the education of current and future aviation professionals (ATC Officers, Pilots, Air Operations/Engineers). +• Concept Development and Management : SkyNav Europe provides expertise in ATM operational concept +development along with standardisation and regulatory analysis that will be key in leading the core technical +work packages WP3 and WP5. SkyNav will guide the solution from initial concept to final analysis, overseeing +the integration of flight data, consolidating requirements, and formulating contributions to standardisation bodies +to ensure the solution is operationally viable. Sceye provide management expertise aligned with their operational +capabilities within the project’s validation Work Packages. This ensures the planning and execution of test flights +remains realistic and effective, while utilising their operational flexibility to navigate the regulatory requirements +for the validation flights to be conducted. + +=== PAGE 190 === + +Part B - Page 23 of 49 +• Future-focused, progressive concepts will be proposed and developed through the inclusion of leading U-space +specialists, in the form of OpenUTM, ANRA and Skypuzzler. As higher airspace operations will be dealing +with predominantly New Entrants, many in the form of uncrewed vehicles, the expertise that these partners bring +to the project is highly valuable. The emerging U-space ecosystem is being built upon progressive technologies +and concepts, many of which will likely be similar or parallel to those necessary for HAO . Additionally, +Skypuzzler’s Conflict Resolution Services (CRS) provide the safety-critical deconfliction layer that complements +CNS capabilities for Hig her Airspace Operations (HAO). While CNS ensures positioning, navigation, +surveillance, and communication, CRS ensures that this information is translated into actionable separation +assurance. CRS is therefore essential for enabling cooperative operating e nvironments, minimising segregated +airspace, and scaling HAO operations safely. +• Other supporting participants include Parque Tecnologico de Fuerteventura, who provide access to the +Canarias Stratoport, a dedicated and fully equipped European test facility for HAPS and UAS operations. Pildo +Labs brings world-class expertise in the validation of satellite navigation systems and PBN procedures. They +contribute to validation data analysis along with risk analysis of the CNS Framework. + + +Figure 4: Elson Space HAPS (left), Sceye airship HAPS (centre), Skydweller HAPS (right) + + +Figure 5: airship HAPS facilities at Teruel airport (left), Fuerteventura stratoport (right) + + +Figure 6: Mapheus rocket (DLR) + + + + +=== PAGE 191 === + +Part B - Page 24 of 49 +Aligned for Success +This consortium structure directly addresses the call's objectives by creating a complete ecosystem capable of +advancing the SESAR solution "CNS means to serve HAO" to a pre-deployment maturity level (TRL-6). The blend +of regulatory oversight, operational end -users with critical infrastructure, scientific validation, and expert project +management ensures a seamless workflow from defining user needs (WP3) to validating performance in live flight +trials (WP4, WP6) and delivering a robust data pack for future industrialisation and regulation (WP5). +#§CON-SOR-CS§# #§PRJ-MGT-PM§# +Tables for section 3.1 +Table 3.1a: List of work packages +Work +packag +e No +Work Package Title Lead +Partic +ipant +No +Lead +Participan +t Short +Name +Person- +Months +Start +Month +End +month +WP1 Project Management 1 ECTL 31.50 M01 M36 +WP2 +Communication, +Dissemination and +Exploitation +1 ECTL 27.65 M01 M36 +WP3 CNS means to serve HAO – +Part 1 +7 SkyNav +Europe +113.54 M01 M18 +WP4 Validation Trials – Part 1 11 Sceye 264.28 M01 M18 +WP5 CNS means to serve HAO – +Part 2 +7 SkyNav +Europe +117.71 M19 M36 +WP6 Validation Trials – Part 2 11 Sceye 281.45 M19 M36 + +Table 3.1b: Work package description +Work package number 1 +Work package title PROJECT MANAGEMENT + +Objectives +WP1 provides the governance, coordination, and quality assurance framework that ensures SCAN is delivered +on time, to scope, and to the maturity levels required for SESAR 3 JU Industrial Research projects. Its +objectives are to: +1. Establish and operate a governance structure in line with SESAR 3 JU requirements, ensuring clear +decision-making, effective internal communication, and timely conflict resolution. +2. Manage all contractual, administrative, and financial aspects of the Grant Agreement, including all formal +reporting to SESAR 3 JU. +3. Monitor progress against the approved Project Management Plan (PMP), work plan, and solution maturity +targets, ensuring that corrective action is taken where required. +4. Deliver all mandatory SESAR milestones, reviews, and maturity exit criteria on schedule. +5. Maintain a structured quality assurance process to ensure all outputs meet SESAR evaluation, maturity +assessment, and quality standards. + +=== PAGE 192 === + +Part B - Page 25 of 49 + +Description of work +WP1 will run for the full duration of SCAN. The governance structure will be centred on a Project Management +Board (PMB) and a Technical Coordination Team (TCT). +1. The PMB, chaired by the Project Coordinator, meets quarterly (or more often if required) to make strategic +decisions, resolve contractual or resourcing issues, and monitor progress against the Grant Agreement. +Membership includes senior representatives fro m each partner, all WP leaders, and the SESAR 3 JU +Programme Manager as an observer. The PMB also approves all major deliverables before submission. +2. The TCT, chaired by the Technical Coordinator, meets monthly to monitor technical progress, manage +cross-WP dependencies, and ensure results are consistent across other SESAR Solutions dealing with +HAO. WP leaders provide monthly progress updates, risk status, and confirmation of resource utilisation. +3. When specific issues require rapid resolution or specialist input, the Coordinator may establish short-term +Task Forces reporting to the TCT or PMB. +SCAN’s SESAR Solution will be implemented as work packages aligned to the two SESAR reporting periods: +Months 1 –18 (initial development, specification, and early validation) and Months 19 –36 (refinement, +completion of validation, and final TRL 6 deliverables). WP1 will ensure coordination between the “first-half” +and “ second half ” WPs for the S ESAR S olution so that dependencies, feedback, and updates are carried +forward effectively between reporting periods. +Initial mobilisation (first quarter) +Convene the Kick-off Meeting (T0+1 month) to formally launch the project with all partners and SESAR 3 +JU. The meeting will confirm governance arrangements, reporting cycles, dependencies, and integration with +SESAR maturity processes. +Finalise and submit the PMP (T0+3 months), defining the final title, description, and scope of each SESAR +Solution, confirming initial maturity levels, and setting performance expectations. The PMP will include the +Risk Management Plan, Quality Management Plan, internal communication plan, document control +procedures, reporting templates, and the updated milestone schedule. +Mandatory SESAR milestones +WP1 will ensure the delivery of all mandatory SESAR milestones with full internal preparation cycles to +guarantee readiness: +• Kick-off Meeting (T0+1 month) – Agenda, participant list, and minutes submitted to SESAR 3 JU. +• PMP Submission (T0+3 months) – Drafted by the Coordinator with partner input; internally reviewed one +month before submission. +• Technical Project Review (T0+10 months) – Preceded by an internal mock review to verify completeness +of technical evidence and early identification of gaps. +• End of First Reporting Period (T0+18 months) – Consolidation of technical and administrative reports, +updated maturity self-assessments, and confirmation that lump-sum completion criteria are met. +• Horizon Europe Project Review (T0+21 months) – Readiness check confirming that all technical, +financial, and maturity documentation is complete and fully traceable. +• Final Solution Technical Deliverables (Tend–4 months) – Internal technical and compliance reviews prior +to submission, ensuring alignment with maturity exit criteria. +• Exit Maturity Gate(s) (Tend–2 months) – Delivery of final maturity self-assessment packages and closure +of outstanding review actions. +• Final Non -Technical Deliverables (Tend –2 months) – Includes final CDE reports, updated Data +Management Plan, and other administrative outputs. +• Grant Agreement Closure (Tend) – Submission of final technical and financial reports, and complete +archiving of project documentation. +Risk management +Risk management will be continuous and proactive. A risk register will be created at project start and + +=== PAGE 193 === + +Part B - Page 26 of 49 +maintained by the TCT, with monthly updates and quarterly PMB reviews. Each risk will be scored for +probability and impact, with mitigation actions assigned to specific owners. High -priority risks will be +escalated immediately to the PMB. This process will draw on prior project experience, particularly in +anticipating potential delays in validation, regulatory changes, or partner resource constraints. +Quality assurance +A two-stage quality review process will be applied to all deliverables: a) Technical review by experts from a +partner not responsible for drafting, ensuring accuracy, operational relevance, and technical completeness, and +b) Compliance review by the Coordinator, ensuring alignment with SESAR 3 JU submission formats, Horizon +Europe rules, and the quality criteria set out in the PMP. Reviews will conclude at least two weeks before +submission deadlines to allow for any required corrections. +Administrative and financial management +Management will follow the lump -sum funding model. WP1 will track person -months and deliverable +completion status by WP to ensure lump-sum payment criteria are met. The Coordinator will monitor resource +allocation to prevent imbalances and prepare financia l and technical reports for each reporting period in +accordance with Horizon Europe requirements. + Integration with SESAR schedule +The WP1 framework integrates the SESAR 3 JU milestone and review timetable into all project governance +and monitoring activities. Internal preparation cycles, risk tracking, and quality assurance processes are +scheduled to ensure that deliverables and maturity assessments are complete and ready for submission ahead +of formal deadlines. This approach ensures contractual compliance, early identification of risks, and the orderly +completion of each reporting period and maturity gate. + +Work package number 2 +Work package title COMMUNICATION, DISSEMINATION AND EXPLOITATION + +Objectives + WP2 manages SCAN’s external visibility, stakeholder engagement, and exploitation planning to ensure that +the project’s outputs are widely understood, accessible to relevant stakeholders, and positioned for operational +uptake. The objectives are to: +1. Implement a communication strategy that informs and engages the aviation, HAO operators, ANSPs, and +research communities, as well as standardisation, regulatory and policy stakeholders, throughout the +project. +2. Disseminate results in a structured way, ensuring that relevant technical, operational, and policy +communities have access to the outputs in formats they can apply. +3. Develop and maintain an exploitation plan that identifies opportunities for operational deployment, +standardisation, and regulatory uptake of the SCAN Solution on CNS to serve HAO. +4. Coordinate messaging across the two reporting periods to ensure continuity between the “first -half” and +“second-half” solution WPs. +5. Ensure all dissemination and exploitation activities comply with Horizon Europe requirements, SESAR 3 +JU guidelines, and any applicable intellectual property and confidentiality constraints. + + +=== PAGE 194 === + +Part B - Page 27 of 49 +Description of work +WP2 runs for the full project duration and works in close coordination with WP1 and all solution WPs to +ensure that communication, dissemination, and exploitation (CDE) activities are integrated into the overall +work plan. CDE activities will be planned and executed in a way that supports both reporting periods: +In Months 1–18, the focus will be on raising awareness of the project, engaging key stakeholders, and preparing +the ground for validation and exploitation activities. +In Months 19 –36, the focus shifts to consolidating technical results, promoting validated outcomes, and +supporting uptake pathways such as standardisation, regulatory engagement, and operational trials. +Communication +The communication plan will include: +1. Promotion of the SCAN’s objectives, activities, and benefits to defined target audiences, including higher +airspace operators, ANSPs, avionics industry, state regulators, EASA, the Network Manager, international +organizations (ICAO, JARUS), standardisation bodies (EUROCAE, ISO), and the research community. +2. A public project website will be established in the first quarter, providing up -to-date information, public +deliverables, news, and event materials. +3. Targeted communication channels will include SESAR events, ICAO EUR/NAT meetings, EUROCAE +working groups, specialised industry conferences, and selected journals. +4. Project updates will be shared regularly through SESAR 3 JU channels to maximize reach within the +ATM/space operations community. +Dissemination +Dissemination activities will focus on delivering technical results to their intended user communities in formats +they can adopt. Outputs will include: +1. Technical deliverables and reports (public and restricted versions as applicable). +2. Conference papers and peer-reviewed journal articles. +3. Presentations to operational forums and technical panels. +4. Workshops and webinars to engage stakeholders in the review of preliminary and final results. +The dissemination plan will ensure alignment with SESAR intellectual property rules, managing the release of +restricted or pre-standardisation material appropriately. +Exploitation +The exploitation plan will identify concrete pathways for deploying the SCAN Solution on CNS for HAO into +operational environments after the project concludes. This will include: +1. Mapping solution outputs to candidate standardisation and regulatory processes, such as EUROCAE WG +activities, EASA rulemaking tasks, and JARUS. +2. Identifying opportunities for integration into the European CNS infrastructure. +3. Assessing the operational, regulatory, and commercial viability of the CNS for HAO solution in +consultation with end users. +4. Ensuring exploitation considerations are addressed in both the first and second reporting periods, with +early market and regulatory engagement to prepare the ground for implementation. + Coordination across reporting periods +WP2 will ensure that CDE activities for the “first -half” and “second-half” solution WPs are continuous and +mutually reinforcing. Early outputs and draft deliverables will be positioned to inform stakeholders during the +first reporting period, while finalis ed deliverables in the second reporting period will be accompanied by +targeted exploitation and uptake actions. +IPR and confidentiality +The WP will maintain a register of all project outputs with associated intellectual property rights, access +conditions, and confidentiality classifications. This will ensure that dissemination and exploitation activities +remain compliant with the Grant Agreement, Horizon Europe rules, and SESAR 3 JU guidance. On the other +hand, the project will use open standards and generate open-source code and technologies that will be in the + +=== PAGE 195 === + +Part B - Page 28 of 49 +public domain. +Measurement and reporting +The effectiveness of CDE activities will be monitored through engagement metrics (event participation, +website analytics, stakeholder feedback) and reviewed at least quarterly by the PMB. WP2 will produce +updated dissemination, and exploitation plans as mandatory project deliverables, with a final version ready at +project close to support post-project uptake. +Milestones within WP2: +• Full Project Web Presence Established (M6) This includes the launch of the public project website and +the finalisation of the initial Communication, Dissemination, and Exploitation (CDE) Plan. +• First Stakeholder Engagement Workshop (M12) A workshop held with key stakeholders (e.g., HAO +operators, ANSPs) to present initial findings on CNS user needs and gather feedback. +• Mid-Project Dissemination Event Completed (M18) A public webinar or event to share the results from +the first reporting period, including initial validation findings. +• First Draft of Standardisation /Regulatory Contributions (M24) Initial proposals based on project +findings are drafted and shared with relevant EUROCAE working groups for preliminary review. +• Final Exploitation Plan Defined (M30) The plan for the commercial and operational exploitation of the +project's results is finalised, with clear pathways for uptake. + +Work package number 3 +Work package title CNS MEANS TO SERVE HAO – PART 1 + +Objectives +This work package, titled "CNS means to serve HAO – Part 1" is the initial phase of the project's technical +work. Its primary goal is to establish the conceptual and analytical foundations for the CNS solution by +assessing both existing and innovative CNS capabilities. The outputs of this work will directly inform the +validation activities in WP4 and the detailed analyses in WP5. +The specific objectives for WP3 are to assess and develop: +1. CNS user needs assessment: Compile a comprehensive set of CNS user needs for Higher Airspace +Operations (HAO), covering civil and military use cases with a specific focus on new entrants like HAPS, +supersonic/hypersonic vehicles, and space launch/re-entry operators. +2. CNS technological solutions: Conduct a theoretical assessment of current and innovative CNS +capabilities and their limitations at altitudes above FL500. +3. Innovative modular network approach: Define a layered, technology-agnostic network architecture for +CNS provision that is both resilient and secure. +4. Collaborative cyber security framework: Build a collaborative security framework using a Zero -Trust +architecture to assess and verify cyber security capability and defend against cyber threats and investigate +the ICAO Trust Framework. + +=== PAGE 196 === + +Part B - Page 29 of 49 +5. CNS as a service: Define and assess the CNS as a Service (CNSaaS) concept, exploring new business +models and identifying suitable technologies. +6. Standardisation and Regulation: Perform an initial gap analysis of existing standardisation and +regulatory frameworks and provide recommendations for updating relevant documentation. +Deliverables +This section outlines the key SESAR deliverables that will be produced by WP3. These deliverables represent +the tangible outcomes of the initial research and theoretical work, and they serve as crucial inputs for the +subsequent validation trials in WP4 and the detailed analyses in WP5. They document the project’s early +concepts for services, technical specifications, and regulatory proposals. +• D3.1 Initial SPR -INTEROP/OSED: This deliverable will provide the initial operational services and +environment description, mapping out the early-stage concepts and stakeholder interactions. +• D3.2 Initial TS/IRS: This will define the initial technical specifications and interface requirements for the +proposed CNS solution. +• D3.3 Intermediate SPR -INTEROP/OSED: This deliverable will be an updated version of the initial +OSED, reflecting the refined concepts based on early feedback and research. +• D3.4 Intermediate TS/IRS: An updated version of the technical specifications, incorporating new +findings from the intermediate phase. +• D3.5 Initial STAND: This deliverable will present the initial proposals for standardization. +• D3.6 Initial REG: This will contain the initial proposals for regulatory amendments. + +Description of Work +This section outlines the work to be performed within Work Package 3, focusing on defining and assessing +new CNS capabilities for Higher Airspace Operations (HAO). +WP3.1 CNS user needs assessment +This work package will compile a comprehensive set of CNS user needs for Higher Airspace Operations +(HAO), covering both civil and military use cases. The assessment will be based on surveys of HAO +operators and service providers, with a specific focus on High -Altitude Platform Systems (HAPS), +supersonic and hypersonic vehicles, and space launch and re-entry operators (LRO). +WP3.2 CNS technological solutions (theoretical) +This sub-work package will conduct a theoretical assessment of current and innovative CNS capabilities and +their limitations at altitudes higher than FL500.The work will involve a systematic literature analysis of +existing research and will also gather relevant results from research conducted by relevant organisations such +as NASA and the FAA. +The assessment will cover a range of CNS technologies, including: + +=== PAGE 197 === + +Part B - Page 30 of 49 +• Communications: A review of current aviation communications (e.g., VHF, HF, SATCOM) and +innovative solutions like connected aircraft technologies. +• Navigation (positioning): An examination of advanced PNT systems such as multi -frequency multi- +constellation (MFMC) GNSS receivers leveraging Galileo differentiators, inertial systems, celestial +navigation, and the potential use of 6G. It will also include conversion of geometrical altitude into +barometric altitude algorithms/procedures theoretical assessment. +• Surveillance: An assessment of network remote ID, satellite -based ADS -B, ADS -C, SSR radars, +modified ADS-B for HAO and the use of direct telemetry data from operators. +• Conflict Detection and Resolution: Address the challenge of conflict detection and resolution tailored +for HAO. +Particular attention will be paid to the use of geometric altimetry and the potential for a 6G CNS network, +including an aerial layer of HAPS acting as relays. +WP3.3 Innovative modular network approach for CNS provision +This work package will focus on developing a modular, technology -agnostic network approach for CNS +provision to HAO. The goal is to define a layered architecture that can provide resilient and secure services +by using a variety of redundant data links and a central operator-level fusion of multi-sensor data. +This includes defining the following layers (as illustrated in Figure 1 above): +• Layer 1 (Onboard): Multi-sensor Positioning, Navigation, and Timing (PNT) using diverse sensors. +• Layer 2 (Telemetry): Secure telemetry via redundant and dissimilar data links. +• Layer 3 (Operator): Real-time information available to the HAO operator, with multi-sensor data fusion, +supporting services (Traffic Management and Conflict Resolution Service) and uncertainty computation. +• Layer 4 (Sharing): Authenticated position and identity data shared with authorised parties via a secure +web API. +It will also include a cross-cutting security layer: a transversal zero-trust cybersecurity framework across the +entire chain to ensure resilience and security. +WP3.4 Collaborative cyber security framework for CNS using Zero-Trust architecture +This sub-work package is dedicated to building a collaborative security framework to build resilience and +defend against cyber threats in the new aeronautical CNS environment , including the definition of the +preliminary plan of the Security Risk Assessment ( SecRA) activities, considering the SESAR SecRAM +methodology as a reference. +The research will aim to define and validate a global security collaboration framework based on use cases +across various CNS domains, considering the entire end -to-end chain. This approach directly addresses the +limitations of current siloed security models by promoting an integrated, holistic defence strategy. +The work includes: +• Developing a HAPS-Specific Cybersecurity Framework and an Asset and Vulnerability Analysis to +provide the theoretical basis for the digital verifier tool. + +=== PAGE 198 === + +Part B - Page 31 of 49 +• Researching solutions to mitigate radio frequency interference , with a focus on creating aircraft - +installed active radio aerials capable of adapting to and mitigating the impact of jamming and spoofing +attacks. +• Building a Cybersecurity Verifier Tool , a digital artefact that will allow HAPS operators to +independently validate CNS data integrity and self-assess compliance. +• Investigating the use of the ICAO Trust Framework as a potential basis for authentication and security +concepts. +• Defining a preliminary plan to perform the Security Risk Assessment (SecRA) of the HAO baseline, +tailored to the "Initialise" level of the SESAR SecRAM methodology, and to be finalized in WP5.4. +Note: This research element also covers the monitoring and mitigation of potential cybersecurity risks +introduced by new entrants (e.g., HAO) and builds on ongoing work from the FCDI “Collaborative Cyber +Security Framework for CNS” project. +The intended reporting sub-deliverables for WP3.4 are the preliminary version of the Security Assessment +Plan (SecAP) and an initial documentation for the cyber security verifier tool. +WP3.5 CNS as a service +The work in this sub -work package will focus on defining and assessing a CNS as a Service (CNSaaS) +concept for Higher Airspace Operations (HAO). This approach aims to decouple the provision of critical +CNS functionalities from physical infrastructure, allowing for flexible, subscription-based services delivered +by independent organisations. +The work will proceed as follows: +• CNSaaS Concept Development: a comprehensive CNSaaS concept will be developed, exploring new +business models designed to enhance the resilience of existing CNS infrastructure by leveraging and +interfacing with space-based assets. +• Identification of Suitable Technologies: The project will identify and assess which CNS technologies +and functions are suitable for a CNSaaS model. +• Business Model Assessment: on relevant business models for providing these services, ensuring they +are cost-effective and align with the needs of HAO operators, Air Navigation Service Providers (ANSPs), +and other aviation stakeholders. +• Technological Demonstrations: The project will outline possible technological demonstrations of +several CNS components that can be tested in flight as part of the validation trials in WP4 and WP6. This +will include investigating the potential use of a cryptographically verified vehicle identity. +• Infrastructure Monitoring Services: The scope also includes the research and development of CNS +infrastructure monitoring services to ensure the ongoing performance and reliability of the CNSaaS +solution. +WP3.6 Standardisation and Regulation +This sub -work package will perform a comprehensive gap analysis and develop proposals to update the +pertinent standardisation and regulatory frameworks for CNS provision in the higher airspace . Building on +the CNS user needs, technological assessments, and flight trial data from WP4, the team will prepare +recommendations for new standards and regulatory amendments. SCAN will submit proposals to relevant + +=== PAGE 199 === + +Part B - Page 32 of 49 +working groups at EUROCAE and prepare guidance material for submission to bodies such as EASA and +JARUS (Task Force on SORA 3.0 - HAO use case). Collaborative activities with national and international +organisations (e.g., ICAO) will ensure that European developments are harmonised with global frameworks. +Milestones for WP3: +• CNS User Needs Assessment Completed (M6) A comprehensive report detailing the consolidated CNS +requirements from HAPS, supersonic, and space launch operators is delivered. +• Initial Technical Specifications (TS/IRS) and OSED Delivered (M12) The first complete draft of the +operational concept and technical specifications for the modular CNS architecture is completed and +submitted for review. +• Final Gap Analysis for Standardisation & Regulation Delivered (M18) The initial analysis identifying +gaps in current standards (e.g., EUROCAE) and regulations (e.g., EASA) is finalised and delivered. + +Work package number 4 +Work package title VALIDATION TRIALS – PART 1 + +Objectives To perform flight trials with multiple HAO vehicles flying in Higher Airspace to collect CNS +data, and validate CNS technologies for various HAO users, including HAPS and a Sounding Rocket. The +flight trials will be carried out with diverse HAPS platforms including both Lighter-than-Air and Heavier- +than-Air platforms. The diversity of platforms and the wide-ranging payload lifting capacity will enable +validation of technologies suited to diverse needs. Partners will include Elson Space, Sceye and Skydweller +as well as sounding rockets. +The validation program will aim to validate several aspects. +1. Validation of specific CNS technologies and components , e.g. Directional LEO Sat com with Phased +Array, SATCOM MLAT, GNSS, modified ADS-B. +2. Validation of the connected-aircraft framework enabling a modular, redundant and technology agnostic +architecture that leverages multiple technologies. +3. Validation of the framework’s resiliency and ability to gracefully degrade – Testing the ability to +handle the loss of some data links or positioning sources, and adjusting position uncertainty due to loss of +navigation technologies, etc. +4. Validation of HAO operator supporting systems – Testing data aggregation and conflict detection and +resolution services, to ensure automation and scalability. +5. Validation of the cyber -security and zero -trust framework across the entire chain , from s atellite +authentication for PVT computation (e.g. Galileo OSNMA) to aircraft identity authentication over +telemetry, sent to the operator and aircraft identity authentication over position reporting network. + +The validation will first identify the specific CNS systems and features for testing in flight and be followed by +the preparation of the flight trials, including the authorisation process by the aviation authorities, setting up the +CNS payloads, execution of the flights and the analysis of the collected data. + + + + +=== PAGE 200 === + +Part B - Page 33 of 49 +Description of work +The work will be organised in the following sub-work-packages: +WP4.1 Identification of specific CNS systems, features and test scenarios to validate in flight, considering +the HAO user needs, potential CNS capabilities (addressed in WP3), and test platform lifting/power capacities. +WP4.2 Technical development / adaptation efforts of necessary technologies. +• Develop an OpenAPI specification and data exchange mechanism for HAPS operators to feed +telemetry data over secure internet APIs (possible adaptation from Network Remote ID standard ) +(Layer #4 in Fi gure 1). This work package will define a standardised, machine-readable format for +HAPS operators to communicate position and identity to authorized recipients using the OpenAPI +standard. The specification will detail critical data fields, including position, altitude (barometric, +geometric), uncertainty estimates, platform/operator identity. Furthermore, this task includes defining +the secure mechanism for data exchange, specifying API endpoints, communication protocols, and +authentication requirements (e.g leveraging ICAO Trust Framework). +• Develop automated cybersecurity verifier (supporting Layer#4) enabling the automated programmatic +validation of the integrity and authenticity of position report streams from any compliant HAPS +operator. +• Develop position estimation logic (ground based or on the aircraft) fusing multiple position sensors +(GNSS, Baro, Satcom MLAT, etc.) into a single position and uncertainty estimates. This work will +aim at developing logic which can enable graceful degradation to alternate positioning techniques in +case of some solutions being unavailable. It may include the logic enabling the conversion of +geometrical altitude into barometric altitude using MET data, enabling the safe separation of aircraft +using different altitude technologies and datums, without needing to rely on transition altitudes. (Layer +#1 or layer#3) +• Develop telemetry routing logic for the transmission of telemetry data over multiple +asynchronous data links of different bandwidth capacity and latency , and develop a telemetry +prioritization scheme allowing the prioritization of essential position telemetry as connectivity +bandwidth degrades. (Layer #2) +• Based on the performed assessment of current ADS-B performance limitations enhancements will be +implemented into a prototype transponder capable of operating under the revised specifications. A +downward compatible ADS -B transponder message modification for HAO beyond altitudes of +126.700 ft, capable to provide surveillance information throughout the HA including fast and ultrafast +vehicle operations , will be developed . This work aims at message modifications and related data +processing, to be embedded into a test transponder for validation via a rocket launch experiment , +Develop strong authentication and cyber-security logic on the telemetry communication links between +the aircraft and operator. (Layer #2) +WP4.3 Preparation of the flight trials for the evaluation of CNS capabilities in the higher airspace (> FL500). +A plan for the flight campaigns with HAPS will be developed including: +• Platforms: fixed-wing heavier than air HAPS (Elson Space and Skydweller) and lighter than air HAPS +(Sceye). +• Definition of the flight plans: flight trajectory, dates, duration, contingencies, number of flights +needed, with due consideration of the overflown areas in continental and oceanic airspace. +• Test planning: CNS features to be logged per HAPS platform, per flight #, and geographical areas +(oceanic/over land masses) from ground level up to the higher airspace above FL500. +• Flight authorization: interaction with the pertinent aviation authorities to get the approval of the flights +with each HAPS aircraft based on an agreed method (e.g. SORA, permit to fly, others) to substantiate +the safety of the flight. This step will build on the outcome of ECHO2 Solution #2 “Sandbox module +and procedural package for the Integration of HAPS operations in European ATM” . It also has a +critical dependency of ongoing work on HAPS by EASA and JARUS: + +=== PAGE 201 === + +Part B - Page 34 of 49 +• EASA: guidance material on the ‘regulatory sandbox’ concept supporting Member States and the +industry to conduct the first tests and demonstrations in the EU, exempting these tests from the +application of relevant EU regulations. Ref. EASA Proposal for a Roadmap on HAO, March 2023. +• JARUS: ongoing work on the adaptation of SORA for HAO (for HAPS that qualify as UAS) along +two work streams: a) probabilistic approach for UAS with very limited propulsion especially LTA , +and b) deterministic approach for more controllable configurations. +It is important to note that the HAO flight campaigns herein proposed can be considered as experimental +flights, so alleviations should be identified and agreed with the aviation authority (e.g. to reduce the level of +SAIL in SORA), until normal commercial HAO operations start. +As an element for consideration in the flight authorization process, the potential impact of the HAO on areas +on the ground and on volumes of the airspace below the flight will be evaluated (this can be done interactively, +close to real -time, extending the GUI tools https://undefiened.github.io/uav_risk/ for assessment and +mitigation of drone flights ground and air impact). +WP4.4 Preparation of the hardware and software elements of the CNS solutions to be tested in flight . +This may be based on current airborne/ground systems used by the HAPS, in each case, or be installed as a +payload onboard the HAPS. +• Procurement, setting up and installation of the CNS elements for data collection, considering the Size, +Weight and Power-Cost (SWaP-C) factor, mass and balance, power consumption and other constraints of +the HAPS platform: antennas, receiver/transponder/datalink, power supply, data logging of the CNS +features to be collected in flight, etc. +• Key assessment metrics for the CNS features to be assessed: +o Communications: signal integrity, latency and handover performance, availability; +o Navigation (positioning): e.g. GNSS and Satcom MLAT horizontal and vertical positioning +accuracy, availability, integrity, INS performance; multi-source navigation reliability and graceful +degradation; impact of high -altitude conditions , impact of long -duration flight at altitude +(months); +o Surveillance: network-based position reporting (network remote ID ), ADS-B +transmission/reception reliability, SSR detection coverage, MLAT feasibility, latency in +surveillance relays, continuity of situational awareness. +• Ground tests, to ensure correct data logging of CNS data, formats, electromagnetic interference ( EMI) +compatibility, etc. +• Methodology for the assessment of the collected CNS data. +• Development of threat modelling and cyber-security templates for HAPS flights. +WP 4.5 Validate the Cyber security verifier tool in operational demonstrations. +WP4.6 Execution of flight trials +There will be three sub-WP, one per HAPS vehicle (Elson Space, Sceye and Skydweller). +• Execution of the flight; data will be collected during the whole flight to assess the variation of CNS +performances with altitude. +• Analysis of the collected data including the derivation of the true 4D trajectory of the HAPS as well as the +assessment of the capabilities and possible limitations of the different CNS features of interest. +• Demonstrate strategic and tactical resolution capabilities using CNS data feeds (ADS -B v2/3, telemetry, +geometric altimetry). +Elson Space España will contribute to the in-flight validation activities in WP4 and WP6 with their Heavier- +Than-Air (HTA) HAPS platform, providing up to three flights in the stratosphere, each lasting up to two + +=== PAGE 202 === + +Part B - Page 35 of 49 +weeks, for CNS testing. These flights are expected to take place over the Teruel region with possible +expansion to the Mediterranean and Canary Islands , pending necessary flight permissions. Additionally, +Elson Space will contribute to the physical and networking payload integration activities, developing solutions +to integrate the various CNS sensors and facilitating the soak testing of the avionics to minimize the risk of +electromagnetic interference (EMI) during flight. The platform's flexible payload ba y allows for the +straightforward integration of various CNS equipment within a 10kg mass and 200W power budget, enabling +comprehensive data collection to address the project's core research questions. +Sceye builds and operates solar -powered, lighter -than-air HAPS for stratospheric infrastructure. Our +aerodynamically shaped balloon delivers a large SWaP (Size, Weight and Power) budget, enabling the ability +to carry and power multiple payloads of over 200 kg an d 2 kW of power consumption while remaining over +an operating area for extended periods of time – months to potentially years – enabling multi-service operation. +Sceye focuses on universal broadband internet connectivity, climate monitoring, environm ental and natural +resource management, natural disaster prevention and monitoring, and emergency response support and +coordination. The single-use platform operates under Unmanned Free Balloon regulations (FAA’s Part 101 +and ICAO Annex 2 Appendix over international waters). The platform maintains level flight through buoyancy +using a super -pressure envelope and features an Assistive Impulse Device (AID) that can be activated at +altitude to counteract moderate winds to stay on station or navigate into more favourable winds. To date, Sceye +has successfully completed over 20 stratospheric flights, proving its ability to fly for full diurnal cycles, +maintain position in moderate winds, and perform remote sensing and telecommunication demonstrations, +including direct-to-device connectivity through a 4G MIMO array antenna with smartphones on the ground. +A new hangar is currently being built in Teruel, Spain, which will serve as a base for EMEA operations. The +Sceye platform is a digitally connected aircraft with a modular architecture. It can support multiple, +independent, and asynchronous data links, such as directional Ku/Ka SATCOM, L -Band SATCOM, E-Band +backhaul, and FSOC, which are used to report telemetry and or payload data to ground automation systems. +In this project, Sceye will conduct a single, multi-month flight from Spain, leveraging its high SWaP (Size, +Weight, and Power) capability. Multi -sensor navigation data will be reported to ground automation systems +via multiple asynchronous data links. This data will then be de -duplicated and fused by ground automation +and communicated in real -time to au thorized recipients through secure, internet -based APIs. This will +demonstrate how distributed connectivity networks can provide cost -effective, resilient, and secure +surveillance solutions with global reach, facilitating private information sharing with authorized stakeholders +(such as Air Navigation Service Providers, operators, and National Security Agencies) on a need -to-know +basis. +The Skydweller solar-powered medium-altitude pseudo-satellite (HAPS), which operates up to FL500, will +conduct flight trials from the Canary Islands Stratoport in Fuerteventura (in WP6). These trials will +evaluate the performance of current and innovative communications and navigation systems (CNS) in a higher +airspace environment. Over one three-month period, a flight (one or two) will be carried out, depending on +project requirements and aircraft availability, over the Canary Islands and oceanic sectors , pending flight +authorization. Skydweller will provide a 150 kg payload capacity and a 1 kW power budget, which will allow +for the integration of a variety of CNS sensors and provide a wide range of testing possibilities. Payload +integration and disintegration activities for CNS sensors should take about two months for each work package. +WP4.7 improve telemetry for airspace management of STO launches - preparation of rocket trial [DLR] +In preparation for the validation of the modified transponder functions for HA operation, the payload +integration for the planned MAPHEUS sounding rocket launch must be prepared. The work includes the +specification of the required interfaces, the adaptation of the flight hardware to the environmental parameters +of the installation space in the rocket (payload accommodation) as well as the connection to the power supply, +antennas and position data provision. Hardware qualification for the rocket flight must be carried out (e.g. +shaker, vacuum tests if necessary, EMC). The integration of the flight hardware into the rocket takes place in +direct preparation for the flight. + +=== PAGE 203 === + +Part B - Page 36 of 49 +Milestones for WP4: +• Flight authorisation for HTA HAPS secured (M12) Formal authorisations / permits to fly HTA HAPS +(Elson Space and Skydweller) have been obtained from all relevant national aviation authorities for the +flight trials scheduled in the first reporting period. +• Flight authorisation for LTA HAPS secured (M12) Formal authorisations / permits to fly LTA HAPS +(Sceye) have been obtained from all relevant national aviation authorities for the flight trials scheduled in +the first reporting period. +• First Phase of HAPS Flight Trials Executed & Data Analysed (M18) At least one flight trial with a +HAPS platform has been successfully completed, and the initial CNS data has been collected, processed, +and documented in an initial Validation Report (VALR). + +Work package number 5 +Work package title CNS MEANS TO SERVE HAO – PART 2 + + +Objectives +This work package is a direct continuation of WP3 and directly incorporates the findings of WP4 and WP6 (which +will be ongoing, in parallel to WP5). Its primary goal is to perform a detailed gap and risk analysis of the CNS +framework, using the theoretical concepts from WP3 and the real -world flight data collected dur ing the initial +validation trials in WP4. The work in WP5 will serve as the foundation for the final consolidation of the CNS +solution and will prepare the groundwork for the final validation trials in WP6. +WP5 will continue addressing and consolidating: +1. CNS user needs assessment: Refine the comprehensive set of CNS user needs identified in WP3 by +validating them against the data collected during the in-flight trials. +2. CNS technological solutions: Conduct a detailed gap and risk analysis for communications, navigation, and +surveillance, applying real-world data from flight trials to the theoretical assessments from WP3. +3. Innovative modular network approach: Validate and refine the layered, technology -agnostic architecture +for CNS provision to ensure it can provide resilient and secure services, as proven by the flight trial data. +4. Innovative modular network approach: Validate and refine the layered, technology -agnostic architecture +for CNS provision to ensure it can provide resilient and secure services, as proven by the flight trial data. +5. Collaborative cyber security framework: Consolidate and validate the zero-trust cybersecurity framework +and develop a Cybersecurity Verifier Tool to enable HAPS operators to self-assess compliance and validate +CNS data integrity. This tool will be built by creating a HAPS Asset Classification Module, implementing +a Threat Modelling and Risk Analysis Engine to assess vulnerabilities and potential attack vectors against +core security principles, and creating a Standardised Cybersecurity Capability Report Gene rator to +produce a publicly accessible, evidence-based report. +6. CNS as a service: Validate and refine the CNS as a Service (CNSaaS) concept, exploring new business +models and technical requirements for providing critical CNS functionalities as flexible, subscription -based +services. +7. CRS as an enabler of scalable operations: Validate and refine the CRS as a critical component of scalable +operations and part of CNSaaS. + +=== PAGE 204 === + +Part B - Page 37 of 49 + +Description of Work +This section outlines the work to be performed within Work Package 5, which builds on the initial research and +theoretical assessments from WP3. The work focuses on performing detailed gap and risk analyses using the data +collected during the flight trials in WP4 and WP6 to ensure the proposed CNS capabilities meet the needs of +Higher Airspace Operations (HAO). +WP5.1 CNS user needs assessment +This work package will continue to refine the comprehensive set of CNS user needs for Higher Airspace +Operations (HAO), covering both civil and military use cases. It will take the initial needs identified in WP3 and +validate them against the data collected during the in-flight trials in WP4 and WP6. The assessment will be based +on surveys of HAO operators and service providers, with a specific focus on High -Altitude Platform Systems +(HAPS), supersonic and hypersonic vehicles, and space launch and re-entry operators (LRO). +WP5.2 CNS technological solutions (theoretical) +This sub-work package will conduct a gap and risk analysis of the current and innovative CNS capabilities and +their limitations at altitudes higher than FL500. Building on the theoretical assessments from WP3, this work will +now apply real -world data from the WP4 and WP6 flight tria ls. The work will involve a systematic literature +analysis and will also gather relevant results from research conducted by US organisations like NASA and the +FAA. The analysis will cover a range of CNS technologies, including: +• Communications: A review of current aviation communications (e.g., VHF, HF, SATCOM) and innovative +solutions like connected aircraft technologies. +8. Standardisation and Regulation: Perform a comprehensive gap analysis of regulatory frameworks and +develop proposals for updating relevant standardisation and regulatory documentation based on the project's +findings. +Deliverables: This section outlines the key SESAR deliverables that will be produced by WP5. These deliverables +represent the tangible outputs of the detailed gap and risk analyses, which serve as crucial inputs for the final +validation trials and the overall project’s solution pack. +• D5.1 Final SPR -INTEROP/OSED: This deliverable provides the final, refined operational services and +environment description, incorporating findings from all work packages and flight trials. +• D5.2 Final TS/IRS: This will define the final technical specifications and interface requirements for the +proposed CNS solution, ready for pre-deployment validation. +• D5.3 Final STAND: This deliverable will present the final, consolidated proposals for standardisation, based +on the project’s technical findings. +• D5.4 Final REG: This will contain the final, consolidated proposals for regulatory amendments. +• D5.5 CBA (Cost Benefit Analysis): This document will present a structured economic analysis of the +proposed CNS solution, assessing its potential benefits against high-level costs. +• D5.6 Contextual Note: This deliverable will provide a summary of the project’s scope, operational and +performance benefits, system impacts, and recommendations for future activities. + +=== PAGE 205 === + +Part B - Page 38 of 49 +• Navigation (positioning): An examination of advanced PNT systems such as multi -frequency multi - +constellation (MFMC) GNSS receivers, inertial systems, celestial navigation, and the potential use of 6G. +• Surveillance: A theoretical assessment of network remote ID, satellite -based ADS-B, ADS-C, SSR radars, +modified ADS-B for HAO and the use of direct telemetry data from operators. +• Conflict Detection and Resolution: Review, improve and implement CRS technical specification for interface +with CNS services +Particular attention will be paid to the use of geometric altimetry and the potential for a 6G CNS network, +including an aerial layer of HAPS acting as relays. +WP5.3 Innovative modular network approach for CNS provision +This work package will focus on validating and refining the modular, technology-agnostic network approach for +CNS provision to HAO. The goal is to ensure the layered architecture defined in WP3 can provide resilient and +secure services by using a variety of redundant data links and a central operator-level fusion of multi-sensor data, +as proven by the flight trial data. This includes validating the following layers: +• Layer 1 (Onboard): Multi-sensor Positioning, Navigation, and Timing (PNT) using diverse sensors. +• Layer 2 (Telemetry): Secure telemetry via redundant and dissimilar data links. +• Layer 3 ( Operator): Real-time information available to the operator, with multi -sensor data fusion and +uncertainty computation. +• Layer 4 (Sharing): Authenticated position and identity data shared with authorised parties via a secure web +API. +It will also validate the cross -cutting security layer: a transversal zero -trust cybersecurity framework across the +entire chain to ensure resilience and security. +WP5.4 Collaborative cyber security framework for CNS using Zero-Trust architecture +This sub-work package is dedicated to building a collaborative security framework to defend against cyber threats +in the new aeronautical CNS environment. Building on the initial research from WP3, this work will now focus +on the practical application of the framework. +From a long -term research and engineering perspective, the project will explore automated Security Risk +Assessment to manage the complexity of HAO and increase the cost-efficiency of engineering secure systems. +The work will aim to define and validate a global security collaboration framework based on use cases across +various CNS domains, considering the entire end-to-end chain. The main outcomes of this work will include: +• Performing a preliminary Security Risk Assessment (SecRA) of the HAO baseline, tailored to the "Initialise" +level of the SESAR SecRAM methodology. +• Establishing a methodology for the SecRA of HAO and executing it to address the main security risk factors, +in order to select the preliminary security controls and security requirements. +• Identifying methodological components and general recommendations for security aspects across HAO +solutions, with a particular focus on extending the SecRAM and SecRAM catalogues to include HAO support +and automating the assessment process. + +=== PAGE 206 === + +Part B - Page 39 of 49 +• Researching solutions to mitigate radio frequency interference, with a focus on creating aircraft -installed +active radio aerials capable of adapting to and mitigating the impact of jamming attacks. +• Building a Cybersecurity Verifier Tool, a digital artefact that will allow HAPS operators to independently +validate CNS data integrity and self-assess compliance. +o Develop a HAPS Asset Classification Module: This task involves creating the core software module +that allows operators to define their systems according to the new framework developed in WP4. It +will provide a guided interface for identifying and documenti ng intangible Primary Assets (e.g., +communication relay services) and the tangible Supporting Assets (e.g., ground stations, platform +hardware, data links) they rely on. +o Implement a Threat Modelling and Risk Analysis Engine: This involves building the analytical engine +of the verifier, which will facilitate a robust threat modelling process for each classified asset. The +engine will assess vulnerabilities and potential att ack vectors, evaluating risks against the core +security principles of Confidentiality, Integrity, and Availability (CIA). +o Create a Standardised Cybersecurity Capability Report Generator: This final task focuses on creating +a publicly accessible, open verifier tool. It will process the asset classification and risk analysis data +to generate a standardised, evidence -based cybersecurity capability report. The key objective is to +provide a common benchmark that any operator in the HAPS community can use to transparently +assess their security posture against the framework. This approach promotes a consistent industry +standard for security declarations, helping to streamline regulatory compliance and build trust across +the entire HAPS ecosystem. +• Investigating the use of the ICAO Trust Framework as a potential basis for authentication and security +concepts. +The intended reporting sub-deliverables for WP5.4 are the final version of the Security Assessment Plan (SecAP) +and the specification of the security requirements to be documented in the SPR -INTEROP/OSED and TS/IRS, +based on the SecRA results (stored on the member’s own systems) , in compliance with the rules established in +SESAR Project Handbook. +Note: This research element also covers the monitoring and mitigation of potential cybersecurity risks introduced +by new entrants (e.g., HAO) and builds on ongoing work from the FCDI “Collaborative Cyber Security +Framework for CNS” project. +WP5.5 CNS as a service +The work in this sub-work package will focus on validating and refining the CNS as a Service (CNSaaS) concept +for Higher Airspace Operations (HAO). This approach aims to decouple the provision of critical CNS +functionalities from physical infrastructure, a llowing for flexible, subscription -based services delivered by +independent organisations. The work will proceed as follows: +• CNSaaS Concept Development: We will validate the comprehensive CNSaaS concept, exploring new +business models designed to enhance the resilience of existing CNS infrastructure by leveraging and +interfacing with space-based assets. +• Identification of Suitable Technologies: The project will validate which CNS technologies and functions +are suitable for a CNSaaS model using the data collected in the flight trials. +• Business Model Assessment: We will refine relevant business models for providing these services, ensuring +they are cost-effective and align with the needs of HAO operators, Air Navigation Service Providers (ANSPs), +and other aviation stakeholders. Support Cost-Benefit Analysis (CBA) by quantifying throughput, efficiency, + +=== PAGE 207 === + +Part B - Page 40 of 49 +and safety improvements enabled by CRS. +• Technological Demonstrations: The project will outline possible technological demonstrations of several +CNS components that can be tested in flight as part of the validation trials in WP4 and WP6. This will include +investigating the potential use of a cryptographically verified vehicle identity. +• Infrastructure Monitoring Services: The scope also includes the research and development of CNS +infrastructure monitoring services to ensure the ongoing performance and reliability of the CNSaaS solution. +WP5.6 Standardisation and Regulation +This sub-work package will perform a comprehensive gap analysis and develop proposals to update the pertinent +standardisation and regulatory frameworks for CNS provision in the higher airspace. Building on the CNS user +needs, technological assessments, and flight trial data from WP4 and WP6, the team will prepare recommendations +for new standards and regulatory amendments. We will submit proposals to relevant working groups at +EUROCAE and prepare guidance material for submission to bodies such as EASA and J ARUS. Collaborative +activities with national and international organisations (e.g., ICAO) will ensure that European developments are +harmonised with global frameworks. +Milestones for WP5: +• Gap & Risk Analysis Based on Flight Data Completed (M24) A comprehensive report detailing the gap +and risk analysis of the proposed CNS solutions, using the empirical data from the initial validation trials, is +delivered. +• Final Cost-Benefit Analysis (CBA) Model Finalised (M30) The methodology and model for the CBA are +complete, and preliminary results based on the consolidated technical solution are available. +• Final Technical Specifications (TS/IRS) & OSED Delivered for TRL-6 (M34) The final, pre-deployment +versions of the technical specifications and operational concept, incorporating all project findings and ready +for the Exit Maturity Gate, are submitted. + +Work package number 6 +Work package title VALIDATION TRIALS – PART 2 + +Objectives +1. To continue with the execution of the flight trials with HAPS (started in WP4) and to perform the flight test +with a sounding rocket. +2. To derive and consolidate the outcome of the assessment of CNS services for HAO as key elements of the +final validation documents. + +Description of work +WP6.1 Continue the execution of flight trials with HAPS (three HAPS cases: Elson Space, Sceye, Skydweller), +including CNS data collection and assessment, data modelling as well as cyber security analysis and validation. +WP6.2 Execution - Test with sounding rocket – surveillance & tracking [DLR] +The prototype ADS -B transponder will be integrated as a payload on a MAPHEUS sounding rocket during a +suborbital launch campaign in Kiruna to test real -world performance. Signal reception will be monitored and +recorded using ground-based ADS-B receivers positioned along the predicted flight path, and—where feasible— +space-based ADS-B platforms to assess extended coverage potential. The collected data will be compared against + +=== PAGE 208 === + +Part B - Page 41 of 49 +performance from existing ADS-B transponders under equivalent conditions to quantify improvements in altitude +coverage, track continuity, positional accuracy, and latency. Deploy refined CRS algorithms in second -phase +HAPS/rocket trials and validate CRS within cooperative operating environment scenarios (multi-operator HAO + +conventional traffic). +WP6.3 Results of the Validation, deriving conclusions on CNS for HAO for the validation report. +Milestones for WP6: +• Second Phase of HAPS Flight Trials Completed (M24) All planned flight trials with the four HAPS +platforms are successfully executed, and the corresponding CNS data sets have been collected and prepared +for final analysis. +• Sounding Rocket Validation Trial Successfully Executed (M28) The flight trial with the sounding rocket +is completed, and the performance data for the modified ADS-B transponder has been successfully collected +and logged. +• Final Consolidated Validation Report (VALR) Delivered (M32) The comprehensive final VALR is +submitted, containing the consolidated findings, data analysis, and performance assessments from all HAPS +and sounding rocket flight trials conducted throughout the project. + +Link +to +work +packa +ge +ID +Soluti +on +Solutio +n Title +Solution Definition Solutio +n Lead +Benefic +iary +Initial +Maturity +Level +Forec +ast +Targ +et +Matu +rity +Level +Qualitative +Performance +Expectation +(as per +project +Handbook) + All #1 Solution +1: CNS +means to +serve +HAO + +A highly cost -effective, +resilient and secure CNS +solution for HAO, that will be +proven in flight and will adapt +certain UTM technologies to +HAO. + ECTL +SkyNa +v +Sceye +TRL 2-6 +(functional +prototype +and early +validation in +ECHO). + + TRL +6 +CNS service +KPIs, e.g. +positioning +accuracy, com +latency, +integrity, +service +volume, +service +availability. + +Table 3.1c: List of Deliverables +Num +ber Deliverable name Short description +Work +packag +e +numbe +r +Short +name of +lead +participa +nt +Type +Disse +minati +on +level +Delivery +date +(in +months) +D1.1 Kick-off Meeting +Report Report from KoM 1 ECTL R PU M1 +D1.2 Project Management +Plan (PMP) +Initial project and +risk management +plan +1 ECTL R PU M3 + +=== PAGE 209 === + +Part B - Page 42 of 49 +D1.3 Data Management +Plan (DMP) DMP 1 ECTL DMP PU M6 +D1.4 Periodic Report - +Reporting Period 1 +Report by the end of +the 1st reporting +period (M1-M18) +1 ECTL OTHER PU M18 +D1.5 +Updated Project +Management Plan +(PMP) +Updated project and +risk management +plan +1 ECTL R PU M20 +D1.6 +Updated Data +Management Plan +(DMP) +Updated DMP 1 ECTL DMP PU M22 +D1.7 +Final Data +Management Plan +(DMP) +Final DMP 1 ECTL DMP PU M32 +D1.8 Final Project Report Final report 1 ECTL OTHER PU M36 +D2.1 +Communication, +Dissemination and +Exploitation (CDE) +Plan +Detailed plan for +CDE +2 ECTL R PU M3 +D2.2 Project Website and +Online presence +External (open +access) website +2 ECTL DEC PU M3 +D2.3 Updated CDE Plan Updated plan for +CDE +2 ECTL R PU M20 +D2.4 +Mid-project +Stakeholder +Workshop Report +The report from the +mid project +dissemination event. +2 ECTL R PU M18 +D2.5 +End-project +Stakeholder +Workshop Report +The report from the +dissemination event +by end of the +project. +2 ECTL R PU M36 +D3.1 Initial SPR- +INTEROP/OSED + Initial safety & +performance/interop +erability reqs. +3 SkyNav R PU M12 +D3.2 Initial TS/IRS Initial technical +specifications/interfa +ce requirements +3 SkyNav R PU M12 +D3.3 Intermediate SPR- +INTEROP/OSED + Intermediate SPR- +INTEROP/OSED +3 SkyNav + +R PU M18 +D3.4 Intermediate TS/IRS Intermediate +TS/IRS +3 SkyNav R PU M18 +D3.5 Initial STAND Initial input to +standardisation +activities. +3 SkyNav R PU M18 +D3.6 Initial REG Initial regulatory +elements on HAO +3 SkyNav R PU M18 +D4.1 Initial VALP Initial validation +plan +4 Sceye R PU M12 +D4.2 Initial VALR Initial validation +report +4 Sceye R PU M18 +D4.3 Intermediate VALP Intermediate +validation plan +4 Sceye R PU M18 +D4.4 Initial CyberVerifier Initial tool 4 Sceye R PU M18 + +=== PAGE 210 === + +Part B - Page 43 of 49 +D5.1 Final SPR- +INTEROP/OSED + Final SPR- +INTEROP/OSED +5 SkyNav R PU M34 +D5.2 Final TS/IRS Final technical +specifications/interfa +ce requirements +5 SkyNav R PU M34 +D5.3 Final STAND Final input to stand. +activities. +5 SkyNav R PU M34 +D5.4 Final REG Final regulatory +elements on HAO +5 SkyNav R PU M34 +D5.5 CBA Cost benefit analysis 5 SkyNav R PU M34 +D5.6 Contextual Note Scope and main +elements of the +solution. +5 SkyNav R PU M36 +D6.1 Intermediate VALR Intermediate +validation report +6 Sceye R PU M24 +D6.2 Final VALP Final validation plan 6 Sceye R PU M28 +D6.3 Final VALR Final validation +report +6 Sceye R PU M32 +D6.4 Final CyberVerifier Final tool 6 Sceye R PU M28 + +Table 3.1d: List of milestones +Milestone +number +Milestone name Related +work +package(s) +Due date +(in +month) +Means of verification +1 Kick-off Meeting +(T0+1 month) +WP1 M1 Minutes are distributed. +2 PMP submission +(T0+3 month) +WP1 + +M3 Check PMP is available and submitted. +3 Full Project Web +Presence Established +WP2 M6 Public project website launched; +Communication, Dissemination, and +Exploitation (CDE) Plan finalised. +4 CNS User Needs +Assessment Completed +WP3 M6 Comprehensive report on CNS requirements +from HAPS, supersonic, and space launch +operators delivered. +5 Technical Project +Review (T0+9-10 +months) +WP1 + +M10 Review meeting takes place, minutes +distributed, actions are identified and +addressed. +6 First Stakeholder +Engagement Workshop +WP2 M12 Workshop with key stakeholders to present +initial findings on CNS user needs and gather +feedback. +7 Initial Technical +Specifications +(TS/IRS) and OSED +Delivered +WP3 M12 First complete draft of the operational concept +and technical specifications for the modular +CNS architecture submitted for review. +8 Flight Authorisations +for HTA HAPS +Secured +WP4 M12 Formal authorisations and permits to fly for +Heavier Than Air HAPS vehicles (Elson +Space and Skydweller) obtained from relevant +aviation authorities. +9 Flight Authorisations +for LTA HAPS +Secured +WP4 M12 Formal authorisations and permits to fly for +Lighter Than Air HAPS vehicles (Sceye) +obtained from relevant aviation authorities. + +=== PAGE 211 === + +Part B - Page 44 of 49 +10 End of First Reporting +Period (T0+18 months) +WP1 + +M18 Meeting by coordinator and WP leaders, +checking that work is progressing as planned, +deliverables issued, and any deviation is +properly addressed. +11 Mid-Project +Dissemination Event +Completed +WP2 M18 Public webinar or event to share results from +the first reporting period. +12 Final Gap Analysis for +Standardisation & +Regulation Delivered +WP3 M18 Initial analysis identifying gaps in current +standards and regulations finalised and +delivered. +13 First Phase of HAPS +Flight Trials Executed +& Data Analysed +WP4 M18 At least one HAPS flight trial successfully +completed, and initial CNS data documented +in an initial Validation Report (VALR). +14 Horizon Europe +Project Review +(T0+20-21 months) +WP1 + +M21 Review takes place, minutes and actions +taken. +15 First Draft of +Standardisation +Contributions +WP2 M24 Initial proposals based on project findings +drafted and shared with relevant EUROCAE +working groups. +16 Gap & Risk Analysis +Based on Flight Data +Completed +WP5 M24 Comprehensive report detailing the gap and +risk analysis of the proposed CNS solutions +delivered. +17 Second Phase of HAPS +Flight Trials +Completed +WP6 M24 All planned HAPS flight trials successfully +executed, and data sets collected. +18 Sounding Rocket +Validation Trial +Successfully Executed +WP6 M28 Sounding rocket flight trial completed and +performance data for the modified ADS -B +transponder collected. +19 Final Exploitation Plan +Defined +WP2 M30 The plan for the commercial and operational +exploitation of the project's results is finalised. +20 Final Cost-Benefit +Analysis (CBA) Model +Finalised +WP5 M30 The methodology and model for the CBA are +complete, and preliminary results are +available. +21 Final Solution +Technical Deliverables +(Tend–4 months) +WP1 + +M32 Deliverables are issued. +22 Final Consolidated +Validation Report +(VALR) Delivered +WP6 M32 The comprehensive final VALR, containing +findings from all flight trials, is submitted. +23 Exit Maturity Gate(s) +(Tend–2 months) +WP1 + +M34 Solution conforms to TRL6. +24 Final Non-Technical +Deliverables (Tend–2 +months) +WP1 + +M34 Non-technical deliverables are issued. +25 Final Technical +Specifications +(TS/IRS) & OSED +Delivered for TRL-6 +WP5 M34 The final, pre -deployment versions of the +technical specifications and operational +concept are submitted. +26 Grant Agreement +Closure (Tend) +WP1 + +M36 All deliverables are issued on time, the +solution on “CNS for HAO ” meets its +objectives with the required maturity. + + + +=== PAGE 212 === + +Part B - Page 45 of 49 +Table 3.1e: Critical risks for implementation #@RSK-MGT-RM@# +Description of risk (indicate level +of (i) likelihood, and (ii) severity: +Low/Medium/High) +Work +package(s) +involved +Proposed risk-mitigation measures +The guidance material on the +“regulatory sandbox” under +development by EASA is not +available when needed due to +external factors, lack of resources +or any other reason, impacting +simulation and validation +schedules. (Low / High) +WP4, WP6 1. Support EASA and Member States in the review process +of the draft guidance material before publication, to ensure +it is available when needed, reflecting a proportionate and +consensus-based set of measures to allow early flight trails +with HAPS, while g uaranteeing safety to uninvolved +parties in the air and on the ground. +2. Support EU Member States involved in the authorisation +process of the flights e.g. to cross their airspace, as required +depending on the intended mission trajectory. +3. Alternative validation sites: As part of contingency +planning, maintain a list of alternative validation +sites/airspace (within and outside of the EU airspace) that +could be used if the primary choice becomes unavailable. +Delay in obtaining flight +authorisation for HTA HAPS +above FL500 due to lack of +regulatory frame tailored to HTA +HAPS flying at high altitude, +currently based on UAS’s SORA +which is appropriate for flights at +low level. (Medium / High) +WP4, WP6 1. Early & continuous engagement: initiate formal contact +with EASA and relevant National Aviation Authorities +within the first 3 months (M1-M3). [already established] +2. Contingency Planning: Identify alternative testing +locations/airspace in parallel, e.g. flight over the sea. +3. Leverage consortium expertise: utilise +EUROCONTROL's regulatory relationships and the +experience of partners in securing flight permits. +Technical failure of key CNS +payload or HAPS/rocket platform +during a critical flight trial, +resulting in data loss. +(Low / Medium) +WP4, WP6 1. Extensive ground testing: mandate comprehensive +ground integration tests for all payloads before flight. +2. Redundancy: where feasible, fly redundant sensors to +ensure data collection continues if a primary unit fails. +3. Contingency flights: budget for a limited number of +repeat flights within the project plan and schedule. +Adverse weather conditions +prevent or significantly delay +multiple flight trials, for the HTA +and LTA HAPS platform. +(Low / Medium) +WP4, WP6 1. Flexible scheduling: plan flight campaigns within wider +operational windows rather than fixed dates. +2. use tools for accurate meteo (e.g. wind, gust) forecast. +3. Leverage multiple test sites: utilise the geographic +diversity of the consortium's test locations (e.g. Teruel, +Fuerteventura, etc.) to select favourable conditions. +Significant discrepancy between +theoretical CNS performance +(from WP3/5) and real-world flight +data (from WP4/6). +(Low / Medium) +WP3, WP4, +WP5, WP6 +1. Iterative feedback loop: establish a formal bi -monthly +review between the technical study (WP3/5) and validation +(WP4/6) teams. +2. Flexible test plan: design the validation plan with the +flexibility to add specific test points or scenarios based on +initial findings. +Key external dependencies (5G +network coverage at altitude, +Satcom payload and service) are +not mature enough for validation. +(Low / Medium) +WP3, WP4 1. Technology monitoring: assign a partner to actively +monitor the status of key enabling technologies. +2. Alternative scenarios: develop validation scenarios that +can proceed using simulated signals or alternative +technologies (e.g., different SATCOM providers) if the + +=== PAGE 213 === + +Part B - Page 46 of 49 + primary choice is unavailable. +Insufficient quality or availability +of data from flight trials to properly +validate the technical solutions and +KPIs. +(Low / High) +WP4, WP5, +WP6 +1. Robust data acquisition plan: define a detailed data +acquisition plan with primary and backup data logging +systems for all flights. +2. Pre-Flight testing: use simulation tools and ground tests +to define the precise data quality and quantity required +before flights commence, ensuring the collection plan is +adequate. +3. Data quality checks: implement real -time and/or rapid +post-flight data quality check to identify any issues +immediately, allowing for quick adjustments to subsequent +flights. +Difficulties in coordinating the +diverse consortium, leading to +delays in sharing information and +completing interdependent tasks +between work packages. +(Low / Medium) +All WPs 1. Establish a clear communication plan: implement a +detailed communication plan with defined regular +meetings, clear points of contact for each partner, and a +centralised document repository. +2. Use of collaboration tools: utilise a shared project +management and collaboration platform to track progress, +dependencies, and actions in real-time. +Recruitment and retention of +specialised personnel prove more +difficult than anticipated, +impacting the person -month +allocation and project timeline. +(Low / Medium) +All WPs 1. Contingency staffing: have contingency plans with +partners to temporarily re -allocate staff if a critical role +becomes vacant. +2. Cross-training: identify opportunities for cross -training +personnel between partners to build resilience and cover +potential gaps. +3. Proactive recruitment: if needed, begin recruitment +activities for key project roles before the official project +start. +Underestimation of the effort +required for dissemination and +stakeholder engagement, leading +to a lower impact of the project's +results. (Low / Low) +WP2 1. Detailed dissemination plan: create a highly detailed +dissemination plan with specific targets, timelines, and +responsible partners for each activity. +2. Dedicated resources: ensure that the partners leading +dissemination activities have sufficient person -months +allocated specifically for these tasks. + +#§RSK-MGT-RM§# + + +=== PAGE 214 === + +Part B - Page 47 of 49 +Table 3.1f: Summary of staff effort + WP1 WP2 WP3 WP4 WP5 WP6 Total Person- +Months per Participant +1/ECTL 20.00 10.00 21.00 13.00 21.00 13.00 98.00 +2/DFS 4.22 1.26 2.44 1.43 9.35 +3/LFV 5.62 5.22 5.62 5.22 21.68 +4/ESSP 0.25 5.50 5.25 1.00 12.00 +5/NATS 1.00 1.00 1.20 1.00 4.20 +6/DSNA 1.00 3.50 3.50 3.50 3.50 15.00 +7/SkyNav 8.50 8.50 19.50 4.50 22.50 8.00 71.50 +8/ENAC 1.00 3.00 4.00 3.00 4.00 3.00 18.00 +9/LiU 3.00 3.00 1.00 4.00 11.00 +10/CIRA 2.00 10.00 4.50 8.50 4.00 29.00 +11/SCEYE 2.00 74.00 2.00 68.00 146.00 +12/SKYDWELLER 3.60 26.00 3.60 26.00 59.20 +13/SKYDWELLER +14/PTFSA 0.50 10.00 12.00 22.50 +15/ELSON SPACE 36.00 52.00 88.00 +16/DLR 4.00 24.00 10.00 23.00 61.00 +17/PILDOLABS 18.00 4.00 18.00 40.00 +18/ENAIRE 1.50 1.50 4.60 2.30 6.10 5.80 21.80 +19/OpenUTM 1.00 8.50 7.00 16.50 +20/ANRA 7.00 14.00 6.00 14.00 41.00 +21/SKYPUZZLER 0.40 15.00 12.50 11.00 11.50 50.40 +22/HAPS Alliance +Total Person Months 31.50 27.65 113.54 264.28 117.71 281.45 836.13 + +Should this tender be successful, EUROCONTROL, as part of the consortium, will participate in the project actions +without requesting funding. EUROCONTROL will, however, fully engage in the project and in particular is +committed to providing the effort, contributions to deliverables and to other activities as set out in this tender and in +the accompanying administrative forms. +Table 3.1g: ‘Subcontracting costs’ items +11/SCEYE + Cost (€) Description of tasks and justification +Subcontracting 550 000 External software and cybersecurity support. External safety modelling, +regulatory and legal support. +16/DLR + Cost (€) Description of tasks and justification +Subcontracting 100 000 DLR will subcontract to Skysquitter company to develop hard - and +software for a prototype transponder to be delivered and installed on a +rocket for the Validation Trials on ADS-B tracking. +WP4: 1 item with cost 50 000 EUR; WP6: 1 item with cost 50 000 EUR + + + + +=== PAGE 215 === + +Part B - Page 48 of 49 +18/ENAIRE + Cost (€) Description of tasks and justification +Subcontracting 209 250 Some of the tasks committed by ENAIRE along WP3 /4/5/6 will be +performed by subcontracted personnel from OBIZCO, which will support +ENAIRE providing their expertise in ATM R&D and CNS technologies. + +Table 3.1h: ‘Purchase costs’ items (travel and subsistence, equipment and other goods, works and services) +11/SCEYE + Cost (€) Justification +Travel and subsistence +Equipment 2 175 000 Estimated cost of single -use HAPS hardware, hull fabric and +associated avionics, and auxiliary equipment plus the rental of +hangar facilities and associated tooling, machinery, helium +supply, etc. for the duration of the program. +Other goods, works and services +Remaining purchase costs +(<15% of pers. Costs) + +Total 2 175 000 + +12/SKYDWELLER CANARIAS SL + Cost (€) Justification +Travel and subsistence +Equipment 700 000 Depreciation cost for the use of the Skydweller HAPS during +WP6. +Other goods, works and services 400 000 The global insurance (aircraft, staff, operations) is 30000 +euros by month and the satellite communication plan needed +to implement the aircraft costs is 35 000 euros by month. +Total is therefore 325000 euros for 5 months of operations. +Additionally, the hangar rental at the Stratoport of +Fuerteventura has a cost of 15000 euros by month. Total is +therefore 75000 euros for 5 months of operations. +Remaining purchase costs +(<15% of pers. Costs) + +Total 1.100.000 + +14/PTFSA + Cost (€) Justification +Travel and subsistence 24.000 Traveling expenses for participation in progress meetings +and meetings regarding WP4 and WP6 +Equipment +Other goods, works and services 30.000 Expenses dedicated to arrangement of seminars and +meetings within WP4 and WP6 +Remaining purchase costs +(<15% of pers. Costs) + +Total 54.000 + + + +=== PAGE 216 === + +Part B - Page 49 of 49 +15/Elson Space + Cost (€) Justification +Travel and subsistence € 125,349.00 + +Covers flights, hotels, and per diem for the entire deployed team +for the duration of each of the three trials. 3 Trials of 2 weeks x +16 Persons. +Equipment € 96,693.00 Accounts for performance degradation of the solar arrays. + € 90,000.00 Recurring cost reflecting the very limited life of the battery sets +(2 flights per €60,000 set), a key operational constraint + € 96,693.00 + +Accounts for the degradation of the solar arrays due to exposure +to stratospheric environment during long-duration flights. + € 45,000.00 Site Equipment Rental & Logistics & Recovery Equipment + € 29,340.00 Cost of replacing life-limited propellers + € 20,700.00 Procurement of weather balloons and sensors to gather precise +local atmospheric data. +Other goods, works and +services +€ 105,000.00 Integration Materials (Cabling, integration housing, customized +housing materials and fabrication) + € 90,000.00 UAS System Insurance, Cost of specialized insurance policy for +the HAPS asset during each two-week operational period. + € 42,600.00 Service fees for SATCOM and other data links +Remaining purchase +costs (<15% of pers. +Costs) + +Total € 644,682.00 + +16/DLR + Cost (€) Justification +Travel and subsistence 19 000 + +19 x travel à € 1 000 to meetings and with a team to integrate the +transponder on the rocket and to the launch campaign in Scandinavia +Equipment +Other goods, works and +services +100 000 + +Consumables for the integration of the prototype transponder into the +MAPEUS rocket: Aviation and Space -Ops certified wires, hardware +adapters, electronic interfaces, aviation RF and GNSS antennas. +Remaining purchase +costs(<15%ofpers. Costs) + +Total 119 000 + +Table 3.1i: ‘Other costs categories’ items (e.g. internally invoiced goods and services) +Not applicable. +Table 3.1j: ‘In-kind contributions’ provided by third parties +Not applicable. +#§QUA-LIT-QL§# #§WRK-PLA-WP§# + +=== PAGE 217 === + + +Commission européenne/Europese Commissie, 1049 Bruxelles/Brussel, BELGIQUE/BELGIË - Tel. +32 22991111 + + + + +This electronic receipt is a digitally signed version of the document submitted by your +organisation. Both the content of the document and a set of metadata have been digitally +sealed. +This digital signature mechanism, using a public -private key pair mechanism, uniquely +binds this eReceipt to the modules of the Funding & Tenders Portal of the European +Commission, to the transaction for which it was generated and ensures its full integr ity. +Therefore a complete digitally signed trail of the transaction is available both for your +organisation and for the issuer of the eReceipt. +Any attempt to modify the content will lead to a break of the integrity of the electronic +signature, which can b e verified at any time by clicking on the eReceipt validation +symbol. +More info about eReceipts can be found in the FAQ page of the Funding & Tenders +Portal. +(https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/support/faq) + \ No newline at end of file diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/SPARTA Proposal-SEP-211192339.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/SPARTA Proposal-SEP-211192339.txt new file mode 100644 index 0000000..a7319cf --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/SPARTA Proposal-SEP-211192339.txt @@ -0,0 +1,6177 @@ + + +=== PAGE 1 === +Administrative forms +Page 1 of 145 Last saved 16/09/2025 11:06Horizon Europe ver 1.00 20241022 +Call: HORIZON-SESAR-2025-DES-IR-02 + (Digital European Sky Industrial Research 02) +Topic: HORIZON-SESAR-2025-DES-IR-02-WA5-2 +Type of Action: HORIZON-JU-RIA + (HORIZON JU Research and Innovation Actions) +Proposal number: 101288039 +Proposal acronym: SPARTA +Type of Model Grant Agreement: HORIZON Lump Sum Grant +Table of contents +Section Title Action +1 General information +2 Participants +3 Budget +4 Ethics and security +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 2 === +Administrative forms +Page 2 of 145 +Proposal ID 101288039 +Acronym SPARTA +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 11:06 +1 - General information +Fields marked * are mandatory to fill. +Topic HORIZON-SESAR-2025-DES-IR-02-WA5-2 +Type of Model Grant Agreement HORIZON-AG-LS +Type of Action HORIZON-JU-RIA +Call HORIZON-SESAR-2025-DES-IR-02 +Acronym SPARTA +Proposal title SPARTA — Space-ATM Real-Time Awareness +Note that for technical reasons, the following characters are not accepted in the Proposal Title and will be removed: < > " & +Duration in +months 36 +Free keywords +ECHO Phase 3 European Concept For Higher Altitude Operations HAO Service Provider concept Space Transport +Operations New Entrants Supersonic Hypersonic Suborbital HAPS +Abstract * +The development of an enhanced Network Real-time Monitoring Module and associated enhanced procedures and eventual +enhanced supporting tools for the management of space-launch and higher-altitude operations at the level of the European ATM +Network Manager (NM). It includes space and higher-altitude operations data integration (from Launch and Re-entry Operators (LRO), +Launch and Re-entry site operators (LRSO), STM, Higher Altitude vehicle and site Operators with the NM and ATM), looking to +generate, maintain and broadcast a full European network wide situational awareness picture. Note that this a continuation of +ongoing research embedded in the SESAR 3 project ECHO 2, under the HORIZON-SESAR-2022-DES-IR-01 Call. +Remaining characters 1278 +Has this proposal (or a very similar one) been submitted in the past 2 years in response to a call for + proposals under any EU programme, including the current call? +Yes No +Please give the proposal reference or contract number. +Previously submitted proposals should be with either 6 or 9 digits. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 3 === +Administrative forms +Page 3 of 145 +Proposal ID 101288039 +Acronym SPARTA +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 11:06 +Declarations +Field(s) marked * are mandatory to fill. +1) We declare to have the explicit consent of all applicants on their participation and on the content of this proposal. * +2) We confirm that the information contained in this proposal is correct and complete and that none of the project +activities have started before the proposal was submitted (unless explicitly authorised in the call conditions). * +3) We declare: + - to be fully compliant with the eligibility criteria set out in the call + - not to be subject to any exclusion grounds under the EU Financial Regulation 2018/1046 + - to have the financial and operational capacity to carry out the proposed project. * +4) We acknowledge that all communication will be made through the Funding & Tenders Portal +electronic exchange system and that access and use of this system is subject to the Funding & Tenders Portal Terms +and Conditions. * +5) We have read, understood and accepted the Funding & Tenders Portal Terms & Conditions and +Privacy Statement that set out the conditions of use of the Portal and the scope, purposes, retention periods, etc. for +the processing of personal data of all data subjects whose data we communicate for the purpose of the application, +evaluation, award and subsequent management of our grant, prizes and contracts (including financial transactions and +audits). * +6) We declare that the proposal complies with ethical principles (including the highest standards of research integrity +as set out in the ALLEA European Code of Conduct for Research Integrity, as well as applicable international and +national law, including the Charter of Fundamental Rights of the European Union and the European Convention on +Human Rights and its Supplementary Protocols. Appropriate procedures, policies and structures are in place to foster +responsible research practices, to prevent questionable research practices and research misconduct, and to handle +allegations of breaches of the principles and standards in the Code of Conduct. * +7) We declare that the proposal has an exclusive focus on civil applications (activities intended to be used in military +application or aiming to serve military purposes cannot be funded). If the project involves dual-use items in the sense +of Regulation 2021/821, or other items for which authorisation is required, we confirm that we will comply with the +applicable regulatory framework (e.g. obtain export/import licences before these items are used). * +8) We confirm that the activities proposed do not +- aim at human cloning for reproductive purposes; +- intend to modify the genetic heritage of human beings which could make such changes heritable + (with the exception of research relating to cancer treatment of the gonads, which may be financed), or +- intend to create human embryos solely for the purpose of research or for the purpose of stem + cell procurement, including by means of somatic cell nuclear transfer. +- lead to the destruction of human embryos (for example, for obtaining stem cells) +These activities are excluded from funding. * +9) We confirm that for activities carried out outside the Union, the same activities would have been allowed in at least +one EU Member State. * +10) For Lump Sum Grants with a detailed budget table: We understand and accept that the EU lump sum grants must +be reliable proxies for the actual costs of a project and confirm that the detailed budget for the proposal has been +established in accordance with our usual cost accounting practices and in compliance with the basic eligibility +conditions for EU actual cost grants (see AGA - Annotated Grant Agreement, art 6) and exclude costs that are ineligible +under the Programme. Purchases and subcontracting costs must be done taking into account best value for money +and must be free of conflict of interest. * +The coordinator is only responsible for the information relating to their own organisation. Each applicant remains responsible for the information declared for +their organisation. If the proposal is retained for EU funding, they will all be required to sign a declaration of honour. +False statements or incorrect information may lead to administrative sanctions under the EU Financial Regulation. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 4 === +Administrative forms +Page 4 of 145 +Proposal ID 101288039 +Acronym SPARTA +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 11:06 +2 - Participants +List of participating organisations +# Participating Organisation Legal Name Country Role Action +1 EUROCONTROL - EUROPEAN ORGANISATION FOR THE SAFBE Coordinator +2 DFS DEUTSCHE FLUGSICHERUNG GMBH DE Partner +3 DEUTSCHES ZENTRUM FUR LUFT - UND RAUMFAHRT EV DE Partner +4 LUFTFARTSVERKET SE Partner +5 ENAV SPA IT Partner +6 NATS (EN ROUTE) PUBLIC LIMITED COMPANY UK Partner +7 ENAIRE ES Partner +8 Europe Space Centre GmbH Germany Partner +9 ENTE NAZIONALE PER L'AVIAZIONE CIVILE - ENAC ITALIANIT Partner +10 SkyNav Europe BE Partner +11 ECOLE NATIONALE DE L AVIATION CIVILE FR Partner +12 LINKOPINGS UNIVERSITET SE Partner +13 C.I.R.A. CENTRO ITALIANO RICERCHE AEROSPAZIALI SCPA IT Partner +14 SCEYE SPAIN S.L. ES Partner +15 INTERNATIONAL FEDERATION OF AIR TRAFFIC CONTROLL CA Partner +16 OpenUTM Ltd. IE Partner +17 THALES LAS FRANCE SAS FR Partner +18 ANRA TECHNOLOGIES UK LTD UK Partner +19 HAPS Alliance United States Associated +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 5 === +Administrative forms +Page 5 of 145 Last saved 16/09/2025 11:06 +Organisation data +PIC +999483733 +Legal name +EUROCONTROL - EUROPEAN ORGANISATION FOR THE SAFETY OF AIR NAVIGATION +Short name: EUROCONTROL + +Address +Town BRUXELLES +Postcode 1130 +Street Rue de la Fusée 96 +Country Belgium +Webpage www.eurocontrol.int +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... yes +Secondary or Higher education establishment ...... no +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 14/02/2022 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 6 === +Administrative forms +Page 6 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +Department 1 +Department name Aviation Transformation Directorate +Street Rue de la Fusée 96 +Town BRUXELLES +Same as proposing organisation's address +not applicable +Country Belgium +Postcode 1130 +Department 2 +Department name Netrok Manager Directorate +Street Rue de la Fusée 96 +Town BRUXELLES +Same as proposing organisation's address +not applicable +Country Belgium +Postcode 1130 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 7 === +Administrative forms +Page 7 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Ovidiu Last name* DUMITRACHE +E-Mail* ovidiu.dumitrache@eurocontrol.int +Town BRUXELLES Post code 1130 +Street Rue de la Fusée 96 +Website www.eurocontrol.int +Position in org. Senior Manager Research Strategy +Department Aviation Transformation Directorate +Phone +32 2 729 30 52 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Belgium +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +CM Team EUROCONTROL atd.ppu.cmt@eurocontrol.int +xxx xxxxxxxxx +Pablo HARO pablo.haro@eurocontrol.int +xxx xxxxxxxxx +Dragos TONEA dragos.tonea@eurocontrol.int +xxx xxxxxxxxx +Fiona MULLAN fiona.mullan@eurocontrol.int +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 8 === +Administrative forms +Page 8 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Ovidiu Dumitrache Man Romania ovidiu.dumitrach +e@eurocontrol.in +t +Category B Senior resea Leading +Mr Dragos Tonea Man Romania dragos.tonea@eu +rocontrol.int +Category B Senior resea Leading +Mr Pablo Haro Man Spain pablo.haro@euro +control.int +Category B Senior resea Team member +Mr Octavian Fota Man Romania octavian.fota@eu +rocontrol.int +Category B Senior resea Team member +Mr Stefano Tiberia Man Italy stefano.tiberia@e +urocontrol.int +Category B Senior resea Team member +Mrs Marta Fernandez +Castrillo +Woman Spain marta.fernandez- +castrillo@euroco +ntrol.int +Category C Recognised Team member +Mr Augustin Udristioiu Man Romania augustin.udristioi +u@eurocontrol.in +t +Category C Recognised Team member +Mr Edgar Reuber Man Germany edgar.reuber@eu +rocontrol.int +Category C Recognised Team member +Mr Gabor Fugedi Man Hungary gabor.fugedi@eu +rocontrol.int +Category C Recognised Team member +Mrs Fiona Mullan Woman Ireland fiona.mullan@eur +ocontrol.int +Category D First stage r Team member +Mrs Lucia Sandu Woman Moldova lucia.sandu@eur +ocontrol.int +Category D First stage r Team member +Mrs Aleksandra Owoc-Berson Woman Poland aleksandra.owoc- +berson@eurocon +trol.int +Category D First stage r Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 9 === +Administrative forms +Page 9 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 10 === +Administrative forms +Page 10 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Other achievement +As a founding member of the SESAR Programme and Joint Undertaking, EUROCONTROL has +been involved in all the phases (Definition, Development and Deployment) contributing +significantly to many of its most important achievements, such as the definition and +maintenance of the European ATM Master Plan, the SESAR 3 Strategic Research and +Innovation Agenda and a large number of Solutions delivered in the context of the SESAR 1 +and SESAR 2020. +Dataset +The EUROCONTROL Base of Aircraft Data (BADA) Aircraft Performance Model (APM) is a +globally recognized reference database containing aircraft-specific coefficients and +theoretical models used to calculate aircraft performance parameters. +Service +The EUROCONTROL Network Manager Operations Centre (NMOC) permanently monitors the +airspace capacity against traffic load. This allows us to have an accurate picture of the current +and expected European ATM network situation. To ensure the transparent and efficient +operation of the network, we collect all of the real-time data generated by the network and +share it with all operational partners through our Data Collection and Distribution Services +(DCS and DDS). +Service +At the EUROCONTROL NMOC we measure, investigate and report on operational processes +and activities throughout all domains relevant to Air Traffic Flow and Capacity Management. +All stakeholders provide feedback on the efficiency of the flight planning and airspace data +processing. We compare forecasts with the actual measured outcome in terms of delay and +route extension, while taking into account performance targets. This helps us improve the +performance of the European ATM Network. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO 2 project (Ref 101114697) +ECHO-2 is building on the deliverables of the ECHO (European Concept of Higher airspace +Operations) project, starting from the +Concept of Operations, to propose validated solutions paving the way towards the +operational integration of HAO in ATM. +ECHO project (ref. SESARER4- +19-2019) +The ECHO (European Concept of Higher airspace Operations) Project aimed at delivering a +comprehensive demand analysis and a comprehensive, innovative and feasible Concept of +Operations enabling near term and future Higher Airspace operations in a safe and orderly +manner. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +NMVP +Validation platform allowing to design and validate solutions for Network Management in a +more flexible way. Validations can now be replayed across NM’s backend systems (Enhanced +Tactical Flow Management System, Integrated Initial Flight Plan Processing System) and the +front-end systems. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 11 === +Administrative forms +Page 11 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 12 === +Administrative forms +Page 12 of 145 Last saved 16/09/2025 11:06 +PIC +999936820 +Legal name +DFS DEUTSCHE FLUGSICHERUNG GMBH +Short name: DFS + +Address +Town LANGEN +Postcode 63225 +Street AM DFS CAMPUS 10 +Country Germany +Webpage www.dfs.de +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is unknown (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... unknown +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 13 === +Administrative forms +Page 13 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 14 === +Administrative forms +Page 14 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Andreas Last name* UDOVIC +E-Mail* andreas.udovic@dfs.de +Town LANGEN Post code 63225 +Street AM DFS CAMPUS 10 +Website www.dfs.de +Position in org. Project Manager +Department Operational Planing +Phone +49610370705758 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Germany +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Alexander SEYBOLD alexander.seybold@dfs.de +49610370702034 +Oliver ALBERT oliver.albert@dfs.de +4961037072073 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 15 === +Administrative forms +Page 15 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 16 === +Administrative forms +Page 16 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 17 === +Administrative forms +Page 17 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication • Presentation of „Obelisk“ auf den Kongress „HAPS4ESA Workshop“, 12-14.02.2024, +Leiden +Publication +• Article: Obelisk - Operationelles Betriebskonzept zur sicheren und effizienten +Luftraumintegration von Stratosphärenplattformen, DFS-Zeitschrift „Innovation im Fokus“ +publication in preparation for 2025 foreseen +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +OBELISK • German national founded projetct „Obelisk Operationelles Betriebskonzept zur +sicheren und effizienten Luftraumintegration von Stratosphärenplattformen“ 2019-2024 +ECHO2 • Participation on „ECHO 2 European Concept für High Altitude Operations 2” +2023-2026 +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 18 === +Administrative forms +Page 18 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 19 === +Administrative forms +Page 19 of 145 Last saved 16/09/2025 11:06 +PIC +999981731 +Legal name +DEUTSCHES ZENTRUM FUR LUFT - UND RAUMFAHRT EV +Short name: DLR + +Address +Town KOLN +Postcode 51147 +Street LINDER HOHE +Country Germany +Webpage www.dlr.de +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 03/01/2022 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... 28/10/2008 - no +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 20 === +Administrative forms +Page 20 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +Department 1 +Department name Institut of Flight Guidance +Street Lilienthalplatz 7 +Town Braunschweig +Same as proposing organisation's address +not applicable +Country Germany +Postcode 38108 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 21 === +Administrative forms +Page 21 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Sven Last name* KALTENHAEUSER +E-Mail* sven.kaltenhaeuser@dlr.de +Town Braunschweig Post code 38108 +Street Lilienthalplatz 7 +Website dlr.de/fl +Position in org. Head of Department ATM-SIM +Department Institut of Flight Guidance +Phone +49 531 295 2560 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Germany +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Lorenz LOSENSKY lorenz.losensky@dlr.de +49 531 295 1155 +Dirk-Roger SCHMITT dirk-roger.schmitt@dlr.de +49 172 295 4416 +Andreas HASSELBERG andreas.hasselberg@dlr.de +49 531 295 2427 +fl controlling fl-controlling@dlr.de +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 22 === +Administrative forms +Page 22 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Richard Hörder Man Germany richard.hoerder@ +dlr.de Category D First stage r Team member Orcid ID +Mr Jens Hampe Man Germany Jens.Hampe@dlr. +de +Category B Senior resea Team member 0000-0003-3105- +1516 +Orcid ID +Mr Frank Morlang Man Germany Frank.Morlang@d +lr.de +Category B Senior resea Team member 0000-0003-3636- +5215 +Orcid ID +Mr Maximilian Neumann Man Germany Maximilian.Neum +ann@dlr.de +Category D First stage r Team member Orcid ID +Mr Tobias Rabus Man Germany tobias.rabus@dlr. +de +Category D First stage r Team member 0000-0003-1947- +5447 +Orcid ID +Mr Lorenz Losensky Man Germany lorenz.losensky@ +dlr.de +Category D First stage r Team member 0000-0002-8762- +1971 +Orcid ID +Mr Sven Kaltenhäuser Man Germany sven.kaltenhaeus +er@dlr.de +Category B Senior resea Leading 0000-0003-2085- +7979 +Orcid ID +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 23 === +Administrative forms +Page 23 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 24 === +Administrative forms +Page 24 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +Kaltenhäuser, Sven und Klünker, Carmo und Schmitt, Dirk-Roger (2022) Interoperable data +exchange for safe and efficient launch and re-entry operations in an international +environment, In: Proceedings of the International Astronautical Congress, IAC. 73rd +International Astronautical Congress (IAC), 18.-22. Okt. 2022, Paris, France +Publication +Stahnke, Anouk und Rabus, Tobias und Kaltenhäuser, Sven (2022) Supporting the safety and +efficiency of airspace transition for launch and re-entry operations in Europe, 2nd +International Conference on Flight Vehicles, Aerothermodynamics and Re-entry Missions & +Engineering (FAR), 19 - 23 June 2022. Heilbronn, Germany +Publication +Kaltenhäuser, Sven und Stilwell, Ruth (2020) NearSpace operations – barrier between aviation +and space or the path to integration? 6th Annual Space Traffic Management Conference, +19.-20. Feb. 2020, Austin, USA +Publication +Kaltenhäuser, Sven (2019) Towards a NearSpace Operation Management. In: Proceedings of +the International Astronautical Congress, IAC. 70th International Astronautical Congress (IAC), +21.-25. Okt. 2019, Washington D.C., USA +Publication +Kaltenhäuser, Sven und Hampe, Jens und Rabus, Tobias und Morlang, Frank und Losensky, +Lorenz (2024) Towards Efficient Integration of Rocket Launches and Re-entry Operations in +European Airspace: Development and Testing of a Launch Coordination Center. Hampe, Jens +und Stahnke, Anouk (2024) Improving air and space safety through enhanced coordination +with the SpaceTracks Suite microservice architecture. Journal of Space Safety Engineering. +Elsevier. doi: 10.1016/j.jsse.2024.01.005. ISSN 2468-8967. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO Project +European Concept of Higher Airspace Operations. +https://higherairspace.eu/echo-project/ +Project led by EUROCONTROL with major DLR participation delivering a comprehensive +demand analysis and the concept of operations (ConOps) for higher airspace to allow safe, +efficient and scalable operations.The ConOps also provide the basis to identify future +infrastructure needs that is required to support Higher Airspace Operations (HAO). +DLR/FAA DEP +DLR - FAA Data Exchange Project. +https://www.dlr.de/content/en/articles/news/2019/04/20191025_dlr-and-us-federal- +aviationadministration-are-cooperating.html +DLR and the Office of Commercial Space Transportation of the US Federal Aviation +Administration (FAA) identified the data that need to be exchanged between United States +and European Air Navigation Service Providers (ANSPs) prior to, during and after a launch. +ECHO2 +https://higherairspace.eu/echo2-project/ +The ECHO 2 Project is dedicated to enhancing air traffic management by integrating space +mission monitoring for launches and re-entries within the EUROCONTROL Network Manager +area. It focuses on creating operational frameworks to manage space operations, including +orbital and sub-orbital trajectories, ensuring they harmonize with existing air traffic. +DLR Launch Coordination Center +(LCC) Development - +https://www.dlr.de/en/latest/news/2021/03/20210923_dlr-is-developing-a-launch- +coordination-center +DLR's LCC ntegrates software-based procedures for safe, efficient space launch coordination +through airspace. System includes automated planning components, real-time mission +monitoring via Space Operations Dashboard, and enhanced air traffic controller interfaces. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 25 === +Administrative forms +Page 25 of 145 Last saved 16/09/2025 11:06 +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment Short description (Max 300 characters) +Air Traffic Validation Center +https://www.dlr.de/fl/en/desktopdefault.aspx/tabid-1140/ +DLR facilities for the validation of concepts, technologies and procedures in air traffic +management. Together, these facilities are known as the Air Traffic Validation Center and are +unique in Europe. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 26 === +Administrative forms +Page 26 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 27 === +Administrative forms +Page 27 of 145 Last saved 16/09/2025 11:06 +PIC +942346077 +Legal name +LUFTFARTSVERKET +Short name: SWEDISH CIVIL AVIATION ADMINISTRATION + +Address +Town NORRKOPING +Postcode 602 27 +Street HOSPITALSGATAN 30 +Country Sweden +Webpage http://www.lfv.se +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 20/03/2014 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 28 === +Administrative forms +Page 28 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +Department 1 +Department name LFV Research and Innovation +Street HOSPITALSGATAN 30 +Town NORRKOPING +Same as proposing organisation's address +not applicable +Country Sweden +Postcode 602 27 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 29 === +Administrative forms +Page 29 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Lindsay Last name* MARTENEZ-HERMOSILLA +E-Mail* lindsey.martenez-hermosilla@lfv.se +Town NORRKOPING Post code 602 27 +Street HOSPITALSGATAN 30 +Website www.lfv.se +Position in org. LFV SESAR Programme- and Contribution Manager +Department LUFTFARTSVERKET +Phone +46 721 429 192 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Ms +Same as proposing organisation's address +Country Sweden +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Stefan SIGGELIN stefan.siggelin@lfv.se +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 30 === +Administrative forms +Page 30 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 31 === +Administrative forms +Page 31 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 32 === +Administrative forms +Page 32 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SESAR IR1 ECHO2 +The SESAR IR1 ECHO2 project was built on the deliverables of the ECHO (European Concept of +Higher airspace Operations) project. LFV participated in ECHO2 withc ATCO expertise, both +with the Concept of Operations, but also as active participants of the project EXE. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +LFV Research and Innovation +Centre +Located at ATCC Malmö, the LFV R&D Centre is equipped with lab, simulators, and conference +facilities, and is capable of conducting human-in-the-loop simulations and demonstrations. +The available simulators include NARSIM (for ACC, APP, and TWR), the SAAB RTS simulator, +and the UTM City platform. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 33 === +Administrative forms +Page 33 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 34 === +Administrative forms +Page 34 of 145 Last saved 16/09/2025 11:06 +PIC +998197513 +Legal name +ENAV SPA +Short name: ENAV + +Address +Town ROMA +Postcode 00138 +Street VIA SALARIA 716 +Country Italy +Webpage www.enav.it +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 28/08/2008 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... 28/08/2008 - no +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 35 === +Administrative forms +Page 35 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +Department 1 +Department name Engineering and Infrastructures +Street Via Appia Nuova 1491 +Town Rome +Same as proposing organisation's address +not applicable +Country Italy +Postcode 00178 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 36 === +Administrative forms +Page 36 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Ramona Last name* SANTARELLI +E-Mail* ramona.santarelli@enav.it +Town Rome Post code 00138 +Street Via Pietro Boccanelli, 32/34 +Website www.enav.it +Position in org. ATM Researcher +Department Innovation and Research +Phone +39 06 81664013 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Ms +Same as proposing organisation's address +Country Italy +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Daniele Teotino daniele.teotino@enav.it +39 06 81662364 +Angela Iurilli angela.iurilli@enav.it +39 06 81664411 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 37 === +Administrative forms +Page 37 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Ms Ramona Santarelli Woman Italy ramona.santarelli +@enav.it Category B Senior resea Team member EX2025D1106377 Researcher ID +Mrs Marinella Massari Woman Italy marinella.massari +@enav.it +Category B Senior resea Team member +Mrs Debora Palombi Woman Italy debora.palombi +@enav.it +Category B Senior resea Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 38 === +Administrative forms +Page 38 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 39 === +Administrative forms +Page 39 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication Cleared 06/2020 "Space Traffic Management - La futura gestione del traffico aereo nello +spazio". S. Romano, L. Brucculeri, ENAV, Italy +Publication Cleared 02/2025 "Navigare nel futuro, l'ascesa delle Higher Airspace Operations". +R. Santarelli, Federico Ferrari, ENAV, Italy +Publication +Aerospace 2019, 7, 24, "U-Space Concept of Operations: A Key Enabler for Opening Airspace to +Emerging Low-Altitude Operations". +Cristina Barrado, Mario Boyero, Luigi Brucculeri, Giancarlo Ferrara, Andrew Hately, Peter +Hullah, David Martin-Marrero, Enric Pastor, Anthony Peter Rushton and Andreas Volkert . +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SESAR3 ECHO2 European Concept +for HAO Phase 2 +The project aimed to define new operating methods to support the safe, secure, and +sustainable development of civil aviation operations taking place in higher airspace. +The project developed three solutions for integrating higher airspace operations in the +European ATM system, focusing on Space Real Time Mission Monitoring supporting Network +Operations, and the integration of HAPS, Supersonic, Hypersonic and Suborbital Operations in +European ATM. +ECHO European Concept for HAO +The ECHO (European Concept of Higher airspace Operations) Project delivered a +comprehensive demand analysis and a comprehensive, innovative and feasible Concept of +Operations enabling near term and future Higher Airspace operations in a safe and orderly +manner. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 40 === +Administrative forms +Page 40 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 41 === +Administrative forms +Page 41 of 145 Last saved 16/09/2025 11:06 +PIC +997542763 +Legal name +NATS (EN ROUTE) PUBLIC LIMITED COMPANY +Short name: NATS + +Address +Town FAREHAM +Postcode PO15 7FL +Street 4000 PARKWAY WHITELEY +Country United Kingdom +Webpage www.nats.aero +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is unknown (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... unknown +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 42 === +Administrative forms +Page 42 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +Department 1 +Department name NATS (En Route) Public Limited Company (CTC) +Street 4000 PARKWAY WHITELEY +Town FAREHAM +Same as proposing organisation's address +not applicable +Country United Kingdom +Postcode PO15 7FL +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 43 === +Administrative forms +Page 43 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Richard Last name* HAYWARD +E-Mail* richard.hayward@nats.co.uk +Town FAREHAM Post code PO15 7FL +Street 4000 PARKWAY WHITELEY +Website www.nats.aero +Position in org. Systems Engineer +Department NATS (En Route) Public Limited Company (CTC) +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country United Kingdom +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Richard PUGH richard.pugh@nats.co.uk +447827954671 +Alison ROBERTS alison.roberts@nats.co.uk +447917558035 +Matthew GREEN matthew.green@nats.co.uk +xxx xxxxxxxxx +Patrick GILES patrick.giles@nats.co.uk +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 44 === +Administrative forms +Page 44 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Richard Hayward Man United Kingdom richard.hayward +@nats.co.uk Category C Recognised Leading +Mrs Patrick Giles Man United Kingdom patrick.giles@nat +s.co.uk +Category B Senior resea Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 45 === +Administrative forms +Page 45 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 46 === +Administrative forms +Page 46 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Other achievement Participation in SESAR ECHO 2 project, including leading the development of the OSED +document for WP 2 - High Altitude Platform Systems. +Service Operational support to UK Ministry of Defence / US Air Force in Europe with regard to current +(military) high altitude operations. +Service Past operational experience of operating very high / very fast commercial airliners +undertaking inter-continental flights (Concorde). +Service +Operational and strategic coordination for UK-based Space Launches, including from +Spaceport Cornwall (Newquay) and Shetland Space Centre (Saxa Vord). +Coordination with European and Global stakeholders (including the Network Manager with +regard to space debris (from launch or re-entry) identified as potentially passing through +European airspace. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SESAR 3 ECHO 2 +The ECHO 2 project is further developing concepts identified in the initial ECHO Concept of +Operations document. This work will be a key input to the SPARTA project as it is in the ECHO2 +discussions that the need for the SPARTA project was identified. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 47 === +Administrative forms +Page 47 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 48 === +Administrative forms +Page 48 of 145 Last saved 16/09/2025 11:06 +PIC +997701843 +Legal name +ENAIRE +Short name: ENAIRE + +Address +Town MADRID +Postcode 28022 +Street AVENIDA DE ARAGON S/N BLOQUE 330, PORTAL +Country Spain +Webpage http://www.enaire.es +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 14/06/1991 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 49 === +Administrative forms +Page 49 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +Department 1 +Department name Innovation Division +Street AVENIDA DE ARAGON S/N BLOQUE 330, PORTAL +Town MADRID +Same as proposing organisation's address +not applicable +Country Spain +Postcode 28022 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 50 === +Administrative forms +Page 50 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Francisco José Last name* Jiménez Roncero +E-Mail* fjroncero@enaire.es +Town MADRID Post code 28022 +Street AVENIDA DE ARAGON S/N BLOQUE 330, PORTAL 2 PARQUE EMPRESARIAL LAS +Website www.enaire.es +Position in org. Head of Division +Department Innovation Division +Phone +34 634 880 079 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Spain +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Daniel DOMINGUEZ ddoperez@enaire.es +xxx xxxxxxxxx +Javier García Moreno jgmoreno@enaire.es +xxx xxxxxxxxx +Jorge Vellón Benito jvellon@e-externas.enaire.es +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 51 === +Administrative forms +Page 51 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 52 === +Administrative forms +Page 52 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 53 === +Administrative forms +Page 53 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +EUSTM +EUSTM is an end-to end activity towards the definition of a future STM capability: +· Defining the needs in terms of organisation and responsibilities, technology, policy, laws, +guidelines, best practices and standards +· Elaborating detailed specs, a preliminary design, a reference roadmap and a ROM cost +analysis +· Developing an innovative collaborative platform for exchange of information inside the team +and with external stakeholders +Creating a community of interest on STM +ECHO 2 +The main objective of this project is the modernisation and adaptation of the European ATM +system that allows the integration of the so-called high-altitude operations or Higher Airspace +Operations (HAO). These types of operations occur above flight level FL550, that is, operations +above 17,000 meters, while flights usually take place around 10,000 meters. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 54 === +Administrative forms +Page 54 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 55 === +Administrative forms +Page 55 of 145 Last saved 16/09/2025 11:06 +PIC +870575583 +Legal name +Europe Space Centre GmbH +Short name: Europe Space Centre GmbH / SaxaVord + +Address +Town Taufkirchen +Postcode 82024 +Street Willy-Messerschmitt-Str. 1 +Country Germany +Webpage +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 16/07/2025 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 56 === +Administrative forms +Page 56 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 57 === +Administrative forms +Page 57 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Paola Last name* BREDA +E-Mail* paola.breda@shetlandspacecentre.com +Town Taufkirchen Post code 82024 +Street Willy-Messerschmitt-Str. 1 +Website Please enter website +Position in org. Launch Account Manager +Department Europe Space Centre GmbH +Phone +49 1732064728 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country Germany +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Jimmy SLAUGHTER james.slaughter@shetlandspacecentre.com +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 58 === +Administrative forms +Page 58 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 59 === +Administrative forms +Page 59 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 60 === +Administrative forms +Page 60 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Other achievement Main PoC contributed to project ECHO2 REG and STAND deliverables (see project below). +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO2 +SaxaVord Spaceport is member of Advisory Board for SESAR project ECHO2 (ongoing). Paola +Breda previously worked on WP1 of ECHO2 until December 2024 as she was employed at +HyImpulse Technologies GmbH. +RFA Providing launch services for integrated engine test and launch operations. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +Range TT&C infrastructure +Range services include telemetry and tracking capabilities. Data are transmitted by launch +operators during early launch phase. It can be possible to share T&T data with the network +module proposed in this project (RMM-2.0) to real-time data feed during launch, under +consent of the launch operator. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 61 === +Administrative forms +Page 61 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 62 === +Administrative forms +Page 62 of 145 Last saved 16/09/2025 11:06 +PIC +988366078 +Legal name +ENTE NAZIONALE PER L'AVIAZIONE CIVILE - ENAC ITALIAN CIVIL AVIATION AUTHORITY +Short name: ENAC IT + +Address +Town ROMA +Postcode 00185 +Street VIALE CASTRO PRETORIO 118 +Country Italy +Webpage http://www.enac.gov.it +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 25/05/1997 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 63 === +Administrative forms +Page 63 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +Department 1 +Department name Direzione Innovazione Tecnologica +Street VIALE CASTRO PRETORIO 118 +Town ROMA +Same as proposing organisation's address +not applicable +Country Italy +Postcode 00185 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 64 === +Administrative forms +Page 64 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Giovanni Last name* Di ANTONIO +E-Mail* g.diantonio@enac.gov.it +Town ROMA Post code 00185 +Street VIALE CASTRO PRETORIO 118 +Website Please enter website +Position in org. Director +Department Direzione Innovazione Tecnologica +Phone 00390644596618 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country Italy +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Fabrizio ARRU f.arru@enac.gov.it 00390644596367 +Alessandro BUCCI a.bucci@enac.gov.it 00390644596389 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 65 === +Administrative forms +Page 65 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Fabrizio Arru Man Italy f.arru@enac.gov.i +t Category C Recognised Team member +Mr Alessandro Bucci Man Italy a.bucci@enac.go +v.it +Category C Recognised Team member +Mr Giovanni Di Antonio Man Italy g.diantonio@ena +c.gov.it +Category A Top grade reLeading +Mr Luigi Morra Man Italy l.morra@enac.go +v.it +Category C Recognised Team member +Mr Marco Catalano Man Italy m.catalano@enac +.gov.it +Category C Recognised Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 66 === +Administrative forms +Page 66 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 67 === +Administrative forms +Page 67 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SESAR ECHO and ECHO2 projects +ENAC was involved in the SESAR ECHO project, in which it contributed to drafting the original +ECHO Concepts of Operations (CONOPS). Currently, ENAC is actively participating in the SESAR +ECHO2 project, where it leads Solution 3, focused on integrating supersonic, hypersonic, and +suborbital operations into the European ATM system. +Italian National Regulation +Activity on HAO/STO +ENAC has already issued the Italian Regulation for the construction and use of spaceports, as +well as the Italian Regulation for Suborbital and Access to Space Operations (SASO). ENAC is +also developing a dedicated regulation for the airspace management of HAO and STO, aimed +at ensuring the safe and efficient integration of these operations within Italian national +airspace. +EASA HAO Task Force and ICAO +EUR STO Project Team +ENAC plays a leading international role in regulatory frameworks for HAO and STO. It chairs +the EASA HAO Task Force, driving the development of operational and regulatory standards. +Additionally, ENAC leads the ICAO EUR STO project team, working to create harmonized +guidelines for STO across the European region, promoting safe and efficient integration. +ENAC-Virgin Galactic Technical +Feasibility Study +ENAC is engaged in a technical feasibility study, in collaboration with the USA operator Virgin +Galactic, to assess the potential for suborbital operations at the Grottaglie spaceport in Italy. +This study is pivotal to understanding the operational challenges and regulatory requirements +associated with STO in a European context. +ENAC-EUROCONTROL Simulation +Activity +ENAC has carried out simulation activities in partnership with Eurocontrol, validating +operational procedures to enable the efficient and effective accommodation of suborbital and +re-entry operations at the Grottaglie spaceport. These Real-Time Simulation (RTS) exercises, +conducted at the Eurocontrol Innovation Hub (EIH) in Brétigny, France, involved air traffic +controllers from both Italian civil and military service providers (ENAV and the Italian Air +Force). +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 68 === +Administrative forms +Page 68 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 69 === +Administrative forms +Page 69 of 145 Last saved 16/09/2025 11:06 +PIC +870906450 +Legal name +SkyNav Europe +Short name: SkyNav Europe + +Address +Town Brussels +Postcode 1000 +Street Rue Coppens 16 +Country Belgium +Webpage www.skynavintl.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 27/09/2024 - yes +SME self-assessment ........................................... 27/09/2024 - yes +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 70 === +Administrative forms +Page 70 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 71 === +Administrative forms +Page 71 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Ben Last name* KINGS +E-Mail* ben.kings@skynavintl.com +Town Brussels Post code 1000 +Street Rue Coppens 16 +Website https://skynavintl.com/ +Position in org. Managing Director/Owner +Department SkyNav Europe +Phone +31615625092 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Belgium +Same as organisation +name +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 72 === +Administrative forms +Page 72 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Ben Kings Man ben.kings@skyna +vintl.com Category A Top grade reLeading +Mr Duncan Auld Man duncan.auld@sky +navintl.com +Category A Top grade reLeading +Mr Zheng Tao Man zheng.tao@skyna +vintl.com +Category B Senior resea Team member +Ms Qina Diao Woman qina.diao@skyna +vintl.com +Category B Senior resea Team member +Ms Julie Caraga Woman julie.caraga@sky +navintl.com +Category D First stage r Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 73 === +Administrative forms +Page 73 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 74 === +Administrative forms +Page 74 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Service +ECHO2 subcontractor +Participation in the ECHO2 consortium as a contractor focusing on higher airspace and space +transport integration. Contributions include operational concept refinement, validation +planning, stakeholder mapping, and alignment with ANSP procedures and Network functions. +The work informs scalable approaches for trajectory management and airspace reservations. +Includes project management and deliverable lead. +Service +Operational ATM experience +Decades of global, operational Air Traffic Control experience across all ATC disciplines (Tower, +Approach, Area, Oceanic) and at all function levels. Operational supervision, flow +management, training, training management, safety and technical committee +representation, operational procedure development, international cross-border negotiations, +airspace design, safety risk assessments and environmental impact studies +Service +ICAO drafting and representation +Contributed to drafting and review activities at ICAO in relation to Annex 11, Annex 10 and +PANS-ATM material. Work includes requirements structuring, procedure text, and consistency +checks across datasets and guidance, supporting globally harmonised ATM provisions +relevant to STO and HAO integration. Leading working groups on ATM planning & +implementation, development of Global ATM Operational Concept, development of Aviation +System Block Upgrades +Service +State regulatory drafting and representation +Several years of regulatory drafting support for a Gulf State authority, updating national civil +aviation regulations, AMC/GM-style guidance and implementation procedures across ANS, +operations and oversight. Emphasis on practicality, traceability and alignment with ICAO and +regional provisions. Leadership of ICAO regional groups and task forces related to integration +of space transport activities. +Service +Project Management & Leadership Expertise +Extensive track record in project and organisational leadership, including executive roles +within IFATCA (International Federation of Air Traffic Controllers’ Associations). Demonstrated +ability to manage complex international initiatives, coordinate diverse stakeholders, and +oversee multi-million-euro budgets. Proven experience in steering strategic aviation projects, +ensuring delivery of innovative outcomes aligned with European policy & industry need +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SESAR ECHO / ECHO2 – HAO +Integration +Participation in ECHO and ECHO2 on higher airspace and space transport integration. Roles +covered operational scenarios, requirements traceability, validation planning, stakeholder +engagement and alignment with EUROCONTROL and ICAO practices for cross-border +coordination and dynamic, minimal-impact airspace management. +iNEO – Project Management Plan +& Governance Appr. +Development of a rigorous PMP and governance model for multi-partner R&D, covering +schedule baselining, risk and compliance, quality assurance, and reporting. The approach +underpins efficient WP coordination and is directly reusable for other HORIZON projects. +UAE National Regulations +Development Programme +Regulatory drafting support for a Gulf State authority, updating national civil aviation +regulations, AMC/GM-style guidance and implementation procedures across ANS, operations +and oversight. Emphasis on practicality, traceability and alignment with ICAO and regional +provisions. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 75 === +Administrative forms +Page 75 of 145 Last saved 16/09/2025 11:06 +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 76 === +Administrative forms +Page 76 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 77 === +Administrative forms +Page 77 of 145 Last saved 16/09/2025 11:06 +PIC +996375756 +Legal name +ECOLE NATIONALE DE L AVIATION CIVILE +Short name: ENAC FR + +Address +Town TOULOUSE +Postcode 31400 +Street AVENUE EDOUARD BELIN 7 +Country France +Webpage www.enac.fr +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... yes +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 27/05/2020 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 78 === +Administrative forms +Page 78 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +Department 1 +Department name ENAC LAB +Street AVENUE EDOUARD BELIN 7 +Town TOULOUSE +Same as proposing organisation's address +not applicable +Country France +Postcode 31400 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 79 === +Administrative forms +Page 79 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Georges Last name* MYKONIATIS +E-Mail* georges.mykoniatis@enac.fr +Town TOULOUSE Post code 31400 +Street AVENUE EDOUARD BELIN 7 +Website Please enter website +Position in org. Head of Business Development of ENACLAB +Department ENAC LAB +Phone +33619911108 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country France +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Aurelie PEAUD aurelie.peuaud@enac.fr +xxx xxxxxxxxx +Florence LAPORTERIE-DEJEAN florence.laporterie-dejean@enac.fr +33562259509 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 80 === +Administrative forms +Page 80 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Georges Mykoniatis Man France georges.mykonia +tis@enac.fr Category B Senior resea Leading 0000-0002-5550- +579X +Orcid ID +Dr Murat Bronz Man France murat.bronz@en +ac.fr +Category B Senior resea Leading 0000-0002-1098- +5240 +Orcid ID +Dr Rodolphe Fremond Man rodolphe.fremon +d@enac.fr +Category D First stage r Team member 0009-0008-1513- +9597 +Orcid ID +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 81 === +Administrative forms +Page 81 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 82 === +Administrative forms +Page 82 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +Elmira Fattahzadeh, G Mykoniatis. COOPERATIVE STRATEGIC DECONFLICTION FOR THE +HIGHER AIRSPACE USERS. 9th International Conference on Experiments/Process/System +Modeling/Simulation/Optimization, Jul 2021, Athens, Greece. ?hal-03320530? +Publication +A. Guitart, C. Demouge, D. Delahaye and E. Feron, "Multi Criteria Methodology for Aircraft +Trajectory Planning Algorithm Selection: A Survey," in IEEE Transactions on Intelligent +Transportation Systems, vol. 25, no. 10, pp. 12893-12911, Oct. 2024, doi: 10.1109/ +TITS.2024.3397331. +keywords: {Aircraft;Trajectory;Air traffic control;Airports;Surveys;Planning;Aircraft +navigation;Optimization;aircraft trajectory;selection methodology}, + +Publication +A. Guitart, D. Delahaye, F. M. Camino and E. Feron, "Collaborative Generation of Local Conflict +Free Trajectories With Weather Hazards Avoidance," in IEEE Transactions on Intelligent +Transportation Systems, vol. 24, no. 11, pp. 12831-12842, Nov. 2023, doi: 10.1109/ +TITS.2023.3289191. +keywords: {Aircraft;Meteorology;Trajectory;Air traffic control;Collaboration;Aircraft +navigation;Radar;Conflict;trajectory;collaborative approach;stormy areas}, + +Publication +R. Kallaka, J. Zhao, R. Fremond and A. Tsourdos, "Hierarchical Reinforcement Learning for +Multi-Objective UAV Routing Considering Operational Complexities," 2025 Integrated +Communications, Navigation and Surveillance Conference (ICNS), Brussels, Belgium, 2025, pp. +1-13, doi: 10.1109/ICNS65417.2025.10976917. keywords: +{Visualization;Navigation;Surveillance;Scalability;Reinforcement learning;Traffic +control;Strategic planning;Routing;Autonomous aerial vehicles;Optimization;Multi-Objective +Optimisa +Publication +Badea, C. A., Morfin Veytia, A., Vidosavljević, A., Ellerbroek, J., & Hoekstra, J. (2025). Very-low- +level U-space Conflict Detection and Resolution: Focused Developments, Analysis, and Future +Prospects. Journal of Open Aviation Science, 3(1). https://doi.org/10.59490/joas.2025.7921 +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO +European Concept of Higher Airspace Operations - SESAR +A concept of operations (ConOps) for higher airspace +https://higherairspace.eu/echo-project/ +ECHO 2 Towards the integration between ATM and Higher Altitude Operations - SESAR +https://higherairspace.eu/echo2-project/ +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 83 === +Administrative forms +Page 83 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 84 === +Administrative forms +Page 84 of 145 Last saved 16/09/2025 11:06 +PIC +999852236 +Legal name +LINKOPINGS UNIVERSITET +Short name: LIU + +Address +Town LINKOPING +Postcode 581 83 +Street CAMPUS VALLA +Country Sweden +Webpage www.liu.se +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... yes +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 17/01/2022 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... 28/10/2008 - no +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 85 === +Administrative forms +Page 85 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +Department 1 +Department name Communications and Transport Systems +Street ITN +Town Norrköping +Same as proposing organisation's address +not applicable +Country Sweden +Postcode 60374 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 86 === +Administrative forms +Page 86 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Valentin Last name* POLISHCHUK +E-Mail* valentin.polishchuk@liu.se +Town Norrköping Post code 60374 +Street ITN +Website http://tiny.cc/valatm +Position in org. Associate Professor +Department Communications and Transport Systems +Phone +46736569219 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country Sweden +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Billy JOSEFSSON billy.josefsson@liu.se +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 87 === +Administrative forms +Page 87 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 88 === +Administrative forms +Page 88 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 89 === +Administrative forms +Page 89 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication L. Sedov, V. Polishchuk, V. Bulusu. Ground risk vs. Efficiency in Urban Drone Operations. ATM +Seminar'21 +Publication L. Sedov, V. Polishchuk, T. Maury, M. Ulloa, D. Lykova. Qualitative and quantitative risk +assessment of urban airspace operations. SID'21 +Publication J. Nunez-Portillo, T. Polishchuk, V. Polishchuk, H. Hardell. Evaluating Impact of Non-nominal +Space Mission Event on Conventional Air Traffic. SID'23 +Publication V. Duchamp, L. Sedov, V. Polishchuk. Density-Adapting Layers towards PBN for UTM. ATM +Seminar'19 +Publication P. Vascik, J. Cho, V. Bulusu, V. Polishchuk. A Geometric Approach Towards Airspace Assessment +for Emerging Operations. Special issue of JAT on ATM Seminar'19 +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO2 EU HAO ConOps Phase 2 +UTMOK monitoring of VLL airspace capacity +PBN4UTM altitude references for U-space +TMAKPI development and evaluation of ATM KPIs +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +Quantitative Risk Analysis GUI for identifying risk areas subjected to debris https://undefiened.github.io/uav_risk/ +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 90 === +Administrative forms +Page 90 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 91 === +Administrative forms +Page 91 of 145 Last saved 16/09/2025 11:06 +PIC +999789768 +Legal name +C.I.R.A. CENTRO ITALIANO RICERCHE AEROSPAZIALI SCPA +Short name: CIRA + +Address +Town CAPUA +Postcode 81043 +Street VIA MAIORISE +Country Italy +Webpage www.cira.it +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 25/01/2022 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... 26/06/2008 - no +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 92 === +Administrative forms +Page 92 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +Department 1 +Department name Cross Cutting Research Directorate +Street VIA MAIORISE +Town CAPUA +Same as proposing organisation's address +not applicable +Country Italy +Postcode 81043 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 93 === +Administrative forms +Page 93 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Angela Last name* VOZELLA +E-Mail* a.vozella@cira.it +Town CAPUA Post code 81043 +Street VIA MAIORISE +Website www.cira.it +Position in org. Deputy Head of cross cutting research Directorate +Department cross cutting research Directorate +Phone 0390823623723 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country Italy +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Gabriella GIGANTE g.gigante@cira.it +xxx xxxxxxxxx +Francesco NEBULA f.nebula@cira.it +xxx xxxxxxxxx +Lidia TRAVASCIO l.travascio@cira.it +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 94 === +Administrative forms +Page 94 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr Francesco Nebula Man Italy f.nebula@cira.it Category B Senior resea Leading 0000-0002-3219- +7245 Orcid ID +Dr +Francesco Gargiulo +Man Italy +f.gargiulo@cira.it +Category B Senior resea Leading https:// +www.researchgat +e.net/profile/ +Francesco- +Gargiulo +Other ID +Dr Domenico Pascarella Man Italy D.pascarella@cira +.it +Category B Senior resea Team member 0000-0003-1332- +4234 +Orcid ID +Dr Angela Errico Woman Italy a.errico@cira.it Category B Senior resea Team member 0009-0009-3716- +4096 +Orcid ID +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 95 === +Administrative forms +Page 95 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 96 === +Administrative forms +Page 96 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +Gargiulo, F., Gigante, G., Escarré, O. B., & De Urrengoechea, T. (2024, July). SESAR GEESE Project +Validation with CIRA Multi-Agent Simulation Facility: Preliminary Study. In 2024 15th +International Conference on Information, Intelligence, Systems & Applications (IISA) (pp. 1-8). +IEEE. +Publication +Gigante, G., Palumbo, R., Pascarella, D., Pellegrini, A., Duca, G., Piera, M., & Ramos, J. (2021). +Support to Design for Air Traffic Management: An Approach with Agent-Based Modelling and +Evolutionary Search. International Journal of Aviation, Aeronautics, and Aerospace, 8(1). +Publication +Pellegrini, A., Di Sanzo, P., Bevilacqua, B., Duca, G., Pascarella, D., Palumbo, R., ... & Gigante, G. +(2020). Simulation-based evolutionary optimization of air traffic management. IEEE access, 8, +161551-161570. +Publication Errico A., Travascio L., Vozella A. (2023) Analysis of safety metrics supporting ATM risk models. +EASN 2023 Eng. Proc. 2025, 90(1), 43; https://doi.org/10.3390/engproc2025090043 +Publication +Errico A., Buzzo G., Travascio L., Vozella A. (2025) Safety considerations about hypersonic +vehicles integration into ATM/HA. Proc. of the 33rd European Safety and Reliability & 33th +Society for Risk Analysis Europe Conference doi: 10.3850/978-981-94-3281-3 +_ESREL-SRA-E2025-P0230-cd +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +JARVIS +SESAR IR project 2023-2026 +CIRA develops the air taffic controller digital assistant implementing the tactical conflict +resolution and supports the Security Assessment acording to SECRA methodology +ECHO2 +SESAR IR 2023-2026 +CIRA supports by Multi Agent Validation Facility the Fast time simulation to validate at TRL4 +the operational concept of integration in controlled airspace of HYpersonic/Supersonic and +Suborbital vehicles +CIRA supports as safety leader for solution 2 and solution 3 +GEESE +SESAR IR 2023-2026 +CIRA supports by Multi Agent Validation Facility the Fast time simulation to validate at TRL4 +the operational concept of WER operations in Continental Route +ATC-TBO +SESAR IR 2023-2026 +CIRA supports by Multi Agent Validation Facility the Fast time simulation to validate at TRL4 +the operational concept of an Air TRaffic Digital assistant implementing tactical conflict +resolution at higher levels of automation +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +Multi Agent Simulation Facility +It employs a multi-agent framework to establish a fast-time simulation environment capable +of evaluating performance metrics related not only to the aircraft, but also to the agents +representing human operators. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 97 === +Administrative forms +Page 97 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 98 === +Administrative forms +Page 98 of 145 Last saved 16/09/2025 11:06 +PIC +870545901 +Legal name +SCEYE SPAIN S.L. +Short name: Sceye Spain + +Address +Town Madrid +Postcode 28002 +Street Suero de Quiñones 34-36 +Country Spain +Webpage www.sceye.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 04/09/2025 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 99 === +Administrative forms +Page 99 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 100 === +Administrative forms +Page 100 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Alfredo Last name* SERRANO +E-Mail* as@sceye.com +Town Madrid Post code 28002 +Street Suero de Quiñones 34-36 +Website Please enter website +Position in org. Director of EMEA +Department SCEYE SPAIN S.L. +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Spain +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Stephanie LUONGO sl@sceye.com +xxx xxxxxxxxx +Leonard BOYGUES leonard.bouygues@gmail.com +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 101 === +Administrative forms +Page 101 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Leonard Bouygues Non-binary France lb@sceye.com Category A Top grade reLeading +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 102 === +Administrative forms +Page 102 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 103 === +Administrative forms +Page 103 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +Cooperative, Seamless, and Global Digital Skies for Higher Airspace (2025) - HAPS Alliance +Aviation Working Group +The Aerospace Industries Association proposes collaborative traffic management for higher +airspace to manage exponential growth of UAS, supersonic, HAPS, and commercial space +operations. This involves community-based rules (user-formed, CAA-approved) and operators +sharing intent via service providers for conflict identification and resolution, ensuring safe and +equitable global mnmg +Publication +Acceptable Levels of Risks for HAPS (2024) - HAPS Alliance Aviation Working Group +For High Altitude Platform Systems, the HAPS Alliance advocates third-party-centric risk +metrics, measuring risk to ground populations and manned aircraft. This replaces inadequate +platform-centric aviation metrics. The framework sets individual and collective risk limits, +aligned with existing infrastructure risks (e.g.UK ALARP), enabling operators to dynamically +self-manage risk by controlling operational factor +Publication +HAPS Operation Using Attended Autonomous Fleet Systems (2022) - HAPS Alliance Aviation +Working Group +A proposal for Collaborative Traffic Management for the Stratosphere (CTMS) for Attended +Autonomous Fleet Systems. This strategy enables safe, scalable HAPS operations through +automation for fleet management and M2M conflict resolution. It uses Community Based +Rules (CBR) and is an exception-centric approach, where human supervisory networks +manage system anomalies, not individual vehicles +Publication +Cooperative Operations In Higher Airspace - A Proposal (2022) - Aerospace Industries +Association (AIA), Emerging Technologies Commitee (ETC), Airspace Working Group +A national strategy for higher airspace operations is crucial due to expected exponential +growth and diverse commercial aircraft. Collaborative traffic management, based on +community-based rules, is proposed to address challenges from increasing demand and +varied vehicle profiles. This approach aims for safe and equitable global ops +Publication +Adaptive Risk-Based Conflict Detection for Stratospheric Flight Operations, Air Traffic Control +Associate (ATCA) - Leonard Bouygues, et al (2020) +This paper proposes an adaptive risk-based framework for conflict deconfliction in +stratospheric flight operations, using a victim-centric model (1st, 2nd, & 3rd party risk) to +address challenges posed by diverse vehicle performance and risk profiles. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Stratospheric Flights +Sceye platform is the most capable LTA HAPS currently in operation. Sceye has flown +successfully more than 20 missions into the stratosphere, demonstrating day-night endurance +using solar power and battery storage, while keeping station over the area of operation. +We have flown multiple payloads, including optical and hyperspectral imaging cameras, SAR, +4G telecommunications, infrasonic sensors, and aerosol particle spectrometers, validating the +platform’s ability to carry diverse instruments +NASA Demonstrated cooperative deconfliction capabilities with other HAPS operators through +NASA-led CE1.5 simulation +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 104 === +Administrative forms +Page 104 of 145 Last saved 16/09/2025 11:06 +Flight Simulator +Sceye designed and built a simulator to model the platform dynamics and trajectory. By using +global weather data, the simulator can predict accurately the platform's navigation path, +ascend and descent trajectories, and also model solar energy management system and +internal gas dynamics. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 105 === +Administrative forms +Page 105 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 106 === +Administrative forms +Page 106 of 145 Last saved 16/09/2025 11:06 +PIC +899059730 +Legal name +INTERNATIONAL FEDERATION OF AIR TRAFFIC CONTROLLERS ASSOCIATIONS +Short name: IFATCA + +Address +Town MONTREAL +Postcode H2Y 1P5 +Street 360 ST JACQUES SUITE 2002 +Country Canada +Webpage www.ifatca.org +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is unknown (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... unknown +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 107 === +Administrative forms +Page 107 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 108 === +Administrative forms +Page 108 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Marc Last name* BAUMGARTNER +E-Mail* sesar.coord@ifatca.org +Town MONTREAL Post code H2Y 1P5 +Street 360 ST JACQUES SUITE 2002 +Website www.ifatca.org +Position in org. SESAR CONTRIBUTION COORDINATOR +Department INTERNATIONAL FEDERATION OF AIR TRAFFIC CONTROLLERS ASSOCIATIONS +Phone +41792125769 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Canada +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Eugenio DIOTALEVI eugenio.diotalevi@ifatca.org +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 109 === +Administrative forms +Page 109 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Eugenio Diatolevi Man Italy eugenio.diatolevi +@ifatca.org Category D First stage r Leading +Mr Marc Baumgartner Man Switzerland sesar.coord@ifatc +a.org +Category C Recognised Team member 0000-0003-4443- +329X +Orcid ID +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 110 === +Administrative forms +Page 110 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 111 === +Administrative forms +Page 111 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication IFATCA study on High Altitude Operations. Working Paper 93 2023 leading to IFATCA Policy on +HAO +Publication IFATCA Technical and Professional Manual WC 10.2.5 AUTOMATION / HUMAN FACTORS +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 112 === +Administrative forms +Page 112 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 113 === +Administrative forms +Page 113 of 145 Last saved 16/09/2025 11:06 +PIC +873172467 +Legal name +OpenUTM Ltd. +Short name: OpenUTM + +Address +Town Dublin +Postcode D04 T4A6 +Street Mespil Business Center, Mespil House, Sussex Ho +Country Ireland +Webpage https://openutm.net +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 14/02/2025 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 114 === +Administrative forms +Page 114 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 115 === +Administrative forms +Page 115 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Dr Hrishikesh Last name* Ballal +E-Mail* hb@openutm.net +Town Dublin Post code D04 T4A6 +Street Mespil Business Center, Mespil House, Sussex House +Website Please enter website +Position in org. Managing Director +Department OpenUTM Ltd. +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country Ireland +Same as organisation +name +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 116 === +Administrative forms +Page 116 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr Hrishikesh Ballal Man Ireland hb@openutm.net Category B Senior resea Leading +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 117 === +Administrative forms +Page 117 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 118 === +Administrative forms +Page 118 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Software + OpenUTM is an open-source, standards-compliant stack for Unmanned Traffic Management +(UTM), designed to help organizations build and deploy regulation-ready systems for +managing drone and unmanned aircraft traffic. Its architecture is built around two core +components: Flight Blender, a backend service handling Remote ID, air traffic data, +geofencing, and strategic deconfliction, and Flight Spotlight, a frontend interface providing +maps, timelines, flight noticeboards, and 3D visualizations. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 119 === +Administrative forms +Page 119 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 120 === +Administrative forms +Page 120 of 145 Last saved 16/09/2025 11:06 +PIC +999961555 +Legal name +THALES LAS FRANCE SAS +Short name: THALES LAS FRANCE SAS + +Address +Town ELANCOURT +Postcode 78990 +Street AVENUE GAY LUSSAC 2 +Country France +Webpage www.thalesgroup.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 22/11/2023 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 121 === +Administrative forms +Page 121 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Department 2 +Department name IAS Business Line +Street 1 avenue Carnot +Town Massy +Same as proposing organisation's address +not applicable +Country France +Postcode 91300 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 122 === +Administrative forms +Page 122 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Claire Last name* Cadet +E-Mail* claire.cadet@thalesgroup.com +Town ELANCOURT Post code 78990 +Street AVENUE GAY LUSSAC 2 +Website Please enter website +Position in org. Sales manager +Department THALES LAS FRANCE SAS +Phone +33 6 63 32 54 09 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mrs +Same as proposing organisation's address +Country France +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Jean-Yves Schneider jean-yves.schneider@thalesgroup.com +33 6 86 43 67 84 +Alix De Saint Meloir alix.de-saint-meloir@thalesgroup.com +33 6 59 42 51 06 +Marion ANDRE TELLIEZ marion.telliez@thalesgroup.com +33 7 64 57 67 62 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 123 === +Administrative forms +Page 123 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 124 === +Administrative forms +Page 124 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 125 === +Administrative forms +Page 125 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 126 === +Administrative forms +Page 126 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 127 === +Administrative forms +Page 127 of 145 Last saved 16/09/2025 11:06 +PIC +894907645 +Legal name +ANRA TECHNOLOGIES UK LTD +Short name: ANRA TECHNOLOGIES UK LTD + +Address +Town CRANFIELD, BEDS +Postcode MK43 0DG +Street 114 HIGH STREET +Country United Kingdom +Webpage www.flyanra.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 09/09/2025 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 128 === +Administrative forms +Page 128 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 129 === +Administrative forms +Page 129 of 145 Last saved 16/09/2025 11:06 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Ajay Last name* Modha +E-Mail* amodha@flyanra.com +Town CRANFIELD, BEDS Post code MK43 0DG +Street 114 HIGH STREET +Website Please enter website +Position in org. Director +Department ANRA TECHNOLOGIES UK LTD +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country United Kingdom +Same as organisation +name +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 130 === +Administrative forms +Page 130 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr Ajay Modha Man United Kingdom amodha@flyanra. +com Category A Top grade reLeading +Mr David Murphy Man United Kingdom amodha@flyanra. +com +Category B Senior resea Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 131 === +Administrative forms +Page 131 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 132 === +Administrative forms +Page 132 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Software +ANRA NOON: ANRA is an EASA certified U-space Service Provider, and ANRA NOON is an +airspace management software platform for uncrewed aircraft. U-space services support the +management of uncrewed aircraft operations in U-space airspace. +Software ANRA AAM Traffic Management tool: airspace management for Advanced Air Mobility aircraft. +Software ANRA's SIM tool: Provides the engine to drive a Digital Twin experience for virtual drone +operations +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Corus five (2025-2028) +The project aims to extend and mature the SESAR U-space Concept of Operations for the +integration of drones into controlled airspace. Building on the success of CORUS and CORUS +XUAM, it is expanding the scope to cover areas currently not included such as above very low +level airspace and near controlled airports. The updated ConOps will include functionalities +and U3/U4 services supporting U-space integration, and propose SESAR Solutions, flight rules, +and airspace structure elements. +Managing Shared Airspace (2025 - +2026) +The project aims to implement and validate a UK Concept of Operations for UTM supported +UAS operations. It seeks to operationalise an industry-driven approach for UTM services that +support multiple overlapping Beyond Visual Line of Sight (BVLOS) operations within shared +airspace. +SAFIR-Ready (2023-2026) +The SAFIR-Ready project aims to demonstrate airspace automation to TRL 7 for drone-based +emergency medical and critical infrastructure responses. ANRA contributed its U-space +software together with the development of custom workflows and services to connect +networked operations centres with the U-space ecosystem. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 133 === +Administrative forms +Page 133 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 134 === +Administrative forms +Page 134 of 145 Last saved 16/09/2025 11:06 +PIC +869703941 +Legal name +HAPS Alliance +Short name: HAPS Alliance + +Address +Town Wakefield +Postcode 01880 +Street 401 Edgewater Place, Suite 600 +Country United States +Webpage www.hapsalliance.org +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 30/08/2025 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 135 === +Administrative forms +Page 135 of 145 Last saved 16/09/2025 11:06 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 136 === +Administrative forms +Page 136 of 145 Last saved 16/09/2025 11:06 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 137 === +Administrative forms +Page 137 of 145 Last saved 16/09/2025 11:06 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 138 === +Administrative forms +Page 138 of 145 Last saved 16/09/2025 11:06 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +Cooperative, Seamless, and Global Digital Skies for Higher Airspace : The purpose of the paper +is to assist the aviation and aerospace global communities in understanding an industry +perspective and vision for a global harmonized, cross-border, and integrated Higher Airspace +Operations Traffic Management, which supports the seamless integration of highly +automated operations. +Publication +HAPS Certification Pathways: The purpose of this document is to identify the key challenges +faced by the High Altitude Platform System (HAPS) community in getting regulatory approval +to start commercial operations and recommended actions that the HAPS Alliance can take to +address these challenges. Operational challenges are covered only from the perspective of the +potential impact they have on air vehicle performance. +Publication +Acceptable Levels of Risk for HAPS : This paper discusses setting acceptable levels of risk for +High Altitude Platform System (HAPS). It discusses the safety metrics traditionally used in +aviation are not adequate to establish target levels of safety for HAPS. Then it proposes to set +acceptable levels of risk to be consistent with the risk already accepted by the exposed parties. +Then it proposes a framework by which an operator self-manages the collective risk it +generates. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 139 === +Administrative forms +Page 139 of 145 Last saved 16/09/2025 11:06 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 140 === +Administrative forms +Page 140 of 145 +Proposal ID 101288039 +Acronym SPARTA +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 11:06 +3 - Budget +No Name of Beneficiary Country Role Requested grant +amount + Income generated +by the action +Financial +contributions + Own resources Total estimated +income +1 Eurocontrol - European Organisation For The Safety Of Air +Navigation BE Coordinator 0.00 0 0 3 702 617 3 702 617.00 +2 Dfs Deutsche Flugsicherung Gmbh DE Partner 81 130.00 0 34 770 0 115 900.00 +3 Deutsches Zentrum Fur Luft - Und Raumfahrt Ev DE Partner 908 224.63 0 0 389 239 1 297 463.63 +4 Luftfartsverket SE Partner 315 285.78 0 0 135 123 450 408.78 +5 Enav Spa IT Partner 176 917.31 0 75 822 0 252 739.31 +6 Nats (En Route) Public Limited Company UK Partner 217 059.41 0 93 025 0 310 084.41 +7 Enaire ES Partner 106 750.00 0 45 750 0 152 500.00 +8 Europe Space Centre Gmbh DE Partner 55 835.85 0 0 23 930 79 765.85 +9 Ente Nazionale Per L'aviazione Civile - Enac Italian Civil Aviation +Authority IT Partner 242 383.75 0 103 879 0 346 262.75 +10 Skynav Europe BE Partner 842 928.98 0 0 361 255 1 204 183.98 +11 Ecole Nationale De L Aviation Civile FR Partner 162 470.00 0 0 69 630 232 100.00 +12 Linkopings Universitet SE Partner 73 237.50 0 0 31 387 104 624.50 +13 C.i.r.a. Centro Italiano Ricerche Aerospaziali Scpa IT Partner 279 226.78 0 0 119 669 398 895.78 +14 Sceye Spain S.l. ES Partner 190 400.00 0 0 81 600 272 000.00 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 141 === +Administrative forms +Page 141 of 145 +Proposal ID 101288039 +Acronym SPARTA +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 11:06 +15 International Federation Of Air Traffic Controllers Associations CA Partner 116 812.50 0 0 50 063 166 875.50 +16 Openutm Ltd. IE Partner 59 745.00 0 0 25 605 85 350.00 +17 Thales Las France Sas FR Partner 114 625.00 0 0 49 125 163 750.00 +18 Anra Technologies Uk Ltd UK Partner 168 317.63 0 0 72 136 240 453.63 +19 Haps Alliance US Associated 0.00 0 0 0 0.00 +Total 4 111 350.12 353 246 5 111 379 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 142 === +Administrative forms +Page 142 of 145 +Proposal ID 101288039 +Acronym SPARTA +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 11:06 +4 - Ethics & security +Ethics Issues Table +1. Human Embryonic Stem Cells and Human Embryos Page +Does this activity involve Human Embryonic Stem Cells (hESCs)? Yes No +Does this activity involve the use of human embryos? Yes No +2. Humans Page +Does this activity involve human participants? Yes No +Does this activity involve interventions (physical also including imaging technology, +behavioural treatments, etc.) on the study participants? Yes No +Does this activity involve conducting a clinical study as defined by the Clinical Trial Regulation +(EU 536/2014)? (using pharmaceuticals, biologicals, radiopharmaceuticals, or advanced +therapy medicinal products) +Yes No +3. Human Cells / Tissues (not covered by section 1) Page +Does this activity involve the use of human cells or tissues? Yes No +4. Personal Data Page +Does this activity involve processing of personal data? Yes No +Does this activity involve further processing of previously collected personal data (including +use of preexisting data sets or sources, merging existing data sets)? +Yes No +Is it planned to export personal data from the EU to non-EU countries? Yes No +Is it planned to import personal data from non-EU countries into the EU or from a non-EU +country to another non-EU country? +Yes No +Does this activity involve the processing of personal data related to criminal convictions or +offences? +Yes No +5. Animals Page +Does this activity involve animals? Yes No +6. Non-EU Countries Page +Will some of the activities be carried out in non-EU countries? Yes No +In case non-EU countries are involved, do the activities undertaken in these countries raise +potential ethics issues? Yes No +It is planned to use local resources (e.g. animal and/or human tissue samples, genetic material, +live animals, human remains, materials of historical value, endangered fauna or flora samples, +etc.)? +Yes No +Is it planned to import any material (other than data) from non-EU countries into the EU or +from a non-EU country to another non-EU country? For data imports, see section 4. Yes No +Is it planned to export any material (other than data) from the EU to non-EU countries? For +data exports, see section 4. Yes No +Does this activity involve low and/or lower middle income countries, (if yes, detail the benefit- +sharing actions planned in the self-assessment) Yes No +Could the situation in the country put the individuals taking part in the activity at risk? Yes No +7. Environment, Health and Safety Page +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 143 === +Administrative forms +Page 143 of 145 +Proposal ID 101288039 +Acronym SPARTA +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 11:06 +Does this activity involve the use of substances or processes that may cause harm to the +environment, to animals or plants.(during the implementation of the activity or further to the +use of the results, as a possible impact) ? +Yes No +Does this activity deal with endangered fauna and/or flora / protected areas? Yes No +Does this activity involve the use of substances or processes that may cause harm to humans, +including those performing the activity.(during the implementation of the activity or further +to the use of the results, as a possible impact) ? +Yes No +8. Artificial Intelligence Page +Does this activity involve the development, deployment and/or use of Artificial Intelligence- +based systems? Yes No +9. Other Ethics Issues Page +Are there any other ethics issues that should be taken into consideration? Yes No +I confirm that I have taken into account all ethics issues above and that, if any ethics issues apply, I will complete the +ethics self-assessment as described in the guidelines How to Complete your Ethics Self-Assessment +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 144 === +Administrative forms +Page 144 of 145 +Proposal ID 101288039 +Acronym SPARTA +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 11:06 +Ethics Self-Assessment +Ethical dimension of the objectives, methodology and likely impact +Explain in detail the identified issues in relation to: + - objectives of the activities (e.g. study of vulnerable populations, etc.) + - methodology (e.g. clinical trials, involvement of children, protection of personal data, etc.) + - the potential impact of the activities (e.g. environmental damage, stigmatisation of particular social +groups, political or financial adverse consequences, misuse, etc.) +Remaining characters 5000 +Compliance with ethical principles and relevant legislations +Describe how the issue(s) identified in the ethics issues table above will be addressed in order to adhere to the ethical principles and +what will be done to ensure that the activities are compliant with the EU/national legal and ethical requirements of the country or +countries where the tasks are to be carried out. It is reminded that for activities performed in a non-EU countries, they should also be +allowed in at least one EU Member State. +Remaining characters 5000 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 145 === +Administrative forms +Page 145 of 145 +Proposal ID 101288039 +Acronym SPARTA +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 11:06 +Security issues table +1. EU Classified Information (EUCI)2 Page +Does this activity involve information and/or materials requiring protection against +unauthorised disclosure (EUCI)? Yes No +Does this activity involve non-EU countries which need to have access to EUCI? Yes No +2. Misuse Page +Does this activity have the potential for misuse of results? Yes No +3. Other Security Issues Page +Does this activity involve information and/or materials subject to national security restrictions? +If yes, please specify: (Maximum number of characters allowed: 1000) +Yes No +Are there any other security issues that should be taken into consideration? +If yes, please specify: (Maximum number of characters allowed: 1000) +Yes No +Security self-assessment +Please specify: (Maximum number of characters allowed: 5000) +Remaining characters 5000 +2According to the Commission Decision (EU, Euratom) 2015/444 of 13 March 2015 on the security rules for protecting EU classified information, “European Union +classified information (EUCI) means any information or material designated by an EU security classification, the unauthorised disclosure of which could cause varying +degrees of prejudice to the interests of the European Union or of one or more of the Member States”. +3Classified background information is information that is already classified by a country and/or international organisation and/or the EU and is going to be used by the +project. In this case, the project must have in advance the authorisation from the originator of the classified information, which is the entity (EU institution, EU Member +State, third state or international organisation) under whose authority the classified information has been generated. +4EU classified foreground information is information (documents/deliverables/materials) planned to be generated by the project and that needs to be protected from +unauthorised disclosure. The originator of the EUCI generated by the project is the European Commission. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 10:33:07 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 146 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 1 of 44 +Proposal template Part B: technical description +SPARTA — SPACE-ATM REAL-TIME AWARENESS +[This document is tagged. Do not delete the tags; they are needed for processing.] #@APP-FORM-HERIAIA@# +List of participants +Participant No. * Participant organisation name Country +1 (Coordinator) EUROCONTROL Belgium (BE) +2 DFS Detusche Flugsicherung GmbH Germany (DE) +3 DEUTSCHES ZENTRUM FUR LUFT - UND +RAUMFAHRT EV +Germany (DE) +4 SWEDISH CIVIL AVIATION ADMINISTRATION Sweden (SE) +5 ENAV Italy (IT) +6 NATS United Kingdom (UK) +7 ENAIRE Spain (ES) +8 Europe Space Centre GmbH / SaxaVord Germany (DE) +9 ENAC IT Italy (IT) +10 SkyNav Europe Belgium (BE) +11 ECOLE NATIONALE DE L AVIATION CIVILE + +France (FR) +12 LINKOPINGS UNIVERSITET Sweden (SE) +13 C.I.R.A. CENTRO ITALIANO RICERCHE +AEROSPAZIALI SCPA +Italy (IT) +14 SCEYE SPAIN Spain (ES) +15 INTERNATIONAL FEDERATION OF AIR TRAFFIC +CONTROLLERS ASSOCIATIONS +Canada (CA) +16 OpenUTM Ireland (IE) +17 THALES LAS France (FR) +18 ANRA TECHNOLOGIES UK LTD United Kingdom +19 HAPS Alliance United States + + + +=== PAGE 147 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 2 of 44 + +1. Excellence#@REL-EVA-RE@# +1.1 Objectives and ambition #@PRJ-OBJ-PO@# +Space Transport Operations (STO) are rapidly becoming a strategic capability for Europe. Regular launch and re- +entry activities underpin Europe’s autonomy in space access, sustain critical services such as navigation, +communications and Earth observation, and support scientific and defence programmes. Emerging suborbital +transport and high-altitude operations (HAO), including long-endurance HAPS, offer further opportunities for +connectivity, mobility, and resilience. Together these developments are reshaping the European airspace +environment. The ability to manage STO safely and efficiently within the ATM system is therefore not only a +technical necessity but a matter of economic competitiveness, social benefit, and strategic security for the European +Union. +The objective of SPARTA is to provide the European ATM system with the procedures, tools, and data services +required to integrate STO safely and efficiently into the network. This includes ensuring that mission intent, +trajectories, hazard areas, and dynamic updates can be processed consistently by the Network Manager (NM), +ANSPs and State authorities, while minimising disruption to other airspace users. The project will deliver validated +concepts and specifications at TRL 6, ready to support future regulatory and industrial uptake, and will establish +pathways towards standardisation and compliance material to enable deployment. A further objective is to ensure +that these capabilities are interoperable at the global level and adaptable to new classes of operations, so that +Europe maintains both autonomy and alignment in international spaceflight integration. +To achieve these objectives, SPARTA is structured into two SESAR Solutions that mirror the operational lifecycle +of a mission: Solution 1 for strategic and pre-tactical planning, and Solution 2 for dynamic real-time operations. +Standardised, digital data exchange is embedded in both, ensuring that mission intent, trajectory information, and +hazard updates are managed consistently across all stakeholders. + +Solution 1 – Flexible and Scalable Mission Planning +Planning is the foundation for safe and efficient integration of STO into the European network. Solution 1 +addresses the strategic and pre-tactical phases, where mission intent must be captured, trajectories assessed, hazard +areas defined, and airspace reservations agreed well in advance of operations. The aim is to give the Network +Manager, ANSPs and State authorities a structured framework to evaluate impacts, negotiate adaptations, and +publish decisions, while providing operators with clear and predictable processes. Enhanced digital interfaces and +harmonised data services ensure that planning information can be exchanged consistently across stakeholders and +integrated seamlessly with ATM systems. Therefore Solution 1 aims to: +a) Develop digital mission planning interfaces (API) for STO, enabling standardised, scalable submission of +mission intent, trajectories and hazard areas, with the capacity to accept HAPS submissions where these +interact with STO or the network. +b) Define planning specifications that adapt concepts such as FF-ICE to support structured submission of STO +missions, including negotiation of launch and re-entry trajectories around predicted hazard areas, while +enabling HAPS operators to represent 4D Operating Zones (4DOZ) or swarms in a form that NM and +ANSPs can assess for network impact. +c) Introduce 4DOZ designation, visualisation and approval workflows that support hazard area management +for launches and re-entries, and provide a consistent framework for accommodating HAPS where +operations overlap with STO. +d) Establish network-wide Collaborative Decision-Making (CDM) processes to support strategic and pre- +tactical coordination of STO missions, ensuring timely interaction between operators, ANSPs, States and +NM, with provisions to include HAPS or other high-altitude users where relevant. + +=== PAGE 148 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 3 of 44 +e) Implement machine-to-machine data exchange channels for mission planning, trajectory updates and +hazard area definition, using harmonised data models compatible with SWIM, ICAO and CCSDS +(Consultative Committee for Space Data Systems) standards where applicable. +f) Automate publication of planned and revised hazard geometries through SWIM and digital NOTAM +services, ensuring timely distribution to NM and ANSP systems for launches and re-entries, and supporting +affected HAPS where interactions occur. + +Solution 2 – Dynamic Real-Time Operations +The execution of launches and re-entries places unique demands on ATM, as hazard areas can change rapidly, +anomalies may arise without warning, and airspace must be released quickly once it is no longer required. Solution +2 develops the real-time coordination capability needed to manage these events at the level of NM, ATFM units +and ATC. By integrating live mission-intent and telemetry data, environmental forecasts and contingency tools into +the operational picture, the solution supports continuous situational awareness, rapid decision-making and +coordinated response across multiple FIRs. Automation support and secure data exchange ensure that updates can +be propagated instantly to all affected stakeholders, minimising disruption to the network. Solution 2 aims to: +a) Integrate live STO mission-intent and telemetry data, including launch and re-entry profiles, into the NM +situational display and mirror this to authorised ANSP and operator portals, with the ability to ingest HAPS +status where operations overlap with STO corridors. +b) Incorporate space-weather and upper-atmosphere forecasts into real-time tools to support management of +launches and re-entries, and share relevant forecasts with HAPS operators when their missions are +conducted in affected airspace. +c) Maintain continuously updated 4-D hazard volumes for STO, including adaptive debris-footprint modelling +for re-entries and anomaly events, and provide processes for rapid coordination where these volumes +intersect with HAPS 4DOZ or other high-altitude activities. +d) Enhance contingency-management tools and associated ATC procedures to detect aircraft at risk from STO +events, coordinate mitigation across affected FIRs, and maintain situational awareness for HAPS platforms +if operating within or near impacted areas. +e) Establish a secure, digital data-exchange framework (API) for dynamic, cross-border coordination of STO, +enabling NM, ANSPs and operators to share time-critical updates, while ensuring interoperability with +HAPS where necessary. +f) Enable dynamic release of unused reserved airspace during STO missions and automate the update and +publication of revised hazard geometries via SWIM and digital NOTAM, ensuring that other users, +including HAPS when relevant, are promptly notified so that airspace returns to network use as early as +possible. + +While the principal focus of SPARTA is the management of Space Transport Operations, the project recognises that +such operations cannot be treated in isolation. To manage STO safely and sustainably, the higher airspace must be +treated as a continuous and finite resource. This requires that HAPS and other HAO users are considered as part of +the overall traffic mix, so that their trajectories, operating zones and potential conflicts are accounted for in planning +and execution. By including these actors in the solutions, SPARTA takes a holistic and comprehensive approach that +ensures Europe’s ATM system can integrate STO while maintaining safe, efficient and equitable access to the higher +airspace environment. + + +=== PAGE 149 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 4 of 44 +Ambition +Today, space launches and re-entries in Europe are managed largely through national procedures, ad-hoc +NOTAMs, and manual coordination, leading to fragmented approaches, inefficient use of airspace, and uncertainty +for operators. By contrast, SPARTA will deliver a harmonised European framework that integrates STO directly +into the Digital European Sky, supported by automation, validated processes, and digital data exchange. The +project will demonstrate how space operations can be planned and managed in the same systematic way as +conventional traffic, reducing disruption to the network while maintaining safety and resilience. +The ambition also extends to the treatment of higher airspace as a managed but finite resource. Rather than viewing +HAO and HAPS as outliers, SPARTA incorporates them into its solutions to ensure that the airspace above +controlled flight levels is used equitably and efficiently. By providing TRL 6 specifications, validation results, and +clear pathways for standardisation and regulation, SPARTA positions Europe to move from fragmented national +practices towards a coherent, globally interoperable system for integrating space transport into ATM. +SPARTA builds directly on the results of ECHO and ECHO2, which have already demonstrated the feasibility of +managing space launches in the European network and are expected to deliver an initial package of procedures and +tools at TRL 6. While ECHO2 provides a solid baseline, its scope is limited to launch and re-entry operations. +SPARTA widens this scope to include strategic and pre-tactical planning, collaborative decision-making (CDM) +processes, and the interaction with higher airspace users such as HAO and HAPS. This expanded approach reflects +the operational reality that space transport cannot be managed in isolation but must be integrated with all activities +in the higher airspace environment. +Because SPARTA extends the domain beyond the narrower focus of ECHO2, the entry TRL for the project is +necessarily lower to around TRL 2 for some parts. New elements such as planning frameworks, CDM processes, +and the inclusion of HAO/HAPS have not yet been validated in an operational context. The ambition of SPARTA +is therefore to bring this broader, comprehensive solution back up to TRL 6, producing a complete set of validated +deliverables that are ready for standardisation, regulation and eventual deployment. This ensures continuity with +past work while providing the step change needed for Europe to achieve a coherent, end-to-end framework for +integrating space transport into the Digital European Sky. +#§PRJ-OBJ-PO§# +1.2 Methodology #@CON-MET-CM@# #@COM-PLE-CP@# +Overall methodology approach +SPARTA’s methodology is built around the operational lifecycle of Space Transport Operations (STO), covering +the phases from strategic and pre-tactical planning through to real-time mission execution and post-operations +evaluation. By organising the work in this way, the project ensures that each stage of the lifecycle is addressed with +appropriate methods, tools, and validation activities, while maintaining alignment so that all outputs contribute to a +coherent, end-to-end capability for European airspace management. +The project is structured into two SESAR Solutions that reflect this lifecycle. The first addresses flexible and +scalable mission planning, enabling the submission, assessment, and approval of STO missions with minimised +impact on the wider network. The second covers dynamic real-time operations, ensuring that launches and re- +entries can be monitored, hazard areas updated, contingencies managed, and unused airspace released quickly. +Digital data exchange is a cross-cutting enabler embedded in both solutions, providing standardised channels for +mission intent, hazard areas, and updates to flow between operators, ANSPs, States, and the Network Manager. +Development within each Solution follows an iterative cycle of concept definition, technical specification, +prototype development, integration, and validation. Concepts and requirements will be refined with operational +stakeholders, drawing on lessons from the ECHO2 project. Specifications will be captured using SESAR artefacts +such as OSED, TS/IRS, and SPR-INTEROP, with validation activities planned and reported through VALP and +VALR. Prototypes will be developed early against agreed interface definitions, ensuring compatibility with SWIM, +FF-ICE, and relevant ICAO/EUROCAE standards, allowing integration and interoperability testing to begin at an +early stage. Validation will then progress from simulations and controlled testing to shadow-mode trials in + +=== PAGE 150 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 5 of 44 +representative operational environments. +The ambition of SPARTA lies in its scope. ECHO2 is expected to deliver TRL 6 outputs for a narrowly defined set +of launch and re-entry processes. SPARTA widens this scope to include planning frameworks, collaborative +decision-making, digital data exchange, and the treatment of higher airspace as a finite and managed resource, +including the interaction with HAO and HAPS. Because of this expanded domain, the entry point for SPARTA is +TRL 3–4, but the project aims to bring this comprehensive solution back up to TRL 6 by the end of its lifecycle. +This ambition demonstrates continuity with earlier work while advancing towards a fully validated, interoperable +framework for integrating STO into the Digital European Sky. +Outputs will be prepared in model-based and textual formats consistent with SESAR architecture processes, +ensuring traceability into the European ATM Master Plan. They will be suitable for submission to ICAO, +EUROCAE, and the EUR STO Project Team, providing a direct pathway into standardisation, regulation, and +industrialisation. By grounding the methodology in the operational lifecycle and maintaining a strong focus on +integration from the start, SPARTA will deliver deployable, consistent, and interoperable operational solutions that +meet the performance and safety requirements of the future European airspace environment. + +Methodology for Solution 1 – Flexible and Scalable Mission Planning +The planning phase is where the safe integration of STO into the European network is determined. Solution 1 +addresses the strategic and pre-tactical phases, ensuring that missions can be submitted, analysed, coordinated, and +approved with procedures that are both standardised and scalable. +The first step is the development of operational scenarios that reflect the different mission profiles and airspace +impacts to be managed. These scenarios will describe roles and responsibilities for operators, ANSPs, NM, and +States, and will capture the interactions needed to agree airspace reservations or 4D Operating Zones (4DOZ). +Special attention will be given to the negotiation of launch and re-entry hazard areas, and to the representation of +HAPS swarms or long-duration loitering missions that may overlap with STO corridors. These scenarios will be +consolidated in the OSED, which serves as the operational baseline for all subsequent requirements. +Building on this, the project will prepare a Functional Requirements Document (FRD) to support traceability of +operational needs into system behaviour. Although not part of the mandatory TRL 6 package, the FRD will help +maintain consistency across the specifications. The TS/IRS will then define the functional behaviour and logical +interface requirements, setting out how mission planning data is exchanged between operators, NM, ANSP +systems, and other stakeholders. Interfaces will be described in terms of message types, timing, and services, +leaving implementation open for later industrialisation. Harmonisation with SWIM services, FF-ICE concepts, and +CCSDS/ICAO data models will be ensured so that submissions and updates are machine-readable and interoperable +across borders. +The SPR-INTEROP will consolidate safety, performance, and interoperability requirements derived from the +OSED and TS/IRS. This will include transversal assessments such as safety assurance and human performance, and +a performance assessment report demonstrating how key performance areas and indicators are supported. The +methodology requires these assessments to be explicit and traceable into the validation results and cost-benefit +analysis. +Development will be carried out in an iterative cycle, with draft versions of OSED, TS/IRS, and SPR-INTEROP +prepared well ahead of formal reviews. This enables early internal reviews and technical workshops with +stakeholders, including NM, ANSPs, and regulators, reducing the risk of late-stage changes. Prototypes of mission +planning interfaces and data exchange services will be developed against these draft specifications, allowing +integration testing in controlled environments from the first reporting period. +Validation activities are central to Solution 1. The Validation Plan (VALP) will define objectives, scenarios, KPIs, +data sources, and facilities to be used. Planned exercises include negotiation of 4DOZ volumes between operators +and NM, assessment of alternative trajectories around predicted re-entry hazard areas, and submission of HAPS + +=== PAGE 151 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 6 of 44 +swarms using adapted FF-ICE formats. These exercises will be executed using shadow/test platforms, with results +captured in the Validation Report (VALR). Validation evidence will feed back into updates of the OSED, TS/IRS, +and SPR-INTEROP, ensuring that the specifications evolve in line with operational reality. +The TRL progression for Solution 1 begins from TRL 3–4, as only parts of the planning process were addressed in +ECHO2. By the end of the first reporting period, SPARTA will have baseline specifications and initial validation +evidence. By the project conclusion, the complete TRL 6 package will be delivered, including OSED, TS/IRS, +SPR-INTEROP, VALP/VALR, CBA, STAND, REG, and the Contextual Note (CN). + +This methodology ensures that planning for STO is not treated in isolation but as part of a wider managed use of +higher airspace. The solution is designed to ensure launches and re-entries can be accommodated with predictable +and transparent processes, while maintaining flexibility to account for HAPS and other high-altitude users where +interactions occur. + +Methodology for Solution 2 – Dynamic Real-Time Operations +The execution phase of STO presents the most acute challenges for the ATM system. Once a launch or re-entry +begins, airspace hazards evolve rapidly, contingencies must be managed in real time, and unused volumes must be +released as soon as possible to restore network capacity. Solution 2 develops the procedures, tools, and data +services that allow NM, ANSPs, and States to maintain situational awareness, coordinate dynamically, and respond +effectively to both nominal and off-nominal events. +Work will begin with the development of operational scenarios describing the real-time coordination processes. +These will capture the roles of launch operators, NM, ANSP tactical units, and State authorities during mission +execution, including the timing of hazard updates, communications channels, and contingency triggers. Special +attention will be given to scenarios involving anomalies such as trajectory deviation, debris events, or uncontrolled +re-entry, and to the interaction between STO hazard volumes and concurrent HAPS operations in 4DOZ. These +scenarios will be recorded in the OSED, which provides the operational baseline for safety, performance, and +interoperability requirements. +A Functional Requirements Document (FRD) will be prepared to ensure traceability between operational needs and +system functions, even though it is not part of the formal TRL 6 set. The TS/IRS will specify the functional +behaviour and logical interfaces for real-time coordination, defining how mission telemetry, hazard updates, and +contingency alerts are exchanged between operator systems, NM, ANSP tactical tools, and affected users. This will +cover message content, update rates, and service discovery, ensuring alignment with SWIM services, ICAO data +models (FIXM, AIXM, iWXXM), and CCSDS formats where relevant. The emphasis will be on machine-to- +machine integration that allows near-instantaneous propagation of updates across FIR boundaries. +Safety, performance, and interoperability requirements will be consolidated in the SPR-INTEROP, ensuring that +real-time processes are justified against defined key performance areas (safety, capacity, environment, cost +efficiency) and that transversal assessments such as safety assurance and human performance are included. This +ensures that tools and procedures are not only technically sound but also operationally acceptable for controllers +and managers. +Development will follow an iterative cycle, with early drafts of OSED, TS/IRS, and SPR-INTEROP ready for the +Technical Project Review. Prototypes of real-time coordination interfaces, situational displays, and contingency +tools will be implemented against these draft specifications, enabling early integration testing in shadow/test +platforms that replicate NMOC functions. Live operational systems will not be used, in order to avoid procedural, +security, and stability risks, but the shadow environments will be sufficient to demonstrate representative data +flows and coordination. +Validation activities will be defined in the VALP, with scenarios covering nominal launches, controlled re-entries, +uncontrolled re-entries, debris events, and anomalies requiring rapid hazard-area adjustments. Additional scenarios + +=== PAGE 152 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 7 of 44 +will explore the release of reserved airspace during missions, and the coordination between multiple HAPS in a +4DOZ and a concurrent STO launch corridor. Execution will produce the VALR, consolidating results, KPI +performance, and recommendations. Feedback loops will allow updates to the OSED, TS/IRS, and SPR-INTEROP +as validation evidence accumulates. +TRL progression for Solution 2 starts from TRL 4, as ECHO2 provides a foundation for hazard-area coordination +but does not cover the full scope of dynamic real-time operations. By the end of the first reporting period, SPARTA +will have baseline specifications and initial validation scenarios. By project end, the complete TRL 6 package will +be delivered, including OSED, TS/IRS, SPR-INTEROP, VALR, CBA, STAND, REG, and the Contextual Note +(CN). +This methodology ensures that real-time management of STO is underpinned by automation and secure data +exchange, reducing controller workload and minimising disruption to other traffic. By embedding HAPS and other +high-altitude users into the scenarios where they overlap with STO, the solution reflects the reality of a finite higher +airspace environment and provides the tools to manage it as part of the wider European ATM system. + +Cross-Cutting Enablers +Although the two Solutions address different phases of the lifecycle, they are connected through common enablers +that ensure coherence, interoperability, and maturity progression. +Digital data exchange is the primary cross-cutting element. Mission intent, trajectory updates, hazard area +definitions, and contingency alerts will all be exchanged via secure, standardised digital interfaces (API) based on +harmonised data models. This approach allows information to flow automatically and consistently between +operators, NM, ANSPs, States, and—where relevant—international partners. The methodology ensures alignment +with SWIM services, ICAO standards (FIXM, AIXM, iWXXM), and CCSDS specifications, enabling +interoperability across domains. By embedding data exchange within both planning and real-time operations, +SPARTA avoids duplication and ensures that all information flows are coherent end to end. +Integration into SESAR architecture provides the second unifying thread. Each Solution will produce model-based +and textual content in accordance with SESAR processes, ensuring that artefacts such as OSED, TS/IRS, and SPR- +INTEROP are traceable within the European ATM Master Plan. This guarantees that project outputs are not stand- +alone prototypes but directly contribute to programme-level architecture. +Validation methodology is also consistent across both Solutions. All validation will be planned in advance through +a structured Validation Plan (VALP) and reported in a Validation Report (VALR). Scenarios will progress from +controlled simulations to shadow-mode trials in representative operational environments. Live operational systems +will not be used, to avoid stability and security risks, but test platforms will replicate NMOC functions sufficiently +to demonstrate interoperability and data flows. This iterative validation loop allows early drafts of deliverables to +be refined and aligned with evidence before finalisation. +TRL progression provides the overarching ambition. The starting point for SPARTA is TRL 3–4, as the expanded +scope includes planning frameworks, collaborative decision-making, and HAO/HAPS interactions not covered in +ECHO2. The methodology is explicitly designed to bring this broader scope to TRL 6 by project end, ensuring that +the complete set of SESAR artefacts—OSED, TS/IRS, SPR-INTEROP, VALP/VALR, CBA, STAND, REG, and +Contextual Note—are validated and ready for regulatory and industrial uptake. +Together, these enablers ensure that while the Solutions address distinct operational phases, they remain fully +aligned in terms of data, specifications, validation, and maturity. This guarantees that the final outcome will be a +coherent, deployable capability for managing STO within the Digital European Sky. + + + +=== PAGE 153 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 8 of 44 +1.3 State of the art +The integration of Space Transport Operations (STO) and Higher Airspace Operations (HAO) into the European +network is maturing but uneven. Good practice exists, yet implementations remain fragmented across States, with a +mix of manual coordination, non-standard data formats, and limited automation for cross-border activities. +Important advances have been made through regional guidance and early prototypes (e.g. work feeding into the ICAO +EUR context and SESAR demonstrators such as ECHO2). These efforts have proven feasibility, but they have not +yet been extended into widely adopted, interoperable capabilities. +At present, there is no consistently implemented European solution that covers the full mission lifecycle —from +coordinated planning and approval through real-time monitoring, dynamic hazard management, and automated cross- +border data exchange—using harmonised, machine-readable information. +SPARTA addresses this gap by extending the most advanced concepts and prototypes in scope, technical maturity, +and operational integration to deliver two distinct yet interconnected SESAR Solutions (planning and real -time +operations), underpinned by a comm on, standards-aligned data-exchange layer. This approach focuses on practical +interoperability and adoption without overstating current shortcomings. + +Solution 1: Flexible and Scalable Mission Planning +Current state of the art +Mission planning for STO/HAO remains heterogeneous. Procedures, formats, and timelines differ between States; +submissions are often PDFs or free -text, coordinated via email and teleconferences. Cross -border planning can be +slow and inconsistent. Some natio nal portals exist, but schemas are not harmonised and machine -readability is +limited. +How SPARTA goes beyond +SPARTA will deliver a standardised, interoperable planning capability for orbital, sub -orbital and long-endurance +high-altitude missions, including State operations. Planning will incorporate automated generation of time-bounded +4D hazard volumes (4DOZ) within the workflow, allowing early optimisation to minimise network disruption. +Key advances: +• Harmonised data schemas and APIs, aligned with European information -management practices, enabling +machine-to-machine submissions as well as a web front end. +• Ingestion from existing operator/authority portals where available, avoiding duplicate entry and leveraging +authoritative sources. +• Collaborative, multi -State decision -making built in from the outset, with clear roles, auditability and +traceability. +• Pre-tactical digital outputs (including digital notice preparation and machine -readable hazard data) +consumable by ANSP and network systems without requiring immediate modifications to existing Flight +Data Processing systems. +This moves planning from narrative, document -centric exchanges to a data -centric, automatable process that is +directly reusable by operational systems. + + + +=== PAGE 154 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 9 of 44 +Solution 2: Dynamic Real-Time Operations +Current state of the art +During execution, many operations rely on pre -published static hazard areas and manual updates when conditions +change. Revised notices and phone coordination can take tens of minutes and may not propagate evenly. Some +isolated implementations display live mission data, but network-wide, standardised data services are not yet in place. +How SPARTA goes beyond +SPARTA provides a fully integrated real -time operational capability for STO/HAO, including State operations. +Multiple surveillance/telemetry sources and environmental inputs are fused into a shared operational picture across +ANSP and network environments. +Key advances: +• Continuous, predictive–responsive updates of 4DOZ based on debris/dispersion modelling and refined with +live tracking, enabling dynamic footprint optimisation and early release where safe. +• Automated, secure dissemination of mission status, trajectory updates and hazard volumes via the +standardised data-exchange framework, ensuring near-instant availability to all authorised stakeholders. +• Machine-readable digital notices (including digital NOTAM outputs) and SWIM-based messages for direct +system ingestion—reducing manual re-entry and propagation lag. +• Automated risk detection against active flight trajectories, with decision support for mitigation and +coordinated updates across affected FIRs. +This shifts day-of-ops from fragmented, phone-and-PDF workflows to timely, data -driven coordination at network +scale. + +#§CON-MET-CM§# #§COM-PLE-CP§# #§REL-EVA-RE§# +2. Impact #@IMP-ACT-IA@# +2.1 Project’s pathways towards impact +The growing frequency and complexity of Space Transport Operations (STO) and Higher Airspace Operations +(HAO) presents both opportunities and challenges for European airspace management. Existing procedures are +fragmented between States, heavily reliant on manual coordination, and lack the standardisation and automation +needed to manage these activities efficiently at a network scale. This limits the ability to integrate missions seamlessly +into the European ATM system, often resulting in conservative airspace restrictions, unpredictable impacts on traffic +flows, and increased workload for operational staff. +SPARTA addresses these challenges through two complementary SESAR Solutions that together cover the full +operational lifecycle of STO and HAO integration. The first focuses on the planning phase, providing a standardised, +collaborative process that improve s the quality and timeliness of mission data. The second delivers a real -time +operational capability, enabling continuous monitoring, automated hazard updates, and proactive conflict +management during missions. Both Solutions are underpinned by a secure, s tandardised data-exchange framework +that ensures information flows automatically and consistently between all relevant stakeholders, within Europe and +with adjacent regions. +Each Solution has a distinct operational role, yet they are designed to work as an integrated whole. The planning +capability feeds directly into real -time operations, and both rely on the common data -exchange framework to +distribute updates rapidly and acc urately. Together they deliver measurable improvements in safety, predictability, +and network efficiency, while providing a clear pathway for adoption into operational and regulatory frameworks. + +=== PAGE 155 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 10 of 44 +This integrated approach ensures that SPARTA’s results will not only address current operational gaps but also +position Europe as a global leader in managing space launch and re-entry activities and high-altitude operations +Solution 1 – Flexible and Scalable Mission Planning +Operational and safety impact +Operational and safety impact +Today, STO and HAO mission planning in Europe is heterogeneous. States apply different approval formats, lead +times and coordination processes, which creates unpredictable workflows and variability in how hazard areas are +defined. Where uncertainty is high, stakeholders sometimes adopt large precautionary airspace closures to manage +risk, which can displace traffic more tha n necessary. SPARTA addresses this by providing a single, harmonised +planning environment that lets all stakeholders, including State Space Regulators, ANSPs, the Network Manager and +mission operators, work from a consistent and authoritative mission datas et for use within the European ATM +context. The solution embeds collaborative decision-making in the planning phase. By engaging all affected States +early, potential conflicts can be identified and resolved pre-tactically, and hazard volumes can be shaped with greater +precision to minimise footprint while meeting safety requirements. Standardised, electronic planning reduces +opportunities for error, improves traceability and helps ensure that approvals are based on complete and consistently +structured data as provided by the responsible parties. This reduces the likelihood of late procedural changes during +the mission itself. +Network performance benefits +From a network perspective, more predictable and precise hazard volumes enable more efficient use of airspace. +Airlines and flight planners can plan with greater confidence, with better opportunities to avoid knock-on congestion +in neighbouring sectors where applicable. SPARTA supports the Network Manager and States in assessing mission +impacts against demand patterns and critical flows, helping to identify lower -impact windows or shapes where +mission constraints allow. It does not schedule missions and can not override State or mission -critical timing +requirements; rather, it provides pre -tactical what-if analysis, impact visualisation and data products that enable +earlier, more informed decisions. The automated hazard -volume function is significant. Using t rajectory modelling +and re -entry dispersion predictions, the system can propose targeted geometries derived directly from mission +parameters. This can reduce planning time and, where safety allows, enable smaller, better -shaped volumes, +improving safety by bounding risk more precisely. +Regulatory and interoperability impact +Regulatory oversight currently requires each State to interpret and validate operator plans in its own way. The absence +of a common, machine -readable format increases translation effort and the risk of misinterpretation. SPARTA +establishes a harmonised mis sion-plan schema and interfaces aligned with European information -management +practices and compatible with SWIM profiles and FF -ICE concepts where appropriate. STO and HAO -specific +parameters are supported through well -defined extensions, units and ranges to ensure clarity at high speeds and +altitudes. This allows authorities to receive structured data, making approvals more transparent and less resource - +intensive. Interoperability extends beyond Europe through the use of internationally recognisable exchange patterns, +enabling data sharing for cross-border missions without imposing ownership of “master data” outside the European +ATM context. +Why this is transformative +This solution goes beyond current practice by combining automation, standardisation and collaborative planning in +one operational capability. No current European system delivers automated hazard generation, multi -State pre - +tactical workflows and consumable , machine -readable outputs designed for direct ingestion by operational +environments. The result is shorter and more predictable planning cycles, more precisely bounded hazard areas, fewer +operational disruptions and clearer accountability and traceability . By addressing safety, efficiency and +interoperability together, Solution 1 helps make STO and HAO missions a routine, low -impact part of European +airspace operations rather than exceptional events requiring heavy manual coordination. + +=== PAGE 156 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 11 of 44 +Solution 2 – Dynamic Real-Time Operations +Operational and safety impact +Even with a fully developed mission plan, STO and HAO operations can change once they begin. Delays, minor +trajectory deviations or environmental conditions may alter the hazard footprint and timing. In the current European +context, such changes are manage d mainly through manual coordination using telephone calls, email and revised +notices. Updates can take several minutes to propagate across all affected parties, creating a window where ATC may +be working with information that is no longer current. In response, controllers may apply larger or longer restrictions +than strictly necessary, which protects safety but can affect more of the network than required. +SPARTA’s real-time operations capability addresses this by fusing operator-provided mission data with surveillance +and environmental inputs into a unified operational picture available to the Network Manager and affected ANSPs. +Sources can include ground radar and optical tracking, space-based ADS-B and space-weather forecasts. This fusion +provides a timely view of the actual trajectory and predicted changes based on current conditions, supporting quicker, +more consistent safety decisions. The capability also reduces and helps manage potential conflicts arising from HAO +activity, particularly where high-altitude operations intersect with conventional flows or require dynamic re-planning. +Network performance benefits +A key innovation is automated hazard-volume updating. As the mission progresses, predictive debris and trajectory +models forecast the hazard footprint and are refined continuously using live tracking. Resulting geometries are +tailored in time and space to the evolving risk, replacing static, pre-published areas with dynamic ones. This enables +restrictions to be lifted as soon as they are no longer needed and helps avoid closing unaffected areas. The sys tem +also provides automated conflict detection by comparing updated hazard volumes with active aircraft trajectories. +When a potential conflict is identified, decision -support proposals such as targeted reroutes or temporary flow +measures are generated for controller review and implementation. +While current, measurable delays attributable to HAO are limited in Europe, the above capabilities improve the +efficient use of higher airspace and reduce the risk of unnecessary restrictions as activity scales. Where STO missions +interact with the network, earlier, more precise updates help avoid knock-on effects in adjacent sectors. +Regulatory and interoperability impact +The real-time picture is designed to integrate with NM and ANSP environments, as well as operator control centres, +so that all decision -makers access the same authoritative data. Formats align with European SWIM specifications +and ICAO provisions for sharing hazard information, supporting coordination with neighbouring Regions where +appropriate. Security, access control and integrity checks are embedded. The service produces a detailed, time - +stamped record of mission status, hazard -volume changes and actions taken, supporting post -event reviews, +regulatory oversight and continuous improvement of procedures. +Why this is transformative +There is currently no European operational capability that combines live mission-data integration, automated hazard- +geometry updates, real-time conflict detection and network-wide distribution. SPARTA shifts mission management +from largely reactive, docume nt-based exchanges to a predictive, responsive and coordinated process at network +scale. By enabling faster, more accurate and less disruptive hazard management, the solution strengthens safety and +improves overall efficiency where missions interact with the network, while establishing a model that can be scaled +as STO and HAO activity grows. + + +=== PAGE 157 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 12 of 44 +2.2 Measures to maximise impact - Dissemination, exploitation and communication #@COM-DIS-VIS- +CDV@# +The impact of SPARTA will depend on more than the technical quality of its outputs. To achieve lasting change in +the way Space Transport Operations (STO) and Higher Airspace Operations (HAO) are managed, the project must +ensure that its results are understood, trusted, and adopted by the operational, regulatory, and industrial communities +that will use them. This requires a coordinated approach that begins on day one and continues beyond the project’s +formal end. +SPARTA’s dissemination, exploitation, and communication plan addresses this requirement through three parallel +strands of activity. Dissemination will ensure that results reach the right audiences in the right formats to enable +uptake. Exploitation will focus on e mbedding the solutions in operational systems, regulatory frameworks, and +industry standards. Communication will build awareness and support among both specialist and non -specialist +audiences, highlighting the benefits for safety, efficiency, and sustainability. +These activities are reinforced by structured engagement with ICAO, EASA, EUROCAE, and other standardisation +bodies, as well as alignment with relevant international frameworks such as those developed by the Consultative +Committee for Space Data Systems (C CSDS). By maintaining this alignment and targeting outputs to the needs of +each audience, SPARTA will maximise the likelihood that its solutions move rapidly from project deliverables to +operational reality. +Dissemination strategy +The dissemination plan ensures that SPARTA’s outputs are visible, accessible, and usable for those who can turn +them into operational reality. Dissemination will begin at the project outset and continue well beyond its conclusion, +with targeted actions for each phase of work. +SPARTA’s results will be shared with operational stakeholders such as the Network Manager, ANSPs, State Space +Regulators, and mission operators, who will directly use the Solutions. For these groups, the emphasis will be on +practical, implementable outputs: technical specifications, operational procedures, validation findings, and interface +documentation in forms that can be integrated into existing systems. +Regulatory and standardisation audiences, including ICAO EUR/NAT, the ATMOPS and Space Operations Panels, +and relevant EUROCAE working groups, will receive outputs in the formats they require for adoption. This includes +formal working papers, draft provisions, and detailed data model descriptions suitable for incorporation into ICAO +guidance or EUROCAE standards. By maintaining an active presence in these bodies throughout the project, +SPARTA will align its results with ongoing work, ensuring that outputs can move quickly into formal processes. +The research and innovation community, including SESAR partners and academic specialists in ATM, space +operations, and data exchange standards (EUROCAE/CCSDS), will be engaged through conference presentations, +open-access reports, and technical papers. Making selected deliverables publicly available in trusted repositories will +enable further development and interoperability testing. +SPARTA will also share results with partners in adjacent ICAO Regions, through bilateral meetings and contributions +to cross-regional forums such as CANSO working groups. Given the cross -border nature of many STO and HAO +missions, these exchanges will help ensure that European procedures remain interoperable with neighbouring regions +and influence global best practice. +Dissemination will use a mix of established and project -specific channels. These include participation in SESAR +Innovation Days, ICAO EUR/NAT and CANSO events, dedicated SPARTA stakeholder workshops, technical +webinars, and targeted briefings for priority audiences. Dissemination timing will be aligned with project milestones: +early sharing of concepts to gather feedback, mid -project release of prototypes and validation results, and final +publication of the fully validated Solutions. +By engaging each audience in ways suited to their role and decision -making processes, SPARTA will create the +conditions for its results to be understood, trusted, and adopted. + +=== PAGE 158 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 13 of 44 + +Exploitation strategy +The exploitation plan focuses on turning SPARTA’s results into operational capabilities, regulatory provisions, and +industry standards that will continue to deliver value after the project ends. From the outset, exploitation activities +will run in parallel with technical work so that potential users can begin preparing for adoption while the Solutions +are still in development. +For operational stakeholders, the two Solutions will be prepared for direct integration into the Network Manager’s +planning and operational systems, ANSP tools, and mission operator workflows. This includes aligning software +interfaces with existing infrastructure, providing detailed operational guidance, and conducting pre-deployment trials +within live environments where possible. By the end of the project, at least one operational partner will have an +agreed pathway for early implementation of each Solution. +For regulators and standardisation bodies, the exploitation objective is to have SPARTA outputs ready for formal +consideration within ICAO and EUROCAE processes. This means producing the necessary supporting material — +draft provisions, technical recommendat ions, and reference implementations —so that the Solutions can be taken +forward without the need for major rework. The project will also prepare detailed change proposals for inclusion in +ICAO regional documentation and EUROCAE specifications. +Each partner will develop an internal exploitation plan identifying how they will use the results within their own +organisations, whether for operational deployment, commercial services, or further research. These individual plans +will be consolidated into a project-wide exploitation roadmap, which will be updated regularly and delivered as a +formal output. +Post-project sustainability is a central element of the exploitation approach. By embedding the Solutions into ongoing +operational, regulatory, and standardisation workstreams during the project, SPARTA ensures that they will be +maintained, refined, and used well beyond the project lifetime. +Communication strategy +Communication activities will ensure that SPARTA is visible, recognisable, and understood by both specialist and +non-specialist audiences throughout its lifetime. The aim is to build awareness of the project’s objectives, +demonstrate progress, and highlight the benefits of its results for the European ATM network and wider society. +A public-facing website will be established early in the project as the central hub for all communication activities. It +will include accessible explanations of the project’s purpose, news updates, event announcements, and links to public +deliverables. The site will be maintained for at least two years after the project ends to support continued access to +information. +SPARTA will adopt a consistent visual identity, applied across all presentations, documents, and online content. This +will help establish a clear and recognisable presence at industry events and in professional networks. Communication +materials will be adapted to the audience, with technical depth for professional stakeholders and plain language for +broader public outreach. +Throughout the project, a programme of events and media activities will support visibility. Key actions will include: +a) A public launch announcement and media kit at the project start. +b) A mid-project stakeholder event to present interim results and gather feedback. +c) A final results conference to showcase validated Solutions and outline adoption pathways. +d) Regular briefings at industry events such as SESAR Innovation Days, ICAO EUR/NAT meetings, and +EUROCAE symposia. + + +=== PAGE 159 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 14 of 44 +Digital channels will be used to extend the project’s reach. A LinkedIn page will provide regular updates for the +professional ATM and space operations community, while targeted articles will be placed in relevant industry +publications. Where appropriate, social media posts will link back to the project website to encourage deeper +engagement. +The communication programme will run from the first month of the project, ensuring that awareness grows steadily +and stakeholders remain engaged. By maintaining a consistent flow of information and aligning messages with +project milestones, SPARTA will keep its audience informed and invested in the results. + +Intellectual property rights (IPR) and results ownership +SPARTA will generate a range of results, including technical specifications, software prototypes, validation +methodologies, operational procedures, and guidance material. The consortium will manage intellectual property in +a way that protects individual contributions while ensuring the widest possible uptake of the results. +An IPR framework will be agreed in the Consortium Agreement before the project start. This will define ownership +rules, access rights, and conditions for both internal use and external exploitation. Results created by a single partner +will remain the property of that partner. Results developed jointly will be owned collectively, with clear arrangements +for use and decision-making agreed in advance. +The project will distinguish between outputs intended for open publication and those requiring controlled access. +Public deliverables such as non-sensitive specifications, operational guidance, and performance assessments will be +released under open licenc es to support adoption and interoperability. Software components that form part of +interface implementations may also be made available under permissive licences where this would accelerate uptake. +For results containing commercially sensitive or security-critical information, access will be restricted to authorised +stakeholders under agreed conditions. In such cases, the consortium will determine the most appropriate protection +mechanism, which may include copyright, design rights, or, where relevant, patent applications. +A results ownership register will be maintained throughout the project, updated at each reporting period, and finalised +in the closing stages. This register will clearly identify each result, its owner or owners, the protection status, and the +intended exploitation pathway. +By establishing these arrangements early and updating them as the project progresses, SPARTA will ensure that +intellectual property is managed in a way that safeguards the partners’ contributions and facilitates the operational +adoption of its outputs. +Policy feedback and standardisation pathway +SPARTA is designed to produce results that can be deployed operationally and considered within regulatory +frameworks and industry standards. From the outset, the project will make its technical specifications, validation +evidence, and implementation guidance available in formats suitable for uptake by the responsible bodies at European +and international levels. +At the international level, information sharing with ICAO will be channelled through established liaison routes (e.g. +the EUR/NAT Office) and, where appropriate, via relevant technical bodies. SPARTA will prepare materials in +ICAO-friendly formats, such as draft guidance notes and inputs suitable for consideration in regional documentation. +Any potential contributions towards future SARPs would be offered as background material only, leaving initiation +and stewardship to ICAO processes. +At the European level, SPARTA will ensure that outcomes are compatible with existing and emerging provisions on +airspace usage, data services, and safety management. Briefing packs and targeted technical notes will be made +available to EASA on request and via the Advisory Board, enabling alignment with AMC/GM where relevant. +Participation in any EASA activities would be contingent on invitation and within project scope; the consortium does +not assume standing membership or resourcing of task forces. + +=== PAGE 160 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 15 of 44 +For standardisation, SPARTA will package interface definitions and validation evidence so they are candidate inputs +for consideration by the appropriate EUROCAE working groups, where active and relevant to higher airspace +operations, SWIM-based data exchange, or integration of new entrants. Where concepts from adjacent domains (for +example U -space information services) have applicability to segregated high -altitude environments, this will be +highlighted carefully without implying transfer where it is not appropriate to STO or high-speed operations. +In developing its data exchange layer, SPARTA will reference widely used space -domain data recommendations, +including those published by the Consultative Committee for Space Data Systems (CCSDS), to promote +interoperability of formats, metadata and protoco ls. The intent is compatibility and clear mapping between +spaceflight data and SWIM -enabled ATM environments. SPARTA does not plan to propose formal changes to +CCSDS specifications; any observed gaps or alignment issues will be documented and shared with the custodians as +informational feedback. +Feedback from SPARTA’s validation activities will be consolidated into concise technical recommendations that +describe performance, operational constraints, and any enabling regulatory considerations. These recommendations +will be made available to ICAO, E ASA, EUROCAE, national regulators and relevant standards communities, +supporting evidence-based consideration without pre-judging policy choices. +The pathway to adoption begins early, with a liaison plan that maps processes and indicative timelines of the relevant +organisations. Draft materials may be shared for comment ahead of final validation where this can improve alignment. +This approach maximi ses the likelihood that SPARTA outputs are ready for formal consideration, while keeping +external engagement proportionate and within project scope + + + +#§COM-DIS-VIS-CDV§# + +=== PAGE 161 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 16 of 44 +2.3 Summary +KEY ELEMENT OF THE IMPACT SECTION + + + +SPECIFIC NEEDS +What are the specific needs that +triggered this project? + +The specific needs that triggered this +project are centred around addressing the +current operational, technical, and +regulatory gaps in managing STO and +HAO. These gaps include fragmented and +manual planning processes, lack of +situational awareness and upd ates during +real-time operations, and lack of +standardized and secure data exchange +mechanisms. +If these needs remain unaddressed, they +will lead to increased delays, network +inefficiencies, limited ability to handle +the increasing number of STO/HAO, and +inconsistent cross-border coordination. + + + + + +EXPECTED RESULTS +What do you expect to generate by the end of +the project? +Deployable, interoperable operational +concepts, procedures, and technical enablers +ready for industrialization. +Tools, procedures, regulatory, and data +exchange framework s for the NM, ANSPs, +Regulators, and Operators to plan, monitor, and +adapt to STO and HAO activities before and +during flight. These include a Flexible and +Scalable Mission Planning capability, Dynamic +Real-time Operations, and Standardized and +Secure Data Exchange. +Enable Europe to facilitate the seamless +integration of expected S TO and HAO, +maintaining safety and minimizing impacts on +other airspace users. +Support European leadership in global STO +and HAO interoperability and standardization, +ensuring compatibility within ICAO EUR and +beyond. +A validated pathway to integrate these +capabilities into the Digital European Sky +target architecture and trajectory -based +operations. +D & E & C MEASURES +What dissemination, exploitation and communication measures will +you apply to the results? +Communication methods will include: +a) A public project website +b) Participating in and providing papers for SESAR events, ICAO +EUR/NAT meetings, EUROCAE working groups, specialised +industry conferences, and selected journals. +c) Sharing updates through SESAR 3 JU channels. + +Dissemination activities will include: +a) Technical deliverables and reports. +b) Conference papers and peer-reviewed journal articles. +c) Presentations to operational forums and technical panels. +d) Workshops and webinars to engage stakeholders in the review of +preliminary and final results. + +The exploitation plan will include: +a) Mapping solution outputs to candidate standardisation and +regulatory processes. +b) Identifying opportunities for integration into NMOC processes, +ANSP planning systems, and mission operator workflows. +c) Assessing the operational, regulatory, and commercial viability of +each solution in consultation with end users. +d) Ensuring exploitation considerations are addressed in both the first +and second reporting periods, with early market and regulatory +engagement to prepare the ground for implementation. + +=== PAGE 162 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 17 of 44 +#§IMP-ACT-IA§# + + +TARGET GROUPS +Who will use or further up-take the results +of the project? Who will benefit from the +results of the project? + +Within the operational world the results of +SPARTA will be used by NM, ANSPs, +Space and Airspace Regulators, STO and +HAO Operators, and the military. + +Operational beneficiaries will include the +above, plus other Airspace Users, whose +operations are not as adversely impacted +by STO and HAO. + +Other beneficiaries will be European +citizens and companies who benefit from: + +1) The services offered by STO and +HAO. + +2) The reduced disruption to current +Airspace User activities (e.g. +commercial scheduled aviation). + + + + +OUTCOMES +What change do you expect to see after successful +dissemination and exploitation of project results to the +target group(s)? + +Improved STO/HAO Coordination and Efficiency by +adopting standardized and scalable mission planning +processes will improve network efficiency, and potential +capacity for STO/HAO missions. + +Integrating enhanced real-time operational +management capabilities will support timely and +coordinated decisions during missions, reducing the risk +of network disruption and improve safety by enabling +dynamic adaptation to evolving operational conditions. + +Implementation of a Standardized and Secure Data +Exchange will ensure consistent and reliable information +sharing between all relevant stakeholders. This will +reduce errors, improve situational awareness, and +facilitate cross-border coordination. + +Support European leadership in global STO/HAO +Regulatory and Standardization. This will ensure +compatibility with ICAO EUR and cross-regional +frameworks, positioning Europe as a global leader in +managing space and high-altitude operations. + +A validated pathway to integrate these capabilities into +the Digital European Sky target architecture and +trajectory-based operations environment will enable the +seamless integration of STO and HAO while maintaining +safety and minimizing impacts on other airspace users. + +IMPACTS +What are the expected wider scientific, economic and +societal effects of the project contributing to the expected +impacts outlined in the respective destination in the work +programme? + +Advance the state of knowledge in the field of STO and +HAO airspace integration by developing and validating +new operational concepts, procedures, and technical +enablers. This will contribute to the scientific community's +understanding of how to manage these operations more +effectively and safely. + +Reduce delays and network inefficiencies, leading to cost +savings for operators and service providers. + +Facilitate the growth of STO and HAO in Europe, leading +to new business opportunities and economic development. + +Contribute to the safety and security of airspace +operations by addressing the current gaps in managing +STO and HAO, reducing the risk of accidents and +incidents. + +Improve the efficiency and predictability of airspace +operations, delivering positive environmental effects, such +as reducing fuel burn and associated emissions. + +Support the development of a more resilient and adaptable +airspace management system, benefiting society as a +whole by ensuring the safe and efficient integration of +new types of airspace users. + + +=== PAGE 163 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 18 of 44 +3. Quality and efficiency of the implementation #@QUA-LIT-QL@# #@WRK-PLA-WP@# +3.1 Work plan and resources +The SPARTA work plan is designed to deliver two SESAR Solutions, each addressing a distinct phase of Space +Transport Operations (STO) integration into the European ATM system: +• Solution 1 – Flexible and Scalable Mission Planning: addressing strategic and pre-tactical phases, enabling +structured mission submissions, hazard area definition, negotiation of 4D Operating Zones (4DOZ), and +network-wide CDM processes. +• Solution 2 – Dynamic Real-Time Operations: addressing the execution phase, enabling live monitoring, +adaptive hazard management, contingency response, and rapid release of unused airspace. +Data exchange is treated as a cross-cutting capability embedded in both solutions, rather than a separate work +package. All requirements, specifications, and validation activities will include machine-to-machine interfaces, +harmonised data models, and secure digital exchange mechanisms, ensuring consistency across planning and real- +time phases. + +Figure 1 visualises the SPARTA Work Breakdown Structure (WBS): + +Figure 1: SPARTA WBS +Each solution is developed over two reporting periods, with a dedicated work package in each phase. This ensures +that draft specifications and validation results can be prepared in time for SESAR reviews, allowing iterative +improvement and reducing re-assessment risk. +WP1 – Project Management (M1–36) provides governance, financial and contractual oversight, and quality assurance +for the project as a whole. It establishes the Project Management Plan, ensures timely delivery of all SESAR +milestones and reviews, and mainta ins risk and issue registers. WP1 also runs the internal review cycle for all +deliverables, ensuring both technical quality and compliance with SESAR formats before submission. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +=== PAGE 164 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 19 of 44 +WP2 – Dissemination, Exploitation, Communication, and Data Management (M1 –36) manages all stakeholder +engagement and communication activities. It ensures that project results are shared with operators, ANSPs, States, +and the wider community, through publications, workshops, and events aligned with technical milestones. It also +maintains the project website, implements the visual identity, and prepares dissemination material for both technical +and public audiences. WP2 additionally ensures that all project data and outputs are managed in line with FAIR +principles, with a Data Management Plan (DMP) delivered and updated at required intervals. +WP3 – Solution 1 Planning (M1–18) initiates development of the planning solution, covering requirements capture, +initial specifications, and early validation. It produces draft OSED, TS/IRS, and SPR -INTEROP to define how +mission intent and hazard areas are submitted and managed. Prototypes of digital interfaces and planning services +are developed to test interoperability with NM and ANSP systems. Initial validation scenarios are executed in +simulation and controlled environments, with findings documented in the Validation Plan and early Validation +Report. +WP4 – Solution 2 Operations (M1 –18) develops the real -time coordination solution in parallel. It defines the +operational scenarios and requirements for live monitoring, hazard volume updates, and contingency management, +captured in draft OSED, TS/IRS, and SPR-INTEROP. Prototypes of tactical decision -support tools and situational +displays are built to demonstrate data exchange with shadow NMOC platforms. Validation activities focus on +representative scenarios such as launch anomalies, debris events, and rapid airspace release, with results recorded in +draft VALP and early VALR. +WP5 – Solution 1 Planning (M19–36) refines and finalises the planning solution, building on the baseline deliverables +from WP3. Specifications are updated based on validation results, and the final versions of OSED, TS/IRS, and SPR- +INTEROP are delivered at TRL6. Validation activities are extended to cover cross-border coordination, long-duration +missions, and integration with HAPS in 4DOZ. The Cost -Benefit Analysis (CBA) is produced, together with +contributions to standardisation (STAND) and regulatory guidance (REG). The Contextual Note (CN) packages the +planning solution for future industrialisation and deployment. +WP6 – Solution 2 Operations (M19 –36) brings the operational solution to maturity. Specifications from WP4 are +refined and finalised, with extended validation covering nominal launches, uncontrolled re -entries, and interaction +with other higher airspace users. The final OSED, TS/IRS, and SPR-INTEROP are delivered at TRL6, supported by +a comprehensive Validation Report. The CBA assesses the benefits of real -time coordination in terms of network +efficiency and safety. Contributions to STAND and REG are prepared to support European and international uptake. +The Contextual Note summarises the final solution and defines the path to deployment. +Timing and Sequencing +The project runs for 36 months, divided into two reporting periods, each supporting a full development and validation +cycle for the two SESAR Solutions. +Months 1 –6 (Project initiation): WP1 establishes governance, risk management, and reporting procedures. WP2 +launches the project website and stakeholder engagement. WP3 and WP4 focus on requirements gathering, +stakeholder workshops, and initial system arch itecture definitions, culminating in the Project Management Plan at +Month 3. Early drafts of OSED and TS/IRS are prepared for both planning and operations solutions. +Months 7–12 (Early development): WP3 and WP4 produce draft SPR -INTEROP documents and begin prototype +development of planning interfaces and operational coordination tools. Integration checkpoints ensure consistency +across both solutions. WP2 supports outre ach through technical workshops and first publications. Preparations are +made for the Technical Project Review at Month 10, including delivery of draft specifications and early validation +concepts. +Months 13–18 (Baseline validation): Initial validation exercises are conducted in WP3 and WP4, using simulations +and shadow platforms to test mission submission, hazard area management, and contingency handling. Draft +Validation Plans (VALP) and initial Validation Reports (VALR) are produced. By Month 18, each solution delivers +baseline specifications (OSED, TS/IRS, SPR-INTEROP) and early validation evidence to support the first Periodic +Report and SESAR maturity self-assessment. +Months 19 –24 (Refinement and extended scenarios): WP 5 and WP 6 refine specifications based on validation + +=== PAGE 165 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 20 of 44 +feedback, producing updated OSED, TS/IRS, and SPR -INTEROP. Validation scenarios are broadened to include +cross-border launches, multi-ANSP coordination, and HAPS integration in 4DOZ. WP2 updates the Dissemination +and Exploitation Plan and delivers the mid-project Data Management Plan update. +Months 25–30 (Operational validation): WP5 and WP6 conduct extended validation in operationally representative +environments. Scenarios include nominal launches, uncontrolled re -entries, debris events, and dynamic airspace +release. Draft final deliverables are prepared by Month 28 to support internal quality review and SESAR alignment +checks. +Months 31 –36 (Finalisation and closure): WP 5 and WP 6 deliver final TRL6 documentation, including OSED, +TS/IRS, SPR-INTEROP, VALR, CBA, STAND, REG, and the Contextual Notes. WP1 prepares the Exit Maturity +Gate package and final reports. WP2 organises the final dissemination event, consolidates exploitation planning, and +submits the final CDE and stakeholder engagement reports. The project closes with delivery of all mandatory +technical and non-technical outputs to SESAR 3 JU. +Interdependencies +The SPARTA work plan is structured to ensure that all work packages contribute to the delivery of two coherent +SESAR Solutions, with strong alignment across planning and operational phases. Interdependencies are managed +both vertically (between phases of the same solution) and horizontally (across solutions and cross-cutting WPs). +WP1 – Project Management provides overarching governance, scheduling, and quality assurance. It defines reporting +cycles, chairs the Project Management Board and Technical Coordination Team, and ensures that all WPs deliver +their outputs in line with SESAR 3 JU milestones. WP1 also manages the internal review process, ensuring +consistency and quality before deliverables are submitted. +WP2 – Dissemination, Exploitation, Communication, and Data Management runs continuously, supporting all +technical WPs by promoting results, maintaining stakeholder engagement, and applying the FAIR principles to data. +WP2 ensures that draft deliverables fr om WP3–WP6 are made available to external stakeholders at the right time +(for example, during SESAR reviews or validation workshops) and that feedback can be incorporated. WP2 also +ensures that all final outputs are communicated beyond the consortium and p ositioned for uptake in standardisation +and regulation. +WP3 and WP5 – Solution 1 (Planning) form a continuous workstream across both reporting periods. WP3 establishes +the baseline requirements, draft specifications, and initial validation evidence, which are then refined and expanded +in WP5. The outputs of WP3 (OSED, TS/IRS, SPR -INTEROP, VALP) directly feed into WP 5, where validation +evidence and extended scenarios support the delivery of the full TRL 6 package, including CN, CBA, STAND, and +REG. +WP4 and WP 6 – Solution 2 (Operations) follow the same pattern. WP4 develops the baseline specifications and +prototype tools for real -time coordination, with early validation in simulated and shadow environments. These +outputs provide the foundation for WP 6, where specifications are finalised, extended validation is performed in +representative conditions, and the complete TRL 6 package is delivered. +Coordination between Solutions is maintained throughout. WP3/5 and WP4/6 share interface requirements and data +exchange definitions to ensure that planning outputs and real -time updates are consistent. Joint validation activities +test interoperability across both phases, for example by linking a planned trajectory submission (WP3/5) with a real- +time anomaly response (WP4/6). This cross-solution integration ensures that STO can be managed as a seamless end- +to-end process. +Data exchange as a cross-cutting enabler links all technical WPs. Although not a stand-alone WP, specifications for +digital interfaces, SWIM services, and harmonised data models are embedded in both planning and operations +solutions. Validation of these exchanges is performed jointly across WP3/5 and WP4/6 to guarantee coherence. +This interdependent structure ensures that no work package operates in isolation. Each contributes to the overall +objective of delivering two SESAR Solutions at TRL 6, while shared artefacts, common validation activities, and +coordinated management processes guarantee consistency and reduce duplication. + +=== PAGE 166 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 21 of 44 +Figure 2 visualises the SPARTA GANTT chart: + + +Figure 2: SPARTA GANTT chart + + + + +=== PAGE 167 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 22 of 44 +3.2 Capacity of participants and consortium as a whole #@CON-SOR-CS@# #@PRJ-MGT-PM@# +The SPARTA consortium has been assembled to provide the operational, technical, and research capacity required +to deliver two SESAR Solutions for the integration of Space Transport Operations (STO) into the European ATM +system. The partnership combines the Network Manager, multiple ANSPs, major research centres, academic +institutions, industry, SMEs, and user associations. This balance ensures that each stage of the lifecycle, from +requirements capture to validation and standardisation, is supported by organisations with the relevant competences +and infrastructure. +EUROCONTROL provides the central link to the Network Manager (NM) environment, guaranteeing that outputs +are aligned with SESAR architecture and operational practice. Access to NM operational platforms and shadow/test +environments allows the project to validate specifications in representative conditions without impacting live +systems. Alongside EUROCONTROL, national ANSPs including DFS, LFV, ENAV, ENAIRE, and NATS +contribute with operational expertise, facilities, and procedures. Their participation ensures that concepts are +validated against real-world air traffic management practices across multiple FIRs. +DLR is a key technical contributor. Building on its existing Real-time Mission Monitoring (RMM) tool, developed +in ECHO/ECHO2, DLR leads the evolution of this capability into the Network Real-time Mission Monitoring +NRMM) tool for use at the NM Space Desk. This provides the foundation for assessing and visualising the impact +of launches, re-entries, and hazard areas on the network in real time. DLR also contributes simulation capacity, +safety assessment expertise, and validation methodology, ensuring that requirements and specifications are +technically rigorous and directly linked to the maturity assessment process. +Other research organisations strengthen this technical base. CIRA contributes facilities for trajectory modelling and +safety analysis. ENAC and LIU provide expertise in system design, modelling, and human performance, ensuring +that validation covers both technical and operational acceptability dimensions. Together, these organisations ensure +that SESAR artefacts such as OSED, TS/IRS, and SPR-INTEROP are supported by robust analysis and systematic +validation. +Industrial and commercial actors contribute directly to exploitation and operational realism. Thales LAS ensures +that system specifications are consistent with industrial development pathways and can be integrated into future +ATM/CNS product lines. SaxaVord/Europe Space Centre GmbH provides access to launch site infrastructure and +operator interfaces, making it possible to validate concepts against live mission scenarios. Sceye Spain contributes +HAPS operations, enabling the project to test how higher airspace activities interact with STO corridors and hazard +volumes. SkyNav Europe, as a specialised consultancy, provides expertise in ATM and new entrants, with a focus +on regulatory alignment and higher airspace integration. It contributes directly to the drafting of key documents +such as OSED, SPR-INTEROP, STAND, and REG, and supports regulatory and exploitation pathways. +Academic institutions ENAC and LIU also provide critical input in transversal areas such as human performance +and training. Their role is to ensure that procedures and tools developed under SPARTA are operationally +acceptable to controllers and operators, and that validation reflects the human-in-the-loop aspects required by +SESAR. IFATCA brings the operational community perspective, ensuring that controller requirements and +constraints are captured in specifications and assessed during validation. OpenUTM contributes technical expertise +from the unmanned traffic management (UTM) domain, which is directly relevant to the data-exchange +frameworks embedded in both solutions. +Critical infrastructure is accessible across the consortium. EUROCONTROL provides NM systems and shadow +environments; DFS, LFV, ENAV, ENAIRE, and NATS provide ATC/ATFM systems and operational procedures; +DLR, CIRA, ENAC, and LIU provide laboratories, simulators, and modelling platforms; SaxaVord contributes +launch site facilities; and Sceye provides HAPS platforms. Together, this ensures that validation scenarios can be +executed in environments that are representative of operational conditions, while maintaining safety and system +integrity. +The consortium is complementary by design. EUROCONTROL and ANSPs anchor the work in operational +practice. DLR and other research centres provide the technical basis for modelling, simulation, and safety +assessment. Industry and commercial operators ensure pathways to deployment. SMEs such as SkyNav Europe and + +=== PAGE 168 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 23 of 44 +OpenUTM provide targeted expertise in higher airspace, regulatory frameworks, and digital architectures. +Associations and academic partners ensure that human factors and stakeholder needs are properly addressed. +Industrial and commercial exploitation is supported through the involvement of both large system integrators and +smaller specialist consultancies, together with commercial operators providing launch and high-altitude services. +This balance ensures that results can move beyond research into practical deployment pathways, covering both +technology and regulatory integration. The consortium also includes organisations with a global reach, ensuring +that outcomes are not limited to the European context but are aligned with international operational practice and +interoperability requirements. This guarantees that the solutions developed under SPARTA are both deployable +within Europe and acceptable in the wider global ATM and space operations environment. +Taken together, the consortium provides the technical, operational, and research capacity to deliver two validated +SESAR Solutions at TRL 6, supported by rigorous validation, access to infrastructure, and alignment with SESAR +processes. +#§CON-SOR-CS§# #§PRJ-MGT-PM§# + +=== PAGE 169 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 24 of 44 +Tables for section 3.1 +Table 3.1a: List of work packages +Work +package +No +Work Package +Title +Lead +Particip +ant No +Lead Participant +Short Name +Person- +Months +Start +Month +End +month +WP1 Project +Management & +Coordination + +1 EUROCONTROL 43.60 1 36 +WP2 + +Dissemination, +Exploitation, +Communication, +and Data +Management + +10 SKYNAV 48.34 1 36 +WP3 Solution 1 – +Flexible and +Scalable +Mission +Planning +10 SKYNAV 114.10 1 18 +WP4 Solution 2 – +Dynamic Real- +Time Operations + +3 DLR 172.53 1 18 +WP5 Solution 1 – +Flexible and +Scalable +Mission +Planning + +10 SKYNAV 123.95 19 36 +WP6 Solution 2 – +Dynamic Real- +Time Operations +3 DLR 174.02 19 36 + + + +=== PAGE 170 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 25 of 44 +Table 3.1b: Work package description +For each work package: +Work package number WP1 +Work package title Project Management & Coordination + +Objectives +WP1 provides the governance, coordination, and quality assurance framework that ensures SPARTA is +delivered on time, to scope, and to the maturity levels required for SESAR 3 JU Industrial Research projects. +Its objectives are to: +a) Establish and operate a governance structure in line with SESAR 3 JU requirements, ensuring clear +decision-making, effective internal communication, and timely conflict resolution. +b) Manage all contractual, administrative, and financial aspects of the Grant Agreement, including all +formal reporting to SESAR 3 JU. +c) Monitor progress against the approved Project Management Plan (PMP), work plan, and solution +maturity targets, ensuring that corrective action is taken where required. +d) Deliver all mandatory SESAR milestones, reviews, and maturity exit criteria on schedule. +e) Maintain a structured quality assurance process to ensure all outputs meet SESAR evaluation, +maturity assessment, and quality standards. + +Description of work +WP1 runs for the full project and covers governance, reporting, quality assurance, risk management, and +contractual/financial administration. EUROCONTROL, as Coordinator, leads WP1, with support from all +partners. + +Governance and coordination +The governance structure is based on three levels. The Project Management Board (PMB), chaired by the +Coordinator, meets quarterly to review overall progress, resource consumption, and risks, and approves all +major deliverables before submission. The Work Package Lead (WPL) meetings, held monthly and chaired +by the Coordinator, monitor day-to-day technical progress, manage interdependencies, and resolve emerging +issues. An Advisory Board (AB) of external stakeholders, including regulators and defence/space +organisations, meets twice (midway and at project end) to provide strategic feedback and ensure external +alignment. Governance activities represent around 20 person-months of effort, largely from the Coordinator +but with partner contributions for reporting and representation. + +Project Management Plan (PMP) +The PMP is prepared and submitted at M3 and updated at M20. It defines the final solution scope, maturity +baselines, and performance expectations, and includes annexed Quality and Risk Management Plans, +communication protocols, document control, and reporting templates. Drafting and internal review of the +PMP requires contributions from all partners (approx. 10 person-months total) coordinated by +EUROCONTROL. + +Data Management Plan (DMP) +The first DMP is delivered at M6, updated at M22, and finalised at M32. WP1 ensures that technical partners +provide information on datasets, metadata, and repositories, and that academic partners contribute FAIR +alignment. EUROCONTROL consolidates inputs into the formal DMP. This activity represents around 6–8 +person-months over the project. + +=== PAGE 171 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 26 of 44 + +Reporting and reviews +WP1 ensures timely preparation of mandatory SESAR and Horizon Europe reviews. This includes: +• Technical Project Review (M9–10): Internal dry-run organised by the Coordinator to check +completeness of technical evidence. +• End of Reporting Period 1 (M18): Consolidation of technical/financial reports and updated maturity +self-assessments. +• Horizon Europe Review (M20–21): Internal readiness check to confirm evidence traceability. +• Exit maturity gate (M34): Coordination of final solution packages and self-assessment evidence. +• Grant Agreement closure (M36): Preparation of the Final Project Report and archiving of +documentation. + +Reporting is a significant workload: approx. 25 person-months across the project, with EUROCONTROL +leading and WP leaders supplying content. + +Risk management +A risk register is created at project start and updated monthly through WPL meetings. Each risk is assessed +for probability and impact, with mitigation actions assigned. Escalation procedures bring high-priority risks +directly to the PMB. All partners contribute to identifying and tracking risks, with EUROCONTROL +consolidating and reporting them. Around 8 person-months are allocated for risk monitoring and reporting. + +Quality assurance +All deliverables undergo a two-stage review: an independent technical review by a partner not responsible +for drafting, and a compliance review by the Coordinator to ensure alignment with SESAR templates, +Horizon rules, and PMP criteria. Reviews are scheduled at least two weeks before submission to allow +corrections. The quality review process consumes around 15 person-months across the consortium. + +Financial and administrative management +WP1 ensures compliance with the lump-sum model by tracking person-months and deliverable completion +status per WP. EUROCONTROL monitors resource allocation, ensures equitable distribution of effort, and +prepares consolidated financial statements. Partners provide quarterly financial and effort reports to the +Coordinator. Closure at M36 includes submission of final technical and financial reports. This requires +around 20 person-months at the Coordinator, with small contributions from each partner. + +Role of participants +• EUROCONTROL (Lead): Coordinates WP1, chairs PMB, prepares PMP, consolidates DMP and +reports, manages contractual/financial tasks, and ensures quality and compliance. +• All partners: Participate in PMB and WPL meetings, contribute inputs for PMP/DMP/reports, and +act as independent reviewers for deliverables. +• Advisory Board: Provides external input and ensures alignment with wider European and +international policy context. + + + +=== PAGE 172 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 27 of 44 +Work package number WP2 +Work package title Dissemination, Exploitation, Communication, and Data Management + +Objectives +WP2 ensures that SPARTA results are visible to stakeholders, disseminated through targeted technical +engagement, and exploited to prepare pathways for operational and regulatory uptake. The objectives are to: +a) Produce, update, and implement a Communication and Dissemination Plan (CDE Plan) that defines +objectives, audiences, channels, and performance indicators. +b) Establish and maintain the project website and online presence as a central access point for project +information and outputs. +c) Organise and deliver mid-project and final stakeholder workshops as major dissemination events, +with published reports capturing feedback and conclusions. +d) Define and refine exploitation pathways, including standardisation and regulatory contributions. +e) Ensure compliance with SESAR 3 JU obligations for proactive sharing of results with other projects +under the same call. + + +Description of work +WP2 runs for the full duration of SPARTA and is led by SkyNav, supported by EUROCONTROL and other +partners for outreach, content development, and event organisation. It ensures that project outputs are +communicated effectively, disseminated to operational and regulatory stakeholders, and positioned for +exploitation in future deployment pathways. + +The work begins with the Communication & Dissemination Plan (D2.1), delivered at Month 3. This +document sets the overall communication strategy, defines target audiences, key messages, and metrics, and +includes an editorial calendar, event plan, and alignment with SESAR JU branding guidelines. SkyNav drafts +the plan with inputs from all partners on national and domain-specific opportunities. Preparation requires +approximately 2 person-months distributed across the consortium. + +In parallel, the project website and online presence (D2.2) are established by Month 3. The site serves as the +public repository for non-confidential deliverables, news updates, and event announcements, and links +directly to the SESAR JU portal. SkyNav manages technical setup and hosting, while partners contribute +content on a rolling basis. Initial setup and design account for around 1 person-month, with additional +fractional effort allocated for maintenance and content updates across the project. + +The Updated CDE Plan (D2.3) is prepared at Month 20. This update reflects project progress, lessons learned +from the mid-project phase, and feedback from stakeholders, ensuring that dissemination remains targeted +and aligned with evolving SESAR priorities. The update is concise but requires coordination and review, +representing around 1 person-month of effort. + +A central activity is the Mid-project Stakeholder Workshop (D2.4), organised at Month 18. This event is co- +hosted by EUROCONTROL and SkyNav. The workshop presents draft specifications (OSED, TS/IRS) and +validation plans to regulators, ANSPs, mission operators, and industry. Structured feedback is gathered on +operational concepts and integration approaches, which is then fed into WP3 and WP4 activities for +refinement. The Workshop Report documents participants, discussions, and how feedback influences the +subsequent development phase. Organising and documenting this event is resource-intensive, requiring +approximately 5–6 person-months across the consortium, covering preparation, facilitation, and reporting. + + +=== PAGE 173 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 28 of 44 +The final stage of WP2 is the End-project Stakeholder Workshop (D2.5) at Month 36. This dissemination +event showcases the validated solutions, cost–benefit results, and exploitation pathways, targeting the same +broad community of stakeholders. It acts as the primary opportunity for external uptake and alignment with +regulatory and standardisation bodies. As with the mid-project event, the workshop is expected to involve +50–100 participants, combining plenary sessions with technical breakouts. The Workshop Report captures +outcomes and defines recommendations for adoption. This activity requires approximately 5–6 person- +months of effort for preparation, delivery, and documentation. + +Alongside these milestones, WP2 also supports continuous dissemination through partner participation in +SESAR events, ICAO EUR/NAT meetings, EUROCAE working groups, and technical and academic +conferences. Industrial partners contribute to professional forums, while academic and research partners +prepare scientific publications. SkyNav coordinates ongoing outreach through the website, infographics, +social media, and newsletters. These continuous activities represent around 8 person-months of effort across +the consortium, ensuring SPARTA maintains a strong and consistent external presence. + +Overall, WP2 accounts for approximately 20–22 person-months, distributed across SkyNav, +EUROCONTROL, and contributing partners. This level of effort is proportionate for an Industrial Research +project and reflects the importance of ensuring early visibility, mid-project feedback, and structured +preparation for exploitation. + +Role of participants +• SkyNav (Lead): Drafts and updates the CDE Plan, manages the website and branding, leads +exploitation strategy, and coordinates SESAR JU dissemination obligations. +• EUROCONTROL: Co-leads the stakeholder workshops, ensures alignment with SESAR JU +communication frameworks, and supports exploitation activities through NM channels. +• All partners: Provide content for the website and communication channels, contribute to +dissemination through conferences and publications, actively participate in workshops, and +contribute to exploitation pathways. + + + +=== PAGE 174 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 29 of 44 +Work package number WP3 +Work package title Solution 1 – Flexible and Scalable Mission Planning (Months 1–18) + +Objectives +WP3 covers the first reporting period for Solution 1, establishing the operational, technical, and validation +groundwork for progression to TRL 6 in the second reporting period. The objectives are to: +a) Establish a fixed operational baseline and requirements set to underpin all subsequent +documentation, architecture work, and validation. +b) Produce initial versions of some TRL 6 deliverables — OSED, SPR-INTEROP/OSED, TS/IRS, +VALP, CBA, STAND, REG — together with supporting documentation such as the FRD. +c) Complete the architecture and interface definitions to a level suitable for validation against agreed +operational scenarios and interoperability requirements. +d) Plan and prepare all validation activities, ensuring facilities, datasets, and environments are +available, and securing test NMOC platform access (no live system integration in this phase). +e) Deliver intermediate versions of all major deliverables to SESAR 3 JU at the Horizon Europe review +for feedback, to be incorporated in the second reporting period. + +Description of work +WP3 runs from Month 1 to Month 18 and is led by SkyNav, supported by EUROCONTROL, ENAC, and +other partners with expertise in operations, requirements engineering, and validation. The purpose of this +work package is to establish the operational and technical baseline for the planning solution and deliver the +first set of specifications and validation plans required to progress towards TRL 6. + +The first activity is the definition of the operational baseline, captured in the OSED (D3.1, M12). This +document describes the roles and responsibilities of mission operators, NM, ANSPs, State regulators, and +military stakeholders; the expected timing of planning actions; and the information exchanges needed during +the planning phase. The OSED forms the foundation for all downstream deliverables and ensures consistency +across safety, performance, and interoperability requirements. To support traceability, an FRD is also +prepared internally during early drafting. While not a formal deliverable, it is essential for ensuring that the +TS/IRS remains coherent and fully aligned with the operational baseline. + +The Initial TS/IRS (D3.2, M18) builds on this foundation by defining the functional behaviour and logical +interfaces required for the planning capability. It specifies what services must be provided, the data to be +exchanged, and how interfaces with NM systems, ANSP planning tools, and operator platforms should be +logically structured. As per SESAR guidance, the TS/IRS describes the “what” rather than the “how”, +leaving implementation detail open. An Intermediate OSED (D3.3, M18) is produced in parallel to capture +updates from requirements workshops and validation planning, ensuring that operational assumptions remain +consistent with technical specifications. + +The Initial VALP (D3.4, M18) is prepared during this period, setting out the validation strategy for the +solution. It defines the objectives, scenarios, KPIs, data sources, and facilities to be used in the next phase. +Particular emphasis is placed on the use of shadow/test NMOC platforms, rather than live operational +systems, to mitigate procedural, security, and stability risks while still enabling representative verification of +interfaces and data exchanges. Execution of validation will be conducted mainly in WP6, but the VALP +provides the structure and methodology to ensure that the solution can reach TRL 6. + +Preparation also begins for the economic and regulatory dimensions. The CBA is initiated during this +reporting period, with initial data inputs and modelling assumptions identified. This ensures that the later full +CBA will be based on validation data rather than starting from scratch. In parallel, the Initial STAND (D3.5, + +=== PAGE 175 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 30 of 44 +M18) and Initial REG (D3.6, M18) deliverables are drafted. STAND highlights candidate contributions to +standardisation bodies such as EUROCAE and ICAO, with an early focus on data models and planning +processes. REG captures the regulatory implications of the solution and proposes preliminary pathways for +alignment with EASA and national authorities. + +Integration into the SESAR architecture also begins in this phase. Model-based representations are +developed from TRL 4 onwards, ensuring consistency between the OSED, TS/IRS, and programme-level +architecture. A dedicated content-integration architect is appointed to coordinate with the SESAR 3 JU Point +of Contact and ensure alignment with Master Plan processes. + +Work in WP3 follows an iterative approach. Drafts and intermediate versions of the OSED, TS/IRS, and +VALP are produced in advance of the Technical Project Review (M9–10) and the Horizon Europe mid-term +review (M18–20). This enables SESAR 3 JU and partners to provide feedback and ensures deliverables are +refined before they are finalised in WP5. + +Risks in WP3 include delays in defining interfaces with external systems, restrictions on access to +operational data for validation, and potential misalignment with architecture modelling expectations. +Mitigations include early interface workshops with NM and ANSP technical teams, use of simulated or +anonymised datasets where direct access is not possible, and assignment of a dedicated content-integration +role to maintain architectural compliance. Quality assurance is provided through the project’s two-stage +review process: independent technical review by a non-authoring partner, followed by compliance review by +the Coordinator. + +By Month 18, WP3 will have produced a complete first iteration of all major deliverables for the planning +solution. These outputs provide the baseline for refinement, validation execution, and finalisation in WP5. +The workload is estimated at approximately 22–25 person-months, covering requirements capture, +specification drafting, validation planning, and preparatory work for standardisation and regulation. + +Milestones (Period 1) +• M3.1 (Month 6): Operational baseline and initial OSED endorsed by partners; FRD draft available +for architecture work. +• M3.2 (Month 12): Draft SPR-INTEROP/OSED and TS/IRS completed; VALP structure and +scenarios agreed; initial CBA inputs identified. +• M3.3 (Month 18): Intermediate versions of all TRL 6 deliverables submitted for Horizon Europe +review, with documented SESAR 3 JU and partner feedback ready for WP5 integration. + +Role of participants +• SkyNav (Lead): Drafts OSED, TS/IRS, and VALP; coordinates validation planning; contributes to +STAND; organises stakeholder workshops. +• EUROCONTROL: Provides NM expertise; ensures consistency with SESAR architecture; supports +TS/IRS drafting; contributes to validation scenarios. +• ENAC (Italy): Leads REG drafting; ensures regulatory pathways are realistic and aligned with +EASA/national authorities. +• All partners: Contribute operational scenarios, provide input to specifications, review drafts, and +support validation design. + + + + +=== PAGE 176 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 31 of 44 +Work package number WP4 +Work package title Solution 2 – Dynamic Real-Time Operations (M1–18) + +Objectives +WP4 initiates the development and early validation of a real-time coordination capability for managing high- +altitude and space transport operations during execution, enabling dynamic adaptation to changing +operational conditions while maintaining safe and efficient use of European airspace. The objectives for M1– +18 are to: +a) Establish the operational and technical baseline for real-time mission coordination, defining roles, +responsibilities, timing of actions, and required information exchanges between mission operators, +ANSPs, NM, and State regulators, and military when applicable. +b) Produce initial versions of the OSED, SPR-INTEROP/OSED, TS/IRS, VALP, and supporting +documents, with traceability between operational scenarios, requirements, and validation planning. +c) Develop early prototype functions for dynamic coordination in a representative non-operational test +environment, ensuring logical interfaces are in place with NM, ANSP, and operator systems. +d) Conduct initial validation activities to verify baseline workflows and basic functional behaviour, +identifying any issues that will need refinement in WP7. +e) Reduce risk for the final development and TRL 6 validation phase by resolving early specification +gaps, integration issues, and data exchange dependencies. + +Description of work +WP4 runs from Month 1 to Month 18 and is led by DLR, supported by EUROCONTROL, SkyNav, ENAC, +and other technical partners. It initiates the development of a real-time coordination capability for managing +space transport and higher-airspace operations during execution. The focus is on establishing the operational +and technical baseline, producing first versions of the key specifications, and running early validation +activities in test environments to reduce risk ahead of the full TRL 6 validation in WP6. + +The first step is the definition of the operational concept, which describes how real-time mission +coordination is carried out during active phases. The OSED (D4.1, M12) records stakeholder roles — +including mission operators, ANSPs, NM, State regulators, and military authorities — the timing of actions, +and the information exchanges needed for dynamic coordination. This provides the operational reference for +safety, performance, and interoperability requirements. + +To maintain requirements traceability, WP4 also prepares a Functional Requirements Document (FRD) +during the drafting phase. Although not a formal deliverable under SESAR’s TRL 6 framework, the FRD is +essential for coherent development of the TS/IRS. It ensures that requirements are captured consistently and +reduces the risk of gaps in later integration and validation. + +The SPR-INTEROP/OSED (D4.3, M18) consolidates safety, performance, and interoperability requirements, +supported by transversal safety and human performance assessments. Requirements are structured so they +can be traced directly into validation reporting and the later CBA. In parallel, the TS/IRS (D4.2, M18) +defines the functional behaviour and logical interfaces of the real-time coordination capability. It specifies +how updates, hazard adjustments, and contingencies are communicated between operator platforms, NM +systems, and ANSP tactical systems, using agreed data models and SWIM services. + +Validation planning is captured in the Initial VALP (D4.4, M18). It defines objectives, scenarios, KPIs, data +sources, facilities, and validation environments. In this first reporting period, the focus is on preparation and +limited test cases in a shadow/test NMOC platform, not the live operational system. This avoids the +procedural, security, and stability issues of live integration, while allowing representative interface + +=== PAGE 177 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 32 of 44 +verification. Early validation activities will include end-to-end message exchange for basic updates, +coordination of tactical hazard area adjustments against simulated traffic, and handling of late changes or +degraded data inputs. Results are consolidated in an interim validation note (as part of the VALP/VALR +cycle) to support updates in WP6. + +Economic analysis begins in this phase with identification of the main cost and benefit drivers. Early +modelling ensures that data collected during validation can be used directly for the CBA in WP6. +Standardisation and regulatory work also starts here, with the Initial STAND (D4.5, M18) identifying +candidate contributions to service definitions or data exchange protocols, and the Initial REG (D4.6, M18) +capturing early regulatory implications for EASA and national authorities. + +Integration into the SESAR architecture begins in this period. At least one model will be developed to +support the draft OSED and TS/IRS, and a content-integration architect is assigned to ensure alignment with +the SESAR 3 JU integration process. Draft deliverables (OSED, TS/IRS, SPR-INTEROP/OSED, VALP) +will be available for the Technical Project Review and Horizon Europe review, ensuring that feedback from +SESAR 3 JU and partners can be incorporated before the finalisation stage in WP6. + +Risks in WP4 include delays in defining interfaces with operational systems, limited fidelity of the test +environment for some scenarios, and restricted access to representative data. These are mitigated by holding +early interface definition workshops with NM and ANSP technical teams, using simulated or anonymised +datasets when live data is unavailable, and applying progressive integration testing to identify issues early. +All outputs undergo the project’s two-stage internal review: technical peer review by a non-authoring +partner, followed by compliance review by the Coordinator. + +By the end of Month 18, WP4 will have produced initial specifications, validation plans, and early test +results, providing the baseline for full development and validation in WP6. The workload is estimated at +approximately 22–24 person-months, distributed across DLR, EUROCONTROL, SkyNav, ENAC, and +supporting partners. + +Milestones (Period 1) +• M4.1 (Month 6): Draft operational concept for real-time coordination endorsed; FRD available for +early TS/IRS drafting. +• M4.2 (Month 12): Initial OSED completed; draft SPR-INTEROP/OSED and TS/IRS in circulation; +VALP structure defined. +• M4.3 (Month 18): Draft specifications and initial validation results consolidated for Horizon Europe +review, with SESAR 3 JU and partner feedback documented for WP6 integration. + +Role of participants +• DLR (Lead): Leads WP4, prepares FRD, develops TS/IRS, and coordinates VALP. Designs +prototype functions and ensures coherence across the solution. +• EUROCONTROL: Provides NM expertise, drafts OSED and supports TS/IRS drafting, leads +architecture integration, and contributes to early economic analysis. +• SkyNav: Supports OSED drafting, coordinates validation planning, drafts STAND, and contributes +to REG. +• ENAC (Italy): Leads REG drafting, ensuring regulatory perspectives are included in OSED and +validation design. +• All partners: Provide input to OSED and TS/IRS, support validation planning, participate in interface +workshops, and contribute to initial validation exercises. + + +=== PAGE 178 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 33 of 44 +Work package number WP5 +Work package title Solution 1 – Flexible and Scalable Mission Planning (Months 19–36) + +Objectives +WP5 refines the planning solution defined in WP3 and brings it to TRL 6. Its objectives are to: +a) Finalise the OSED, TS/IRS, and SPR-INTEROP/OSED to reflect lessons from validation and +stakeholder feedback. +b) Execute the validation scenarios defined in the VALP and consolidate results in the VALR. +c) Produce a comprehensive cost–benefit analysis based on validation evidence and stakeholder input. +d) Identify and prepare candidate contributions for standardisation bodies, and propose regulatory +material suitable for EASA and national authorities. +e) Deliver the complete TRL 6 documentation set, including the Contextual Note, demonstrating +readiness for transition to deployment. + +Description of work +WP5 runs from Month 19 to Month 36 and is led by SkyNav, supported by EUROCONTROL, ENAC, and +other technical partners. It refines the specifications and validation activities established in WP3 and brings +the planning solution to TRL 6 maturity. The focus is on extended validation, cost–benefit analysis, and +preparation of final regulatory and standardisation outputs. + +Work in this period begins with refinement of the OSED (D5.1, M30), ensuring it reflects lessons from early +validation activities and incorporates stakeholder feedback from the mid-project workshop and Technical +Project Review. Updates address refinements in operational roles, planning workflows, and information +exchanges. The OSED also serves as the operational reference for the final safety and performance +assessments. + +Validation activities continue with the execution of the scenarios defined in the VALP. By Month 30, the +Final VALP (D5.2) is produced, documenting adjustments to objectives, scenarios, and KPIs. Execution of +validation then proceeds across shadow/test NMOC platforms, fast-time simulations, and human-in-the-loop +exercises. Outputs are consolidated in the VALR (D5.4, M34), which presents evidence against performance +requirements, transversal safety and human performance assessments, and conclusions on the solution’s +maturity. + +Technical specifications are finalised in the TS/IRS (D5.3, M34). This document incorporates results from +validation, ensures consistency with the OSED, and confirms functional behaviours and logical interfaces for +deployment. Traceability to requirements and validation evidence is maintained throughout. + +Economic viability is demonstrated in the CBA (D5.7, M36), which quantifies the benefits of the planning +solution against costs of adaptation and deployment. The analysis draws on validation results, performance +data, and inputs from operators and ANSPs. EUROCONTROL leads the CBA, supported by partners +contributing operational and cost data. + +Standardisation and regulatory outputs are delivered in the second half of this work package. The Final +STAND (D5.5, M34) identifies concrete candidate contributions for EUROCAE and ICAO processes, such +as data model extensions or collaborative decision-making procedures for STO and HAO planning. The +Final REG (D5.6, M34) proposes acceptable means of compliance or guidance material for EASA and +national authorities, addressing both planning processes and integration into existing airspace management +frameworks. + +=== PAGE 179 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 34 of 44 + +The Contextual Note (D5.8, M36) completes the TRL 6 package, providing a concise introduction to the +solution, expected performance benefits, and recommendations for subsequent industrialisation or +deployment. Together with the final OSED, TS/IRS, VALR, CBA, STAND, and REG, it demonstrates +readiness for transition from research to deployment planning. + +Integration into the SESAR architecture continues throughout this period. At least one final architecture +model is delivered to ensure that specifications and validation results are reflected in the programme-level +architecture and checked for alignment with the Master Plan. Iterative internal reviews are held ahead of +each major submission to ensure deliverables are technically complete and compliant with SESAR quality +assessment criteria. + +Risks in WP5 include delays in completing validation exercises, inconsistency between operational and +technical deliverables, and challenges in quantifying costs and benefits. Mitigation measures include +maintaining buffer time in the validation schedule, assigning cross-review responsibilities between partners, +and early engagement with stakeholders to secure operational and cost data. + +By the end of Month 36, WP5 will have delivered the full set of TRL 6 planning solution outputs. These +provide the complete evidence base required for SESAR 3 JU maturity assessment and ensure that the +solution is positioned for adoption in regulatory and industrial contexts. WP5 is estimated at 25–28 person- +months across the consortium, reflecting the intensive nature of validation and finalisation activities. + +Milestones (Period 2) +• M5.1 (Month 24): Validation activities launched; draft updates to OSED and TS/IRS circulated. +• M5.2 (Month 30): Final OSED and VALP completed; validation scenarios executed. +• M5.3 (Month 34): Final TS/IRS, VALR, STAND, and REG submitted for review. +• M5.4 (Month 36): Contextual Note and CBA finalised; TRL 6 deliverable package submitted. + +Role of participants +• SkyNav (Lead): Updates and finalises OSED and TS/IRS, leads validation execution, coordinates +production of the Contextual Note, and contributes to STAND. +• EUROCONTROL: Leads the CBA, ensures validation aligns with network performance +assessments, and supports architecture integration. +• ENAC (Italy): Leads REG drafting, ensuring final outputs are aligned with EASA and national +regulatory frameworks. +• All partners: Provide input to validation, contribute operational and cost data, review draft +deliverables, and support finalisation of specifications and assessments. + + + + + +=== PAGE 180 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 35 of 44 +Work package number WP6 +Work package title Solution 2 – Dynamic Real-Time Operations (M19–36) + +Objectives +WP6 advances the real-time coordination solution from the specifications and preparation in WP4 to final +TRL 6 maturity. Its objectives are to: +a) Refine and finalise the OSED, TS/IRS, and SPR-INTEROP/OSED for dynamic real-time +coordination, incorporating feedback from validation and stakeholders. +b) Execute full-scale validation campaigns using representative scenarios, including launches, re- +entries, contingencies, and cross-border coordination. +c) Consolidate results in the VALR, providing robust evidence of safety, performance, interoperability, +and human performance. +d) Conduct a cost–benefit analysis to demonstrate operational and economic viability of the solution. +e) Produce final STAND and REG deliverables to support standardisation and regulatory adoption. +f) Deliver the complete TRL 6 package, including the Contextual Note, positioning the solution for +uptake by regulators, ANSPs, and industry. + +Description of work +WP6 runs from Month 19 to Month 36 and is led by DLR, supported by EUROCONTROL, ENAC, SkyNav, +and other partners. The work refines the operational and technical definitions established in WP4 and +executes the validation campaign needed to demonstrate maturity of the real-time coordination capability. + +The Final OSED (D6.1, M30) consolidates the operational concept for dynamic coordination, incorporating +refinements to message flows, decision-making protocols, and coordination timelines. Updates reflect both +stakeholder feedback and early validation results. The Final TS/IRS (D6.3, M34) specifies functional +behaviour and logical interfaces, detailing message types, service interactions, and timing requirements, +ensuring alignment with SWIM and SESAR architecture. The SPR-INTEROP/OSED consolidates safety, +performance, and interoperability requirements, with transversal safety and human performance assessments +appended. + +The Final VALP (D6.2, M30) updates the validation design to cover the full campaign. Validation activities +are executed in shadow/test NMOC platforms and ANSP simulation environments, providing operationally +realistic but non-live conditions. These may include: +• Nominal launch scenarios: launches from European (e.g. Andoya, Esrange, SaxaVord, CSG Kourou) +and non-European sites (e.g. Cape Canaveral) to test end-to-end workflows and coordination across +NM, ANSPs, and operators. +• Off-nominal launches: in-flight anomalies requiring rapid hazard area generation and dissemination +to affected ANSPs under compressed timelines. +• Uncontrolled re-entry scenarios: late-notice debris corridor definition requiring expedited hazard +area publication and cross-border coordination. +• Dynamic airspace release: validation that reserved volumes can be promptly released and updated in +NM/ANSP systems when no longer required. +• Hazard area adaptation: adjustments to active hazard areas due to new trajectory predictions, +weather, or traffic demand. +• Tactical decision support: evaluation of decision aids and situational awareness tools for time-critical +responses, including human performance assessments. +• Multiple HAPS within a 4DOZ: demonstration of HAPS self-coordination within a defined zone, +plus interaction with other operations (supersonic flights, STO launches) requiring coordinated NM +responses. + +=== PAGE 181 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 36 of 44 + +Execution of these scenarios produces the VALR (D6.4, M34), which consolidates results and provides the +evidence base for SESAR maturity assessment. + +The CBA (D6.7, M36) assesses operational and economic viability, drawing on validation results and +stakeholder data to quantify benefits such as reduced disruption, efficiency gains, and implementation costs. +EUROCONTROL leads this task, supported by ANSPs and operators. + +Exploitation outputs include the Final STAND (D6.5, M34), which identifies candidate standardisation +contributions for EUROCAE and ICAO, and the Final REG (D6.6, M34), which proposes acceptable means +of compliance or guidance material for EASA and national authorities. + +The Contextual Note (D6.8, M36) finalises the TRL 6 documentation set, summarising the solution scope, +performance, and deployment recommendations. + +Integration into the SESAR architecture continues through WP6, with a fully developed model aligned with +the final specifications. Quality assurance follows the project’s two-stage review (independent peer review, +then compliance review by the Coordinator). + +Risks include difficulty in sourcing representative trajectory data for off-nominal events, limitations of +testbed fidelity, and interoperability issues between distributed platforms. Mitigations include pre-agreed +datasets, early joint rehearsals, and progressive integration testing. + +Milestones (Period 2) +• M6.1 (Month 24): Validation campaign launched; updated OSED/TS/IRS drafts circulated. +• M6.2 (Month 30): Final OSED and VALP delivered; validation scenarios underway. +• M6.3 (Month 34): Final TS/IRS, VALR, STAND, and REG completed. +• M6.4 (Month 36): CBA and Contextual Note finalised; TRL 6 package submitted. + +Role of participants +• DLR (Lead): Leads WP6; responsible for TS/IRS refinement, VALP/VALR drafting, scenario +design, and execution of validation campaigns. +• EUROCONTROL: Leads the CBA and CN, responsible for OSED update and ensures NM +integration and alignment with SESAR architecture, contributes to validation execution. +• ENAC (Italy): Leads REG deliverables, ensures regulatory pathways are consistent with EASA and +national frameworks. +• SkyNav: Supports OSED and TS/IRS drafting, leads STAND drafting, coordinates stakeholder +engagement, contributes to validation design. +• ENAV and other ANSP’s will provide operational staff for the execution of validation campaigns. +• All partners: Provide input to scenarios, contribute data, support validation, and review deliverables. + + + +=== PAGE 182 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 37 of 44 + +Link to +work +package +ID +Solution +Solution +Title +Solution Definition Solution Lead +Beneficiary +Initial +Maturity +Level +Forecast +Target +Maturity Level +Qualitative Performance +Expectation (as per project +Handbook) +WP3 +WP5 + 1 Flexible +and +Scalable +Mission +Planning + A pre-tactical NM service +with a multi-State CDM +process for STO/HAO. It +ingests mission submissions +via a common digital interface, +allows impact assessments, +holds defined CDM +checkpoints to agree time- +bounded 4D hazard proposals +and danger areas, and +publishes machine-readable +products to ANSP and other +stakeholders. + SkyNav Europe 2 6 Earlier visibility of missions across the +network, fewer late network updates +through a structured collaborative +decision-making process, smaller and +shorter airspace restrictions, more +predictable demand and capacity +balancing, less manual coordination, +and a clear record of decisions for the +Network Manager and air navigation +service providers. + WP4 +WP6 + 2 Dynamic +Real-Time +Operations +A real-time NM service that +fuses operator status, +surveillance and +environmental inputs to +maintain an authoritative +network view of active +missions. It updates 4D +hazards and related FCAs in +near real time, supports early +release where safe, and +provides decision support for +targeted reroutes and flow +measures, with machine- +readable publication to NOP +participants. + DLR 2 6 Faster reaction to mission changes, +fewer unnecessary capacity reductions, +reduced minutes of airspace blocked +and ATFM delay on affected flows, +and a consistent authoritative network +picture across NM and ANSPs. + + +=== PAGE 183 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 38 of 44 +Table 3.1c: List of Deliverables +Number Deliverable +name Short description +Work +package +number +Short +name of +lead +participant +Type +Disse +minati +on +level +Delivery +date +(in +months) +D1.1 Kick-off +Meeting +Report +Attendees, agenda, +decisions, actions, initial +risks. +1 +EUROCO +NTROL R PU 1 +D1.2 Project +Management +Plan (PMP) +Governance, roles, +controls, reporting, QA, +change and risk. +1 +EUROCO +NTROL R PU 3 +D1.3 Data +Management +Plan (DMP) +FAIR data handling, +storage, access, licensing, +retention +1 +EUROCO +NTROL DMP PU 6 +D1.4 Updated +Project +Management +Plan (PMP) +PMP refresh reflecting +scope, schedule or risk +changes. +1 +EUROCO +NTROL R PU 20 +D1.5 Updated +Data +Management +Plan +DMP refresh with +datasets, repositories and +access updates. +1 +EUROCO +NTROL DMP PU 22 +D1.6 Final Data +Management +Plan +Consolidated data +management outcomes +and final access details. +1 +EUROCO +NTROL R PU 32 +D1.7 Final Project +Report +Technical, validation, +impact and management +summary +1 +EUROCO +NTROL R PU 36 +D2.1 Communicati +on & +Disseminatio +n Plan +Audiences, messages, +channels, KPIs, editorial +calendar. +2 SKYNAV R PU 3 +D2.2 Project +Website and +Online +presence +Public site with news, +outputs and contact. 2 SKYNAV DEC PU 3 +D2.3 Updated +CDE Plan +Mid-term update of +comms/dissemination +KPIs and actions. +2 SKYNAV R PU 20 +D2.4 Mid-project +Stakeholder +Workshop +Report +Planning, organisation +and delivery of the mid- +project workshop; agenda, +participants, materials, +outcomes and actions. +2 +EUROCO +NTROL R PU 18 + + + + +=== PAGE 184 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 39 of 44 +D2.5 End-project +Stakeholder +Workshop +Report +Planning, organisation and +delivery of the end-project +workshop; agenda, +participants, materials, +outcomes, lessons learned +and uptake/next steps. +2 +EUROCO +NTROL R PU 36 +D3.1 Initial OSED Baseline concept, roles, +scenarios, constraints +(Solution 1). +3 SKYNAV R PU 12 +D3.2 Initial +TS/IRS +Baseline functional +behaviour and interfaces +(Solution 1). +3 SKYNAV R PU 18 +D3.3 Intermediate +OSED +Updated OSED with +integration and review +inputs (Solution 1). +3 SKYNAV R PU 18 +D3.4 Initial VALP Validation plan: methods, +scenarios, KPIs, evidence +map (Solution 1). +3 SKYNAV R PU 18 +D3.5 Initial +STAND +Initial standardisation +targets and contribution +roadmap. +3 SKYNAV R PU 18 +D3.6 Initial REG Initial regulatory analysis +and draft inputs. 3 ENAC IT R PU 18 +D4.1 Initial OSED Baseline concept, roles, +scenarios, constraints +(Solution 2). +4 +EUROCO +NTROL R PU 12 +D4.2 Initial +TS/IRS +Baseline functional +behaviour and interfaces +(Solution 2). +4 DLR R PU 18 +D4.3 Intermediate +OSED +Updated OSED with +integration and review +inputs (Solution 2). +4 +EUROCO +NTROL R PU 18 +D4.4 Initial VALP Validation plan: methods, +scenarios, KPIs, evidence +map (Solution 2). +4 DLR R PU 18 +D4.5 Initial +STAND +Initial standardisation +targets and contribution +roadmap. +4 SKYNAV R PU 18 +D4.6 Initial REG Initial regulatory analysis +and draft inputs. 4 ENAC IT R PU 18 +D5.1 Final OSED Consolidated operational +concept (Solution 1). 5 SKYNAV R PU 30 +D5.2 Final VALP Finalised validation plan +and acceptance criteria +(Solution 1). +5 SKYNAV R PU 30 + + +=== PAGE 185 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 40 of 44 +D5.3 Final TS/IRS Complete technical and +interface specifications +(Solution 1). +5 SKYNAV R PU 34 +D5.4 VALR Validation results vs KPIs +and acceptance criteria +(Solution 1). +5 SKYNAV R PU 34 +D5.5 Final +STAND +Packaged standardisation +inputs for adoption +(Solution 1). +5 SKYNAV R PU 34 +D5.6 Final REG Final regulatory +recommendations (Solution +1). +5 ENAC IT R PU 34 +D5.7 CBA Cost–benefit assessment +and deployment business +case (Solution 1). +5 +EUROCO +NTROL R PU 36 +D5.8 Contextual +Note +Non-technical summary +and policy/standardisation +context (Solution 1). +5 SKYNAV R PU 36 +D6.1 Final OSED Consolidated operational +concept (Solution 2). 6 +EUROCO +NTROL R PU 30 +D6.2 Final VALP Finalised validation plan +and acceptance criteria +(Solution 2). +6 DLR R PU 30 +D6.3 Final TS/IRS Complete technical and +interface specifications +(Solution 2). +6 DLR R PU 34 +D6.4 VALR Validation results vs KPIs +and acceptance criteria +(Solution 2). +6 DLR R PU 34 +D6.5 Final +STAND +Packaged standardisation +inputs for adoption +(Solution 2). +6 SKYNAV R PU 34 +D6.6 Final REG Final regulatory +recommendations (Solution +2). +6 ENAC IT R PU 34 +D6.7 CBA Cost–benefit assessment +and deployment business +case (Solution 2). +6 +EUROCO +NTROL R PU 36 +D6.8 Contextual +Note +Non-technical summary +and policy/standardisation +context (Solution 2). +6 +EUROCO +NTROL R PU 36 + + + +=== PAGE 186 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 41 of 44 +Table 3.1d: List of milestones +Milestone +number +Milestone +name +Related work +package(s) +Due date (in month) Means of verification +1.1 Kick-off +meeting held +1 1 KOM minutes, attendance +list, agenda submitted to +SESAR 3 JU +1.2 Project +Management +Plan approved +1 3 PMP approved by PMB +and delivered to SESAR 3 +JU +2.1 CDE Plan +approved and +website +operational +2 3 CDE Plan published, +project website online and +accessible +1.3 End of Period 1 +review package +completed +1 18 Consolidated technical +and administrative reports, +updated maturity self- +assessments submitted +2.2 Mid-project +stakeholder +workshop +delivered +2 18 Workshop held, +participant list and report +submitted +3.1 Baseline +specification +package +completed +3 18 Initial OSED, TS/IRS, +VALP, SPR-INTEROP, +STAND, REG available +for review +4.1 Baseline +specification +package +completed +4 18 Initial OSED, TS/IRS, +VALP, SPR-INTEROP, +STAND, REG available +for review +1.4 Horizon Europe +Review +readiness +confirmed +1 21 All evidence validated +internally, full package +ready for HE review +1.5 Exit maturity +gate readiness +confirmed +1 34 Final solution packages, +maturity self-assessments, +supporting documentation +available +5.1 +Final solution +package +completed +5 34 Final OSED, TS/IRS, +VALP, VALR, SPR- +INTEROP, STAND, REG, +draft CBA submitted for +exit gate +6.1 +Final solution +package +completed +6 34 Final OSED, TS/IRS, +VALP, VALR, SPR- +INTEROP, STAND, REG, +draft CBA submitted for +exit gate +1.6 Grant +Agreement +closure package +submitted +1 36 Final report and financial +closure documentation +submitted + + + +=== PAGE 187 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 42 of 44 +2.3 Final +stakeholder +workshop +delivered +2 36 Workshop held, +participant list and report +submitted +5.2 Contextual +Note delivered +5 36 Final CN and CBA +submitted as solution +handover +6.2 Contextual +Note delivered +6 36 Final CN and CBA +submitted as solution +handover + +Table 3.1e: Critical risks for implementation #@RSK-MGT-RM@# +Description of risk (indicate level of +(i) likelihood, and (ii) severity: +Low/Medium/High) +Work package(s) +involved +Proposed risk-mitigation measures +Operational data/platform access +delayed. Access to +NM/ANSP/operator test +data/environments slips and blocks +integration/validation. (L: Medium; S: +High) +WP3, WP4, WP5, WP6 Early MoUs/LoIs; define +synthetic/archived datasets; use +shadow/testbeds; add stage-gates tied to +access. +Too few representative missions. Not +enough suitable missions within the +project window to exercise +scenarios/KPIs. (L: Medium; S: High) +WP3, WP4, WP5, WP6 Pre-agree mission windows; use +archived/synthetic data; diversify +scenarios to reduce dependence on a +single provider. +Cross-border complexity causes +scope creep/delay. Multi-State +coordination adds FIRs/steps and +stretches timelines. (L: Medium; S: +Medium) +WP3, WP4, WP5, WP6 Fix pilot cross-border scenarios in +VALP; strict change control; cap +number of FIRs; use common templates. +Validation resources/facilities +constrained. Limited access to +controllers/sim labs/NM testbeds or +range windows. (L: Medium; S: High) +WP3, WP4, WP5, WP6 Book early with LoIs; reserve +contingency slots; enable +remote/recorded sessions; allow +synthetic/archived data where live +access is unavailable. +Integration & scalability +underestimated. Interface effort/peak- +load performance exceed plan. (L: +Medium; S: High) +WP3, WP4, WP5, WP6 + Issue ICDs early; run early integration +sprints; perform load/stress tests; keep +a scale-out plan. + +Technical performance shortfalls. +One or more components miss +quality/performance thresholds in +trials. (L: Medium; S: High) +WP3, WP4, WP5, WP6 Define KPIs in TS/IRS & VALP; +benchmark early on reference datasets; +staged acceptance with human-in-the- +loop fallback. +Interoperability variability. Some +stakeholders cannot ingest machine- +readable outputs during trials. (L: +Medium; S: Medium) +WP3, WP4, WP5, WP6 + +Publish schemas & examples; provide +simple reference adapters; dual outputs +(machine-readable + human-readable); +early plug-tests. + + +=== PAGE 188 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 43 of 44 + +Budget/schedule pressure → TRL +shortfall. Slippage forces scope cuts +below TRL-6 targets. (L: Low; S: +High) +WP3, WP4, WP5, WP6 Prioritise TRL-critical scope; TRL +gates/readiness reviews; early de-scope +of non-essentials with governance +approval. +Open Science vs data +protection/security. FAIR openness +conflicts with confidentiality/security +limits. (L: Low; S: Medium) +WP2 + +Tiered access in DMP; +anonymised/synthetic public sets; +embargo periods; separate +public/restricted artefacts. + +#§RSK-MGT-RM§# +Table 3.1f: Summary of staff effort + WP1 WP2 WP3 WP4 WP5 WP6 Total Person- +Months per +Participant +1 EUROCONTROL 20,0 10,0 31,0 41,0 31,0 41,0 174,0 +2 DFS - - 1,6 1,3 1,2 1,3 5,4 +3 DLR 6,0 6,0 9,0 38,0 8,0 39,0 106,0 +4 SWEDISH CIVIL +AVIATION +AUTHORITY + - - 5,7 8,1 5,7 8,1 27,6 +5 ENAV 1,5 1,5 4,5 5,5 4,5 7,0 24,5 +6 NATS 2,0 1,0 4,0 4,0 3,0 3,0 17,0 +7 ENAIRE 1,0 1,8 1,2 1,0 1,0 1,0 7,0 +8 Europe Space +Centre GmbH / +SaxaVord + - - 0,8 0,8 0,6 0,6 2,8 +9 ENAC IT 2,0 1,0 7,5 9,0 7,0 8,0 34,5 +10 SkyNav Europe 7,5 18,0 21,0 14,0 32,0 16,0 108,5 +11 ENAC FR 0,6 4,0 4,5 4,5 4,5 4,5 22,6 +12 LIU - - 4,0 - 4,0 - 8,0 +13 CIRA 1,0 1,0 - 20,0 - 25,0 47,0 +14 Sceye Spain - - 4,3 4,3 2,5 2,5 13,6 +15 IFATCA 2,0 2,0 3,0 3,0 3,0 5,0 18,0 +16 OpenUTM - 1,0 4,0 - 8,0 - 13,0 +17 THALES LAS +FRANCE SAS + - - - 6,0 - - 6,0 +18 ANRA +TECHNOLOGIES +UK LTD + - 1,0 8,0 12,0 8,0 12,0 41,0 +19 HAPS Alliance +Total Person Months +43,6 + +48,3 + +114,1 + +172,5 + +124,0 + +174,0 + + 676,5 + +Should this tender be successful EUROCONTROL, as part of the consortium, will participate in the project actions +without requesting funding. EUROCONTROL will, however, fully engage in the project and in particular is +committed to providing the effort, contributions to deliverables and to other activities as set out in this tender and in +the accompanying administrative forms. + +=== PAGE 189 === +Call: [HORIZON-SESAR-2025-DES-IR-02] — [Digital European Sky Industrial Research 02] +EU Grants: Application form (HE RIA and IA) (HORIZON-SESAR-2025-DES-IR-02): V4.0 – 18.12.2024 + + +Part B - Page 44 of 44 + +Table 3.1g: ‘Subcontracting costs’ items +1/EUROCONTROL + Cost (€) Description of tasks and justification +Subcontracting 300.000 EUROCONTROL may have to outsource part of the software +development associated with the interface between the prototype N- +RMM and proprietary systems used for the technical testing. +EUROCONTROL, as an international organisation, follows strict rules +in terms of external assistance selection and procurement. These rules +will be applied for the selection of the subcontracting parties in the +framework of the project. + +Table 3.1h: ‘Purchase costs’ items (travel and subsistence, equipment and other goods, works and +services) +Not applicable. +Table 3.1i: ‘Other costs categories’ items (e.g. internally invoiced goods and services) +Not applicable. +Table 3.1j: ‘In-kind contributions’ provided by third parties +Not applicable. +#§QUA-LIT-QL§# #§WRK-PLA-WP§# + +=== PAGE 190 === + + +Commission européenne/Europese Commissie, 1049 Bruxelles/Brussel, BELGIQUE/BELGIË - Tel. +32 22991111 + + + + +This electronic receipt is a digitally signed version of the document submitted by your +organisation. Both the content of the document and a set of metadata have been digitally +sealed. +This digital signature mechanism, using a public -private key pair mechanism, uniquely +binds this eReceipt to the modules of the Funding & Tenders Portal of the European +Commission, to the transaction for which it was generated and ensures its full integr ity. +Therefore a complete digitally signed trail of the transaction is available both for your +organisation and for the issuer of the eReceipt. +Any attempt to modify the content will lead to a break of the integrity of the electronic +signature, which can b e verified at any time by clicking on the eReceipt validation +symbol. +More info about eReceipts can be found in the FAQ page of the Funding & Tenders +Portal. +(https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/support/faq) + \ No newline at end of file diff --git a/docs/Tenders/past tenders/tmp_pdf_extracts/STRATUS Proposal-SEP-211192028.txt b/docs/Tenders/past tenders/tmp_pdf_extracts/STRATUS Proposal-SEP-211192028.txt new file mode 100644 index 0000000..c6f3066 --- /dev/null +++ b/docs/Tenders/past tenders/tmp_pdf_extracts/STRATUS Proposal-SEP-211192028.txt @@ -0,0 +1,6098 @@ + + +=== PAGE 1 === +Administrative forms +Page 1 of 166 Last saved 16/09/2025 22:33Horizon Europe ver 1.00 20241022 +Call: HORIZON-SESAR-2025-DES-ER-03 + (Digital European Sky Exploratory Research 03) +Topic: HORIZON-SESAR-2025-DES-ER-03-WA2-1 +Type of Action: HORIZON-JU-RIA + (HORIZON JU Research and Innovation Actions) +Proposal number: 101290642 +Proposal acronym: STRATUS +Type of Model Grant Agreement: HORIZON Lump Sum Grant +Table of contents +Section Title Action +1 General information +2 Participants +3 Budget +4 Ethics and security +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 2 === +Administrative forms +Page 2 of 166 +Proposal ID 101290642 +Acronym STRATUS +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 22:33 +1 - General information +Fields marked * are mandatory to fill. +Topic HORIZON-SESAR-2025-DES-ER-03-WA2-1 +Type of Model Grant Agreement HORIZON-AG-LS +Type of Action HORIZON-JU-RIA +Call HORIZON-SESAR-2025-DES-ER-03 +Acronym STRATUS +Proposal title STRATUS — Safety & Transformed Resilience for high-Altitude Traffic Unified Services +Note that for technical reasons, the following characters are not accepted in the Proposal Title and will be removed: < > " & +Duration in +months 30 +Free keywords +ECHO Phase 3 European Concept For Higher Altitude Operations HAO Service Provider concept Space Transport +Operations New Entrants Supersonic Hypersonic Suborbital HAPS +Abstract * +STRATUS (Safety and Transformed Resilience for High-Altitude Traffic Unified Services) will define a modular and scalable framework +for integrating Higher Airspace Operations (HAO) and Space Transport Operations (STO) into the European ATM framework. The focus +is on the low-density airspace above conventional traffic, generally above flight level FL550. This is where high-performance +supersonic and hypersonic aircraft, automated High Altitude Platform Systems (HAPS) fleets, and sub-orbital operations are expected +to multiply in the coming decade. +Building on the exploratory CONOPS produced in the ECHO project, and taking into account the work now underway in ECHO2, +STRATUS will expand the scope to cover a wider set of operational scenarios, vehicle types and service models. It will address the +operational, functional, technical and regulatory foundations required for integration, in line with the priorities of the European ATM +Master Plan for higher-airspace operations, dynamic airspace configuration, service-oriented architectures and cyber-secure +digitalisation. Concentrating on the higher airspace, where traffic density is relatively low, provides the opportunity to mature and +validate innovative concepts and technologies while limiting operational risk to existing ATM. +The objectives of STRATUS follow a logical progression from establishing operational demand in higher airspace, through the +development of concepts and supporting frameworks, to the consideration of regulatory and other relevant implications that may +influence successful implementation. +Remaining characters 419 +Has this proposal (or a very similar one) been submitted in the past 2 years in response to a call for + proposals under any EU programme, including the current call? +Yes No +Please give the proposal reference or contract number. +Previously submitted proposals should be with either 6 or 9 digits. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 3 === +Administrative forms +Page 3 of 166 +Proposal ID 101290642 +Acronym STRATUS +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 22:33 +Declarations +Field(s) marked * are mandatory to fill. +1) We declare to have the explicit consent of all applicants on their participation and on the content of this proposal. * +2) We confirm that the information contained in this proposal is correct and complete and that none of the project +activities have started before the proposal was submitted (unless explicitly authorised in the call conditions). * +3) We declare: + - to be fully compliant with the eligibility criteria set out in the call + - not to be subject to any exclusion grounds under the EU Financial Regulation 2018/1046 + - to have the financial and operational capacity to carry out the proposed project. * +4) We acknowledge that all communication will be made through the Funding & Tenders Portal +electronic exchange system and that access and use of this system is subject to the Funding & Tenders Portal Terms +and Conditions. * +5) We have read, understood and accepted the Funding & Tenders Portal Terms & Conditions and +Privacy Statement that set out the conditions of use of the Portal and the scope, purposes, retention periods, etc. for +the processing of personal data of all data subjects whose data we communicate for the purpose of the application, +evaluation, award and subsequent management of our grant, prizes and contracts (including financial transactions and +audits). * +6) We declare that the proposal complies with ethical principles (including the highest standards of research integrity +as set out in the ALLEA European Code of Conduct for Research Integrity, as well as applicable international and +national law, including the Charter of Fundamental Rights of the European Union and the European Convention on +Human Rights and its Supplementary Protocols. Appropriate procedures, policies and structures are in place to foster +responsible research practices, to prevent questionable research practices and research misconduct, and to handle +allegations of breaches of the principles and standards in the Code of Conduct. * +7) We declare that the proposal has an exclusive focus on civil applications (activities intended to be used in military +application or aiming to serve military purposes cannot be funded). If the project involves dual-use items in the sense +of Regulation 2021/821, or other items for which authorisation is required, we confirm that we will comply with the +applicable regulatory framework (e.g. obtain export/import licences before these items are used). * +8) We confirm that the activities proposed do not +- aim at human cloning for reproductive purposes; +- intend to modify the genetic heritage of human beings which could make such changes heritable + (with the exception of research relating to cancer treatment of the gonads, which may be financed), or +- intend to create human embryos solely for the purpose of research or for the purpose of stem + cell procurement, including by means of somatic cell nuclear transfer. +- lead to the destruction of human embryos (for example, for obtaining stem cells) +These activities are excluded from funding. * +9) We confirm that for activities carried out outside the Union, the same activities would have been allowed in at least +one EU Member State. * +10) For Lump Sum Grants with a detailed budget table: We understand and accept that the EU lump sum grants must +be reliable proxies for the actual costs of a project and confirm that the detailed budget for the proposal has been +established in accordance with our usual cost accounting practices and in compliance with the basic eligibility +conditions for EU actual cost grants (see AGA - Annotated Grant Agreement, art 6) and exclude costs that are ineligible +under the Programme. Purchases and subcontracting costs must be done taking into account best value for money +and must be free of conflict of interest. * +The coordinator is only responsible for the information relating to their own organisation. Each applicant remains responsible for the information declared for +their organisation. If the proposal is retained for EU funding, they will all be required to sign a declaration of honour. +False statements or incorrect information may lead to administrative sanctions under the EU Financial Regulation. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 4 === +Administrative forms +Page 4 of 166 +Proposal ID 101290642 +Acronym STRATUS +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 22:33 +2 - Participants +List of participating organisations +# Participating Organisation Legal Name Country Role Action +1 EUROCONTROL - EUROPEAN ORGANISATION FOR THE SAFBelgium Coordinator +2 DFS DEUTSCHE FLUGSICHERUNG GMBH Germany Partner +3 ENAV SPA IT Partner +4 LUFTFARTSVERKET SE Partner +5 NATS (EN ROUTE) PUBLIC LIMITED COMPANY UK Partner +6 ENAIRE ES Partner +7 ENTE NAZIONALE PER L'AVIAZIONE CIVILE - ENAC ITALIANIT Partner +8 CONSORCIO AERODROMO AEROPUERTO DE TERUEL ES Partner +9 SkyNav Europe BE Partner +10 ECOLE NATIONALE DE L AVIATION CIVILE FR Partner +11 C.I.R.A. CENTRO ITALIANO RICERCHE AEROSPAZIALI SCPA IT Partner +12 STICHTING KONINKLIJK NEDERLANDS LUCHT - EN RUIMTE NL Partner +13 INTERNATIONAL FEDERATION OF AIR TRAFFIC CONTROLL CA Partner +14 INGENIERIA Y ECONOMIA DEL TRANSPORTE SME MP SA ES Partner +15 CENTRO DE REFERENCIA INVESTIGACION DESARROLLO E ES Partner +16 INSTITUUT VOOR INFRASTRUCTUUR, MILIEU EN INNOVATI BE Partner +17 OpenUTM Ltd. IE Partner +18 DEUTSCHES ZENTRUM FUR LUFT - UND RAUMFAHRT EV DE Partner +19 SCEYE SPAIN S.L. ES Partner +20 ANRA TECHNOLOGIES OU EE Partner +21 HAPS Alliance United States Associated +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 5 === +Administrative forms +Page 5 of 166 +Proposal ID 101290642 +Acronym STRATUS +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 22:33 +# Participating Organisation Legal Name Country Role Action +22 UDARAS EITLIOCHTA NA HEIREANN THE IRISH AVIATION AIreland Associated +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 6 === +Administrative forms +Page 6 of 166 Last saved 16/09/2025 22:33 +Organisation data +PIC +999483733 +Legal name +EUROCONTROL - EUROPEAN ORGANISATION FOR THE SAFETY OF AIR NAVIGATION +Short name: EUROCONTROL + +Address +Town BRUXELLES +Postcode 1130 +Street Rue de la Fusée 96 +Country Belgium +Webpage www.eurocontrol.int +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... yes +Secondary or Higher education establishment ...... no +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 14/02/2022 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 7 === +Administrative forms +Page 7 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +Department 1 +Department name Aviation Transformation Directorate +Street Rue de la Fusée 96 +Town BRUXELLES +Same as proposing organisation's address +not applicable +Country Belgium +Postcode 1130 +Department 2 +Department name Network Manager Directorate +Street Rue de la Fusée 96 +Town BRUXELLES +Same as proposing organisation's address +not applicable +Country Belgium +Postcode 1130 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 8 === +Administrative forms +Page 8 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Ovidiu Last name* DUMITRACHE +E-Mail* ovidiu.dumitrache@eurocontrol.int +Town BRUXELLES Post code 1130 +Street Rue de la Fusée 96 +Website www.eurocontrol.int +Position in org. Senior Manager Research Strategy +Department Aviation Transformation Directorate +Phone +32 2 729 30 52 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Belgium +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +CM Team EUROCONTROL atd.ppu.cmt@eurocontrol.int +xxx xxxxxxxxx +Pablo HARO pablo.haro@eurocontrol.int +xxx xxxxxxxxx +Dragos TONEA dragos.tonea@eurocontrol.int +xxx xxxxxxxxx +Fiona MULLAN fiona.mullan@eurocontrol.int +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 9 === +Administrative forms +Page 9 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Pablo Haro Man Spain pablo.haro@euro +control.int Category B Senior resea Team member +Mr Ovidiu Dumitrache Man Romania ovidiu.dumitrach +e@eurocontrol.in +t +Category B Senior resea Leading +Ms Marta FERNANDEZ +CASTRILLO +Woman Spain marta.fernandez- +castrillo@euroco +ntrol.int +Category C Recognised Team member +Mrs Fiona Mullan Woman Ireland fiona.mullan@eur +ocontrol.int +Category D First stage r Team member +Mr Dragos Tonea Man Romania dragos.tonea@eu +rocontrol.int +Category B Senior resea Leading +Mr Augustin Udrisitoiu Man Romania augustin.udristioi +u@eurocontrol.in +t +Category C Recognised Team member +Mr Edgar Reuber Man Germany edgar.reuber@eu +rocontrol.int +Category C Recognised Team member +Mr Gabor Fugedi Man Hungary gabor.fugedi@eu +rocontrol.int +Category C Recognised Team member +Mr Octavian FOTA Man Romania octavian.fota@eu +rocontrol.int +Category B Senior resea Team member +Mrs Lucia Sandu Woman Moldova lucia.sandu@eur +ocontrol.int +Category D First stage r Team member +Mr Stefano Tiberia Man Italy stefano.tiberia@e +urocontrol.int +Category B Senior resea Team member +Mrs Aleksandra Owoc-Berson Woman Poland aleksandra.owoc- +berson@eurocon +trol.int +Category D First stage r Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 10 === +Administrative forms +Page 10 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 11 === +Administrative forms +Page 11 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Other achievement +As a founding member of the SESAR Programme and Joint Undertaking, EUROCONTROL has +been involved in all the phases (Definition, Development and Deployment) contributing +significantly to many of its most important achievements, such as the definition and +maintenance of the European ATM Master Plan, the SESAR 3 Strategic Research and +Innovation Agenda and a large number of Solutions delivered in the context of the SESAR 1 +and SESAR 2020. +Dataset +The EUROCONTROL Base of Aircraft Data (BADA) Aircraft Performance Model (APM) is a +globally recognized reference database containing aircraft-specific coefficients and +theoretical models used to calculate aircraft performance parameters. +Service +The EUROCONTROL Network Manager Operations Centre (NMOC) permanently monitors the +airspace capacity against traffic load. This allows us to have an accurate picture of the current +and expected European ATM network situation. To ensure the transparent and efficient +operation of the network, we collect all of the real-time data generated by the network and +share it with all operational partners through our Data Collection and Distribution Services +(DCS and DDS). +Service +At the EUROCONTROL NMOC we measure, investigate and report on operational processes +and activities throughout all domains relevant to Air Traffic Flow and Capacity Management. +All stakeholders provide feedback on the efficiency of the flight planning and airspace data +processing. We compare forecasts with the actual measured outcome in terms of delay and +route extension, while taking into account performance targets. This helps us improve the +performance of the European ATM Network. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO 2 project (Ref 101114697) +ECHO-2 is building on the deliverables of the ECHO (European Concept of Higher airspace +Operations) project, starting from the +Concept of Operations, to propose validated solutions paving the way towards the +operational integration of HAO in ATM. +ECHO project (ref. SESARER4- +19-2019) +The ECHO (European Concept of Higher airspace Operations) Project aimed at delivering a +comprehensive demand analysis and a comprehensive, innovative and feasible Concept of +Operations enabling near term and future Higher Airspace operations in a safe and orderly +manner. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +NMVP +Validation platform allowing to design and validate solutions for Network Management in a +more flexible way. Validations can now be replayed across NM’s backend systems (Enhanced +Tactical Flow Management System, Integrated Initial Flight Plan Processing System) and the +front-end systems. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 12 === +Administrative forms +Page 12 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 13 === +Administrative forms +Page 13 of 166 Last saved 16/09/2025 22:33 +PIC +999936820 +Legal name +DFS DEUTSCHE FLUGSICHERUNG GMBH +Short name: DFS + +Address +Town LANGEN +Postcode 63225 +Street AM DFS CAMPUS 10 +Country Germany +Webpage www.dfs.de +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is unknown (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... unknown +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 14 === +Administrative forms +Page 14 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 15 === +Administrative forms +Page 15 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Andreas Last name* UDOVIC +E-Mail* andreas.udovic@dfs.de +Town LANGEN Post code 63225 +Street AM DFS CAMPUS 10 +Website www.dfs.de +Position in org. Project Manager +Department Operational Planing +Phone 0610370705758 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Germany +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Alexander SEYBOLD alexander.seybold@dfs.de +4961077072034 +Oliver ALBERT oliver.albert@dfs.de +4961077072073 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 16 === +Administrative forms +Page 16 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Andreas Udovic Man Germany andreas.udovic@ +dfs.de Category B Senior resea Team member Researcher ID +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 17 === +Administrative forms +Page 17 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 18 === +Administrative forms +Page 18 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication • Presentation of „Obelisk“ auf den Kongress „HAPS4ESA Workshop“, 12-14.02.2024, +Leiden +Publication +• Article: Obelisk - Operationelles Betriebskonzept zur sicheren und effizienten +Luftraumintegration von Stratosphärenplattformen, DFS-Zeitschrift „Innovation im Fokus“ +publication in preparation for 2025 foreseen +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +OBELISK • German national founded projetct „Obelisk Operationelles Betriebskonzept zur +sicheren und effizienten Luftraumintegration von Stratosphärenplattformen“ 2019-2024 +ECHO2 • Participation on „ECHO 2 European Concept für High Altitude Operations 2” +2023-2026 +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 19 === +Administrative forms +Page 19 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 20 === +Administrative forms +Page 20 of 166 Last saved 16/09/2025 22:33 +PIC +998197513 +Legal name +ENAV SPA +Short name: ENAV + +Address +Town ROMA +Postcode 00138 +Street VIA SALARIA 716 +Country Italy +Webpage www.enav.it +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 28/08/2008 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... 28/08/2008 - no +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 21 === +Administrative forms +Page 21 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +Department 1 +Department name Engineering and Infrastructures +Street Via Appia Nuova 1491 +Town Rome +Same as proposing organisation's address +not applicable +Country Italy +Postcode 00178 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 22 === +Administrative forms +Page 22 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Ramona Last name* SANTARELLI +E-Mail* ramona.santarelli@enav.it +Town Rome Post code 00138 +Street Via Pietro Boccanelli, 32/34 +Website www.enav.it +Position in org. ATM Researcher +Department Innovation and Research +Phone +39 06 81664013 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Ms +Same as proposing organisation's address +Country Italy +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Daniele Teotino daniele.teotino@enav.it +39 0681662364 +Angela Iurilli angela.iurilli@enav.it +39 06 81664411 +Patrizia Criscuolo patrizia.criscuolo.1@enav.it +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 23 === +Administrative forms +Page 23 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Ms Ramona Santarelli Woman Italy ramona.santarelli +@enav.it Category B Senior resea Team member EX2025D1106377 Researcher ID +Ms Marinella Massari Woman Italy marinella.massari +@enav.it +Category B Senior resea Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 24 === +Administrative forms +Page 24 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 25 === +Administrative forms +Page 25 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication Cleared 06/2020 "Space Traffic Management - La futura gestione del traffico aereo nello +spazio". S. Romano, L. Brucculeri, ENAV, Italy +Publication Cleared 02/2025 "Navigare nel futuro, l'ascesa delle Higher Airspace Operations". +R. Santarelli, Federico Ferrari, ENAV, Italy +Publication +Aerospace 2019, 7, 24, "U-Space Concept of Operations: A Key Enabler for Opening Airspace to +Emerging Low-Altitude Operations". +Cristina Barrado, Mario Boyero, Luigi Brucculeri, Giancarlo Ferrara, Andrew Hately, Peter +Hullah, David Martin-Marrero, Enric Pastor, Anthony Peter Rushton and Andreas Volkert . +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SESAR3 ECHO2 European Concept +for HAO Phase 2 +The project aims to define new operating methods to support the safe, secure, and sustainable +development of civil aviation operations taking place in higher airspace. +The project develops three solutions for integrating higher airspace operations in the +European ATM system, focusing on Space Real Time Mission Monitoring supporting Network +Operations, and the integration of HAPS, Supersonic, Hypersonic and Suborbital Operations in +European ATM. +ECHO European Concept for HAO +The ECHO (European Concept of Higher airspace Operations) Project delivers a comprehensive +demand analysis and a comprehensive, innovative and feasible Concept of Operations +enabling near term and future Higher Airspace operations in a safe and orderly manner. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 26 === +Administrative forms +Page 26 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 27 === +Administrative forms +Page 27 of 166 Last saved 16/09/2025 22:33 +PIC +942346077 +Legal name +LUFTFARTSVERKET +Short name: LFV + +Address +Town NORRKOPING +Postcode 602 27 +Street HOSPITALSGATAN 30 +Country Sweden +Webpage http://www.lfv.se +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 20/03/2014 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 28 === +Administrative forms +Page 28 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +Department 1 +Department name LFV Research and Innovation +Street HOSPITALSGATAN 30 +Town NORRKOPING +Same as proposing organisation's address +not applicable +Country Sweden +Postcode 602 27 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 29 === +Administrative forms +Page 29 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Lindsey Last name* MARTENEZ-HERMOSILLA +E-Mail* lindsey.martenez-hermosilla@lfv.se +Town NORRKOPING Post code 602 27 +Street HOSPITALSGATAN 30 +Website www.lfv.se +Position in org. LFV SESAR Programme- and Contribution Manager +Department LUFTFARTSVERKET +Phone +46 721 429 192 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Ms +Same as proposing organisation's address +Country Sweden +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Stefan SIGGELIN stefan.siggelin@lfv.se +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 30 === +Administrative forms +Page 30 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 31 === +Administrative forms +Page 31 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 32 === +Administrative forms +Page 32 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SESAR IR1 ECHO2 +The SESAR IR1 ECHO2 project was built on the deliverables of the ECHO (European Concept of +Higher airspace Operations) project. LFV participated in ECHO2 withc ATCO expertise, both +with the Concept of Operations, but also as active participants of the project EXE. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +LFV R&D Center +Located at ATCC Malmö, the LFV R&D Centre is equipped with lab, simulators, and conference +facilities, and is capable of conducting human-in-the-loop simulations and demonstrations. +The available simulators include NARSIM (for ACC, APP, and TWR), the SAAB RTS simulator, +and the UTM City platform. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 33 === +Administrative forms +Page 33 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 34 === +Administrative forms +Page 34 of 166 Last saved 16/09/2025 22:33 +PIC +997542763 +Legal name +NATS (EN ROUTE) PUBLIC LIMITED COMPANY +Short name: NATS + +Address +Town FAREHAM +Postcode PO15 7FL +Street 4000 PARKWAY WHITELEY +Country United Kingdom +Webpage www.nats.aero +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is unknown (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... unknown +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 35 === +Administrative forms +Page 35 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +Department 1 +Department name NATS (En Route) Public Limited Company (CTC) +Street 4000 PARKWAY WHITELEY +Town FAREHAM +Same as proposing organisation's address +not applicable +Country United Kingdom +Postcode PO15 7FL +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 36 === +Administrative forms +Page 36 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Patrick Last name* GILES +E-Mail* patrick.giles@nats.co.uk +Town FAREHAM Post code PO15 7FL +Street 4000 PARKWAY WHITELEY +Website www.nats.aero +Position in org. Manager, ATM Portfolio - D&B +Department NATS (En Route) Public Limited Company (CTC) +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country United Kingdom +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Alison ROBERTS alison.roberts@nats.co.uk +xxx xxxxxxxxx +Matthew GREEN matthew.green@nats.co.uk +xxx xxxxxxxxx +Richard HAYWARD richard.hayward@nats.co.uk +xxx xxxxxxxxx +Richard PUGH richard.pugh@nats.co.uk +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 37 === +Administrative forms +Page 37 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Patrick Giles Man United Kingdom patrick.giles@nat +s.co.uk Category B Senior resea Leading +Mr Richard Hayward Man United Kingdom richard.hayward +@nats.co.uk +Category C Recognised Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 38 === +Administrative forms +Page 38 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 39 === +Administrative forms +Page 39 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Other achievement Participation in SESAR ECHO 2 project, including leading the development of the OSED +document for WP - High Altitude Platform Systems. +Service Operational support to UK Ministry of Defence / US Air Force in Europe with regard to current +(military) high altitude operations. +Service Past operational experience of operating very high / very fast commercial airliners +undertaking inter-continental flights (Concorde). +Service Operational involvement in UK-based Space Launches. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SESAR 3 ECHO 2 +The ECHO 2 project is further developing concepts identified in the initial ECHO Concept of +Operations document. This work will be a key input to the STRATUS project as it is in the +ECHO2 discussions that the need for the STRATUS project was identified. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 40 === +Administrative forms +Page 40 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 41 === +Administrative forms +Page 41 of 166 Last saved 16/09/2025 22:33 +PIC +997701843 +Legal name +ENAIRE +Short name: ENAIRE + +Address +Town MADRID +Postcode 28022 +Street AVENIDA DE ARAGON S/N BLOQUE 330, PORTAL +Country Spain +Webpage http://www.enaire.es +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 14/06/1991 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 42 === +Administrative forms +Page 42 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +Department 1 +Department name Innovation Division +Street AVENIDA DE ARAGON S/N BLOQUE 330, PORTAL +Town MADRID +Same as proposing organisation's address +not applicable +Country Spain +Postcode 28022 +Links with other participants +Type of link Participant +Controls CENTRO DE REFERENCIA INVESTIGACION DESARROLLO E INNOVACION ATM, A.I.E. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 43 === +Administrative forms +Page 43 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Francisco José Last name* Jiménez Roncero +E-Mail* fjroncero@enaire.es +Town MADRID Post code 28022 +Street AVENIDA DE ARAGON S/N BLOQUE 330, PORTAL 2 PARQUE EMPRESARIAL LAS +Website www.enaire.es +Position in org. Head of Division +Department Innovation Division +Phone +34 634 880 079 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Spain +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Daniel DOMINGUEZ ddoperez@enaire.es +xxx xxxxxxxxx +Javier García Moreno jgmoreno@enaire.es +xxx xxxxxxxxx +Jorge Vellón Benito jvellon@e-externas.enaire.es +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 44 === +Administrative forms +Page 44 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 45 === +Administrative forms +Page 45 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 46 === +Administrative forms +Page 46 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +EUSTM +EUSTM is an end-to end activity towards the definition of a future STM capability: +· Defining the needs in terms of organisation and responsibilities, technology, policy, laws, +guidelines, best practices and standards +· Elaborating detailed specs, a preliminary design, a reference roadmap and a ROM cost +analysis +· Developing an innovative collaborative platform for exchange of information inside the team +and with external stakeholders +· Creating a community of interest on STM +ECHO 2 +The main objective of this project is the modernisation and adaptation of the European ATM +system that allows the integration of the so-called high-altitude operations or Higher Airspace +Operations (HAO). These types of operations occur above flight level FL550, that is, operations +above 17,000 meters, while flights usually take place around 10,000 meters. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 47 === +Administrative forms +Page 47 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 48 === +Administrative forms +Page 48 of 166 Last saved 16/09/2025 22:33 +PIC +988366078 +Legal name +ENTE NAZIONALE PER L'AVIAZIONE CIVILE - ENAC ITALIAN CIVIL AVIATION AUTHORITY +Short name: ENAC IT + +Address +Town ROMA +Postcode 00185 +Street VIALE CASTRO PRETORIO 118 +Country Italy +Webpage http://www.enac.gov.it +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 25/05/1997 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 49 === +Administrative forms +Page 49 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +Department 1 +Department name Direzione Innovazione Tecnologica +Street VIALE CASTRO PRETORIO 118 +Town ROMA +Same as proposing organisation's address +not applicable +Country Italy +Postcode 00185 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 50 === +Administrative forms +Page 50 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Giovanni Last name* Di ANTONIO +E-Mail* g.diantonio@enac.gov.it +Town ROMA Post code 00185 +Street VIALE CASTRO PRETORIO 118 +Website Please enter website +Position in org. Director +Department Direzione Innovazione Tecnologica +Phone 00390644596618 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country Italy +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Fabrizzio ARRU f.arru@enac.gov.it 0039 0644596367 +Alessandro BUCCI a.bucci@enac.gov.it 0039 0644596389 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 51 === +Administrative forms +Page 51 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Fabrizio Arru Man Italy f.arru@enac.gov.i +t Category C Recognised Team member +Mr Alessandro Bucci Man Italy a.bucci@enac.go +v.it +Category C Recognised Team member +Mr Giovanni Di Antonio Man Italy g.diantonio@ena +c.gov.it +Category A Top grade reLeading +Mr Luigi Morra Man Italy l.morra@enac.go +v.it +Category C Recognised Team member +Mr Marco Catalano Man Italy m.catalano@enac +.gov.it +Category C Recognised Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 52 === +Administrative forms +Page 52 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 53 === +Administrative forms +Page 53 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO ENAC (IT) was involved in the development of the ECHO CONOPS +ECHO 2 ENAC (IT) is currently involved in all 3 WPs and is leading WP3 of the project +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 54 === +Administrative forms +Page 54 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 55 === +Administrative forms +Page 55 of 166 Last saved 16/09/2025 22:33 +PIC +969410435 +Legal name +CONSORCIO AERODROMO AEROPUERTO DE TERUEL +Short name: CONSORCIO AERODROMO AEROPUERTO DE TERUEL + +Address +Town TERUEL +Postcode 44396 +Street POLIGONO DE TIRO 4 +Country Spain +Webpage http://www.aeropuertodeteruel.com/ +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 29/12/2006 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 56 === +Administrative forms +Page 56 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 57 === +Administrative forms +Page 57 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Alejandro Last name* IBRAHIM PERERA +E-Mail* aibrahim@aeropuertodeteruel.com +Town TERUEL Post code 44396 +Street POLIGONO DE TIRO 4 +Website https://www.aeropuertodeteruel.com/en/ +Position in org. General Manager +Department CONSORCIO AERODROMO AEROPUERTO DE TERUEL +Phone +034 978617742 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Spain +Same as organisation +name +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 58 === +Administrative forms +Page 58 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 59 === +Administrative forms +Page 59 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 60 === +Administrative forms +Page 60 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Service +Airport Management: landing, takeoff, aircraft parking. +Aircraft maintenance, parking and recycling. +Security and Surveillance Services. +Maintenance service and cleaning of the facilities. +Support to operations and Handling. +Aviation fuel service. +Aircraft support (ASU compressed air up to B747 type aircraft, sweeper, de-icing equipment). +Flight tests and trials service. +Aeronautical Meteorology Service. +Rescue and firefighting service. +Logistics service in industrial area. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Stratoport Design a stratoport for fix-wing aircrafts and airship. Teruel airport with the capacity for +stratospheric flight aircraft with HAPS-type airships. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +Stratospheric airship hangar Teruel Airport Consortium has put out to tender the construction of a hangar and a production +facility for stratospheric airships. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 61 === +Administrative forms +Page 61 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 62 === +Administrative forms +Page 62 of 166 Last saved 16/09/2025 22:33 +PIC +870906450 +Legal name +SkyNav Europe +Short name: SkyNav Europe + +Address +Town Brussels +Postcode 1000 +Street Rue Coppens 16 +Country Belgium +Webpage www.skynavintl.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 27/09/2024 - yes +SME self-assessment ........................................... 27/09/2024 - yes +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 63 === +Administrative forms +Page 63 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 64 === +Administrative forms +Page 64 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Ben Last name* KINGS +E-Mail* ben.kings@skynavintl.com +Town Brussels Post code 1000 +Street Rue Coppens 16 +Website https://skynavintl.com/ +Position in org. Managing Director/Owner +Department SkyNav Europe +Phone +31615625092 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Belgium +Same as organisation +name +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 65 === +Administrative forms +Page 65 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Ben Kings Man ben.kings@skyna +vintl.com Category A Top grade reLeading +Mr Duncan Auld Man duncan.auld@sky +navintl.com +Category A Top grade reLeading +Mr Zheng Tao Man zheng.tao@skyna +vintl.com +Category B Senior resea Team member +Ms Qina Diao Woman qina.diao@skyna +vintl.com +Category B Senior resea Team member +Ms Julie Caraga Woman julie.caraga@sky +navintl.com +Category D First stage r Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 66 === +Administrative forms +Page 66 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 67 === +Administrative forms +Page 67 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Service +ECHO2 subcontractor +Participation in the ECHO2 consortium as a contractor focusing on higher airspace and space +transport integration. Contributions include operational concept refinement, validation +planning, stakeholder mapping, and alignment with ANSP procedures and Network functions. +The work informs scalable approaches for trajectory management and airspace reservations. +Includes project management and deliverable lead. +Service +Operational ATM experience +Decades of global, operational Air Traffic Control experience across all ATC disciplines (Tower, +Approach, Area, Oceanic) and at all function levels. Operational supervision, flow +management, training, training management, safety and technical committee +representation, operational procedure development, international cross-border negotiations, +airspace design, safety risk assessments and environmental impact studies +Service +ICAO drafting and representation +Contributed to drafting and review activities at ICAO in relation to Annex 11, Annex 10 and +PANS-ATM material. Work includes requirements structuring, procedure text, and consistency +checks across datasets and guidance, supporting globally harmonised ATM provisions +relevant to STO and HAO integration. Leading working groups on ATM planning & +implementation, development of Global ATM Operational Concept, development of Aviation +System Block Upgrades +Service +State regulatory drafting and representation +Several years of regulatory drafting support for a Gulf State authority, updating national civil +aviation regulations, AMC/GM-style guidance and implementation procedures across ANS, +operations and oversight. Emphasis on practicality, traceability and alignment with ICAO and +regional provisions. Leadership of ICAO regional groups and task forces related to integration +of space transport activities. +Service +Project Management & Leadership Expertise +Extensive track record in project and organisational leadership, including executive roles +within IFATCA (International Federation of Air Traffic Controllers’ Associations). Demonstrated +ability to manage complex international initiatives, coordinate diverse stakeholders, and +oversee multi-million-euro budgets. Proven experience in steering strategic aviation projects, +ensuring delivery of innovative outcomes aligned with European policy & industry needs +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +SESAR ECHO / ECHO2 – HAO +Integration +Participation in ECHO and ECHO2 on higher airspace and space transport integration. Roles +covered operational scenarios, requirements traceability, validation planning, stakeholder +engagement and alignment with EUROCONTROL and ICAO practices for cross-border +coordination and dynamic, minimal-impact airspace management. +iNEO – Project Management Plan +& Governance Appr. +Development of a rigorous PMP and governance model for multi-partner R&D, covering +schedule baselining, risk and compliance, quality assurance, and reporting. The approach +underpins efficient WP coordination and is directly reusable for STRATUS WP1. +UAE National Regulations +Development Programme +Regulatory drafting support for a Gulf State authority, updating national civil aviation +regulations, AMC/GM-style guidance and implementation procedures across ANS, operations +and oversight. Emphasis on practicality, traceability and alignment with ICAO and regional +provisions. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 68 === +Administrative forms +Page 68 of 166 Last saved 16/09/2025 22:33 +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 69 === +Administrative forms +Page 69 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 70 === +Administrative forms +Page 70 of 166 Last saved 16/09/2025 22:33 +PIC +996375756 +Legal name +ECOLE NATIONALE DE L AVIATION CIVILE +Short name: ENAC FR + +Address +Town TOULOUSE +Postcode 31400 +Street AVENUE EDOUARD BELIN 7 +Country France +Webpage www.enac.fr +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ yes +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... yes +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 27/05/2020 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 71 === +Administrative forms +Page 71 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Department 2 +Department name ENAC LAB +Street AVENUE EDOUARD BELIN 7 +Town TOULOUSE +Same as proposing organisation's address +not applicable +Country France +Postcode 31400 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 72 === +Administrative forms +Page 72 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Georges Last name* MYKONIATIS +E-Mail* georges.mykoniatis@enac.fr +Town TOULOUSE Post code 31400 +Street AVENUE EDOUARD BELIN 7 +Website Please enter website +Position in org. Head of Business Development for ENAC LAB +Department ECOLE NATIONALE DE L AVIATION CIVILE +Phone +33619911108 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country France +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Aurelie PEAUD aurelie.peuaud@enac.fr +xxx xxxxxxxxx +Florence LAPORTERIE-DEJEAN florence.laporterie-dejean@enac.fr +33562259509 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 73 === +Administrative forms +Page 73 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr Murat Bronz Man France murat.bronz@en +ac.fr Category A Top grade reLeading 0000-0002-1098- +5240 +Orcid ID +Dr Rodolphe Fremond Man France rodolphe.fremon +d@enac.fr +Category D First stage r Team member 0009-0008-1513- +9597 +Orcid ID +Prof Daniel Delahaye Man France daniel.delahaye@ +enac.fr +Category A Top grade reLeading 0000-0002-4965- +6815 +Orcid ID +Dr Andreas Guitart Man France andreas.guitart@ +enac.fr +Category C Recognised Team member 0000-0002-1944- +2250 +Orcid ID +Mr Georges Mykoniatis Man France georges.mykonia +tis@enac.fr +Category C Recognised Leading 0000-0002-5550- +579X +Orcid ID +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 74 === +Administrative forms +Page 74 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 75 === +Administrative forms +Page 75 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication Andréas Guitart, Daniel Delahaye. Design of low-noise arrival and departure procedures in +Paris TMA using Simulated Annealing. 2025. ?hal-05208145? +Publication +Nana Chu, Chenliang Zhang, Kam K.K.Ng, Daniel Delahaye. Unlocking Runway Capacity: +Enhancing Efficiency through Dynamic Pairwise Aircraft Wake Separation. ATRD Symposium +2025, Eurocontrol FAA, Jun 2025, Prague (Czech Republic), Czech Republic. ?hal-05131139? +Publication +Zhao, J.; Wen, Z.; Mohanta, K.; Subasu, S.; Fremond, R.; Su, Y.; Kallaka, R.; Tsourdos, A. UAV +Operations and Vertiport Capacity Evaluation with a Mixed-Reality Digital Twin for Future +Urban Air Mobility Viability. Drones 2025, 9, 621. https://doi.org/10.3390/drones9090621 +Publication +Raúl Sáez, Homeyra Khaledian, Xavier Prats, Andréas Guitart, Daniel Delahaye, et al.. A Fast +and Flexible Emergency Trajectory Generator Enhancing Emergency Geometric Planning with +Aircraft Dynamics. Fourteenth USA/Europe Air Traffic Management Research and +Development Seminar (ATM2021), Sep 2021, New Orleans (virtual), United States. +?hal-03351220? +Publication +Hachem, M., Roos, C., Miquel, T., & Bronz, M. (2025). Improving Incremental Nonlinear +Dynamic Inversion Robustness Using Robust Control in Aerial Robotics. arXiv preprint +arXiv:2501.07223. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO +European Concept of Higher Airspace Operations - SESAR +A concept of operations (ConOps) for higher airspace +https://higherairspace.eu/echo-project/ +ECHO2 Towards the integration between ATM and Higher Altitude Operations - SESAR +https://higherairspace.eu/echo2-project/ +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 76 === +Administrative forms +Page 76 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 77 === +Administrative forms +Page 77 of 166 Last saved 16/09/2025 22:33 +PIC +999789768 +Legal name +C.I.R.A. CENTRO ITALIANO RICERCHE AEROSPAZIALI SCPA +Short name: CIRA + +Address +Town CAPUA +Postcode 81043 +Street VIA MAIORISE +Country Italy +Webpage www.cira.it +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 25/01/2022 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... 26/06/2008 - no +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 78 === +Administrative forms +Page 78 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +Department 1 +Department name Cross Cutting Research Directorate +Street VIA MAIORISE +Town CAPUA +Same as proposing organisation's address +not applicable +Country Italy +Postcode 81043 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 79 === +Administrative forms +Page 79 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Angela Last name* VOZELLA +E-Mail* a.vozella@cira.it +Town CAPUA Post code 81043 +Street VIA MAIORISE +Website www.cira.it +Position in org. Deputy Head of Cross Cutting Research Directorate +Department Cross Cutting Research Directorate +Phone 00390823622723 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country Italy +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Gabriella GIGANTE g.gigante@cira.it 00390823623514 +Francesco NEBULA f.nebula@cira.it +xxx xxxxxxxxx +Lidia TRAVASCIO l.travascio@cira.it +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 80 === +Administrative forms +Page 80 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr +Francesco Gargiulo +Man Italy +f.gargiulo@cira.it +Category B Senior resea Team member https:// +www.researchgat +e.net/profile/ +Francesco- +Gargiulo +Other ID +Dr Francesco Nebula Man Italy f.nebula@cira.it Category B Senior resea Leading 0000-0002-3219- +7245 +Orcid ID +Dr Angela Errico Woman Italy a.errico@cira.it Category B Senior resea Team member 0009-0009-3716- +4096 +Orcid ID +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 81 === +Administrative forms +Page 81 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 82 === +Administrative forms +Page 82 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +Escarré, O. B., de Urrengoechea Cantavenera, T., Eroles, M. À. P., Gigante, G., & Gargiulo, F. +(2024). Flying Like Geese: Green, Sustainable, and Efficient. Computing in science & +engineering, 26(2), 54-60. +Publication +Gargiulo, F., Gigante, G., Escarré, O. B., & De Urrengoechea, T. (2024, July). SESAR GEESE Project +Validation with CIRA Multi-Agent Simulation Facility: Preliminary Study. In 2024 15th +International Conference on Information, Intelligence, Systems & Applications (IISA) (pp. 1-8). +IEEE +Publication +Gigante, G., Palumbo, R., Pascarella, D., Pellegrini, A., Duca, G., Piera, M., & Ramos, J. (2021). +Support to Design for Air Traffic Management: An Approach with Agent-Based Modelling and +Evolutionary Search. International Journal of Aviation, Aeronautics, and Aerospace, 8(1). +Publication +Pellegrini, A., Di Sanzo, P., Bevilacqua, B., Duca, G., Pascarella, D., Palumbo, R., ... & Gigante, G. +(2020). Simulation-based evolutionary optimization of air traffic management. IEEE access, 8, +161551-161570. +Publication Nebula, F., Palumbo, R., Gigante, G., & Vozella, A. (2023). Digital assistant for arrival scheduling +with conflict prevention capabilities. Information, 14(4), 216. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO2 +SESAR IR project 2023-2026 +CIRA supports: 1) by Multi Agent Validation Facility the Fast time simulation to validate at +TRL4 the operational concept of integration in controlled airspace of Hypersonic/Supersonic +and Suborbital vehicles 2) by developing a supporting tool +GEESE +SESAR IR 2023-2026 +CIRA supports by Multi Agent Validation Facility the Fast time simulation to validate at TRL4 +the operational concept of WER operations in Continental Route +ATC-TBO +SESAR IR 2023-2026 +CIRA supports by Multi Agent Validation Facility the Fast time simulation to validate at TRL4 +the operational concept of an Air TRaffic Digital assistant implementing tactical conflict +resolution at higher levels of automation +JARVIS +SESAR IR project 2023-2026 +CIRA develops the Air Traffic Controller digital assistant implementing the tactical conflict +resolution +ECHO Sesar ER project 2020-2022 Operational concept for higher space operations at TRL2 +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +Multi Agent simulation Facility +It employs a multi-agent framework to establish a fast-time simulation environment capable +of evaluating performance metrics related not only to the aircraft, but also to the agents +representing human operators. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 83 === +Administrative forms +Page 83 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 84 === +Administrative forms +Page 84 of 166 Last saved 16/09/2025 22:33 +PIC +999987066 +Legal name +STICHTING KONINKLIJK NEDERLANDS LUCHT - EN RUIMTEVAARTCENTRUM +Short name: NLR + +Address +Town AMSTERDAM +Postcode 1059 CM +Street ANTHONY FOKKERWEG 2 +Country Netherlands +Webpage www.nlr.nl +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 31/12/2021 - no +SME self-assessment ........................................... 31/12/2021 - no +SME validation ...................................................... 18/09/2008 - no +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 85 === +Administrative forms +Page 85 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +Department 1 +Department name Air Traffic Management and Airports +Street ANTHONY FOKKERWEG 2 +Town AMSTERDAM +Same as proposing organisation's address +not applicable +Country Netherlands +Postcode 1059 CM +Department 2 +Department name Information Supremacy +Street ANTHONY FOKKERWEG 2 +Town AMSTERDAM +Same as proposing organisation's address +not applicable +Country Netherlands +Postcode 1059 CM +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 86 === +Administrative forms +Page 86 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Wilfred Last name* ROUWHORST +E-Mail* wilfred.rouwhorst@nlr.nl +Town Please enter the name of the town. Post code Area code. +Street Please enter street name and number. +Website Please enter website +Position in org. Please indicate the position of the person. +Department Name of the department/institute carrying out the work. +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle +Same as proposing organisation's address +Country Please select a country +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Wissam CHALABI wissam.chalabi@nlr.nl +31885113623 +Alexander HAAGSMA alexander.haagsma@nlr.nl +31885113394 +Juriaan KOK juriaan.kok@nlr.nl +31885113410 +Sharon KUIL sharon.kuil@nlr.nl +31885113265 +Diana PEEREBOOM diana.peereboom@nlr.nl +31885113023 +Iris VAN DEN BERGHE iris.van.den.berghe@nlr.nl +31885113934 +Roland VERCAMMEN roland.vercammen@nlr.nl +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 87 === +Administrative forms +Page 87 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Wissam Chalabi Man Sweden wissam.chalabi@ +nlr.nl Category C Recognised Team member +Mr Alexander Haagsma Man Netherlands alexander.haags +ma@nlr.nl +Category B Senior resea Team member +Mr Juriaan Kok Man Netherlands juriaan.kok@nlr.nl Category C Recognised Team member +Mr Wilfred Rouwhorst Man Netherlands wilfred.rouwhors +t@nlr.nl +Category A Top grade reLeading +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 88 === +Administrative forms +Page 88 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 89 === +Administrative forms +Page 89 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Other achievement Supporting Space Traffic Management, NLR TR-2020-199, May 2020. +Other achievement Space Traffic Management, Relevance and potential development opportunities, NLR +TR-2021-218, May 2022. +Software Re-entry Scenario Integration into NearSpace and Air Traffic Management, Software and +document, NLR-TR-2024-138, 2024. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Near Space Research to the operational integration of HAO to ATM. Running internal NLR project. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +NARSIM +Is NLR's Air Traffic Management Real-time Simulator. It is a high fidelity human-in-the-loop +simulator that is used by ANSPs and research centres. The NARSIM software can be used for +simulating the movements of vehicles in HAO and presentation to operators. It has a proven +track record in SESAR. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 90 === +Administrative forms +Page 90 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 91 === +Administrative forms +Page 91 of 166 Last saved 16/09/2025 22:33 +PIC +899059730 +Legal name +INTERNATIONAL FEDERATION OF AIR TRAFFIC CONTROLLERS ASSOCIATIONS +Short name: IFATCA + +Address +Town MONTREAL +Postcode H2Y 1P5 +Street 360 ST JACQUES SUITE 2002 +Country Canada +Webpage www.ifatca.org +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is unknown (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... unknown +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 92 === +Administrative forms +Page 92 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 93 === +Administrative forms +Page 93 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Marc Last name* BAUMGARTNER +E-Mail* sesar.coord@ifatca.org +Town MONTREAL Post code H2Y 1P5 +Street 360 ST JACQUES SUITE 2002 +Website www.ifatca.org +Position in org. SESAR and EASA coordinator +Department INTERNATIONAL FEDERATION OF AIR TRAFFIC CONTROLLERS ASSOCIATIONS +Phone +41792125769 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Canada +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Eugenio DIOTALEVI eugenio.diotalevi@ifatca.org +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 94 === +Administrative forms +Page 94 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Marc Baumgartner Man Switzerland sesar.coord@ifatc +a.org Category C Recognised Team member 0000-0003-4443- +329X +Orcid ID +Mr Eugenio Diatolevi Man Italy eugenio.diatolevi +@ifatca.org +Category D First stage r Leading +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 95 === +Administrative forms +Page 95 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 96 === +Administrative forms +Page 96 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication IFATCA Technical Professional Manual WC 10.2.5 AUTOMATION / HUMAN FACTORS +Publication IFATCA Study on High Altitude Operations (HAO), Working Paper 93 2023 leading to IFATCA +policy on HAO +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 97 === +Administrative forms +Page 97 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 98 === +Administrative forms +Page 98 of 166 Last saved 16/09/2025 22:33 +PIC +999537568 +Legal name +INGENIERIA Y ECONOMIA DEL TRANSPORTE SME MP SA +Short name: INECO + +Address +Town MADRID +Postcode 28036 +Street PASEO DE LA HABANA 138 +Country Spain +Webpage www.ineco.es +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 20/06/2016 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 99 === +Administrative forms +Page 99 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +Department 1 +Department name Aerospace System Directorate +Street Avenida del Partenón, 2-4 +Town Madrid +Same as proposing organisation's address +not applicable +Country Spain +Postcode 28042 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 100 === +Administrative forms +Page 100 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* José Manuel Last name* RISQUEZ FERNANDEZ +E-Mail* jrisquez@ineco.com +Town Madrid Post code 28042 +Street Avenida del Partenón, 2-4 +Website www.ineco.com +Position in org. ATM Senior Expert +Department Aerospace System Directorate +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Spain +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Raul SEVILLA GONZALEZ raul.sevilla@ineco.com +xxx xxxxxxxxx +Paloma MONTERO MARTIN paloma.montero@ineco.com +xxx xxxxxxxxx +Victor Bustos vbustos@ineco.com +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 101 === +Administrative forms +Page 101 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Jose Manuel Rísquez Man Spain jrisquez@ineco.c +om Category B Senior resea Leading +Ms Ángela Abad Woman Spain angela.abad@ine +co.com +Category B Senior resea Team member +Ms Paloma Montero Woman Spain paloma.montero +@ineco.com +Category C Recognised Team member +Dr Raúl Sevilla Man Spain raul.sevilla@inec +o.com +Category A Top grade reTeam member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 102 === +Administrative forms +Page 102 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 103 === +Administrative forms +Page 103 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Service +INECO has contributed with a consultancy service to ENAIRE to perform a detailed ATCO task +analysis in most of the ATC spanish sectors getting along this process a relevant operational +and SACTA/iTEC knowledge useful for the sake of ECHO research needs +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO 2 (GA 101114697) +ECHO-2 builds on the deliverables of the ECHO project, starting from the Concept of +Operations, to propose validated solutions paving the way towards the operational +integration of HAO in ATM, on three directions: Space Launch Real Time Monitoring Module, +integration of High-Altitude Platform Systems (HAPS) operations into ATM, and integration of +supersonic, hypersonic and suborbital vehicles operations into ATM. +PJ10-W2-Sol73_FCA (GA 874464) +HP and SAF assessment of disruptive operational concepts as ECHO is. Ineco has led the HP +activity within ENAIRE' exercise in teh context of FCA as well as has contributed with Fast Time +simulations to support the preparartion of the RTS exercises. In addition, INECO has worked +together with SAF leaders as well as ENAIRE's exercise oriented. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 104 === +Administrative forms +Page 104 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 105 === +Administrative forms +Page 105 of 166 Last saved 16/09/2025 22:33 +PIC +997605619 +Legal name +CENTRO DE REFERENCIA INVESTIGACION DESARROLLO E INNOVACION ATM, A.I.E. +Short name: CRIDA + +Address +Town MADRID +Postcode 28022 +Street CALLE CAMPEZO, 1, 4º, EDIFICIO 7, PARQUE EMP +Country Spain +Webpage www.crida.es +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 12/07/2022 - no +SME self-assessment ........................................... 31/12/2021 - no +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 106 === +Administrative forms +Page 106 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +Is controlled by ENAIRE +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 107 === +Administrative forms +Page 107 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Pablo Last name* SANCHEZ ESCALONILLA +E-Mail* psescalonilla@e-crida.enaire.es +Town MADRID Post code 28022 +Street CALLE CAMPEZO, 1, 4º, EDIFICIO 7, PARQUE EMPRESARIAL LAS MERCEDES +Website Please enter website +Position in org. Principal Researcher +Department CENTRO DE REFERENCIA INVESTIGACION DESARROLLO E INNOVACION ATM, A.I.E. +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Spain +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Marta Sánchez Cidoncha mscidoncha@e-crida.enaire.es +xxx xxxxxxxxx +Raquel García Lasheras rglasheras@e-crida.enaire.es +xxx xxxxxxxxx +Jose Miguel De Pablo Guerrero jmdepablo@e-crida.enaire.es +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 108 === +Administrative forms +Page 108 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Ms Raquel Garcia Lasheras Woman Spain rglasheras@e- +crida.enaire.es Category B Senior resea Team member 0000-0001-6973- +7412 +Orcid ID +Mr Pablo Sanchez +Escalonilla +Man Spain psescalonilla@e- +crida.enaire.es +Category A Top grade reLeading +Mr Juan Ruben Vaquero Ramos Man Spain jrvaquero@e- +crida.enaire.es +Category D First stage r Team member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 109 === +Administrative forms +Page 109 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 110 === +Administrative forms +Page 110 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ENSURE +ENSURE is a SESAR3 IR01 project that designs and validates a standard operational interface +between U-space and ATM to enable the safe integration of crewed and uncrewed aircraft. It +includes a unified architecture, data model, operational methodology, and dynamic airspace +configuration services to support ATC in managing mixed-traffic environments. This +experience can be translated to the interface within STRATUS project +ATC-TBO +ATC-TBO is a SESAR 3 IR01 projects that seeks to increase the automatisation levels within ATM +to manage aircraft separation. CRIDA participates in concept definition and the execution of +two exercises. CRIDA will bring this knowledge on increase levels of automation to STRATUS +project +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 111 === +Administrative forms +Page 111 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 112 === +Administrative forms +Page 112 of 166 Last saved 16/09/2025 22:33 +PIC +952649902 +Legal name +INSTITUUT VOOR INFRASTRUCTUUR, MILIEU EN INNOVATIE +Short name: IMIEU + +Address +Town BRUSSEL +Postcode 1000 +Street EGMONTSTRAAT 11-13 +Country Belgium +Webpage www.imieu.eu +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 28/09/2012 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 113 === +Administrative forms +Page 113 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 114 === +Administrative forms +Page 114 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Frank Last name* Neumann +E-Mail* info@imieu.eu +Town BRUSSEL Post code 1000 +Street EGMONTSTRAAT 11-13 +Website www.imieu.eu and www.u-lta.eu +Position in org. Director +Department INSTITUUT VOOR INFRASTRUCTUUR, MILIEU EN INNOVATIE +Phone +31615438225 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country Belgium +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Dr Benjamyn Scott b.i.scott@law.leidenuniv.nl +31643446666 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 115 === +Administrative forms +Page 115 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr Frank Neumann Man Netherlands info@imieu.eu Category B Senior resea Leading 186044495 Other ID +Dr Benjamyn Scott Man United Kingdom b.i.scott@law.leid +enuniv.nl Category B Senior resea Team member 0009-0000-8219- +8716 +Orcid ID +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 116 === +Administrative forms +Page 116 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 117 === +Administrative forms +Page 117 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Other achievement +IMIEU has founded the Technology Platform; U-LTA 'Upscaling Lighter-Than-Air +Technology',with support of EU DG RTD in 2016, see also www.u-lta.eu, it includes over 20 +parties involved in the development of- low-as well as high altitude LTA/ Airship platforms in +the EU and Worlwide, including academia, startups and scale-ups- co-operating with +Eurocontrol/EASA, working on facilitating the upscaling of LTA Technology, including HAPS +Publication +Scott, B.I., Custers, B.H.M. & Lahmann, H.C., (2024) Drone Regulation and A.I. Law, assessing +the intersection of the EU Legal Frameworks for unmanned aircraft and artificial intelligene in, +Air and Space Law, 49 (6) 565/584 +Other achievement Dr Scott is Member of the ICAO Secretariat Study Group on Cybersecurity Research Sub-Group +on Legal Aspects +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Co-lead of the LTA- Task Force, at +JARUS/with EASA +The objective of this taskforce of the Jarus Main Body is to provide guidance for the adaptation +of SORA 2.5/Annex F, particularly for Low altitude Lighter-Than-Air/Airship Technology, with +input from developers as well as experts and the NAs +Mbr of the HAO- Taskforce. of +JARUS, lead by EASA +The objective of this taskforce belonging to the Jarus Main Body is to come to specific +guidance for the adaptation of SORA 2.5 to HAPS, both fixed wing as well as airship/balloon +initiatives +Member of WG IV/Certificaiton of +AZEA +This working group is developing a roadmap regarding the certificaiton of innovative zero- +emission aviation. AZEA (the Alliance of Zero Emission Aviation) is led by EU DG DEFIS +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 118 === +Administrative forms +Page 118 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 119 === +Administrative forms +Page 119 of 166 Last saved 16/09/2025 22:33 +PIC +873172467 +Legal name +OpenUTM Ltd. +Short name: OpenUTM + +Address +Town Dublin +Postcode D04 T4A6 +Street Mespil Business Center, Mespil House, Sussex Ho +Country Ireland +Webpage https://openutm.net +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 14/02/2025 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 120 === +Administrative forms +Page 120 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 121 === +Administrative forms +Page 121 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Dr Hrishikesh Last name* Ballal +E-Mail* hb@openutm.net +Town Dublin Post code D04 T4A6 +Street Mespil Business Center, Mespil House, Sussex House +Website Please enter website +Position in org. Managing Director +Department OpenUTM Ltd. +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Dr +Same as proposing organisation's address +Country Ireland +Same as organisation +name +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 122 === +Administrative forms +Page 122 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Dr Hrishikesh Ballal Man Ireland hb@openutm.net Category B Senior resea Leading +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 123 === +Administrative forms +Page 123 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 124 === +Administrative forms +Page 124 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Software + OpenUTM is an open-source, standards-compliant stack for Unmanned Traffic Management +(UTM), designed to help organizations build and deploy regulation-ready systems for +managing drone and unmanned aircraft traffic. Its architecture is built around two core +components: Flight Blender, a backend service handling Remote ID, air traffic data, +geofencing, and strategic deconfliction, and Flight Spotlight, a frontend interface providing +maps, timelines, flight noticeboards, and 3D visualizations. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 125 === +Administrative forms +Page 125 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 126 === +Administrative forms +Page 126 of 166 Last saved 16/09/2025 22:33 +PIC +999981731 +Legal name +DEUTSCHES ZENTRUM FUR LUFT - UND RAUMFAHRT EV +Short name: DLR + +Address +Town KOLN +Postcode 51147 +Street LINDER HOHE +Country Germany +Webpage www.dlr.de +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... yes +SME Data +Based on the below details from the Participant Registry the organisation is not an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 03/01/2022 - no +SME self-assessment ........................................... unknown +SME validation ...................................................... 28/10/2008 - no +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 127 === +Administrative forms +Page 127 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +Department 1 +Department name Institut of Flight Guidance +Street Lilienthalplatz 7 +Town Braunschweig +Same as proposing organisation's address +not applicable +Country Germany +Postcode 38108 +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 128 === +Administrative forms +Page 128 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Sven Last name* Kaltenhaeuser +E-Mail* sven.kaltenhaeuser@dlr.de +Town Braunschweig Post code 38108 +Street Lilienthalplatz 7 +Website dlr.de/fl +Position in org. Head or Department ATM Simulation +Department Institute of Flight Guidance +Phone +49 531 295 2560 Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Germany +Same as organisation +name +Other contact persons +First Name Last Name E-mail Phone +Lorenz Losensky lorenz.losensky@dlr.de +49 531 295 1155 +Dirk-Roger Schmitt dirk-roger.schmitt@dlr.de +49 172 295 4416 +Andreas Hasselberg andreas.hasselberg@dlr.de +49 531 295 2427 +fl controlling fl-controlling@dlr.de +xxx xxxxxxxxx +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 129 === +Administrative forms +Page 129 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Jens Hampe Man Germany Jens.Hampe@dlr. +de Category B Senior resea Team member 0000-0003-3105- +1516 +Orcid ID +Mr Frank Morlang Man Germany Frank.Morlang@d +lr.de +Category B Senior resea Team member 0000-0003-3636- +5215 +Orcid ID +Mr Tobias Rabus Man Germany tobias.rabus@dlr. +de +Category D First stage r Team member 0000-0003-1947- +5447 +Orcid ID +Mr Richard Hörder Man Germany richard.hoerder@ +dlr.de +Category D First stage r Team member Orcid ID +Mr Maximilian Neumann Man Germany Maximilian.Neum +ann@dlr.de +Category D First stage r Team member Orcid ID +Mr Lorenz Losensky Man Germany lorenz.losensky@ +dlr.de +Category D First stage r Team member 0000-0002-8762- +1971 +Orcid ID +Mr Sven Kaltenhäuser Man Germany sven.kaltenhaeus +er@dlr.de +Category B Senior resea Leading 0000-0003-2085- +7979 +Orcid ID +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 130 === +Administrative forms +Page 130 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 131 === +Administrative forms +Page 131 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +Kaltenhäuser, Sven und Klünker, Carmo und Schmitt, Dirk-Roger (2022) Interoperable data +exchange for safe and efficient launch and re-entry operations in an international +environment, In: Proceedings of the International Astronautical Congress, IAC. 73rd +International Astronautical Congress (IAC), 18.-22. Okt. 2022, Paris, France +Publication +Kaltenhäuser, Sven und Hampe, Jens und Rabus, Tobias und Morlang, Frank und Losensky, +Lorenz (2024) The SpaceTracks approach for an efficient Integration of Launch Operations in +European Airspace. In: 1st International Symposium on Small Launchers and Spaceports. 1st +International Symposium on Small Launchers and Spaceports, 2024-10-28 - 2024-10-30, +Harwell, Vereinigtes Königreich. Volltext nicht online. +Publication +Hampe, Jens (2024) DESIGN CONSIDERATION AND EVALUATION OF A HUMAN-MACHINE +INTERFACE FOR REAL-TIME MISSION MONITORING OF A LAUNCH AND RE-ENTRY +COORDINATION SYSTEMS :"BUILDING A SAFE AND SECURE SUSTAINABLE SPACE". In: +Proceedings of the International Space Safety Conference, 13. International Association for the +Advancement of Space Safety IAASS. 13th IAASS Conference 2024, 2024-10-08 - 2024-10-10, +Prague, Czech Republic. doi: 10.60575/z2gv-6w55. Volltext nicht fre +Publication +Stahnke, Anouk und Rabus, Tobias und Kaltenhäuser, Sven (2022) Supporting the safety and +efficiency of airspace transition for launch and re-entry operations in Europe, 2nd +International Conference on Flight Vehicles, Aerothermodynamics and Re-entry Missions & +Engineering (FAR), 19 - 23 June 2022. Heilbronn, Germany +Publication +Kaltenhäuser, Sven und Hampe, Jens und Rabus, Tobias und Morlang, Frank und Losensky, +Lorenz (2024) Towards Efficient Integration of Rocket Launches and Re-entry Operations in +European Airspace: Development and Testing of a Launch Coordination Center. Hampe, Jens +und Stahnke, Anouk (2024) Improving air and space safety through enhanced coordination +with the SpaceTracks Suite microservice architecture. Journal of Space Safety Engineering. +Elsevier. doi: 10.1016/j.jsse.2024.01.005. ISSN 2468-8967. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +ECHO Project +European Concept of Higher Airspace Operations. +https://higherairspace.eu/echo-project/ +Project led by EUROCONTROL with major DLR participation delivering a comprehensive +demand analysis and the concept of operations (ConOps) for higher airspace to allow safe, +efficient and scalable operations.The ConOps also provide the basis to identify future +infrastructure needs that is required to support Higher Airspace Operations (HAO). +DLR/FAA DEP +DLR - FAA Data Exchange Project. +https://www.dlr.de/content/en/articles/news/2019/04/20191025_dlr-and-us-federal- +aviationadministration-are-cooperating.html +DLR and the Office of Commercial Space Transportation of the US Federal Aviation +Administration (FAA) identified the data that need to be exchanged between United States +and European Air Navigation Service Providers (ANSPs) prior to, during and after a launch. +ECHO2 +https://higherairspace.eu/echo2-project/ +The ECHO 2 Project is dedicated to enhancing air traffic management by integrating space +mission monitoring for launches and re-entries within the EUROCONTROL Network Manager +area. It focuses on creating operational frameworks to manage space operations, including +orbital and sub-orbital trajectories, ensuring they harmonize with existing air traffic. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 132 === +Administrative forms +Page 132 of 166 Last saved 16/09/2025 22:33 +DLR Launch Coordination Center +(LCC) Development - +https://www.dlr.de/en/latest/news/2021/03/20210923_dlr-is-developing-a-launch- +coordination-center +DLR's LCC integrates software-based procedures for safe, efficient space launch coordination +through airspace. System includes automated planning components, real-time mission +monitoring via Space Operations Dashboard, and enhanced air traffic controller interfaces. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +Air Traffic Validation Center +https://www.dlr.de/fl/en/desktopdefault.aspx/tabid-1140/ +DLR facilities for the validation of concepts, technologies and procedures in air traffic +management. Together, these facilities are known as the Air Traffic Validation Center and are +unique in Europe. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 133 === +Administrative forms +Page 133 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 134 === +Administrative forms +Page 134 of 166 Last saved 16/09/2025 22:33 +PIC +870545901 +Legal name +SCEYE SPAIN S.L. +Short name: Sceye Spain + +Address +Town Madrid +Postcode 28002 +Street Suero de Quiñones 34-36 +Country Spain +Webpage www.sceye.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 04/09/2025 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 135 === +Administrative forms +Page 135 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 136 === +Administrative forms +Page 136 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Alfredo Last name* Serrano +E-Mail* as@sceye.com +Town Madrid Post code 28002 +Street Suero de Quiñones 34-36 +Website Please enter website +Position in org. Director of EMEA +Department SCEYE SPAIN S.L. +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle Mr +Same as proposing organisation's address +Country Spain +Same as organisation +name +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 137 === +Administrative forms +Page 137 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Mr Leonard Bouygues Non-binary France lb@sceye.com Category A Top grade reLeading +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 138 === +Administrative forms +Page 138 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 139 === +Administrative forms +Page 139 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +Cooperative, Seamless, and Global Digital Skies for Higher Airspace (2025) - HAPS Alliance +Aviation Working Group +The Aerospace Industries Association proposes collaborative traffic management for higher +airspace to manage exponential growth of UAS, supersonic, HAPS, and commercial space +operations. This involves community-based rules (user-formed, CAA-approved) and operators +sharing intent via service providers for conflict identification and resolution, ensuring safe and +equitable global mnmgt +Publication +Acceptable Levels of Risks for HAPS (2024) - HAPS Alliance Aviation Working Group +For High Altitude Platform Systems, the HAPS Alliance advocates third-party-centric risk +metrics, measuring risk to ground populations and manned aircraft. This replaces inadequate +platform-centric aviation metrics. The framework sets individual and collective risk limits, +aligned with existing infrastructure risks (e.g.UK ALARP), enabling operators to dynamically +self-manage risk by controlling operational factor +Publication +HAPS Operation Using Attended Autonomous Fleet Systems (2022) - HAPS Alliance Aviation +Working Group +A proposal for Collaborative Traffic Management for the Stratosphere (CTMS) for Attended +Autonomous Fleet Systems. This strategy enables safe, scalable HAPS operations through +automation for fleet management and M2M conflict resolution. It uses Community Based +Rules (CBR) and is an exception-centric approach, where human supervisory networks +manage system anomalies, not individual vehicles +Publication +Cooperative Operations In Higher Airspace - A Proposal (2022) - Aerospace Industries +Association (AIA), Emerging Technologies Commitee (ETC), Airspace Working Group +A national strategy for higher airspace operations is crucial due to expected exponential +growth and diverse commercial aircraft. Collaborative traffic management, based on +community-based rules, is proposed to address challenges from increasing demand and +varied vehicle profiles. This approach aims for safe and equitable global ops +Publication +Adaptive Risk-Based Conflict Detection for Stratospheric Flight Operations, Air Traffic Control +Associate (ATCA) - Leonard Bouygues, et al (2020) +This paper proposes an adaptive risk-based framework for conflict deconfliction in +stratospheric flight operations, using a victim-centric model (1st, 2nd, & 3rd party risk) to +address challenges posed by diverse vehicle performance and risk profiles. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Stratospheric Flights +Sceye platform is the most capable LTA HAPS currently in operation. Sceye has flown +successfully more than 20 missions into the stratosphere, demonstrating day-night endurance +using solar power and battery storage, while keeping station over the area of operation. +We have flown multiple payloads, including optical and hyperspectral imaging cameras, SAR, +4G telecommunications, infrasonic sensors, and aerosol particle spectrometers, validating the +platform’s ability to carry diverse instrument +NASA Demonstrated cooperative deconfliction capabilities with other HAPS operators through +NASA-led CE1.5 simulation +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 140 === +Administrative forms +Page 140 of 166 Last saved 16/09/2025 22:33 +Flight Simulators +Sceye designed and built a simulator to model the platform dynamics and trajectory. By using +global weather data, the simulator can predict accurately the platform's navigation path, +ascend and descent trajectories, and also model solar energy management system and +internal gas dynamics. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 141 === +Administrative forms +Page 141 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 142 === +Administrative forms +Page 142 of 166 Last saved 16/09/2025 22:33 +PIC +888276725 +Legal name +ANRA TECHNOLOGIES OU +Short name: ANRA TECHNOLOGIES OU + +Address +Town TALLINN +Postcode 11314 +Street KESKLINNA LINNAOSA JARVEVANA TEE 9 +Country Estonia +Webpage www.flyanra.com +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 31/12/2024 - yes +SME self-assessment ........................................... 31/12/2024 - yes +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 143 === +Administrative forms +Page 143 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 144 === +Administrative forms +Page 144 of 166 Last saved 16/09/2025 22:33 +Main contact person +This will be the person the EU services will contact concerning this proposal (e.g. for additional information, invitation to hearings, sending of +evaluation results, convocation to start grant preparation). The data in blue is read-only. Details (name, first name and e-mail) of Main Contact +persons should be edited in the step "Participants" of the submission wizard. +First name* Ajay Last name* Modha +E-Mail* amodha@flyanra.com +Town TALLINN Post code 11314 +Street KESKLINNA LINNAOSA JARVEVANA TEE 9 +Website Please enter website +Position in org. Business Manager +Department ANRA TECHNOLOGIES OU +Phone +xxx xxxxxxxxx Phone 2 +xxx xxxxxxxxx +Gender Woman Man Non BinaryTitle +Same as proposing organisation's address +Country Estonia +Same as organisation +name +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 145 === +Administrative forms +Page 145 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Ms Abinaya Kannan Woman Italy akannan@flyanra. +com Category B Senior resea Team member +Ms Patricia Garcia Pastor Woman Spain Pgpastor@flyanra +.com +Category B Senior resea Team member +Dr Ajay Modha Man United Kingdom amodha@flyanra. +com +Category A Top grade reLeading +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 146 === +Administrative forms +Page 146 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 147 === +Administrative forms +Page 147 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Software +ANRA NOON: ANRA is an EASA certified U-space Service Provider, and ANRA NOON is an +airspace management software platform for uncrewed aircraft. U-space services support the +management of uncrewed aircraft operations in U-space airspace. +Software ANRA's SIM tool: Provides the engine to drive a Digital Twin experience for virtual drone +operations +Software ANRA AAM Traffic Management tool: airspace management for Advanced Air Mobility aircraft +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Corus five (2025-2028) +The project aims to extend and mature the SESAR U-space Concept of Operations for the +integration of drones into controlled airspace. Building on the success of CORUS and CORUS +XUAM, it is expanding the scope to cover areas currently not included such as above very low +level airspace and near controlled airports. The updated ConOps will include functionalities +and U3/U4 services supporting U-space integration, and propose SESAR Solutions, flight rules, +and airspace structure elements. +ASTM F38 UTM Committee Co- +chair +ANRA is the Co-chair of the ASTM Standards development organisation's F38 UTM technical +committee. The committee has published several UTM standards including the F3548-21 UTM +interoperability standard that is recommended in the AMC/GM for U-space regulations and +the FAA rules. The committee is currently working on standards for Advanced air mobility for +vertiports and eVTOL operations and is engaged with NASA on airspace management topics. +Managing Shared Airspace (2025 - +2026) +The project aims to implement and validate a UK Concept of Operations for UTM supported +UAS operations. It seeks to operationalise an industry-driven approach for UTM services that +support multiple overlapping Beyond Visual Line of Sight (BVLOS) operations within shared +airspace. +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 148 === +Administrative forms +Page 148 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 149 === +Administrative forms +Page 149 of 166 Last saved 16/09/2025 22:33 +PIC +869703941 +Legal name +HAPS Alliance +Short name: HAPS ALLIANCE + +Address +Town Wakefield +Postcode 01880 +Street 401 Edgewater Place, Suite 600 +Country United States +Webpage www.hapsalliance.org +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... yes +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is an SME (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... 30/08/2025 - yes +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 150 === +Administrative forms +Page 150 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 151 === +Administrative forms +Page 151 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +Andrew Thurling Man United States andy@thurling- +aero.com Category A Top grade reTeam member +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 152 === +Administrative forms +Page 152 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 153 === +Administrative forms +Page 153 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +Publication +Cooperative, Seamless, and Global Digital Skies for Higher Airspace : The purpose of the paper +is to assist the aviation and aerospace global communities in understanding an industry +perspective and vision for a global harmonized, cross-border, and integrated Higher Airspace +Operations Traffic Management, which supports the seamless integration of highly +automated operations. +Publication +HAPS Certification Pathways: The purpose of this document is to identify the key challenges +faced by the High Altitude Platform System (HAPS) community in getting regulatory approval +to start commercial operations and recommended actions that the HAPS Alliance can take to +address these challenges. Operational challenges are covered only from the perspective of the +potential impact they have on air vehicle performance. +Publication +Acceptable Levels of Risk for HAPS : This paper discusses setting acceptable levels of risk for +High Altitude Platform System (HAPS). It discusses the safety metrics traditionally used in +aviation are not adequate to establish target levels of safety for HAPS. Then it proposes to set +acceptable levels of risk to be consistent with the risk already accepted by the exposed parties. +Then it proposes a framework by which an operator self-manages the collective risk it +generates. +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment +Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 154 === +Administrative forms +Page 154 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 155 === +Administrative forms +Page 155 of 166 Last saved 16/09/2025 22:33 +PIC +927009019 +Legal name +UDARAS EITLIOCHTA NA HEIREANN THE IRISH AVIATION AUTHORITY +Short name: IAA (COOPANS) + +Address +Town DUBLIN +Postcode D02 T449 +Street D'OLIER STREET 11-12 THE TIMES BUILDING +Country Ireland +Webpage www.iaa.ie +Specific Legal Statuses +Legal person .......................................................... yes +Public body ............................................................ no +Non-profit ............................................................... no +International organisation ...................................... no +Secondary or Higher education establishment ...... no +Research organisation ........................................... no +SME Data +Based on the below details from the Participant Registry the organisation is unknown (small- and medium-sized enterprise) for the call. +SME self-declared status ...................................... unknown +SME self-assessment ........................................... unknown +SME validation ...................................................... unknown +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 156 === +Administrative forms +Page 156 of 166 Last saved 16/09/2025 22:33 +Departments carrying out the proposed work +No department involved +Department name Name of the department/institute carrying out the work. +Street Please enter street name and number. +Town Please enter the name of the town. +Same as proposing organisation's address +not applicable +Country Please select a country +Postcode Area code. +Links with other participants +Type of link Participant +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 157 === +Administrative forms +Page 157 of 166 Last saved 16/09/2025 22:33 +Researchers involved in the proposal +Title First Name Last Name Gender Nationality E-mail Career Stage +Role of +researcher (in +the project) +Reference +Identifier Type of identifier +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 158 === +Administrative forms +Page 158 of 166 Last saved 16/09/2025 22:33 +Role of participating organisation in the project +Project management +Communication, dissemination and engagement +Provision of research and technology infrastructure +Co-definition of research and market needs +Civil society representative +Policy maker or regulator, incl. standardisation body +Research performer +Technology developer +Testing/validation of approaches and ideas +Prototyping and demonstration +IPR management incl. technology transfer +Public procurer of results +Private buyer of results +Finance provider (public or private) +Education and training +Contributions from the social sciences or/and the humanities +Other +If yes, please specify: (Maximum number of characters allowed: 50) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 159 === +Administrative forms +Page 159 of 166 Last saved 16/09/2025 22:33 +List of up to 5 publications, widely-used datasets, software, goods, services, or any other achievements relevant to the call content. +Type of achievement Short description (Max 500 characters) +List of up to 5 most relevant previous projects or activities, connected to the subject of this proposal. +Name of Project or Activity Short description (Max 500 characters) +Description of any significant infrastructure and/or any major items of technical equipment, relevant to the proposed work. +Name of infrastructure of +equipment Short description (Max 300 characters) +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 160 === +Administrative forms +Page 160 of 166 Last saved 16/09/2025 22:33 +Gender Equality Plan +Does the organization have a Gender Equality Plan (GEP) covering the elements listed below? Yes No +Minimum process-related requirements (building blocks) for a GEP + - Publication: formal document published on the institution's website and signed by the top management + - Dedicated resources: commitment of human resources and gender expertise to implement it. + - Data collection and monitoring: sex/gender disaggregated data on personnel (and students for establishments + concerned) and annual reporting based on indicators. + - Training: Awareness raising/trainings on gender equality and unconscious gender biases for staff and + decision-makers. + - Content-wise, recommended areas to be covered and addressed via concrete measures and targets are: +o work-life balance and organisational culture; +o gender balance in leadership and decision-making; +o gender equality in recruitment and career progression; +o integration of the gender dimension into research and teaching content; +o measures against gender-based violence including sexual harassment. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 161 === +Administrative forms +Page 161 of 166 +Proposal ID 101290642 +Acronym STRATUS +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 22:33 +3 - Budget +No Name of Beneficiary Country Role Requested grant +amount + Income generated +by the action +Financial +contributions + Own resources Total estimated +income +1 Eurocontrol - European Organisation For The Safety Of Air +Navigation BE Coordinator 0.00 0 0 2 550 785 2 550 785.00 +2 Dfs Deutsche Flugsicherung Gmbh DE Partner 73 235.00 0 0 15 480 88 715.00 +3 Enav Spa IT Partner 73 924.08 0 0 0 73 924.08 +4 Luftfartsverket SE Partner 180 375.00 0 0 0 180 375.00 +5 Nats (En Route) Public Limited Company UK Partner 119 684.75 0 0 0 119 684.75 +6 Enaire ES Partner 95 975.00 0 0 0 95 975.00 +7 Ente Nazionale Per L'aviazione Civile - Enac Italian Civil Aviation +Authority IT Partner 102 268.75 0 0 0 102 268.75 +8 Consorcio Aerodromo Aeropuerto De Teruel ES Partner 88 000.00 0 0 0 88 000.00 +9 Skynav Europe BE Partner 253 269.75 0 0 0 253 269.75 +10 Ecole Nationale De L Aviation Civile FR Partner 78 250.00 0 0 0 78 250.00 +11 C.i.r.a. Centro Italiano Ricerche Aerospaziali Scpa IT Partner 53 907.50 0 0 0 53 907.50 +12 Stichting Koninklijk Nederlands Lucht - En Ruimtevaartcentrum NL Partner 157 795.25 0 0 0 157 795.25 +13 International Federation Of Air Traffic Controllers Associations CA Partner 63 125.00 0 0 0 63 125.00 +14 Ingenieria Y Economia Del Transporte Sme Mp Sa ES Partner 97 575.00 0 0 0 97 575.00 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 162 === +Administrative forms +Page 162 of 166 +Proposal ID 101290642 +Acronym STRATUS +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 22:33 +15 Centro De Referencia Investigacion Desarrollo E Innovacion Atm, +A.i.e. ES Partner 59 250.00 0 0 0 59 250.00 +16 Instituut Voor Infrastructuur, Milieu En Innovatie BE Partner 33 462.50 0 0 0 33 462.50 +17 Openutm Ltd. IE Partner 7 237.50 0 0 0 7 237.50 +18 Deutsches Zentrum Fur Luft - Und Raumfahrt Ev DE Partner 153 000.00 0 0 0 153 000.00 +19 Sceye Spain S.l. ES Partner 280 175.00 0 0 0 280 175.00 +20 Anra Technologies Ou EE Partner 84 656.25 0 0 0 84 656.25 +21 Haps Alliance US Associated 0.00 0 0 0 0.00 +22 Udaras Eitliochta Na Heireann The Irish Aviation Authority IE Associated 0.00 0 0 0 0.00 +Total 2 055 166.33 2 566 265 4 621 431.33 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 163 === +Administrative forms +Page 163 of 166 +Proposal ID 101290642 +Acronym STRATUS +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 22:33 +4 - Ethics & security +Ethics Issues Table +1. Human Embryonic Stem Cells and Human Embryos Page +Does this activity involve Human Embryonic Stem Cells (hESCs)? Yes No +Does this activity involve the use of human embryos? Yes No +2. Humans Page +Does this activity involve human participants? Yes No +Does this activity involve interventions (physical also including imaging technology, +behavioural treatments, etc.) on the study participants? Yes No +Does this activity involve conducting a clinical study as defined by the Clinical Trial Regulation +(EU 536/2014)? (using pharmaceuticals, biologicals, radiopharmaceuticals, or advanced +therapy medicinal products) +Yes No +3. Human Cells / Tissues (not covered by section 1) Page +Does this activity involve the use of human cells or tissues? Yes No +4. Personal Data Page +Does this activity involve processing of personal data? Yes No +Does this activity involve further processing of previously collected personal data (including +use of preexisting data sets or sources, merging existing data sets)? +Yes No +Is it planned to export personal data from the EU to non-EU countries? Yes No +Is it planned to import personal data from non-EU countries into the EU or from a non-EU +country to another non-EU country? +Yes No +Does this activity involve the processing of personal data related to criminal convictions or +offences? +Yes No +5. Animals Page +Does this activity involve animals? Yes No +6. Non-EU Countries Page +Will some of the activities be carried out in non-EU countries? Yes No +In case non-EU countries are involved, do the activities undertaken in these countries raise +potential ethics issues? Yes No +It is planned to use local resources (e.g. animal and/or human tissue samples, genetic material, +live animals, human remains, materials of historical value, endangered fauna or flora samples, +etc.)? +Yes No +Is it planned to import any material (other than data) from non-EU countries into the EU or +from a non-EU country to another non-EU country? For data imports, see section 4. Yes No +Is it planned to export any material (other than data) from the EU to non-EU countries? For +data exports, see section 4. Yes No +Does this activity involve low and/or lower middle income countries, (if yes, detail the benefit- +sharing actions planned in the self-assessment) Yes No +Could the situation in the country put the individuals taking part in the activity at risk? Yes No +7. Environment, Health and Safety Page +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 164 === +Administrative forms +Page 164 of 166 +Proposal ID 101290642 +Acronym STRATUS +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 22:33 +Does this activity involve the use of substances or processes that may cause harm to the +environment, to animals or plants.(during the implementation of the activity or further to the +use of the results, as a possible impact) ? +Yes No +Does this activity deal with endangered fauna and/or flora / protected areas? Yes No +Does this activity involve the use of substances or processes that may cause harm to humans, +including those performing the activity.(during the implementation of the activity or further +to the use of the results, as a possible impact) ? +Yes No +8. Artificial Intelligence Page +Does this activity involve the development, deployment and/or use of Artificial Intelligence- +based systems? Yes No +9. Other Ethics Issues Page +Are there any other ethics issues that should be taken into consideration? Yes No +I confirm that I have taken into account all ethics issues above and that, if any ethics issues apply, I will complete the +ethics self-assessment as described in the guidelines How to Complete your Ethics Self-Assessment +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 165 === +Administrative forms +Page 165 of 166 +Proposal ID 101290642 +Acronym STRATUS +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 22:33 +Ethics Self-Assessment +Ethical dimension of the objectives, methodology and likely impact +Explain in detail the identified issues in relation to: + - objectives of the activities (e.g. study of vulnerable populations, etc.) + - methodology (e.g. clinical trials, involvement of children, protection of personal data, etc.) + - the potential impact of the activities (e.g. environmental damage, stigmatisation of particular social +groups, political or financial adverse consequences, misuse, etc.) +Remaining characters 5000 +Compliance with ethical principles and relevant legislations +Describe how the issue(s) identified in the ethics issues table above will be addressed in order to adhere to the ethical principles and +what will be done to ensure that the activities are compliant with the EU/national legal and ethical requirements of the country or +countries where the tasks are to be carried out. It is reminded that for activities performed in a non-EU countries, they should also be +allowed in at least one EU Member State. +Remaining characters 5000 +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 166 === +Administrative forms +Page 166 of 166 +Proposal ID 101290642 +Acronym STRATUS +Horizon Europe ver 1.00 20241022 Last saved 16/09/2025 22:33 +Security issues table +1. EU Classified Information (EUCI)2 Page +Does this activity involve information and/or materials requiring protection against +unauthorised disclosure (EUCI)? Yes No +Does this activity involve non-EU countries which need to have access to EUCI? Yes No +2. Misuse Page +Does this activity have the potential for misuse of results? Yes No +3. Other Security Issues Page +Does this activity involve information and/or materials subject to national security restrictions? +If yes, please specify: (Maximum number of characters allowed: 1000) +Yes No +Are there any other security issues that should be taken into consideration? +If yes, please specify: (Maximum number of characters allowed: 1000) +Yes No +Security self-assessment +Please specify: (Maximum number of characters allowed: 5000) +Remaining characters 5000 +2According to the Commission Decision (EU, Euratom) 2015/444 of 13 March 2015 on the security rules for protecting EU classified information, “European Union +classified information (EUCI) means any information or material designated by an EU security classification, the unauthorised disclosure of which could cause varying +degrees of prejudice to the interests of the European Union or of one or more of the Member States”. +3Classified background information is information that is already classified by a country and/or international organisation and/or the EU and is going to be used by the +project. In this case, the project must have in advance the authorisation from the originator of the classified information, which is the entity (EU institution, EU Member +State, third state or international organisation) under whose authority the classified information has been generated. +4EU classified foreground information is information (documents/deliverables/materials) planned to be generated by the project and that needs to be protected from +unauthorised disclosure. The originator of the EUCI generated by the project is the European Commission. +This proposal version was submitted by Ovidiu DUMITRACHE on 16/09/2025 16:55:35 Brussels Local Time. Issued by the Funding & Tenders Portal Submission System. + +=== PAGE 167 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 1 of 34 +Proposal template Part B: technical description +STRATUS — SAFETY AND TRANSFORMED RESILIENCE FOR HIGH-ALTITUDE TRAFFIC +UNIFIED SERVICES +[This document is tagged. Do not delete the tags; they are needed for processing.] #@APP-FORM-HERIAIA@# +List of participants +Participant No. * Participant organisation name Country +1 (Coordinator) EUROCONTROL Belgium (BE) +2 DFS Detusche Flugsicherung GmbH Germany (DE) +3 ENAV SPA Italy (IT) +4 LUFTARSVERKET Sweden (SE) +5 NATS United Kingdom (UK) +6 ENAIRE Spain (ES) +7 ENAC ITALIAN CIVIL AVIATION AUTHORITY Italy (IT) +8 CONSORCIO DEL AEROPUERTO DE TERUEL Spain (ES) +9 SKYNAV EUROPE Belgium (BE) +10 ECOLE NATIONALE DE L’AVIATION CIVILE France (FR) +11 C.I.R.A. CENTRO ITALIANO RICERCHE +AEROSPAZIALI SCPA +Italy (IT) +12 STICHTING KONINKLIJK NEDERLANDS LUCHT +- EN RUIMTEVAARTCENTRUM +Netherlands (NL) +13 INTERNATIONAL FEDERATION OF AIR +TRAFFIC CONTROLLERS’ ASSOCIATIONS +Canada (CA) +14 INGENIERIA Y ECONOMIA DEL TRANSPORTE +SME MP SA +Spain (ES) +15 CENTRO DE REFERENCIA INVESTIGACION +DESARROLLO E INNOVACION ATM, A.I.E. +Spain (ES) +16 INSTITUUT VOOR INFRASTRUCTUUR, MILIEU +EN INNOVATIE +Belgium (BE) +17 OPENUTM Ireland (IE) + + +=== PAGE 168 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 2 of 34 +18 DEUTSCHES ZENTRUM FUR LUFT - UND +RAUMFAHRT EV +Germany (DE) +19 SCEYE SPAIN Spain (ES) +20 ANRA Technologies OU Estonia (EE) +21 HAPS Alliance (Associated partner) United States (US) +22 UDARAS EITLIOCHTA NA HEIREANN THE IRISH +AVIATION AUTHORITY (Associated partner) +Ireland (IE) + +1. Excellence #@REL-EVA-RE@# +1.1 Objectives and ambition #@PRJ-OBJ-PO@# +Project objectives +STRATUS (Safety and Transformed Resilience for High-Altitude Traffic Unified Services) will define a modular +and scalable framework for integrating Higher Airspace Operations (HAO) and Space Transport Operations (STO) +into the European ATM framework. The focus is on the low-density airspace above conventional traffic, generally +above FL550. This is where high-performance supersonic and hypersonic aircraft, automated HAPS fleets, and +sub-orbital operations are expected to multiply in the coming decade. +Building on the exploratory CONOPS produced in ECHO and taking into account the work now underway in +ECHO2, STRATUS will expand the scope to cover a wider set of operational scenarios, vehicle types and service +models. It will address the operational, functional, technical and regulatory foundations required f or integration, in +line with the priorities of the European ATM Master Plan for higher -airspace operations, dynamic airspace +configuration, service-oriented architectures and cyber -secure digitalisation. Concentrating on the higher airspace, +where traffic density is relatively low, provides the opportunity to mature and validate innovative concepts and +technologies while limiting operational risk to existing ATM. +The objectives of STRATUS follow a logical progression from establishing operational demand in higher airspace, +through the development of concepts and supporting frameworks, to the consideration of regulatory and other +relevant implications that may influence successful implementation. The specific objectives are: +a) Market and stakeholder study +Carry out an updated market and stakeholder study early in the project to establish the foundation for higher- +airspace integration. The study will identify expected airspace users, including HAPS fleets, hypersonic +transports, space transport operations such as orbital launches, sub-orbital flights and re-entries, and relevant +military activities. It will assess expected traffic levels, operational profiles and timelines for entry into +service, providing a realistic picture of higher-airspace occupancy. The results will provide the baseline for +the OSED and CONOPS and ensure that subsequent work is grounded in operational reality. The study will +complement the ongoing HAO market study by EASA by including space transport operations, which can +have a major impact on airspace availability , and therefore this study will deliver a more comprehensive +assessment of overall higher-airspace demand. +b) Higher-airspace CONOPS +Develop an updated CONOPS describing how HAO and STO are integrated into the ATM network in +practice. The CONOPS will identify the main functions required, such as trajectory exchange, conflict +detection, separation, hazard area coordination and contingency response, and map them to potential services + +=== PAGE 169 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 3 of 34 +with clearly defined interfaces. It will describe how these services interact with ANSPs, operators, military +authorities and STO actors, ensuring that launches, re-entries and hazard areas are managed consistently with +the wider ATM network. Building on the exploratory ECHO CONOPS, STRATUS will focus on producing +an updated and innovative framework that moves beyond initial scoping and provides a structured basis for +future implementation. +c) STO integration and hazard area management +Define the functions and services required for hazard area generation, promulgation, and dynamic +management. This includes processes for creating and updating hazard areas, how they are exchanged with +ANSPs and operators, and how they interact with 4DOZ concepts. Contingency procedures for off-nominal +launches or re-entries will be addressed, together with the responsibilities of different service providers. +d) Dynamic 4-Dimensional Operating Zones for HAPS (4DOZ) +Extend the 4DOZ concept introduced in ECHO2 by explaining how these zones can operate in relation to +other airspace users and how they can be integrated into higher airspace within the European ATM network. +Particular attention will be given to HAPS operations, which may involve long endurance flights, large +formations, or fleets with unique operational profiles. The project will specify the functions for creating, +resizing and coordinating zones, describe how they can be delivered as services, and outline which providers +would be responsible for their management. +e) Service architecture framework +Outline a modular, digital ( Application Programming Interface (API) based), distributed architecture that +supports the deployment of higher -airspace functions as interoperable services. The framework will apply +zero-trust security, where no user or service is trusted by default and every interaction is authenticated, +authorised and monitored. Redundancy and digital authorisation mechanisms will be built in, allowing States +to maintain control of services within their jurisdiction while still supporting resilient and secure cross-border +operations. +f) Integrated assurance framework +Develop a conceptual methodology that brings safety, cyber -security and resilience together in a single +assurance process. The framework will show how requirements in these areas are linked, how evidence can +be reused across domains, and how the approach c an be exercised through expert review and small desk - +based studies. The aim is to provide a practical way of checking that higher-airspace functions and services +are robust without creating three separate sets of assurance work. +g) Regulatory and implementation considerations +Consider the regulatory and operational issues that will influence the implementation of higher -airspace +services for all users. Areas to be considered include flight rules, licensing and supervision of new service +providers, sovereignty and cross -border o perations, military use of higher airspace, contingency +responsibilities and environmental aspects. STRATUS will review these topics and provide commentary on +their relevance to successful implementation, highlighting where regulatory developments may be n eeded. +The findings will be reflected in an annex to the CONOPS and presented as input to inform further regulatory +and implementation work. +Collectively, these objectives move beyond the initial scoping in ECHO and expand on the ongoing activities in +ECHO2. Whereas ECHO established a first (comparatively narrow) CONOPS at TRL 2, STRATUS will broaden +the scope and then consolidate the results back to a comprehensive TRL 2 by project close. This provides a more +complete and implementation -oriented baseline for higher -airspace integration. In this way, STRATUS ensur es +continuity with existing SESAR work while delivering outputs that are ready to s upport future industrial research +and the priorities of the European ATM Master Plan. + +=== PAGE 170 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 4 of 34 +Ambition and advance beyond the state of the art +Previous SESAR work has established useful foundations for higher-airspace integration but important gaps remain. +ECHO delivered an initial CONOPS at TRL 2, providing the first structured view of higher -airspace operations. +ECHO2 is continuing this line of work but remains in progress and has not yet addressed service architectures, +assurance methods or regulatory considerations. Other projects have contributed in related areas, including SEC - +AIRSPACE on cyber security, FARO on resilience metrics, and FCDI on distributed service provision, but none +have combined these elements into a coherent framework tailored for higher-airspace operations and space transport. +STRATUS advances the state of the art by: +a) Establishing a framework for network -wide consistent management of higher-airspace and space transport +operations, ensuring that new entrants are integrated as part of a coherent Europe -wide system rather than +through fragmented national solutions. This reflects the Master Plan ambition of a Digital European Sky that +manages all users seamlessly across borders. +b) Embedding zero -trust, cyber -resilient principles into operational concepts and service architectures, +consistent with the Master Plan’s call for secure digitalisation of ATM services. +c) Providing flexible and dynamic airspace management through 4DOZ, adaptable to traffic mix, vehicle +performance and network conditions, which directly supports the Master Plan priority on dynamic airspace +configuration. +d) Enhancing resilience of higher -airspace services against disruptive events such as health crises, natural +disasters, terrorism and cyber-attacks. STRATUS will explore how resilience requirements can be defined +for new functions and services, building on and extending beyond previous SESAR work. +e) Creating a unified assurance methodology that brings safety, cyber security and resilience into a single +process, reflecting the Master Plan priority on strengthening resilience of ATM services against physical and +cyber threats. +f) Delivering an interoperable distributed architecture that supports a European network of higher -airspace +services in which States retain sovereignty, but solutions can be reused across borders. This contributes to +the Master Plan objective of introducing service -oriented architectures that allow scalability and +harmonisation across Europe. +By consolidating these strands at TRL 2, STRATUS provides a more comprehensive and implementation -oriented +baseline than any previous exploratory research. It ensures that the integration of new entrants such as HAPS, +hypersonic and space transport vehicle s is addressed in line with the development priorities of the European ATM +Master Plan. +R&I maturity +The work will begin at TRL 1–2, building on the exploratory CONOPS delivered in ECHO. STRATUS broadens the +scope to include additional vehicle types, STO interactions, hazard area management, dynamic 4DOZ, service +architectures and assurance methods. This wider scope temporarily lowers maturity, and the project will consolidate +these strands back to a comprehensive TRL 2 by project close. +By the end of the project, concepts, architectures and frameworks will be fully defined, documented and validated +through expert review, stakeholder consultation and targeted desk -based analysis. Where appropriate, small -scale +studies will be used to test specific elements such as hazard area coordination or cyber-resilience principles. No large- +scale simulations or flight trials are foreseen, in line with the scope of an Exploratory Research project. + +#§PRJ-OBJ-PO§# + +=== PAGE 171 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 5 of 34 +1.2 Methodology #@CON-MET-CM@# #@COM-PLE-CP@# +STRATUS begins by establishing who is expected to operate in higher airspace, through the development of +operational concepts and technical frameworks, to the assessment of assurance and consideration of regulatory +aspects. Each stage builds on the previous one so that by project close the results form a coherent package +consolidated at TRL 2. +Initially a market and stakeholder study will be performed to establish a baseline picture of higher-airspace demand. +This provides traffic expectations and operating characteristics that underpin the later concept work. On this basis +STRATUS develops an updated CONOPS and OSED. These describe how higher -airspace and space transport +operations can be integrated into the ATM network, define the required functions, map them to potential services, +and explain how they interact with ANSPs, operators, military authorities and space transport actors. Special attention +is given to STO integration and hazard area management, and to extending the 4DOZ concept from ECHO2 to show +how dynamic zones can operate in relation to other higher airspace users and the European ATM network. +The project then looks at how these functions could be deployed within a modular, service-oriented architecture. This +includes interoperability through digital APIs, redundancy, digital authorisation and the application of zero -trust +security principles to maintain resilience in distributed and cross-border settings. A conceptual integrated assurance +framework will also be developed, linking safety, cyber securit y and resilience into a single process. This will be +reviewed by experts and exercised through desk-based studies. +Finally, STRATUS examines the regulatory and implementation aspects that could affect higher -airspace services. +These considerations may include flight rules, licensing, sovereignty, contingency planning and environmental +impacts. The focus will be on analysing relevance and potential effects rather than prescribing solutions. +The research is structured around two work packages that cover the exploratory and consolidation phases. Each +reflects one reporting period, in line with SESAR guidance for Exploratory Research projects. This structure ensures +that early definitions and scoping are completed and reviewed before more detailed frameworks are developed. +Part A (WP3, M1–M12) sets the foundation. It begins with the market and stakeholder study that establishes who is +expected to operate in higher airspace in the coming decade, covering HAPS fleets, hypersonic transport, space +transport operations such as orbital launches, sub-orbital flights and re-entries, and relevant military activities. This +study produces traffic profiles, operating characteristics and entry-into-service timelines that serve as the baseline for +the concept work. +Building on this baseline, Part A defines the operational context. It sets the vertical limits, classes and flight rules for +higher airspace, identifies the main functions required for integration, and describes the actors involved. These +include service providers, operators, regulators, airports, spaceports, stratoports and military authorities. The package +also reviews existing ICAO, European and SESAR documentation to identify overlaps, gaps and inconsistencies. +The initial set of functional building blocks is then described. This covers surveillance, communications, navigation, +mission planning, tactical planning and separation where applicable. Early models of 4DOZ are outlined, showing +how dynamic zones might i nteract with other high -altitude users. These elements are captured in the Exploratory +Research Plan, the market study and the initial OSED and CONOPS. +Part B (WP4, M13–M24) builds on these foundations and delivers the main technical results. It refines the functional +building blocks and develops detailed service concepts, extending the 4DOZ models to include coordination +mechanisms, contingency procedures, degraded mode operations and civil–military use. +The project then maps these functions into a high -level architecture framework. This framework applies modular, +service-oriented principles, ensures interoperability through APIs, and incorporates zero -trust cyber security, +redundancy, and sovereign control. The mapping of functions to services and interfaces provides a consistent basis +for future technical development. + +=== PAGE 172 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 6 of 34 +Alongside this, Part B develops a conceptual integrated assurance framework that brings safety, cyber security and +resilience together in a single process. The framework is exercised through expert review and desk -based studies, +demonstrating how assurance evidence could be captured once and reused across domains. +Finally, Part B considers standardisation and regulatory aspects. The concepts developed are mapped against existing +ICAO, European and national regulations and standards. Areas where clarification or updates may be needed are +highlighted, including sovere ignty, licensing, contingency and environmental considerations. This commentary +provides input for later SESAR phases and regulatory work. +The outputs of Part B include the FRD, final OSED and CONOPS, the Exploratory Research Report, an economic +evaluation, and a commentary on regulatory and implementation issues. +The research is supported by WP1 on project management and by WP2 and WP5 on communication, dissemination +and exploitation. These ensure that results are shared effectively and that open science and FAIR data principles are +followed. They are described in more detail under Implementation. +Methodological challenges and mitigation +A key challenge for higher -airspace research is the absence of operational data. There are no mature fleets of +hypersonic aircraft or routine space transport missions from Europe today, and HAPS operations remain limited. +STRATUS addresses this by using a market and stakeholder study to construct realistic traffic profiles and operating +characteristics. These are complemented by desk-based analysis and expert input, which together provide sufficient +grounding for concept development without relying on unavailable data. +Another challenge lies in the regulatory domain. Questions of sovereignty, licensing, contingency responsibility and +environmental protection are politically sensitive and outside the remit of a research project to resolve. STRATUS +therefore does not attem pt to prescribe solutions. Instead, it documents how these issues affect ATM integration, +highlights dependencies and risks, and provides commentary that can inform future regulatory and industrial work. +The maturity level is also a constraint. STRATUS is scoped to reach TRL 2, which is appropriate for Exploratory +Research. The project is not designed to deliver prototypes or flight demonstrations. Instead, validation is achieved +through expert review, stakeholder consultation and small targeted studies where feasible. This ensures that results +are realistic and technically sound, while leaving space for later industrial research to develop prototypes and +operational trials. +Finally, integrating perspectives from operations, system architecture, cyber security and resilience introduces +complexity. STRATUS mitigates this through an iterative process, where definitions established early in Part A are +used to guide the service and architecture concepts in Part B. This ensures consistency across operational, technical +and regulatory strands and reduces the risk of fragmentation. +Validation approach +Validation in STRATUS is tailored to the scope of an exploratory research project. The aim is to confirm that the +concepts and frameworks developed are credible, feasible, and aligned with operational and regulatory realities, +rather than to demonstrate them in live systems. +The primary method will be structured expert review, involving regulators, ANSPs, operators and other stakeholders +with direct knowledge of higher -airspace operations. Their feedback will be used to assess whether the proposed +functions, services and frameworks are consistent with operational needs and institutional constraints. +Targeted stakeholder workshops will provide additional opportunities to test assumptions and refine the outputs. +These workshops will be used to present draft concepts such as hazard area management or 4DOZ coordination, and +to capture reactions from operational and regulatory perspectives. + +=== PAGE 173 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 7 of 34 +Scenario-based analysis will be applied where a more detailed check is useful, for example to explore how a dynamic +zone interacts with conventional traffic or how contingency procedures might unfold in a cross-border setting. These +analyses will be desk-based and scoped to remain within available resources. +No large-scale simulations or flight trials are planned, which is consistent with the scope of an Exploratory Research +project. Where feasible, partial proof-of-concept studies may be carried out to illustrate specific technical ideas, and +any software artefacts produced will be open-sourced to support future research. +Compliance with cross-cutting requirements +Do No Significant Harm (DNSH). +The project does not involve physical systems, prototypes, or flight trials. All activities are desk -based, relying on +literature, modelling, and expert review. There are no emissions, no resource use, and no waste generated by the +research itself. Environmental aspects are considered as part of the regulatory commentary, where contingency +planning and space transport hazard areas are assessed in relation to airspace efficiency and environmental protection. +The methodology therefore does not cause significa nt harm to any of the six environmental objectives of the EU +Taxonomy Regulation. +Use of artificial intelligence. +STRATUS does not develop or deploy operational AI systems. References to AI-enabled analytics in the assurance +framework are treated at a conceptual level only. Where relevant, the project will describe how AI could in future be +made technically robust, explainable and reliable, consistent with the requirements in Horizon Europe guidance, but +no AI tools will be delivered within the project. +Interdisciplinarity. +The work requires expertise across several domains: ATM operations, system and software architecture, cyber +security, resilience engineering, and regulatory and institutional frameworks. The methodology integrates these +strands by using a common set of baseline definitions and scenarios in Part A, which are then used to shape technical +and regulatory work in Part B. This ensures that operational, technical and regulatory perspectives remain consistent. +Gender dimension. +The research activities do not involve human participants, biomedical elements, or social-behavioural data. The work +focuses on operational concepts and technical frameworks. As such, there is no direct gender dimension in the +research content. This is consistent with the scope of the call and the nature of the work. +Open science. +All non-sensitive outputs will be published open access . This includes deliverables such as the CONOPS, OSED, +FRD, ERR, ECO-EVAL and regulatory commentary. The project will also ensure that results are shared with other +projects funded under the same call, as required by the SESAR 3 JU. Research data will be m anaged according to +FAIR principles, with a Data Management Plan delivered at Month 6 and updated during the project. +Research data management. +The main research outputs are textual (deliverables, reports, templates, reference models). Limited datasets may be +generated from desk-based studies or scenario modelling. These will be small in size and primarily descriptive. Data +will be stored in trusted repositories with persistent identifiers, published in open formats where possible, and licensed +for reuse under Creative Commons or similar. The DMP will detail responsibilities for data quality, curation and +preservation. +#§CON-MET-CM§# #§COM-PLE-CP§# #§REL-EVA-RE§# + +=== PAGE 174 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 8 of 34 +2. Impact #@IMP-ACT-IA@# +2.1 Project’s pathways towards impact +STRATUS contributes directly to the expected outcomes of the Work Programme topic on innovative methodologies +for ATM safety, security and resilience. The project delivers a set of concepts, frameworks and evaluations that +together provide a consolidated TRL 2 baseline for the safe and secure integration of higher-airspace operations. +• New methodologies for safety, cyber security and resilience . STRATUS develops an integrated assurance +framework that links these domains in a single process. The framework is validated through expert review +and desk-based studies and demonstrates how evidence can be reused across domains. +• Support for virtualised and distributed ATM architectures. The service architecture framework defines how +higher-airspace functions can be deployed as interoperable services. It applies principles such as modularity, +API-based interoperability, redundancy and zero-trust security. +• Network-wide management of higher airspace and space transport . STRATUS delivers an updated +CONOPS and OSED, incorporating hazard area management and 4DOZ. These describe how HAO and STO +services interact with ANSPs, operators and military users, providing a harmonised framework for +integration into the wider ATM network. +• Regulatory and implementation insight . Commentary on sovereignty, licensing, contingency and +environmental issues is captured as an annex to the CONOPS. This provides regulators and standardisation +bodies with structured input on where existing frameworks may need to evolve. +• Market and stakeholder evidence. The updated market study includes HAPS, hypersonic and space transport +operations, complementing EASA’s HAO market study by assessing the effect of STO on airspace +availability. This provides a realistic picture of future demand, directly supporting the EASA Higher +Airspace Operations Roadmap. +Pathways to impact +STRATUS ensures that its results are directly usable by SESAR follow-on activities and by regulators through three +complementary pathways. +The first pathway concerns concept definition and validation. Operational concepts, service models and architectures +will be developed with the involvement of regulators, ANSPs, operators, military representatives and service +providers. Validation will be achieved through structured expert review panels, targeted workshops and scenario - +based desk studies. This approach ensures that the outputs are technically credible, feasible, and consistent with +institutional requirements. +The second pathway is packaging for integration. Deliverables will be presented as ready -to-use frameworks and +reference material that can be incorporated into SESAR industrial projects, EASA rulemaking tasks and ICAO +provisions. Each deliverable will be mapped against the development priorities of the European ATM Master Plan, +including integration of new entrants, dynamic airspace configuration, secure digitalisation and resilience. STRATUS +will also take into account the results of related SESAR projects that addressed these themes in other contexts. +• SEC-AIRSPACE advanced methodologies for cyber -resilience in digitalised ATM services. STRATUS +builds on this work by embedding zero-trust principles and cyber-security baselines into its higher-airspace +architecture. +• FARO examined evolving safety risk assessment frameworks. STRATUS incorporates these insights into its +integrated assurance approach, which links safety, security and resilience. +• FCDI studied operational resilience to disruptive events. STRATUS extends this to higher airspace by +developing concepts for hazard area management, off-nominal re-entries and contingency coordination. + + +=== PAGE 175 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 9 of 34 +The third pathway is stakeholder engagement and dissemination. Engagement with operational and regulatory +communities throughout the project provides early buy -in and facilitates post -project uptake. Dissemination will +target both European and internationa l forums, such as ICAO panels and regional planning groups, to support +harmonisation beyond the EUR Region. Open science practices will be applied to make all non -sensitive results +openly available in trusted repositories, following FAIR principles, so that they can be reused by regulators, industry +and future research projects. +Together, these pathways ensure that STRATUS outputs are not isolated academic results but are positioned to inform +regulatory development, support SESAR industrial research, and guide future service implementation. +Expected long-term impacts (5–10 years after project end) +In the longer-term STRATUS will contribute to the implementation of the European ATM Master Plan and the +Digital European Sky. Its concepts will enable scalable and resilient integration of higher-airspace and space transport +operations in line with Master Plan priorities. This will support a harmonised European approach to HAO/STO +integration, reduce duplication across States, and strengthen the resilience of ATM services to cyber threats, outages +and cross-border disruptions. At the global level, STRATUS results are expected to influence ICAO provisions, +ensuring that European practice shapes worldwide frameworks for higher-airspace operations. +Strategic economic impact +Higher airspace is today a largely unused domain with very low traffic density. This creates a unique opportunity for +Europe to use it as a sandbox to trial new paradigms and technologies with limited operational risk. STRATUS +contributes to de -risking these innovations, accelerating their path into mainstream ATM. A coherent European +framework for higher -airspace operations will also strengthen Europe’s sovereign space launch and transport +capability, support a vibrant industrial ecosystem, and reduce dependence on non-European providers. In the longer +term, this will reinforce European competitiveness, resilience and technological leadership, consistent with the +strategic vision set out in the European ATM Master Plan and in wider EU digital and space policy. +Beneficiaries +Regulators. +EASA, national civil aviation authorities and national space regulators will benefit directly from STRATUS outputs. +The project delivers structured and validated concepts such as the CONOPS, OSED and FRD, along with +commentary on sovereignty, licensing, contingency management and environmental aspects. These materials provide +regulators with an evidence base for future rulemaking and oversight, reducing the time and effort required to +interpret novel higher-airspace activities in the absence of clear standards. By framing the issues in a consistent and +operationally grounded way, STRATUS helps regulators to avoid fragmented approaches and supports alignment +with the European ATM Master Plan and the EASA Higher Airspace Operations Roadmap. +ANSPs and system integrators. +Air navigation service providers and their industry partners gain from the technical frameworks produced in +STRATUS. The project describes how higher -airspace functions such as trajectory management, separation, and +hazard area coordination can be implemen ted as modular services. It also defines interfaces and architectural +principles that make these services interoperable across borders. For ANSPs and system integrators this reduces +development effort, lowers cost and minimises the risk of bespoke national solutions that later require re-engineering. +In the medium term, these outputs provide a practical foundation for testing higher -airspace service provision in +industrial research phases. +Space operators. +Operators involved in orbital launches, sub -orbital missions and re -entries will gain from clearer procedures for +hazard area generation, dynamic zone coordination and contingency management. STRATUS provides a framework + +=== PAGE 176 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 10 of 34 +that links these functions with conventional ATM, ensuring that space transport operations are integrated into the +European network in a predictable and consistent way. This reduces regulatory uncertainty for spaceports and launch +service providers and supports Europe’s ambition to develop sovereign and competitive space transport capability. +Higher-altitude operators. +Operators of high-altitude platforms and supersonic/hypersonic transport vehicles will benefit from the definition of +core functions and services that govern operations above conventional controlled airspace. STRATUS clarifies how +HAPS fleets, long -endurance missions and supersonic/hypersonic vehicles interact with ATS, how separation or +deconfliction is managed, and how service continuity is maintained. By capturing these elements in a harmonised +CONOPS and OSED, the project reduces barriers to market entr y and helps these operators plan for scalable +operations in European airspace. +Traditional aviation stakeholders. +Conventional airspace users and airport operators benefit from the assurance that higher -airspace and space +operations are managed in a way that does not compromise safety or predictability in lower altitudes. By defining +how hazard areas and dynamic zones are coordinated with existing ATS, STRATUS ensures that impacts on general +air traffic are minimised. This protects the efficiency of the ATM network while allowing new entrants to grow. +Citizens and the general public. +STRATUS ultimately benefits European citizens by ensuring that new entrants in higher airspace are integrated +without compromising the safety, security or continuity of air traffic services. A resilient and cyber -secure ATM +system reduces the likelihood of large-scale disruption from outages or malicious attacks. The growth of higher - +airspace industries also supports new services and applications, from connectivity to earth observation, which have +a direct societal benefit. By treating higher airspace as a managed and resilient part of the European network, +STRATUS helps safeguard the interests of the travelling public and society at large. +The European Union as a whole. +At the strategic level, STRATUS supports the EU’s goals in competitiveness, sovereignty and defence. A coherent +framework for higher -airspace operations strengthens European sovereign launch and space transport capability, +reduces dependence on non-European providers, and enhances Europe’s role as a global standard-setter. The project +supports the growth of a competitive European industry in high-altitude and space transport services, creating skilled +jobs and dr iving innovation. It also contributes to Europe’s knowledge base in space traffic management and +advanced ATM, reinforcing the EU’s position as a market leader in the global aerospace sector. In the defence and +security dimension, STRATUS supports civil–military coordination and resilience, contributing to the protection of +European infrastructure and assets. + +2.2 Measures to maximise impact - Dissemination, exploitation and communication #@COM-DIS-VIS-CDV@# +As an Exploratory Research project, the value of the work lies not only in the concepts developed but in how they +are transferred into later SESAR phases, regulatory processes and wider societal use. The project therefore devotes +significant effort to dissemination, exploitation and communicatio n, with a continuous programme in WP2 and a +dedicated wrap -up in WP5 to ensure post -project continuity. The plan addresses multiple audiences: regulators, +ANSPs, industry, standards bodies, research organisations and the wider public. It combines early sta keholder +engagement, alignment with European and international policy agendas, and open science practices to ensure that +STRATUS results are visible, accessible and ready for immediate reuse. + + +=== PAGE 177 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 11 of 34 +Exploitation strategy +The primary exploitation pathway for STRATUS is the uptake of its outputs in SESAR industrial research phases, +EASA regulatory activities and ICAO regional and global guidance. To achieve this, STRATUS will: +• Produce deliverables in a ready -to-integrate format. CONOPS, OSED, FRD, ERR, ECO -EVAL and +regulatory commentary will be drafted in line with SESAR templates and mapped to existing Master Plan +work packages. They will be structured as reference documents that can be directly cited in SESAR solution +projects, EASA rulemaking tasks, or ICAO panel working papers. +• Align early with implementers. Stakeholders positioned to take results forward — including ANSP technical +teams, industry integrators, regulatory drafting groups and SESAR solution consortia — will be engaged +throughout the project. This will ensure that STRATUS outputs are framed in a way that these implementers +can use without translation or adaptation. +• Identify near-term use cases. The project will highlight specific areas where STRATUS concepts can add +value immediately. Examples include cross -border coordination of hazard areas for space transport +operations, the definition of minimum service levels fo r high-altitude service providers, and cyber-resilient +design principles for distributed ATM services. +• Enable rapid reuse. Non -sensitive results will be published under open licences (Creative Commons or +equivalent) to allow direct reuse by industry, regulators and other research teams. Sensitive material will be +restricted but shared under SESAR JU mechanisms with linked projects. +Exploitation will also extend to education, training and research communities. STRATUS deliverables will serve as +material for academic courses, simulation studies and doctoral research on ATM, cyber security and space traffic +management. In this way, the project seeds knowledge that continues to support European innovation beyond the +SESAR framework. +Dissemination activities +Dissemination will be structured in two stages: WP2 covers dissemination during the research phase, while WP5 +ensures dedicated wrap-up and outreach in the final six months. +• Regulators and policy-makers. Targeted policy briefs will summarise the regulatory touchpoints identified +in STRATUS and propose potential pathways for integration into European and international frameworks. +Workshops with EASA and national authorities wil l discuss regulatory dependencies, sovereignty, +contingency responsibilities and environmental considerations. +• Operational stakeholders. Technical briefs, interface diagrams and service concept descriptions will be +delivered to ANSPs, HAOSP candidates and military coordination units. These will explain not only the +concepts but also the practical implications for system development, interoperability and operations. +• Standards and R&D communities. Findings will be disseminated through ICAO panels, EUROCAE working +groups, CANSO events and SESAR fora. STRATUS results will be aligned with ongoing standardisation +efforts (e.g. SWIM, cyber security profiles, space traffic c oordination) to maximise their utility for +harmonisation. +• Wider aviation community. Accessible summaries, infographics and webinars will be produced to explain +the significance of higher-airspace integration for aviation safety and resilience. This ensures that industry +and the public at large understand why these developments matter and how Europe is leading the response. +Key dissemination channels include SESAR Innovation Days, ICAO EUR/NAT regional meetings, EUROCAE WG- +105 (UAS/UTM), WG-122 (cyber security), and targeted international events such as the Space Traffic Management +conferences. Mid-project workshops will be held to present interim results and refine them through feedback, while +final promulgation events in WP5 will showcase outcomes to regulators, industry and research actors. + +=== PAGE 178 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 12 of 34 +Communication activities +The communication strategy is designed to promote STRATUS throughout its full lifespan and beyond. It is built on +three principles: visibility, accessibility and continuity. +• Core message. STRATUS demonstrates how Europe can safely and securely integrate higher -airspace +operations and space transport, creating a resilient and cyber-secure foundation for the Digital European Sky. +• Public narrative. Communications will explain the societal benefits of STRATUS, including safer airspace, +more resilient critical infrastructure, and new services enabled by HAO/STO (e.g. broadband connectivity, +Earth observation, space launch capability). +• Tools and channels. The project will maintain a dedicated website hosting public deliverables, news updates +and event registrations. Social media accounts will be used to reach wider audiences, with content tailored +to industry, regulators and the general public. Periodic newsletters will provide updates to stakeholders. +• Timing. Communications will be linked to key milestones: publication of the market study, interim OSED +and CONOPS, mid-project workshops, and final results in WP5. This ensures that interest peaks at moments +when stakeholders can engage directly with outputs. +Communication activities will also support citizen engagement, making clear how STRATUS contributes to safer +skies, stronger European resilience and the economic opportunities of space and higher airspace. +Post-project continuity +A defining feature of STRATUS is WP5, a dedicated work package for CDE wrap -up after the technical work +concludes. This ensures that dissemination and exploitation continue beyond Month 24 and that outputs are not lost +when the research ends. WP5 will: +• Deliver a final exploitation and impact strategy, with clear pathways for results to enter SESAR IR, EASA +regulatory plans and ICAO provisions. +• Establish a repository of non-sensitive deliverables and supporting material, hosted on a trusted platform, to +guarantee long-term access. +• Organise a high -visibility promulgation event to present results to regulators, ANSPs, operators, industry +and research partners. +• Maintain engagement with EASA, SESAR JU, ICAO and EUROCAE working groups, ensuring STRATUS +outputs continue to inform policy and technical development after project close. +By dedicating the final six months to dissemination and exploitation, STRATUS will demonstrate its commitment to +delivering lasting impact, not just short-term research results. +Intellectual property, open science and data management +All partners will sign a consortium agreement defining ownership and access rights. A results ownership list will be +delivered in the final periodic report. Results with exploitation value will be identified early and categorised as either +open, restricted or protected. +• Open results. Deliverables such as the market study, CONOPS, OSED, FRD, ERR, ECO -EVAL and +regulatory commentary will be released under open licences (Creative Commons). +• Restricted results. Materials containing sensitive information (e.g. cyber threat analysis) will be shared only +under SESAR JU agreements with linked projects. +• Protected results. Where partners develop novel methods with wider commercial potential, appropriate IPR +protection (copyright, trade secrets, design rights) will be considered. + +=== PAGE 179 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 13 of 34 +The Data Management Plan (M6) will ensure all data are FAIR (findable, accessible, interoperable, reusable). +Persistent identifiers will be used, datasets will be published in open formats, and all publications will be open access. +Contribution to EU policy, society and further research +STRATUS does not stop at technical deliverables: its outputs will shape the European ATM and space policy +landscape. The project provides commentary that feeds into EASA rulemaking tasks, SESAR Master Plan updates, +and ICAO provisions, supporting the design and adaptation of European and international policy. +For society and citizens, STRATUS improves the safety and resilience of European skies, ensuring that cyber-attacks, +outages or off-nominal space events do not disrupt mobility or endanger public safety. It also underpins the growth +of industries that deli ver tangible benefits, such as high -altitude connectivity, scientific observation, and secure +European access to space. +For the EU economy, STRATUS contributes to competitiveness and sovereignty by de -risking higher -airspace +integration, supporting European launch capability and stimulating industrial innovation. By providing a sandbox for +innovation in low-density airspace, STRATUS allows Europe to test and adopt new paradigms before competitors, +ensuring leadership in the global aerospace sector. +For further research, STRATUS establishes a validated TRL 2 baseline that SESAR industrial phases can take +forward into prototyping, large -scale validation and standardisation. Deliverables will also be made available to +academia and research organisations as a basis for doctoral work, simulation studies and applied research in ATM, +cyber security and space traffic management. + + +#§COM-DIS-VIS-CDV§# + +=== PAGE 180 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 14 of 34 +2.3 Summary +KEY ELEMENT OF THE IMPACT SECTION + + + + + +SPECIFIC NEEDS EXPECTED RESULTS + +D & E & C MEASURES + +What are the specific needs that triggered this +project? + +Global and technological developments since +the creation of the original ECHO CONOPS +mean that certain key concepts need to be (re) +considered, in order to support the +development of the HAO and STO industries, +and the benefits they are expected to deliver +for European citizens. +Existing airspace users need to be assured that +HAO and STO can be developed and +exploited within European Airspace without +causing excessive disruption to their +operations. + + +What do you expect to generate by the end of +the project? + +An agreed Concept of Operations, updated +from that produced by ECHO 1 and +considering the various developments since. + +This includes the report on EASA’s Opinion +on ECHO 1 following consultation of +Member States and Industry Stakeholders, +published in June 2025. +What dissemination, exploitation and communication measures +will you apply to the results? + +A dedicated project website will act as the central hub for public +information, deliverables, and news. +Mid-project stakeholder workshops will present interim results +and gather feedback. +End of project promulgation events will present outcomes and +promote adoption. +STRATUS will engage with target audiences through SESAR +events, ICAO EUR/NAT meetings, EUROCAE working groups, +industry conferences, and webinars. +During the project period, the STRATUS team will identify +exploitation pathways and potential users of project results, to +ensure that communications and dissemination methods are +effective, and lead to the path to exploitation + +=== PAGE 181 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 15 of 34 +#§IMP-ACT-IA§# TARGET GROUPS OUTCOMES IMPACTS + +Who will use or further up -take the +results of the project? Who will benefit +from the results of the project? + +European State Regulators (Space and +Airspace) +EASA +Potential HAO and STO operators +(both civil and military) +European citizens and businesses who +will make use of the services offered +by HAO and STO operators. + + +What change do you expect to see after +successful dissemination and exploitation of +project results to the target group(s)? + +European Regulators, Airspace Users and +Service Providers will have a clearer view of +the future operating concept for Higher +Airspace Operations and Space Launch / +Return. +ICAO will understand what activities are +necessary at global level to enable effective +and efficient HAO and STO at the anticipated +numbers, without creating excessive levels of +disruption to existing airspace users. +Research Organisations and Manufacturing +Industry will have a better understanding of +the concepts and equipment which will need +more detailed technical development. + +Clean-sheet HAO technology baseline. A +documented concept and interface set that +allows HAO to adopt advanced digital CNS, +automation and coordination services without +legacy retrofit constraints, while defining +clear transition rules for climb and descent +through conventional airspace. +What are the expected wider scientific, economic and +societal effects of the project contributing to the +expected impacts outlined in the respective +destination in the work programme? +The scientific community will have an updated +concept to help them identify areas requiring further +detailed research. +Potential providers/users of space transportation / +higher airspace services will have a clearer idea of the +path to commercial/personal exploitation of these +capabilities – in the longer term leading to a viable +new industry sector. +Technology leapfrogging by design. By treating HAO +as a clean -sheet environment above FL550, the +project specifies architectures that can use modern +communications, navigation and surveillance, high - +automation decision support and data -centric +coordination that would be impractical to mandate +fleet-wide below due to retrofit costs and backward - +compatibility constraints. + Spillover benefits to the network. Clear HAO – +ATM interface requirements and transition +procedures enable safe mixed operations and create a +pathway for selective downstream adoption in lower +airspace where benefits justify change, reducing long- +term technical debt. + +=== PAGE 182 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 16 of 34 +3. Quality and efficiency of the implementation #@QUA-LIT-QL@# #@WRK-PLA-WP@# +3.1 Work plan and resources +The STRATUS work plan is designed to deliver a coherent TRL 2 baseline for the safe and resilient integration of +higher-airspace operations. The structure follows SESAR 3 JU guidance for Exploratory Research, with a focus on +two research work packages aligned to the two reporting periods, supported by management and CDE activities. This +ensures that the project progresses in a logical sequence, allows for interim review of early concepts, and devotes +sufficient resources to dissemination and exploitation. +The plan is organised into five work packages: +• WP1 – Project Management (M1 –M30). Covers coordination, reporting, financial and quality +management, and includes delivery of the Project Management Plan and Data Management Plan. +• WP2 – Communication, Dissemination and Exploitation (M1 –M24). Provides continuous engagement +with stakeholders and early dissemination of results, ensuring alignment with SESAR, EASA and ICAO +activities. +• WP3 – STRATUS Research Activity, Part A (M1–M12). Establishes the baseline. It delivers the market +and stakeholder study, definitions of actors and functions, and the initial OSED and CONOPS. +• WP4 – STRATUS Research Activity, Part B (M13 –M24). Builds on WP3 results. It develops service +concepts, the architecture framework, the integrated assurance methodology and regulatory commentary. +Outputs include the FRD, final OSED and CONOPS, the ERR, ECO -EVAL and implementation +commentary. +• WP5 – CDE Wrap-Up (M25–M30). Ensures post -research impact. It delivers the final exploitation and +impact strategy, open -science compliance report and a final promulgation event to hand over results to +regulators, SESAR industrial phases and standards bodies. + +The work plan is structured to reflect the exploratory nature of the project: Part A focuses on scoping and establishing +foundations, while Part B consolidates and extends the results into frameworks that are ready for uptake. WP2 and +WP5 provide a strong CDE framework, ensuring that outputs are visible, accessible and integrated into the European +ATM Master Plan and EASA HAO Roadmap. WP1 provides governance and quality assurance across the project. +This structure ensures efficiency: each work package corresponds to a substantial body of work with clear objectives +and deliverables, and resources are concentrated in WP3 and WP4 where the technical work is carried out. The plan +also ensures continuity, with CDE activities running throughout and a dedicated final phase to maximise impact +beyond the lifetime of the project. +Inter-relations between work packages +The work plan is designed to follow a clear progression from scoping to consolidation, with continuous management +and dissemination. The dependencies between work packages are straightforward and ensure that results are delivered +in a coherent and timely manner. +• WP3 (Part A) sets the foundations for the project. It produces the market and stakeholder study, defines +actors and functions, and delivers the initial OSED and CONOPS. These outputs provide the baseline +material needed for subsequent work. +• WP4 (Part B) builds directly on WP3. The initial concepts, functions and services defined in Part A are +refined and expanded into service concepts, the architecture framework, the assurance methodology and +regulatory commentary. The FRD, final OSED and CON OPS, ERR and ECO -EVAL represent the +consolidated technical outputs of the project. + +=== PAGE 183 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 17 of 34 +• WP2 (CDE) runs in parallel with WP3 and WP4, ensuring that interim and final results are disseminated as +they are produced. WP2 also collects feedback from stakeholders, feeding it back into WP3 and WP4 to +refine definitions and concepts. +• WP1 (Management) provides coordination, quality assurance and reporting throughout the project, and also +delivers the Project Management Plan and Data Management Plan to ensure consistency in both technical +and administrative aspects. +• WP5 (CDE Wrap -Up) begins once the technical research has been completed in WP4. It ensures that the +outputs are not only finalised but also positioned for uptake, through the final exploitation and impact +strategy, open-science compliance, and a closing promulgation event. + +In Gantt terms, WP1 runs across the full project duration. WP2 overlaps with WP3 and WP4 to ensure communication +and dissemination during both technical phases. WP3 is focused in the first reporting period (M1–M12), WP4 in the +second (M13–M24). WP5 is dedicated to the final six months (M25–M30). + +This simple and logical structure minimises dependencies, reduces risks of delay, and ensures that each stage of the +project builds cleanly on the previous one. +3.2 Capacity of participants and consortium as a whole #@CON-SOR-CS@# #@PRJ-MGT-PM@# +The STRATUS consortium has been deliberately assembled to provide the full range of expertise needed to address +the challenges of integrating higher -airspace operations and space transport into the European ATM system. The +work requires not only technical innovation but also operational credibility, regulatory insight, and strong +dissemination. The consortium reflects this balance, combining organisations with extensive ATM operational +experience, recognised regulatory competence, deep technical expertise i n architectures and cyber -security, +established academic and research institutions, and specialists in communication and stakeholder engagement. +The project’s objectives cannot be achieved by a narrow group of partners. Instead, STRATUS relies on a +multidisciplinary and interdisciplinary team that covers the operational, technical, regulatory, research, and societal +dimensions of the problem. The consortium is structured to ensure that each of these dimensions is represented, while +avoiding duplication and ensuring efficiency. The combined capacity of the team ensures that results will be +technically credible, aligned with operational constraints, f easible for regulatory uptake, and communicated +effectively to the relevant communities. +Breadth of expertise +The consortium provides a broad spread of expertise, covering all areas required for STRATUS: +• Operational expertise. Several partners have long experience in air navigation service provision and day-to- +day ATM operations. They provide the knowledge required to judge whether new concepts are realistic, safe, +and capable of integration into the netwo rk. This ensures that STRATUS outputs are firmly grounded in +operational reality rather than theoretical models. + + +=== PAGE 184 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 18 of 34 +• Technical and systems expertise. Research centres and engineering partners bring competence in designing +modular, service-oriented architectures, applying cyber -resilience and zero-trust principles, and modelling +interoperability in distributed environment s. This capability is essential to developing the architecture and +assurance frameworks required in STRATUS. +• Regulatory and policy expertise. Partners with backgrounds in civil aviation authorities, international +organisations, and regulatory processes contribute the experience needed to understand how concepts can be +translated into standards, rulemaking material, and guidance. They provide the link between technical +research and the regulatory processes that will ultimately implement the results. +• Academic and research expertise. Universities and research institutions ensure methodological rigour and +bring the ability to review international state of the art. They provide the systems thinking needed to link +operational, technical, and policy domains , and ensure compliance with open science and FAIR data +principles. +• Stakeholder engagement and communication. Specialist organisations within the consortium contribute the +capability to plan and execute effective dissemination, engagement, and exploitation strategies. This includes +organising workshops, developing outreach materials, and ensuring that project outputs reach the relevant +European and international forums. +Complementarity of roles +The consortium is structured to ensure that each work package is led by a partner with recognised expertise in the +relevant domain. Project management is supported by partners with experience in coordinating European research. +The communication, dissemination and exploitation activities are led by partners with strong networks and outreach +experience. The two main research work packages are supported by a balance of operational, technical, and research +expertise, ensuring that definitions and concepts developed in Part A are expanded into service models, architectures +and assurance frameworks in Part B. The wrap-up phase is supported by organisations with experience in exploitation +and regulatory alignment, ensuring that results are visible and accessible after the project closes. +This complementarity avoids duplication and ensures that all aspects of the project are covered by the most +appropriate expertise. The project benefits from the credibility of established operational and regulatory +organisations, the innovation of technical and research partners, and the reach of communication specialists. +Capacity to deliver +Collectively, the consortium has demonstrated the ability to deliver results at the scale and scope required for +STRATUS: +• Extensive participation in European ATM research and development, including previous SESAR exploratory +and industrial projects, which ensures familiarity with SESAR methodologies, deliverable structures, and +validation approaches. +• Direct involvement in ICAO and EASA activities, ensuring that STRATUS outputs will be aligned with +current international initiatives and can be fed directly into ongoing regulatory and standardisation processes. +• Access to operational data, modelling facilities, simulation environments, and in some cases infrastructure +such as airports and spaceports, ensuring that the work is grounded in practical realities. +• Experience in developing concepts to TRL 2 –3 maturity, validated through expert review, scenario -based +analysis, and structured stakeholder consultation. +• Established networks across the ATM and aerospace communities, including regulators, ANSPs, operators, +industry associations, and standards bodies. These connections ensure that STRATUS results will reach the +communities that can take them forward into implementation. + + +=== PAGE 185 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 19 of 34 +Cross-cutting dimensions +The consortium also brings together expertise across cross -cutting areas. Social sciences and human factors are +addressed through partners with operational and human -centred expertise, ensuring that concepts are not only +technically sound but also institutionally and socially acceptable. Open science practices are embedded in the project +through academic partners with strong records in FAIR data management and open access. Gender aspects are +considered in the composition of teams and in recruitment policies, even though the research content itself does not +involve gender analysis. +Geographic and international reach +The consortium spans a broad set of European States, ensuring that diverse operational environments and regulatory +regimes are represented. This supports the goal of developing harmonised concepts that are valid across Europe. The +presence of international partners extends the reach of the project to the global level, ensuring alignment with ICAO +processes and supporting interoperability with non -European systems. This geographic and institutional spread +maximises the chances that STRATUS results will be not only relevant to Europe but also influential worldwide. + +#§CON-SOR-CS§# #§PRJ-MGT-PM§# +Tables for section 3.1 +Table 3.1a: List of work packages +Work +package +No +Work +Package +Title +Lead +Participant +No +Lead +Participant +Short Name +Person- +Months +Start +Month +End +month +WP1 Project +Management +1 EUROCON +TROL +30 M1 M30 +WP2 Communicat +ion, +Disseminatio +n, & +Exploitation +1 EUROCON +TROL +18 M1 M24 +WP3 STRATUS +Research +Activity, +Part A +20 EUROCON +TROL + +154.53 M1 M12 +WP4 STRATUS +Research +Activity, +Part B +20 EUROCON +TROL + +120.78 M13 M24 +WP5 CDE Wrap- +up +1 EUROCONT +ROL +10.50 M25 M30 + + + +=== PAGE 186 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 20 of 34 +Table 3.1b: Work package description +For each work package: +Work package number WP1 +Work package title Project Management & Coordination + +Objectives +WP1 provides the governance, coordination, and quality assurance framework that ensures STRATUS is +delivered on time, within scope, and in line with SESAR 3 JU requirements for Exploratory Research. Its +objectives are to: +a) Establish and operate a governance structure that supports clear decision -making, effective +communication, and timely conflict resolution. +b) Manage all contractual, administrative, and financial aspects of the Grant Agreement, including all +mandatory reporting to SESAR 3 JU. +c) Monitor progress against the approved Project Management Plan (PMP) and Data Management Plan +(DMP), ensuring risks are tracked and corrective action taken when required. +d) Deliver all mandatory SESAR milestones and reviews on schedule, including the ERP and ERR. +e) Apply structured quality assurance to ensure all project outputs meet SESAR JU evaluation and open +science standards. + +Description of work +WP1 runs for the full 30 months of the project and covers governance, reporting, quality assurance, risk +management, and contractual/financial administration. + +Governance and coordination +The governance structure rests on three layers. The Project Management Board (PMB), chaired by +EUROCONTROL and including all partners, meets quarterly to review overall progress, confirm resource use, +address risks, and approve major deliverables. Monthly Work Package Lead (WPL) meetings, chaired by the +Coordinator, monitor technical progress, manage interdependencies, and resolve emerging issues. An +Advisory Board (AB), composed of external stakeholders such as Launch & Re -entry Operators, national +regulators, and defence/space organisations, meets twice (midway and close to project end) to provide +independent feedback and ensure alignment with broader European initiatives. Governance and coordination +activities require about 8 PM across the project. + +Project Management Plan (PMP) +EUROCONTROL produces the PMP at Month 3, consolidating inputs from WP leaders and partners. It defines +governance roles, reporting flows, risk and quality processes, communication and document control, and +incorporates the baseline schedule in the SESAR reporting platform. The PMP is updated at Month 12 to reflect +any changes. Preparation and review require around 2 PM in total. + +Data Management Plan (DMP) +EUROCONTROL also leads the DMP, due in Month 3 and updated in Month 12. It specifies how STRATUS +outputs are handled in line with FAIR principles, covering formats, metadata, repositories, preservation, and +access rights. All partners participate in the process with document control, while technical partners contribute +information on expected data types. Around 2 PM are allocated to this activity. + +Reporting and reviews + +=== PAGE 187 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 21 of 34 +WP1 coordinates the preparation of all mandatory SESAR 3 JU and Horizon Europe reviews. +EUROCONTROL consolidates inputs from WP leaders into technical and financial reports at M12 and M24. +Although not deliverables, these reports require significant effort (~10 PM). At project close, +EUROCONTROL prepares the Final Project Report (D1.6) with partner contributions, consolidating results, +financials, lessons learned, and updated exploitation and dissemination planning. This requires around 2 PM +across the consortium. + +Risk management +EUROCONTROL maintains the project risk register, opened at the kick -off meeting. Risks are updated +monthly at WPL meetings, with escalation of high -priority risks to the PMB. All partners contribute to +identifying and monitoring risks. Around 1 PM are assigned to this activity. + +Quality assurance +All deliverables undergo a two -stage review: an independent technical review by a non -authoring partner, +followed by a compliance review by EUROCONTROL. This ensures consistency with SESAR templates, +Horizon standards, and PMP criteria. Reviews are schedul ed at least two weeks before submission. The QA +process requires about 2 PM across the project. + +Financial and administrative management +EUROCONTROL monitors resource allocation under the lump -sum model, tracks person -months and +deliverable completion, and prepares consolidated financial statements. Partners provide quarterly inputs on +effort and resource use. At M30, EUROCONTROL oversees s ubmission of the Final Project Report and +archiving of all documentation. This requires around 2 PM in total. + +Role of participants +• EUROCONTROL (Coordinator): leads WP1, chairs the PMB, prepares the PMP and DMP, +consolidates reports, manages financial and contractual compliance, and ensures quality control. +• Advisory Board: external input at mid-term and project close to ensure alignment with wider European +and international frameworks. + +Work package number WP2 +Work package title Communication, Dissemination & Exploitation + +Objectives +WP2 ensures that STRATUS results are visible, accessible, and positioned for adoption by SESAR follow-on +projects, regulators, and international bodies. Its objectives are to: +a) develop and maintain a communication and dissemination framework that ensures project visibility +from the outset; +b) provide targeted engagement with regulators, ANSPs, operators, standards bodies, and other +stakeholders to build early buy-in; +c) prepare interim and final exploitation strategies that map STRATUS outputs to SESAR and regulatory +priorities; +d) ensure compliance with Horizon Europe open science and FAIR principles, so that all non -sensitive +results are accessible and reusable; +a) deliver structured stakeholder workshops and promulgation events to validate concepts and maximise +impact. + + +=== PAGE 188 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 22 of 34 +Description of work +WP2 runs from Month 1 to Month 24 and is led by EUROCONTROL and supported by all partners for +outreach, content development, and event organisation. A follow -up package (WP5) ensures continuity of +dedicated CDE work during the final six months. + +The work begins with the preparation of the Communication & Dissemination Plan (D2.1), delivered at Month +3. This document defines the communication strategy, identifies target audiences, sets key messages, and +establishes performance indicators. It includ es an editorial calendar, event plan, and alignment with SESAR +JU branding requirements. About 2 PM are allocated across the consortium for this deliverable. + +In parallel, the project website and online presence (D2.2) are established by Month 3. The website functions +as a public repository of results, news updates, event announcements, and non -confidential deliverables, and +is linked to the SESAR JU portal. This activity requires around 1 PM for setup and ongoing updates. + +The plan is updated at Month 12 (Updated CDE Plan, D2.3) to reflect progress, stakeholder feedback, and +adjustments in dissemination strategy. This ensures the project remains visible and aligned with evolving +SESAR priorities. The update is concise but requires coordination, with about 1 PM allocated. + +A central activity is the Mid -project Stakeholder Workshop (D2.4), held around Month 18. Organised by +EUROCONTROL, this event presents the interim CONOPS and OSED to regulators, ANSPs, military +representatives, and service providers. The workshop collects structured feedback on the concepts, which is +then fed into WP3 and WP4 work. The Workshop Report records participants, discussions, and how feedback +is integrated into Part B. Organising and documenting the workshop requires around 5–6 PM in total, reflecting +the need for preparation, facilitation, and reporting. + +WP2 also produces the Draft Post -Research Exploitation & Impact Strategy (D2.5) at Month 20. This maps +STRATUS outputs to potential users and adoption pathways, highlights standardisation hooks, and identifies +areas requiring further R&D. It positions the results for continuation in SESAR industrial projects, EASA +regulatory roadmaps, and ICAO provisions. About 4 –5 PM are allocated across the consortium for this +deliverable. + +Throughout WP2, dissemination takes place via multiple channels. Partners present results at SESAR events, +ICAO EUR/NAT meetings, EUROCAE working groups, and targeted industry conferences. Academic +partners prepare scientific publications, while operationa l partners contribute to professional forums. Public +outreach is maintained through infographics, social media updates, and newsletters. This continuous activity +ensures that STRATUS maintains visibility across its stakeholder community. + +WP2 accounts for around 15 PM of effort in total. This is proportionate for an ER project and justified by the +need to build awareness and uptake of the project’s outputs well before the final phase. WP5 then extends this +effort to cover post-research exploitation and dissemination, ensuring continuity beyond Month 24. + +Role of participants +• EUROCONTROL (Lead): drafts the CDE Plan, manages the website and branding, leads exploitation +strategy, coordinates open science compliance , stakeholder engagement and workshops; provide +content for the website and other communications; support the exploitation strategy; ensure alignment +with SESAR JU dissemination obligations; contribute through conferences, publications and +participation in workshops. + + + +=== PAGE 189 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 23 of 34 +Work package number WP3 +Work package title STRATUS Research Activity, Part A + +Objectives +WP3 establishes the operational and analytical baseline for STRATUS. Its objectives are to: +a) produce an Exploratory Research Plan (ERP) that sets out the validation strategy for an ER project at +TRL2, including expert reviews, stakeholder consultation, and scenario-based desk studies; +b) conduct an updated market and stakeholder study to provide a realistic forecast of demand for higher- +airspace services, explicitly complementing the EASA HAO Market Study by extending the scope to +Space Transport Operations (STO) and military use of higher airspace; +c) prepare an Initial Operational Services and Environment Description (OSED) that defines actors, +functions, baseline scenarios, and interactions, forming the reference point for the CONOPS and +technical frameworks developed in Part B; +d) establish the baseline assumptions for service models and architecture, describing how key functions +could in future be deployed as modular services with interoperable interfaces, ensuring consistency +between operational concepts and the distributed architecture framework refined in WP4; +e) identify candidate areas for proof-of-concept demonstration, where small, targeted exercises could be +designed in Part B to illustrate the feasibility of innovative approaches. + +Description of work +WP3 runs during the first 12 months of STRATUS and provides the foundation for the project’s technical, +operational, and regulatory outputs. It is led by EUROCONTROL. All partners contribute through data +provision, expert knowledge, and structured review. + +The Exploratory Research Plan (ERP, D3.1), due at Month 6, sets out how validation will be carried out in the +project. While no large-scale trials or simulations are foreseen, the ERP ensures a structured validation pathway +appropriate for TRL2. It defines the methods for: +• Expert reviews, specifying the criteria for selecting domain specialists from ANSPs, regulators, +operators, and industry, and the format of review panels. +• Stakeholder workshops, which will provide structured opportunities to present draft concepts (e.g. +early OSED scenarios, preliminary service models) and collect targeted feedback. +• Desk-based scenario analysis, including “what-if” case studies for HAPS operations, STO launches/re- +entries, and mixed-traffic environments. + +The ERP also specifies evidence capture: how comments, risks, and validation results are recorded, and how +they feed into deliverables. Core preparation requires ~6–7 PM across the consortium. Further effort of around +8 PM will include background research, structured workshops, expert reviews, iterative drafting, and direct +partner input. + +The Market and Stakeholder Study (D3.2), delivered at Month 8, is a key differentiator for STRATUS. It +provides a forward-looking picture of who will operate in higher airspace, when, and at what scale. It explicitly +complements the EASA HAO Market Study, which focuses primarily on HAPS and high-performance aircraft, +by adding Space Transport Operations (STO) (orbital launches, sub -orbital transport, re-entries) and military +activity, both of which are critical for airspace availability but under-represented in current studies. + + + + +=== PAGE 190 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 24 of 34 +The study will: +• Compile demand forecasts for HAPS fleets (communications, ISR, scientific), hypersonic/supersonic +transports, STO missions, and military operations. +• Define operational profiles, including flight durations, altitudes, trajectories, and hazard area +footprints. +• Assess entry-into-service timelines, drawing on manufacturer announcements, regulatory filings, and +industry roadmaps. +• Identify expected service requirements, such as separation assurance, hazard area coordination, +trajectory exchange, and cyber-resilient communications. + +By merging civilian, commercial, military, and STO perspectives, the study delivers a more realistic composite +picture of higher-airspace occupancy. This picture becomes the baseline for the OSED and CONOPS. Core +preparation requires ~8–10 PM, with significant partner consultation and structured review utilising around 16 +PM. + +The Initial OSED (D3.3), delivered at Month 12, builds on the ERP and market study to describe the +operational environment, functions, and stakeholder interactions. It defines: +• Actors: ANSPs, high -altitude service providers, operators (HAPS, hypersonic, STO), regulators +(aviation and space), military stakeholders, and infrastructure entities such as airports, spaceports, and +stratoports. +• Functions: surveillance, communications, navigation, mission and tactical planning, conflict detection, +separation (where needed), hazard area generation, and contingency response. +• Scenarios: routine HAPS flights, hypersonic transport corridors, STO launches/re-entries, and mixed +environments with multiple HAO users. + +The OSED also introduces the first mapping of functions into potential service models. For example, hazard +area generation might be described both as an ANSP-led function and as a candidate modular service that can +be published via an API. Similarly, conflict detection can be described as both an operator responsibility and +a function that could be exposed by a higher-airspace service provider. These mappings provide the conceptual +bridge between operational definitions in WP3 and the distributed architectu re explored in WP4. Core +preparation and internal review of the OSED require ~12–15 PM across the consortium, with ~28 PM allocated +to background research, workshops, expert reviews, and any required iterative drafting. + +To ensure coherence, WP3 reviews existing ICAO, European, and SESAR documentation (including ECHO +and ECHO2 outputs) and explicitly records where STRATUS extends the scope. This avoids duplication and +ensures that STRATUS provides added value in areas not yet addressed, such as STO integration, dynamic +4DOZ operation, and integrated safety –security–resilience assurance. These cross-cutting tasks will require +~20 PM across the consortium. + +Role of participants +• EUROCONTROL (Lead): coordinates WP3, drafts ERP, consolidates inputs , leads Market and +Stakeholder Study, ensures complementarity with EASA HAO Market Study, contributes to ERP +drafting. +• SCEYE: ensures coverage of HAPS and novel operational profiles. +• SkyNav: ensures International & SESAR alignment, supports validation methodology, and reviews +technical assumptions for service models. +• Other partners: contribute data, review deliverables, and provide expertise on STO, military, UAS, +regulation, and system architecture. + + +=== PAGE 191 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 25 of 34 +Work package number WP4 +Work package title STRATUS Research Activity, Part B + +Objectives +Work Package 4 consolidates the outputs of Part A and develops the main technical and regulatory deliverables +of STRATUS. Its objectives are to: +a) produce a Functional Requirements Document (FRD) that defines the detailed requirements for +higher-airspace integration functions and their delivery as services; +b) finalise the OSED to provide a mature and validated description of actors, functions, services, and +scenarios; +c) deliver an Exploratory Research Report (ERR) that summarises findings, assesses progress against +objectives, and captures lessons learned; +d) perform an economic evaluation (ECO-EVAL) to examine costs, benefits, and incentives associated +with higher-airspace services; +e) prepare an Implementation & Regulatory Commentary that analyses how the proposed concepts +interact with existing ICAO, EASA, and national frameworks; +f) integrate all results into a Final Report on a Holistic, Secure, and Resilient HAO framework, ensuring +coherence across operational, architectural, assurance, and regulatory strands. + +Description of work +WP4 runs from Month 13 to Month 24 and represents the consolidation phase of STRATUS. It is led by +EUROCONTROL, with other partners contributing according to their expertise. The total effort is ~100 PM, +reflecting its role as the core work package for delivering STRATUS outputs. + +The first major deliverable is the Functional Requirements Document (D4.1), due in Month 18. Building on +the initial OSED, the FRD specifies the detailed requirements for key functions such as trajectory exchange, +conflict detection, separation (where need ed), hazard area generation and management, and contingency +response. Requirements are expressed in terms of inputs, outputs, performance indicators, and interfaces. +Special attention is given to dynamic 4 -Dimensional Operating Zones (4DOZ) for HAPS, STO i ntegration, +and interoperability with conventional ATM services. Drafting is led by EUROCONTROL with contributions +from ANSP and other relevant partners to ensure alignment with SESAR standards. Around 25 PM are +allocated to this deliverable, reflecting the need for detailed modelling and iterative review. + +By Month 20, the Final OSED (D4.2) is delivered. This updates and consolidates the initial OSED, +incorporating feedback from stakeholders, results from the market study, and refined functional definitions +from the FRD. The final OSED provides a comprehensi ve description of the actors, services, functions, and +scenarios needed for higher-airspace integration. It clarifies the roles of ANSPs, HAOSP candidates, operators, +regulators, and military stakeholders, and integrates STO operations and hazard area coor dination more +explicitly than in Part A. Preparation of the Final OSED requires ~45 PM across the consortium, reflecting its +importance as a cornerstone reference for future SESAR and regulatory work. + +While STRATUS does not conduct validation in the sense of large-scale simulations or flight trials, WP4 will +identify specific components of the concepts that can be subjected to limited proof-of-concept activities. These +small, targeted exercises will be used to illustrate the feasibility of novel or challenging ideas, such as new +approaches to hazard area management, innovative 4DOZ coordination mechanisms, or alternative cyber - +resilience methods for distributed architectures. Where feasible, prototype tools or models may be produced at +conceptual level and shared openly to demonstrate how the research could be applied in practice. These +activities do not constitute validation in the SESAR sense but provide tangible evidence that the concepts +proposed are workable and merit continuation in later SESAR industrial research phases. + +=== PAGE 192 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 26 of 34 +The Exploratory Research Report (ERR, D4.3) is delivered at Month 22. It synthesises all findings from +STRATUS, assesses them against the project’s objectives, and documents gaps and lessons learned. The ERR +includes evidence from expert reviews, workshops, and desk-based studies, providing a clear picture of what +has been achieved at TRL2 and where further industrial research is required. Around 32 PM are assigned to +this activity, covering drafting, consolidation, and review. + +Also at Month 22, the Economic Evaluation (D4.4) is delivered. This assesses the likely costs and benefits of +higher-airspace integration, examining stakeholder incentives and possible business models for service +provision. It uses qualitative and quantita tive methods, drawing on demand forecasts from the market study +and functional requirements from the FRD. EUROCONTROL leads the analysis, supported by other partners, +with ~10 PM of effort. + +The Implementation & Regulatory Commentary (D4.5) is produced at Month 24. This commentary maps +STRATUS concepts against existing ICAO, EASA, and national frameworks, and highlights where updates +or clarifications may be needed. It covers sovereignty, lice nsing and supervision of new service providers, +contingency responsibilities, and environmental considerations. Importantly, it does not prescribe solutions +but provides evidence-based commentary on relevance and potential impacts for implantation. Drafting is led +by EUROCONTROL with inputs from regulators in the consortium. Around 15 PM are allocated. + +Finally, WP4 delivers the Final Report on a Holistic, Secure, and Resilient HAO (D4.6) at Month 24. This +report integrates the operational, technical, assurance, and regulatory strands into a single consolidated +package. It describes roles, responsibilities, procedures, contingency arrangements, and information flows in +a coherent framework. The report ensures that STRATUS outputs can be directly taken forward into SESAR +industrial research or regulatory processes. This deliverable requires ~17 PM across the consortium. + +Role of participants +• EUROCONTROL(Lead): coordinates WP4, leads drafting of FRD, Final OSED, ERR and Final +Holistic Report, ensures operational realism. Ensures methodological alignment with SESAR +standards. +• All partners: provide inputs, review drafts, and participate in expert review of all WP4 deliverables. + +Work package number WP5 +Work package title CDE Wrap-Up + +Objectives +WP5 ensures that the results of STRATUS continue to deliver impact after the research phase is complete. Its +objectives are to: +a) consolidate and finalise the exploitation and impact strategy, positioning STRATUS outputs for uptake +in SESAR industrial projects, regulatory frameworks, and standardisation processes; +b) ensure that all public deliverables, datasets, and artefacts are archived in trusted repositories and +compliant with Horizon Europe open science and FAIR requirements; +c) organise and deliver a final programme of dissemination and promulgation activities, including a +major public event, to ensure visibility across Europe and internationally; +d) mobilise the entire consortium during the final six months to focus on active dissemination, both +internally within their organisations and externally through industry forums, ensuring that STRATUS +results are carried into the operational and regulatory community. + + +=== PAGE 193 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 27 of 34 +Description of work +WP5 runs during the last six months of STRATUS and extends the CDE activities initiated in WP2. It is led +by EUROCONTROL, devoting resources to dissemination across their networks and stakeholder +communities. + +The Final Exploitation & Impact Strategy (D5.1, M26) consolidates the draft from WP2 and integrates the +results of WP3 and WP4. It maps STRATUS outputs to SESAR follow -on projects, EASA rulemaking +priorities, ICAO provisions, and EUROCAE standardisation gr oups. It also outlines adoption pathways for +ANSPs, operators, and regulators, and identifies barriers that require further R&I. + +At Month 28, the Repository & Open Science Compliance Report (D5.2) ensures that all project outputs , +including deliverables, datasets, and supporting artefacts , are archived in trusted repositories with persistent +identifiers and licensed for re -use. Technical partners provide correctly formatted data and models, while +academic partners ensure FAIR compliance. This guarantees that STRATUS results remain accessible to the +research and regulatory community long after project close. + +The final phase culminates in the Promulgation Event and Report (D5.3, M30). This high-profile event, hosted +with support from SESAR JU, presents the consolidated STRATUS outputs, including the OSED, CONOPS, +FRD, assurance framework, and regulatory commentary , to regulators, ANSPs, operators, standards bodies, +and international observers. The event is designed not as a one-way presentation but as a forum for dialogue, +encouraging stakeholders to commit to carrying the results forward. The accompanying report do cuments +agenda, participation, outcomes, and evidence of impact. + +In parallel with these formal deliverables, intensive dissemination and communication activities include +internal dissemination within relevant organisations (e.g. regulatory partners briefing their rulemaking units, +ANSPs presenting to operational divisions, research partners embedding outputs into academic curricula) and +external promotion at industry and policy events. Partners will actively pr esent STRATUS results at +conferences such as ICAO regional planning meetings, EUROCAE working groups, industry forums, +professional conferences such as IFATCA, and SESAR events, as well as at targeted national workshops. This +ensures that the outputs are visible in the exact communities that will use them. + +Planning for WP5 has accounted for ~6 PM. By design, WP5 is not a passive close-out phase but a concentrated +campaign to anchor STRATUS results in the SESAR, EASA, ICAO, and industry communities. + +Role of participants +• EUROCONTROL (Lead): coordinates WP5, prepares exploitation strategy, manages repository +compliance, organises final event , ensure open science compliance , co-organise the final event , and +actively disseminate STRATUS results in the final six months internally and externally (conferences, +standards bodies, regulatory fora) to maximise visibility and uptake. + + + +=== PAGE 194 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 28 of 34 + +Table 3.1c: List of Deliverables +Numbe +r +Deliverable +name Short description +Work +package +number +Short +name of +lead +participant +Type +Disse +minati +on +level +Delivery +date +(in +months) +D1.1 + +Kick-off +Meeting +Report +Summary of attendees, +agenda, decisions taken, +action points, and initial +risk identification +WP1 +EUROCO +NTROL R PU 1 +D1.2 +Project +Management +Plan (PMP) +Defines how the project is +executed, monitored, +controlled, and closed. The +reference document for all +project control. +WP1 +EUROCO +NTROL R PU 3 +D1.3 +Data +Management +Plan (DMP) +Defines how data will be +handled in line with FAIR +principles. Covers all +technical documents, +models, and software +artefacts. +WP1 +EUROCO +NTROL DMP PU 3 +D1.4 +Updated +Project +Management +Plan (PMP) +Update of PMP +WP1 +EUROCO +NTROL R PU 12 +D1.5 +Updated +Data +Management +Plan +Update of DMP +WP1 +EUROCO +NTROL DMP PU 12 +D1.6 Final Project +Report. +Consolidated technical and +financial report, integrating +results, impacts, and +updated exploitation / +dissemination plans. +WP1 +EUROCO +NTROL R PU 30 +D2.1 +Communicati +on & +Disseminatio +n Plan +Identifies target audiences, +messages, channels, KPIs, +and how the project will +ensure visibility and uptake +of results. Will include an +editorial calendar, planned +events, and alignment with +SESAR JU branding rules +WP2 +EUROCO +NTROL R PU 3 +D2.2 +Project +Website and +Online +presence +A public library of results, +news feeds, event +announcements, contact +details, and non- +confidential deliverables, +linked from the SESAR JU +portal +WP2 +EUROCO +NTROL DEC PU 3 + +=== PAGE 195 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 29 of 34 +D2.3 Updated +CDE Plan Update of D2.1. WP2 EUROCO +NTROL R PU 12 +D2.4 +Mid-project +Stakeholder +Workshop +Report +Records the workshop +agenda, participants, and +feedback gathered. +Captures stakeholder input +on the interim CONOPS +and OSED, and how that +feedback is integrated into +the project’s second phase +WP2 +EUROCO +NTROL R PU 18 +D2.5 +Draft Post- +Research +Exploitation +& Impact +Strategy +Will map STRATUS +outputs to potential users, +identify adoption barriers +and standardisation hooks, +and outline follow-on +research needs. +WP2 +EUROCO +NTROL R PU 20 +D3.1 +ERP – +Exploratory +Research +Plan +How expert reviews, desk +analysis, and scenario +workshops will be +conducted, what evidence +will be collected, and how +interim deliverables will be +validated. +WP3 +EUROCO +NTROL R PU 6 +D3.2 +Market & +Stakeholder +Study +Maps stakeholders, +forecasts demand, and +identifies service needs and +implementation timelines. +Updates earlier EASA and +SESAR work to reflect the +evolving high-altitude +market. +WP3 +EUROCO +NTROL R PU 8 +D3.3 +Initial OSED +– +Operational +Services & +Environment +Description +Captures early service +definitions, stakeholder +roles, and baseline +scenarios, feeding into Part +B where they are refined +and finalised. +WP3 +EUROCO +NTROL R PU 12 +D4.1 +FRD – +Functional +Requirement +s Document +Define functions such as +trajectory negotiation, +conformance monitoring, +separation where required, +and cybersecurity +principles, with clear KPIs +and interface requirements. +WP4 +EUROCO +NTROL R PU 18 +D4.2 Final OSED +Update of D3.3 - a mature +description of actors, +services, and interactions +across high-altitude +operations. +WP4 +EUROCO +NTROL R PU 20 + + +=== PAGE 196 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 30 of 34 +D4.3 +ERR – +Exploratory +Research +Report +Summarises findings, +provides evidence against +objectives, identifies +lessons learned, and +documents gaps for future +research. +WP4 +EUROCO +NTROL R PU 22 +D4.4 +ECO-EVAL +– Economic +Evaluation +A structured economic +assessment - a qualitative +analysis of likely benefits +and costs, stakeholder +incentives, and potential +business models. +WP4 +EUROCO +NTROL R PU 22 +D4.5 +Implementati +on & +Regulatory +Commentary +Describes where ICAO / +EASA / national +frameworks may need +updating, highlights +sovereignty and +contingency issues, and +notes environmental +considerations +WP4 +EUROCO +NTROL R PU 24 +D4.6 +Final Report +on a Holistic +on Secure, +Resilient +HAO +Describes roles, +responsibilities, procedures, +contingency arrangements, +and information flows. +WP4 +EUROCO +NTROL R PU 24 +D5.1 +Final +Exploitation +& Impact +Strategy +Updated from D2.3, +showing how STRATUS +anticipates the project’s +results to be taken forwards +by the stakeholder +community. +WP5 +EUROCO +NTROL R PU 26 +D5.2 +Repository & +Open +Science +Compliance +Report +Ensures all outputs (public +deliverables, datasets, +software) are archived +properly and accessible +WP5 +EUROCO +NTROL R PU 28 +D5.3 +Final +Promulgation +Event Report +Documents the closing +dissemination activity, with +agenda, participants, +outcomes, and evidence of +impact. +WP5 +EUROCO +NTROL R PU 30 + + + +=== PAGE 197 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 31 of 34 + +Table 3.1d: List of milestones +Milestone +number +Milestone +name +Related work +package(s) +Due date (in month) Means of verification +1 Project launch +and governance +established +WP1 1 Kick-off Meeting Report +(D1.1) +2 PMP and DMP +approved +WP1 3 PMP (D1.2), DMP (D1.3) +3 CDE +framework +operational +WP2 3 Communication & +Dissemination Plan +(D2.1), Website online +(D2.2) +4 Exploratory +Research Plan +validated +WP3 3 +ERP (D3.1) +5 Market and +stakeholder +baseline +established +WP3 8 +Market & Stakeholder +Study (D3.2) +6 Interim OSED +and CONOPS +complete +WP3 12 Initial OSED (D3.3), +Initial CONOPS draft +7 Functional +requirements +agreed +WP4 18 +FRD (D4.1) +8 Mid-project +CDE +checkpoint +WP4 +18 Mid-Project Stakeholder +Workshop Report (D2.4) +9 Consolidated +results package +WP2 22 ERR (D4.3), ECO-EVAL +(D4.4) +10 Final +exploitation +and close-out +WP5 30 Final Exploitation +Strategy (D5.1), +Promulgation Event +Report (D5.3) + + + +=== PAGE 198 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 32 of 34 + +Table 3.1e: Critical risks for implementation #@RSK-MGT-RM@# +Description of risk (indicate level of +(i) likelihood, and (ii) severity: +Low/Medium/High) +Work package(s) +involved +Proposed risk-mitigation measures +Market study – not sufficient sources. +(Low likelihood, Medium severity) +WP3 Offset with academic input and +triangulate using industry roadmaps, +regulatory filings, and expert +judgement. +Lack of attendees at stakeholder +promulgation events. (Medium +likelihood, High severity) +WP2 / WP5 Ensure sufficient advance promotion, +targeted invitations to key individuals, +and offer hybrid formats to maximise +participation. +Limited regulator engagement. +(Medium likelihood, High severity) +WP2 / WP3 / WP4 Early involvement of EASA and national +authorities via Advisory Board and +targeted workshops; leverage +SESAR/ICAO networks. +Divergent national positions on +sovereignty and cross-border +operations. (Medium likelihood, +Medium severity) +WP4 Capture differences explicitly in +regulatory commentary; frame outputs +as options/evidence rather than +consensus prescriptions. +Scope creep across vehicle types +(HAPS, hypersonic, STO, military). +(Medium likelihood, Medium severity) +WP3 / WP4 Maintain strict link to TRL 2 scope; +prioritise SESAR Master Plan-relevant +concepts; document excess material as +future research needs. +Partner coordination challenges in +large consortium (20+ partners). +(Medium likelihood, Medium severity) +WP1 Regular PMB and WPL meetings; clear +deliverable ownership; two-stage QA +reviews by non-authoring partners and +Coordinator. +Insufficient data for traffic forecasts +(immature HAPS/space transport +markets). (Medium likelihood, +Medium severity) +WP3 Use multiple sources and expert +judgement; transparently document +uncertainties and assumptions. +Overlap with other SESAR/EASA +studies (risk of duplication). (Low +likelihood, Medium severity) +WP3 / WP4 Continuous alignment with ECHO2, +EASA HAO study, SEC-AIRSPACE etc.; +Advisory Board monitoring to ensure +complementarity. +Underestimation of cross-cutting +complexity (safety, cyber, resilience +integration). (Low likelihood, High +severity) +WP3 / WP4 Iterative approach across work +packages; early baseline definitions; +independent expert reviews to validate +integration. +#§RSK-MGT-RM§# + + + +=== PAGE 199 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 33 of 34 +Table 3.1f: Summary of staff effort + WP1 WP2 WP3 WP4 WP5 Total Person- +Months per +Participant +1 EUROCONTROL 30,00 18,00 78,00 24,00 8,00 158,00 +2 DFS 1,76 2.56 4,32 +3 ENAV 4,07 4,02 8,09 +4 LUFTARTSVERKET 7,00 7,00 14,00 +5 NATS 2,50 4,20 6,70 +6 ENAIRE 1,50 2,70 4,20 +7 ENAC (IT) 3,20 7,80 11,00 +8 CONSORCIO +AERODROMO +AEROPUERTO DE +TERUEL + 7,00 7,00 14,00 +9 SkyNav Europe 11,20 11,50 22,70 +10 ENAC (FR) 5,00 4,00 9,00 +11 CIRA 2,00 4,00 6,00 +12 NLR 4,60 6,00 10,60 +13 IFATCA 2,00 5,00 7,00 +14 INECO 5,30 6,00 11.30 +15 CRIDA 2.80 2.80 5.60 +16 IMIEU 0,60 0,70 1,30 +17 OpenUTM 1,20 1,20 +18 DLR 5,00 7,00 12,00 +19 Sceye Spain 6,00 7,80 2,00 15,80 +20 ANRA Technologies +OU + 5,00 5,50 10,50 +21 HAPS Alliance +(Associated partner) + +22 IAA (Associated +partner) + +Total Person Months 30,00 18,00 154,53 120,78 10,50 333,81 + + +=== PAGE 200 === +Call: [HORIZON-SESAR-2023-DES-ER3] — [Digital European Sky Exploratory Research 03] +EU Grants: Application form (HE RIA and IA)( HORIZON-SESAR-2025-DES-ER-03): V4.0 – 18.12.2024 + + +Part B - Page 34 of 34 +Should this tender be successful EUROCONTROL, as part of the consortium, will participate in the project actions +without requesting funding. EUROCONTROL will, however, fully engage in the project and in particular is +committed to providing the effort, contributions to deliverables and to other activities as set out in this tender and in +the accompanying administrative forms." + +Table 3.1g: ‘Subcontracting costs’ items +16/IMIEU + Cost (€) Description of tasks and justification +Subcontracting 18.900,00 IMIEU will subcontract some tasks within WP3 &WP4 to The +International Institute of Air and Space Law of the University of +Leiden. + + +Table 3.1h: ‘Purchase costs’ items (travel and subsistence, equipment and other goods, works and +services) +Not applicable. +Table 3.1i: ‘Other costs categories’ items (e.g. internally invoiced goods and services) +Not applicable. +Table 3.1j: ‘In-kind contributions’ provided by third parties +Not applicable. + +#§QUA-LIT-QL§# #§WRK-PLA-WP§# + + + + + + + + + + + + + + + + + + + + + + + + +=== PAGE 201 === + + +Commission européenne/Europese Commissie, 1049 Bruxelles/Brussel, BELGIQUE/BELGIË - Tel. +32 22991111 + + + + +This electronic receipt is a digitally signed version of the document submitted by your +organisation. Both the content of the document and a set of metadata have been digitally +sealed. +This digital signature mechanism, using a public -private key pair mechanism, uniquely +binds this eReceipt to the modules of the Funding & Tenders Portal of the European +Commission, to the transaction for which it was generated and ensures its full integr ity. +Therefore a complete digitally signed trail of the transaction is available both for your +organisation and for the issuer of the eReceipt. +Any attempt to modify the content will lead to a break of the integrity of the electronic +signature, which can b e verified at any time by clicking on the eReceipt validation +symbol. +More info about eReceipts can be found in the FAQ page of the Funding & Tenders +Portal. +(https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/support/faq) + \ No newline at end of file diff --git a/docs/Tenders/sky_nav_sesar_winning_proposal_template.md b/docs/Tenders/sky_nav_sesar_winning_proposal_template.md new file mode 100644 index 0000000..145d0fb --- /dev/null +++ b/docs/Tenders/sky_nav_sesar_winning_proposal_template.md @@ -0,0 +1,221 @@ +# SkyNav SESAR Winning Proposal Template + +#Literature #StrategicStudies + +--- + +## 1. Proposal Overview + +**Project Title:** + +**Acronym:** + +**Call / Topic:** + +**Duration:** + +**Coordinator:** + +**Consortium Partners:** + +--- + +## 2. Strategic Framing + +### Problem Statement +- What systemic European ATM / HAO / STO problem are we solving? +- Why is this problem urgent now? + +### Strategic Context +- Alignment with SESAR / ATM Master Plan +- Link to ECHO / ECHO2 / prior work + +### Value Proposition +- What capability gap are we filling? +- Why SkyNav is uniquely positioned + +--- + +## 3. Objectives + +### Primary Objective +- Clear, single-line mission outcome + +### Supporting Objectives +- Obj 1: +- Obj 2: +- Obj 3: + +--- + +## 4. Concept of Operations (CONOPS) + +### Operational Concept +- How the system operates at network level + +### Key Features +- Real-time integration +- Situational awareness +- Decision support + +### Operational Impact +- Safety improvement +- Efficiency gains +- Regulatory enablement + +--- + +## 5. Technical Approach + +### Architecture +- Modular design +- API-based integration +- Scalable framework + +### Core Modules +- Data ingestion +- Processing / analytics +- User interface + +### Innovation Elements +- What is new vs current state + +--- + +## 6. Work Packages (WPs) + +### WP1 – Project Management +- Governance +- Reporting + +### WP2 – Requirements & CONOPS +- Stakeholder engagement +- Operational scenarios + +### WP3 – System Design & Development +- Architecture +- Prototype + +### WP4 – Validation & Demonstration +- Simulation +- Live trials + +### WP5 – Dissemination & Exploitation +- Publications +- Industry engagement + +--- + +## 7. Consortium Structure + +### Partner Roles +- Coordinator: +- SkyNav: Regulatory / operational / software +- ANSPs: Validation +- Industry: Technology + +### Value of Each Partner +- Why each is essential + +--- + +## 8. Impact + +### Scientific Impact +- Advancement of ATM / HAO knowledge + +### Operational Impact +- Improved safety and coordination + +### Economic Impact +- Market creation +- Cost reduction + +### Regulatory Impact +- Policy influence + +--- + +## 9. Exploitation Strategy + +### Commercialisation Path +- SaaS integration (SkyLex / SkySafe) + +### Revenue Model +- Subscription +- Consulting follow-on + +### Market Entry +- EU regulators +- ANSPs + +--- + +## 10. Risk Management + +| Risk | Probability | Impact | Mitigation | +|------|------------|--------|-----------| +| Regulatory delays | | | | +| Technical complexity | | | | +| Consortium alignment | | | | + +--- + +## 11. Implementation Timeline + +### Phase 1 +- Setup + +### Phase 2 +- Development + +### Phase 3 +- Validation + +### Phase 4 +- Deployment + +--- + +## 12. Key Success Factors + +- Strong consortium +- Clear role for SkyNav +- Alignment with SESAR priorities +- Demonstrable operational impact + +--- + +## 13. Common Pitfalls (Avoid) + +- Overly technical detail +- Weak partner roles +- Lack of system-level framing +- No clear exploitation path + +--- + +## 14. Final Checklist + +- [ ] Aligned with SESAR priorities +- [ ] Clear system-level impact +- [ ] Strong consortium logic +- [ ] Defined SkyNav advantage +- [ ] Commercialisation pathway clear + +--- + +## Reflective Prompt + +How does this proposal translate SkyNav’s regulatory and operational expertise into a scalable, system-level capability that creates long-term competitive advantage beyond the research programme? + +--- + +## Related Resources + +- SESAR ATM Master Plan +- ECHO / ECHO2 documentation +- SkyNav Strategic Plan + +--- + diff --git a/frontend/public/app.js b/frontend/public/app.js deleted file mode 100644 index 631298c..0000000 --- a/frontend/public/app.js +++ /dev/null @@ -1,56 +0,0 @@ -// app.js -import { API_BASE_URL } from "./config.js"; - -console.log('🔥 app.js loaded'); - -// Optional: set Ion token (if using Ion) -Cesium.Ion.defaultAccessToken = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJkZjk0MDM3OC1kZDE1LTRhMjItODg3NC1iMjUzNmI1NzUwMjgiLCJpZCI6MzE2ODE3LCJpYXQiOjE3NTEyMzM5OTh9.UDLPRYrMOcLAjuCWAZa2f159W0bULWSMNv3iiQcAAP8'; - - - -// Create empty viewer with no base layer -const viewer = new Cesium.Viewer("cesiumContainer", { - imageryProvider: false, - baseLayerPicker: false, - terrainProvider: new Cesium.EllipsoidTerrainProvider() -}); - -console.log('✅ Viewer created:', viewer); - -// Create OSM imagery layer -const osmLayer = new Cesium.ImageryLayer( - new Cesium.UrlTemplateImageryProvider({ - url: "https://a.tile.openstreetmap.org/{z}/{x}/{y}.png", - credit: "© OpenStreetMap contributors" - }) -); - -// Add imagery layer manually -viewer.imageryLayers.add(osmLayer); - -console.log('✅ OSM Layer Added:', osmLayer); -console.log('✅ Imagery Layers:', viewer.imageryLayers.length); - - - -// Load CZML from FastAPI endpoint -fetch(`${API_BASE_URL}/czml/test`) - .then(response => { - if (!response.ok) { - throw new Error("Network response was not ok"); - } - return response.json(); - }) - .then(czmlData => { - // Load the CZML data into a Cesium data source - const czmlSource = new Cesium.CzmlDataSource(); - czmlSource.load(czmlData).then(() => { - viewer.dataSources.add(czmlSource); - viewer.zoomTo(czmlSource); - }); - }) - .catch(error => { - console.error("Failed to load CZML:", error); - }); - - diff --git a/frontend/public/config.js b/frontend/public/config.js deleted file mode 100644 index a09dbb3..0000000 --- a/frontend/public/config.js +++ /dev/null @@ -1,2 +0,0 @@ -// config.js -export const API_BASE_URL = "http://aegis.sbln.bxl.skynav.cloud:8000"; diff --git a/frontend/public/index.html b/frontend/public/index.html deleted file mode 100644 index b073e73..0000000 --- a/frontend/public/index.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - SkyNav SpaceCom - - - - - - - - - - - - -