diff --git a/content/concepts/op-tee.md b/content/concepts/op-tee.md
index 9321fb82455ad3ddbb006d1d4d30a5d3f23e2fda..3a48ceb088de5d38fc1e32c6f03209cf554ec54b 100644
--- a/content/concepts/op-tee.md
+++ b/content/concepts/op-tee.md
@@ -52,7 +52,7 @@ It is expected for this library to be used by applications needing to communicat
 
 ## Boot Process
 
-From a high level, the basic change required to the boot process is that the TEE need to be setup before the REE.
+From a high level, the basic change required to the boot process is that the TEE needs to be setup before the REE.
 The factor missing from this description is security.
 In order for the TEE to be able to achieve it's stated goal, providing a secure environment, it is necessary for the boot process to be able to guarantee that at least the setup of the TEE has not been tampered with.
 Such guarantees are provided by enabling secure boot for the relevant platform.
@@ -88,111 +88,382 @@ This flexibility is such that a proof of concept has been completed implementing
 
 ## Virtualization Support
 
-As the hypervisor and secure monitor each have a separate privilege level, it is possible for the TEE to co-exist with systems running a hypervisor.
-OP-TEE currently has [experimental support](https://optee.readthedocs.io/en/latest/architecture/virtualization.html) for the XEN hypervisor running on an emulated ARMv8 system.
-The current approach provides a separate context for each of the Virtual Machines (VMs) running on the hypervisor.
-This requires support from the hypervisor to enable communication between the Virtual Machines (VM) running on the hypervisor and the TEE and to ensure the TEE is using the context associated with the calling VM.
-The experimental support currently disables access to hardware resources, such as cryptographic engines, in the TEE as a mechanism to share such resources safely between the separate TEE contexts has not yet been created.
+As the hypervisor and secure monitor each have a separate privilege level, it
+is possible for the TEE to co-exist with systems running a hypervisor. Whilst
+it is possible for the two to exist, a number of adaptions need to be made to
+allow communications to happen.
+
+When running on a hypervisor, the guest OS uses intermediate physical addresses
+(IPAs) rather than physical memory addresses. These IPAs are then translated by
+the hypervisor to real physical addresses. The TEE concept was not developed
+with hypervisors in mind and the REE expects to pass the memory regions it uses
+for communicating with the TEE as physical addresses. However, unlike the TEE,
+the guest OS (acting as the REE) does not have access to the actual physical
+addresses, which will lead to miss-communication as to where data is stored.
+The hypervisor also needs to know that the contents of the used regions of
+physical memory can't be swapped out whilst communication between the TEE and
+REE is on going.  Additionally something would need to keep track of which VM
+made the request so the response can be passed back to the right VM and handle
+situations such as the VM dying whilst the TEE was handling a request.
+
+It is therefore necessary for both the the TEE and hypervisor to be modified
+for things to function. Virtualization support has already been added to OP-TEE
+and
+[experimental support](https://optee.readthedocs.io/en/latest/architecture/virtualization.html)
+has been added to the Xen hypervisor running on an emulated ARMv8 system.  The
+current approach modifies OP-TEE to provide a common TEE infrastructure with
+separate TEE contexts made available for each of the Virtual Machines (VMs) in
+which the trusted applications for each VM run.
+
+![OP-TEE with hypervisor layout](/images/op-tee_hypervisor.svg)
+
+This works in conjunction with support from the hypervisor to provide memory
+mapping and to provide enumeration of the VMs so that the right context is used
+for each VM. The functionality added to the hypervisor is called the "TEE
+mediator". The advantage of this approach is that, whilst it requires changes
+the the TEE and hypervisor, it keeps the API as seen by the guest OS and
+trusted applications the same, and thus existing applications and TAs do not
+need to be made aware of the virtualization used on the platform.
+
+{{% notice note %}}
+The virtualization support currently available in OP-TEE is configured at build
+time. A build supporting virtualization will currently not work in
+non-virtualized environments and vice versa. Thus separate builds will be
+required for each of these instances.
+
+It is currently also unclear how access to hardware resources, such as
+cryptographic engines, can be handled safely between TEE contexts and thus
+these are currently not supported when virtualization is enabled in OP-TEE.
+{{% /notice %}}
+
+# Advanced topology support
+
+It is expected that product teams will want to utilize topologies that go
+beyond what is currently available in OP-TEE. Below we cover a few
+strategies that we envisage could be implemented.
+
+## Proxying TEE Access
+
+It is expected that some systems will require non-Apertis guests to be run
+alongside Apertis on a hypervisor. These non-Apertis guests may also lack
+support for TEEs or there may be a desire for all the guest environments to be
+able to access a shared TEE environment. For these instances we would suggest
+the development of a "TEE proxy". The TEE proxy would be a daemon, which
+provides proxied access to TEE functionality.
+
+![TEE proxy with hypervisor](/images/op-tee_proxy.svg)
+
+The other virtualized environments would utilize standard mechanisms, such as a
+virtual network link provided by the hypervisor to communicate with the TEE
+proxy. In order for such a topology to be viable care would need to be taken to
+ensure that communications with the TEE proxy could be authenticated and
+secured. Additionally it would be necessary for the guest environment hosting
+the TEE proxy to be trusted as it will have access to the communications
+between the other VMs and the TEE.
+
+Such a TEE proxy could also be used in other instances, such as when access to
+TEE functionality is required by processes running on a separate core, such as
+a coprocessor, which will not have any access to the TEE environment.
+
+![TEE proxy with coprocessor](/images/op-tee_coprocessor.svg)
+
+As before, such a topology would require the TEE proxy to authenticate requests
+from the coprocessor, the communications mechanism used would need to be secure
+and the TEE proxy trusted.
+
+A similar but slightly different use case would be where containerized
+applications are used, such as Flatpaks. In these instances we suggest that a
+system service exposing higher level functionality than that expected by a TEE
+proxy would be more appropriate.
+
+![System service accessing TEE](/images/op-tee_flatpak.svg)
+
+As with the previous topologies it would still require the system service to be
+trusted, the communication method used between the containerized application
+and the system service would need to be secure and communications with the
+system service authenticated.
+
+## Low impact hypervisor support for TEE
+
+It is likely that system developers will want to utilize different hypervisor
+implementations that the one that gets integrated in Apertis.  It is believed
+that implementing a TEE mediator will be a relatively complex task and system
+developers may wish to minimize the changes that are required in the hypervisor
+they are using. In instances where a single VM is expected to access the TEE,
+we envisage that cut down support could be added to the hypervisor, though more
+work is required to prove the accuracy of this plan and may be heavily effected
+by the exact choice of hypervisor.
+
+![TEE proxy with tunnel](/images/op-tee_tunnel.svg)
+
+This is expected to require the hypervisor to:
+
+- Only allow one specific guest to call to OP-TEE via SMC and blocking any other
+  guest from making SMC calls.
+- Either translate the kernel physical addresses to *real* physical addresses
+  *or* ensure the Linux kernel can do the translation itself. A minimal
+  implementation of this could be an identity mapping in the translation tables
+  of the guest so that no actual translation is needed.
+- Ensure memory areas used for OP-TEE communications are pinned. A minimal
+  implementation of this could be for the hypervisor to carve out a specific
+  region of physical memory for the guest that it will not touch leaving the
+  guest kernel in full control of said memory (allowing it to do the pinning).
+
+One optional, but probably desirable, requirement for the hypervisor would be
+for it to validate the memory regions passed to OP-TEE. This would be required
+to prevent the guest using OP-TEE to access the memory of other guests (or even
+the hypervisor) via OP-TEE.
 
 # Enabling TEE in Apertis
 
-Apertis does not provide the vast majority of the functionality needed to implement a TEE.
-A number of steps need to be taken in order to enable TEE support in Apertis.
-
-## Secure Boot
-
-Secure boot provides an initial important step in initialization of the TEE by ensuring that the initialization process is able to proceed without interference.
-Unfortunately this fundamental step is very platform dependent and can not be solved as a general case.
-Apertis has already taken steps to [document and demonstrate secure boot]( {{< ref "secure-boot.md" >}} ).
-At the moment, Apertis only ships some support for secure on the SABRE Lite platform. This provides a good reference for the overall process but, unfortunately, the SABRE Lite is not a good choice as a technology demonstrator for TEE due to its age.
-
-We advise the implementation of a TEE demonstrator on a more modern platform to take advantage of the more advanced functionality found in such platforms.
-This will be covered in more detail in our recommendations for the [next steps]( {{< ref "#next-steps" >}} ).
-
-In addition to the board verifying the initial binaries that are executed, it is important that the verification of binaries continues through the boot process in order to build a [chain of trust](https://en.wikipedia.org/wiki/Chain_of_trust) so that later stages can determine whether boot was carried out appropriately.
-
-## ARM Trusted Firmware
-
-The current ARM Trusted Firmware package in Debian does not build for any platforms currently supported in Apertis.
-The package will need to be tweaked to sign the ATF binaries using an Apertis key.
-In order to support ATF in Apertis, one of the following options will need to be taken:
-
-- Adopt a platform already supported by the build as an additional platform in Apertis
-- Enable support for a platform supported by ATF but not currently built by the deb packaging
+Apertis does not currently provide the majority of the functionality needed to
+implement a TEE.  A number of steps need to be taken in order to enable TEE
+support in Apertis.
+
+It is expected that the above OP-TEE support would be integrated into Apertis
+in a number of phases:
+
+| Phase | Description |
+| --- | --- |
+| 0 | Suitable reference platform selection |
+| 1 | Integration of core components and basic operation |
+| 2 | Addition of hypervisor support using upstream supported hypervisor (Xen) |
+| 3 | Creation of TEE Proxy |
+| 4 | Further investigation of TEE tunnel and documenting of the process |
+
+## Reference Platform Selection 
+
+An important part of integrating the OP-TEE functionality into Apertis is
+providing a working implementation on a reference platform to validate the
+integrated components and serve as an example for Apertis users. This enables
+them to experiment with and learn about the capabilities, so that they can
+implement OP-TEE successfully in their own systems.
+
+To do this Apertis needs a reference platform that provides existing open
+source support, or one which would require minimal work to implement the
+required support. In this instance we need a platform that supports OP-TEE and
+the chosen hypervisor. In order for the TEE environment to be truly useful, it
+is necessary that guarantees can be made that the boot process hasn't been
+tampered with. As a result, a platform where we can also integrate secure boot
+effectively will be valuable. 
+
+The existing Apertis reference platforms do not fully meet these requirements.
+The OP-TEE project is specifically targeted towards the ARM ecosystem and
+particularly those that provide ARM TrustZone.  ARM TrustZone has been improved
+in later iterations of the technology and standardized with a reference
+implementation, available as part of the ATF project, for using TEEs. We
+recommend that a platform that is capable of utilizing ATF is chosen for this
+reference.  An advantage of implementing the TEE using ATF is that this
+provides a standardized interface for the trusted OS and thus allows Apertis to
+potentially be used with alternative trusted OS implementations. Whilst the
+Renesas R-Car platform, an existing reference platform,
+[appears to have OP-TEE support](https://optee.readthedocs.io/en/latest/general/platforms.html),
+it is not openly available and therefore not viable for Apertis to use as a
+reference for this functionality.
+
+There are a limited number of ARM based processors, and thus development boards,
+that are
+[listed as having Xen support](https://wiki.xenproject.org/wiki/Xen_ARM_with_Virtualization_Extensions#Hardware).
+Two platforms that stand out as potential options at this point are the
+[96 Boards HiKey960](https://www.96boards.org/product/hikey960/) and a board
+based on the Rockchip RK3399.
+
+## Core components
+
+The following core components would need integrating or work in order to
+provide basic operation of OP-TEE.
+
+### Secure Boot
+
+Secure boot provides an initial important step in initialization of the TEE by
+ensuring that the initialization process is able to proceed without
+interference.  Unfortunately this fundamental step is very platform dependent
+and can not be solved as a general case.  Apertis has already taken steps to
+[document and demonstrate secure boot]( {{< ref "secure-boot.md" >}} ).  At the
+moment, Apertis only ships some support for secure on the SABRE Lite platform.
+This provides a good reference for the overall process but, unfortunately, the
+SABRE Lite is not a good choice as a technology demonstrator for TEE due to its
+age.
+
+We advise the implementation of a TEE demonstrator on a more modern platform,
+utilizing ATF, to take advantage of the more advanced functionality found in
+such platforms.
+
+In addition to the board verifying the initial binaries that are executed, it
+is important that the verification of binaries continues through the boot
+process in order to build a
+[chain of trust](https://en.wikipedia.org/wiki/Chain_of_trust) so that later
+stages can determine whether boot was carried out appropriately.
+
+### ARM Trusted Firmware
+
+The current ARM Trusted Firmware package in Debian does not build for any
+platforms currently supported in Apertis.  The package will need to be tweaked
+to sign the ATF binaries using an Apertis key.  In order to support ATF in
+Apertis, one of the following options will need to be taken:
+
+- Adopt a platform already supported by the build as an additional platform in
+  Apertis
+- Enable support for a platform supported by ATF but not currently built by the
+  deb packaging
 - Add support for a preferred platform to ATF and enable it in the packaging
 
-From the perspective of enabling ATF, these are broadly in order of effort, though clearly adding an additional platform to Apertis increases the effort for ongoing baseline maintenance.
-
-### Requirements
-
-In order to implement [Trusted Board Boot](https://trustedfirmware-a.readthedocs.io/en/latest/design/trusted-board-boot.html) it will be necessary to upgrade `mbedtls`.
-This functionality is likely to be considered critical by project developers.
+From the perspective of enabling ATF, these are broadly in order of effort,
+though clearly adding an additional platform to Apertis increases the effort
+for ongoing baseline maintenance.
 
-## OP-TEE OS
+#### Requirements
 
-The OP-TEE project provides the [OP-TEE OS](https://github.com/OP-TEE/optee_os) as the trusted OS that runs in the TEE.
-This is not currently packaged for Debian and it would need to be to incorporated into Apertis.
-Like ATF, an Apertis key will need to be used to sign the binaries intended for the TEE to ensure the chain of trust.
-Currently when OP-TEE is built, it embeds the public key that will be used for verifying TAs.
-As with the key/keys used in other steps of this process, in order to ensure that products are properly secured, would be necessary for product teams to at a minimum replace the key used with a product specific one.
-A product team may wish to modify OP-TEE to support alternative key management solutions, this is [expected by the OP-TEE developers](https://github.com/OP-TEE/optee_os/issues/2233#issuecomment-379253182).
+In order to implement
+[Trusted Board Boot](https://trustedfirmware-a.readthedocs.io/en/latest/design/trusted-board-boot.html)
+it will be necessary to upgrade `mbedtls`.  This functionality is likely to be
+considered critical by project developers.
 
-In addition to the trusted OS, the build of the OP-TEE OS source also builds the TA-devkit.
-The TA-devkit provides the resources necessary to both build and sign TAs.
-The TA-devkit will need to be packaged so that it can be provided as a build dependency for any TAs.
+### OP-TEE OS
 
-## Linux Kernel
+The OP-TEE project provides the [OP-TEE OS](https://github.com/OP-TEE/optee_os)
+as the trusted OS that runs in the TEE.  This is not currently packaged for
+Debian and it would need to be to incorporated into Apertis.  Like ATF, an
+Apertis key will need to be used to sign the binaries intended for the TEE to
+ensure the chain of trust.  Currently when OP-TEE is built, it embeds the
+public key that will be used for verifying TAs.  As with the key/keys used in
+other steps of this process, in order to ensure that products are properly
+secured, it would be necessary for product teams to at a minimum replace the
+key used with a product specific one.  A product team may wish to modify OP-TEE
+to support alternative key management solutions, this is
+[expected by the OP-TEE developers](https://github.com/OP-TEE/optee_os/issues/2233#issuecomment-379253182).
 
-Debian (and thus the Apertis configuration) does already enable the TEE subsystem on arm64 where ATF can be used.
-It is understood that this should be sufficient and thus no extra modifications to the kernel will be required.
+In addition to the trusted OS, the build of the OP-TEE OS source also builds
+the TA-devkit.  The TA-devkit provides the resources necessary to both build
+and sign TAs.  The TA-devkit will need to be packaged so that it can be
+provided as a build dependency for any TAs.
 
-## OP-TEE Supplicant and User Space Libraries
+### Linux Kernel
 
-In addition to the trusted OS, the OP-TEE project provides the [OP-TEE supplicant and TEE Client API](https://github.com/OP-TEE/optee_client).
-The supplicant provides services to OP-TEE that it does not directly provide itself and the TEE Client API provides a user space API in the REE to communicate with the TEE.
-As with the OP-TEE OS, these components are currently not packaged for Debian and would need to be.
-As these components run in the REE they don't need to be signed.
+Debian (and thus the Apertis configuration) does already enable the TEE
+subsystem on arm64 where ATF can be used.  It is understood that this should be
+sufficient and thus no extra modifications to the kernel will be required.
 
-## Sample TAs
+### OP-TEE Supplicant and User Space Libraries
 
-To enable early investigation of TEEs on Apertis, the [example TAs](https://github.com/linaro-swg/optee_examples) should be packaged.
-For simple use cases, it may be that these examples either fulfill or provide a framework for development of the TEE requirements.
-They will provide a useful reference of how to package TAs for Apertis even for the use cases that are not covered by the examples.
+In addition to the trusted OS, the OP-TEE project provides the
+[OP-TEE supplicant and TEE Client API](https://github.com/OP-TEE/optee_client).
+The supplicant provides services to OP-TEE that it does not directly provide
+itself and the TEE Client API provides a user space API in the REE to
+communicate with the TEE.  As with the OP-TEE OS, these components are
+currently not packaged for Debian and would need to be.  As these components
+run in the REE they don't need to be signed.
 
-The sample TAs will be signed with the key provided by the Apertis TA-devkit package (which will be a build dependency) and thus will be usable with the OP-TEE OS built for Apertis.
+### Sample TAs
 
-## Test Suite
+To enable early investigation of TEEs on Apertis, the
+[example TAs](https://github.com/linaro-swg/optee_examples) should be packaged.
+For simple use cases, it may be that these examples either fulfill or provide a
+framework for development of the TEE requirements.  They will provide a useful
+reference of how to package TAs for Apertis even for the use cases that are not
+covered by the examples.
 
-A [test suite](https://github.com/OP-TEE/optee_test) exists for OP-TEE.
-Providing this in Apertis would enable developers to gain some confidence that OP-TEE was installed and initialized correctly.
+The sample TAs will be signed with the key provided by the Apertis TA-devkit
+package (which will be a build dependency) and thus will be usable with the
+OP-TEE OS built for Apertis.
 
-## Debos Scripting
+### Debos Scripting
 
 Once components are added to the Apertis project, we need a way to combine them into an image that can be booted on the target platform.
 In Apertis this is performed by Debos using configuration files to determine exactly what packages are added to each image.
 This also allows for the images to be built automatically and regularly using the latest versions of packages.
 A special image to automate configuration of the boot process can also be generated like the one provided to update the U-Boot bootloader for the [i.MX6 SABRE Lite board](https://gitlab.apertis.org/infrastructure/apertis-image-recipes/-/blob/apertis/v2021dev2/mx6qsabrelite-uboot-installer.yaml).
 
-# Next Steps
-
-Integrating OP-TEE into Apertis substantially alters the boot process and requires secure boot to be working effectively to be valuable.
-
-Whilst the research carried out to write this proposal has attempted to consider the impacts of adding this support to Apertis, there remains a risk that some potential issues have gone unnoticed.
-We therefore advise following up this document with adding the support to Apertis for at least one reference platform so that the basic components are formally integrated into Apertis; to provide as a solid reference for product teams and further lower the risk of Apertis adoption for teams wishing to use OP-TEE.
-
-## Choice of Reference Platform
-
-The OP-TEE project is specifically targeted towards the ARM ecosystem, specifically those that provide ARM TrustZone.
-ARM TrustZone has been improved in later iterations of the technology and standardized with a reference implementation available to for using TEEs as part of the ATF project.
-We recommend that a platform that is capable of utilizing ATF is chosen for this reference.
-An advantage of implementing the TEE using ATF is that this provides a standardized interface for the trusted OS and thus allows Apertis to potentially be used with alternative trusted OS implementations.
-
-## Test Integration
-
-The availability of a test suite provides some coverage of the OP-TEE functionality with minimal effort as this should be usable from automated testing.
-
-Whilst the test suite will test operation of OP-TEE itself, an important part of initializing a TEE is the platform specific secure boot.
-Unless using a platform very closely aligned with an Apertis reference platform, this step will be the responsibility of the product team.
-To ensure that this is properly implemented, tests could be developed that attempt to utilize incorrectly signed binaries at the different stages of the boot process to ensure that each step is properly validated, providing a reference for how to test secure boot.
-
-Experience with the SABRE Lite has shown that whilst devices may be set up to emulate a secured configuration, their behavior differs from the behavior of devices locked via its embedded fuses. Since boards locked in a secure boot configuration no longer allow some operations, they become less useful for general development. For this reason, a dedicated set of boards locked via fuses may be required to fully test that secure boot restrictions are being enforced.
+## Hypervisor Integration
+
+Hypervisors come in a number of different types, the main 2 classifications of
+hypervisor are called "type 1" and "type 2". Type 1 hypervisors run on bare
+metal, where as type 2 run on top of a host operating system.
+
+Apertis supports the use of [VirtualBox]({{< ref "virtualbox.md" >}}) for
+running the Apertis SDK, however this is not intended (nor possible in many
+instances) to be run on target hardware and is very much a type 2 hypervisor.
+Apertis also has the Linux KVM enabled which turns the Linux kernel into a
+hypervisor. KVM is not a clear cut type 1 or type 2 hypervisor.
+
+We'd expect a product to utilize a type 1 hypervisor such as the open source
+Xen hypervisor, which contains the experimental TEE mediator. We therefore
+suggest utilizing this in Apertis to avoid needing to implement TEE mediator
+support in a different hypervisor at this point.
+
+### Xen Hypervisor
+
+The Xen hypervisor is a GPL-2 licensed type 1 hypervisor. It is supported on
+Intel and ARM architectures and has the experimental TEE mediator. Xen is
+packaged for Debian on the `amd64`, `arm64` and `armhf` architectures which
+will ease adding support to Apertis, though some work is expected to ensure
+that the version of Xen and the version of the kernel used in Apertis are
+compatible.
+
+### Linux Kernel
+
+It will be necessary to ensure that the required support is enabled in the
+Apertis kernel builds, however this should be a relatively straight forward
+task as the required configuration options are
+[documented on the Xen website](https://wiki.xenproject.org/wiki/Mainline_Linux_Kernel_Configs).
+
+### Dual configuration build of OP-TEE
+
+Enabling the virtualization support in OP-TEE results in a version of OP-TEE
+that only works in virtualized environments. In order to continue to support
+simple and more complex configurations using a hypervisor it will be necessary
+to build and package at least two versions of OP-TEE, one supporting
+virtualization and one that doesn't.
+
+## TEE Proxy
+
+The concept of a TEE Proxy appears to be new and no existing such projects have
+yet been found.  The implementation of the TEE Proxy will need careful
+consideration of the potential security implications. The environment in which
+the TEE Proxy executes will also need to be trusted and will need to be
+carefully secured to minimize the risk that third parties could gain access to
+the communications between the TEE Proxy and it's client or the TEE Proxy and
+the TEE it's self. The TEE Proxy will also need to be protected against direct
+attacks against the proxy it's self.
+
+## Low Impact Hypervisor Support
+
+The main deliverable from the completion of the low impact hypervisor support
+effort should be documentation describing in as generic a way as possible the
+minimal support required from a hypervisor to enable TEE support. This will
+require a good understanding of the underlying mechanisms used by hypervisors
+as well as communication between the TEE and REE. We would expect this to be
+carried out after basic and Xen hypervisor support had been added to Apertis,
+providing the Apertis team with some of the required experience to formulate
+this documentation.
+
+In order to ensure that this document is accurate and the requirements well
+under understood, it will be necessary to implement the low impact hypervisor
+support in a hypervisor. This could be achieved by using Xen or by implementing
+such support for the KVM hypervisor.
+
+# Test Integration
+
+The availability of a [test suite](https://github.com/OP-TEE/optee_test) test
+suite provides some coverage of the OP-TEE functionality with minimal effort as
+this should be usable from automated testing. The test suite should also enable
+developers to easily gain some confidence that OP-TEE was installed and
+initialized correctly.
+
+Whilst the test suite will test operation of OP-TEE itself, an important part
+of initializing a TEE is the platform specific secure boot.  Unless using a
+platform very closely aligned with an Apertis reference platform, this step
+will be the responsibility of the product team.
+
+To ensure that this is properly implemented, tests could be developed that
+attempt to utilize incorrectly signed binaries at the different stages of the
+boot process to ensure that each step is properly validated, providing a
+reference for how to test secure boot.
+
+Experience with the SABRE Lite has shown that whilst devices may be set up to
+emulate a secured configuration, their behavior differs from the behavior of
+devices locked via its embedded fuses. Since boards locked in a secure boot
+configuration no longer allow some operations, they become less useful for
+general development. For this reason, a dedicated set of boards locked via
+fuses may be required to fully test that secure boot restrictions are being
+enforced.
diff --git a/dictionary.aspell b/dictionary.aspell
index 11461fa488f62278b39077e98061115ef623d571..a696f4a2b9fe655a98ce594a86a82b4d20df7ea3 100644
--- a/dictionary.aspell
+++ b/dictionary.aspell
@@ -1,21 +1,29 @@
-personal_ws-1.1 en 49 utf-8
+personal_ws-1.1 en 63 utf-8
 ARMv
 ATF
 Apertis
 Debos
 Flatpak
 Flatpaks
+GPL
 GitLab
 GlobalPlatform
 HMI
 HTML
+HiKey
+IPAs
+KVM
 LFS
 MX
 OpenSSL
 PDF
 PDFs
 REE
+RK
+Renesas
+Rockchip
 SDK
+SMC
 SoC
 TAs
 TEE
@@ -26,6 +34,7 @@ UI
 UUID
 VM
 VMs
+VirtualBox
 WIP
 Xen
 YAML
@@ -34,6 +43,7 @@ backport
 backported
 bootloader
 bootloaders
+coprocessor
 cryptographic
 deduplicate
 deduplicated
@@ -44,6 +54,8 @@ hotfix
 namespace
 ospack
 prebuilt
+proxied
+proxying
 rebase
 reproducibility
 runtime
@@ -51,5 +63,7 @@ shortcode
 snapshotted
 snapshotting
 submitters
+topologies
 untrusted
 upstreamed
+virtualized
diff --git a/static/images/op-tee_coprocessor.svg b/static/images/op-tee_coprocessor.svg
new file mode 100644
index 0000000000000000000000000000000000000000..2befa81bb4cb4c8e23e083ec78e2f0221c98e63d
--- /dev/null
+++ b/static/images/op-tee_coprocessor.svg
@@ -0,0 +1,224 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="164.03mm" height="94.01mm" viewBox="2799 2550 16403 9401" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1863" descent="445"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="y" horiz-adv-x="1038" d="M 191,-425 C 142,-425 100,-421 67,-414 L 67,-279 C 92,-283 120,-285 151,-285 263,-285 352,-203 417,-38 L 434,5 5,1082 197,1082 425,484 C 428,475 432,464 437,451 442,438 457,394 482,320 507,246 521,205 523,196 L 593,393 830,1082 1020,1082 604,0 C 559,-115 518,-201 479,-258 440,-314 398,-356 351,-384 304,-411 250,-425 191,-425 Z"/>
+   <glyph unicode="x" horiz-adv-x="996" d="M 801,0 L 510,444 217,0 23,0 408,556 41,1082 240,1082 510,661 778,1082 979,1082 612,558 1002,0 801,0 Z"/>
+   <glyph unicode="w" horiz-adv-x="1525" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
+   <glyph unicode="v" horiz-adv-x="1038" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="890" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="552" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
+   <glyph unicode="s" horiz-adv-x="912" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="p" horiz-adv-x="932" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
+   <glyph unicode="o" horiz-adv-x="974" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="890" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="m" horiz-adv-x="1462" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="213" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="i" horiz-adv-x="213" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
+   <glyph unicode="e" horiz-adv-x="974" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="d" horiz-adv-x="932" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
+   <glyph unicode="c" horiz-adv-x="890" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,174 752,209 778,262 788,334 L 970,322 C 956,218 912,135 837,73 762,11 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
+   <glyph unicode="a" horiz-adv-x="1059" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="T" horiz-adv-x="1187" d="M 720,1253 L 720,0 530,0 530,1253 46,1253 46,1409 1204,1409 1204,1253 720,1253 Z"/>
+   <glyph unicode="S" horiz-adv-x="1207" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
+   <glyph unicode="R" horiz-adv-x="1250" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 990,1409 1112,1374 1199,1303 1285,1232 1328,1133 1328,1006 1328,901 1298,813 1237,742 1176,671 1091,626 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1086 1108,1149 1053,1192 997,1235 917,1256 812,1256 L 359,1256 359,736 820,736 C 921,736 999,760 1054,807 1109,854 1136,919 1136,1004 Z"/>
+   <glyph unicode="P" horiz-adv-x="1123" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
+   <glyph unicode="O" horiz-adv-x="1419" d="M 1495,711 C 1495,564 1467,435 1411,324 1354,213 1273,128 1168,69 1063,10 938,-20 795,-20 650,-20 526,9 421,68 316,127 235,212 180,323 125,434 97,563 97,711 97,936 159,1113 282,1240 405,1367 577,1430 797,1430 940,1430 1065,1402 1170,1345 1275,1288 1356,1205 1412,1096 1467,987 1495,859 1495,711 Z M 1300,711 C 1300,886 1256,1024 1169,1124 1081,1224 957,1274 797,1274 636,1274 511,1225 423,1126 335,1027 291,889 291,711 291,534 336,394 425,291 514,187 637,135 795,135 958,135 1083,185 1170,286 1257,386 1300,528 1300,711 Z"/>
+   <glyph unicode="M" horiz-adv-x="1398" d="M 1366,0 L 1366,940 C 1366,1044 1369,1144 1375,1240 1342,1121 1313,1027 1287,960 L 923,0 789,0 420,960 364,1130 331,1240 334,1129 338,940 338,0 168,0 168,1409 419,1409 794,432 C 807,393 820,351 833,306 845,261 853,228 857,208 862,235 874,275 891,330 908,384 919,418 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"/>
+   <glyph unicode="L" horiz-adv-x="933" d="M 168,0 L 168,1409 359,1409 359,156 1071,156 1071,0 168,0 Z"/>
+   <glyph unicode="K" horiz-adv-x="1208" d="M 1106,0 L 543,680 359,540 359,0 168,0 168,1409 359,1409 359,703 1038,1409 1263,1409 663,797 1343,0 1106,0 Z"/>
+   <glyph unicode="I" horiz-adv-x="213" d="M 189,0 L 189,1409 380,1409 380,0 189,0 Z"/>
+   <glyph unicode="F" horiz-adv-x="1038" d="M 359,1253 L 359,729 1145,729 1145,571 359,571 359,0 168,0 168,1409 1169,1409 1169,1253 359,1253 Z"/>
+   <glyph unicode="E" horiz-adv-x="1144" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
+   <glyph unicode="C" horiz-adv-x="1334" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
+   <glyph unicode="A" horiz-adv-x="1377" d="M 1167,0 L 1006,412 364,412 202,0 4,0 579,1409 796,1409 1362,0 1167,0 Z M 685,1265 L 676,1237 C 659,1182 635,1111 602,1024 L 422,561 949,561 768,1026 C 749,1072 731,1124 712,1182 L 685,1265 Z"/>
+   <glyph unicode="-" horiz-adv-x="509" d="M 91,464 L 91,624 591,624 591,464 91,464 Z"/>
+   <glyph unicode=" " horiz-adv-x="572"/>
+  </font>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <g class="Page">
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id3">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15399" y="7599" width="3803" height="2427"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 17300,10024 L 15400,10024 15400,7600 19200,7600 19200,10024 17300,10024 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17300,10024 L 15400,10024 15400,7600 19200,7600 19200,10024 17300,10024 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="16117" y="9033"><tspan fill="rgb(255,255,255)" stroke="none">OP-TEE</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id4">
+    <rect class="BoundingBox" stroke="none" fill="none" x="2799" y="9099" width="3903" height="2103"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 4750,11200 L 2800,11200 2800,9100 6700,9100 6700,11200 4750,11200 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 4750,11200 L 2800,11200 2800,9100 6700,9100 6700,11200 4750,11200 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="3878" y="10371"><tspan fill="rgb(0,0,0)" stroke="none">RTOS</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id5">
+    <rect class="BoundingBox" stroke="none" fill="none" x="8799" y="4199" width="6203" height="2103"/>
+    <path fill="rgb(130,90,155)" stroke="none" d="M 11900,6300 L 8800,6300 8800,4200 15000,4200 15000,6300 11900,6300 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 11900,6300 L 8800,6300 8800,4200 15000,4200 15000,6300 11900,6300 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="11282" y="5115"><tspan fill="rgb(0,0,0)" stroke="none">TEE</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="11090" y="5826"><tspan fill="rgb(0,0,0)" stroke="none">Proxy</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id6">
+    <rect class="BoundingBox" stroke="none" fill="none" x="8799" y="7599" width="6203" height="2403"/>
+    <path fill="rgb(90,90,90)" stroke="none" d="M 11900,10000 L 8800,10000 8800,7600 15000,7600 15000,10000 11900,10000 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 11900,10000 L 8800,10000 8800,7600 15000,7600 15000,10000 11900,10000 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10078" y="8665"><tspan fill="rgb(255,255,255)" stroke="none">Linux            </tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="9919" y="9376"><tspan fill="rgb(255,255,255)" stroke="none">Kernel            </tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id7">
+    <rect class="BoundingBox" stroke="none" fill="none" x="12899" y="7799" width="1903" height="1003"/>
+    <path fill="rgb(190,190,190)" stroke="none" d="M 13850,8800 L 12900,8800 12900,7800 14800,7800 14800,8800 13850,8800 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13850,8800 L 12900,8800 12900,7800 14800,7800 14800,8800 13850,8800 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="13232" y="8521"><tspan fill="rgb(0,0,0)" stroke="none">TEE</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id8">
+    <rect class="BoundingBox" stroke="none" fill="none" x="8799" y="6299" width="6203" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 11900,7600 L 8800,7600 8800,6300 15000,6300 15000,7600 11900,7600 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 11900,7600 L 8800,7600 8800,6300 15000,6300 15000,7600 11900,7600 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="9803" y="7171"><tspan fill="rgb(255,255,255)" stroke="none">TEE Client API</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id9">
+    <rect class="BoundingBox" stroke="none" fill="none" x="12899" y="8799" width="1903" height="1003"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 13850,9800 L 12900,9800 12900,8800 14800,8800 14800,9800 13850,9800 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13850,9800 L 12900,9800 12900,8800 14800,8800 14800,9800 13850,9800 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="13058" y="9521"><tspan fill="rgb(255,255,255)" stroke="none">driver</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id10">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15399" y="6299" width="3803" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 17300,7600 L 15400,7600 15400,6300 19200,6300 19200,7600 17300,7600 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17300,7600 L 15400,7600 15400,6300 19200,6300 19200,7600 17300,7600 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15662" y="7171"><tspan fill="rgb(255,255,255)" stroke="none">Internal API</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id11">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15150" y="3450" width="101" height="6601"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 15200,10000 L 15200,3500"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id12">
+    <rect class="BoundingBox" stroke="none" fill="none" x="8799" y="9999" width="10403" height="1203"/>
+    <path fill="rgb(65,65,65)" stroke="none" d="M 14000,11200 L 8800,11200 8800,10000 19200,10000 19200,11200 14000,11200 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 14000,11200 L 8800,11200 8800,10000 19200,10000 19200,11200 14000,11200 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10741" y="10821"><tspan fill="rgb(255,255,255)" stroke="none">ARM Trusted Firmware</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id13">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15399" y="4199" width="3803" height="2103"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 17300,6300 L 15400,6300 15400,4200 19200,4200 19200,6300 17300,6300 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17300,6300 L 15400,6300 15400,4200 19200,4200 19200,6300 17300,6300 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="16238" y="5115"><tspan fill="rgb(0,0,0)" stroke="none">Trusted</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15753" y="5826"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id14">
+    <rect class="BoundingBox" stroke="none" fill="none" x="7650" y="2550" width="101" height="9401"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,11900 L 7700,11800"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,11500 L 7700,11400"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,11100 L 7700,11000"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,10700 L 7700,10600"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,10300 L 7700,10200"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,9900 L 7700,9800"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,9500 L 7700,9400"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,9100 L 7700,9000"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,8700 L 7700,8600"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,8300 L 7700,8200"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,7900 L 7700,7800"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,7500 L 7700,7400"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,7100 L 7700,7000"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,6700 L 7700,6600"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,6300 L 7700,6200"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,5900 L 7700,5800"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,5500 L 7700,5400"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,5100 L 7700,5000"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,4700 L 7700,4600"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,4300 L 7700,4200"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,3900 L 7700,3800"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,3500 L 7700,3400"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,3100 L 7700,3000"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 7700,2700 L 7700,2600"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.ConnectorShape">
+   <g id="id15">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6700" y="6300" width="3885" height="4123"/>
+    <g style="opacity: 0.698039215686274">
+     <path fill="none" stroke="rgb(255,51,51)" stroke-width="200" stroke-linejoin="round" d="M 10335,6775 C 10190,9025 9320,9937 7259,10126"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 10083,6791 L 10350,6300 10583,6808 10083,6791 Z"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 7313,10421 L 6700,10150 7285,9822 7313,10421 Z"/>
+    </g>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.ConnectorShape">
+   <g id="id16">
+    <rect class="BoundingBox" stroke="none" fill="none" x="13210" y="6300" width="4377" height="4563"/>
+    <g style="opacity: 0.698039215686274">
+     <path fill="none" stroke="rgb(255,51,51)" stroke-width="200" stroke-linejoin="round" d="M 13460,6802 C 13676,12073 17047,12072 17287,6859"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 13211,6805 L 13450,6300 13711,6795 13211,6805 Z"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 16986,6893 L 17300,6300 17585,6907 16986,6893 Z"/>
+    </g>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.TextShape">
+   <g id="id17">
+    <rect class="BoundingBox" stroke="none" fill="none" x="7800" y="2600" width="6629" height="963"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="8050" y="3301"><tspan fill="rgb(190,190,190)" stroke="none">Application Processor</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.TextShape">
+   <g id="id18">
+    <rect class="BoundingBox" stroke="none" fill="none" x="3600" y="2600" width="4093" height="963"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="3850" y="3301"><tspan fill="rgb(190,190,190)" stroke="none">Coprocessor</tspan></tspan></tspan></text>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/static/images/op-tee_diagrams.odg b/static/images/op-tee_diagrams.odg
index 2a3b47672890797bffc879714191c48d14549fed..6efa65f4fc71ebea2f8f62c5fb06a32f4790838c 100644
Binary files a/static/images/op-tee_diagrams.odg and b/static/images/op-tee_diagrams.odg differ
diff --git a/static/images/op-tee_flatpak.svg b/static/images/op-tee_flatpak.svg
new file mode 100644
index 0000000000000000000000000000000000000000..7a3240c7ce95280a5e6841ccf38cbd3e87ffbcbb
--- /dev/null
+++ b/static/images/op-tee_flatpak.svg
@@ -0,0 +1,239 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="172.03mm" height="89.52mm" viewBox="1899 14450 17203 8952" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1863" descent="445"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="y" horiz-adv-x="1038" d="M 191,-425 C 142,-425 100,-421 67,-414 L 67,-279 C 92,-283 120,-285 151,-285 263,-285 352,-203 417,-38 L 434,5 5,1082 197,1082 425,484 C 428,475 432,464 437,451 442,438 457,394 482,320 507,246 521,205 523,196 L 593,393 830,1082 1020,1082 604,0 C 559,-115 518,-201 479,-258 440,-314 398,-356 351,-384 304,-411 250,-425 191,-425 Z"/>
+   <glyph unicode="x" horiz-adv-x="996" d="M 801,0 L 510,444 217,0 23,0 408,556 41,1082 240,1082 510,661 778,1082 979,1082 612,558 1002,0 801,0 Z"/>
+   <glyph unicode="w" horiz-adv-x="1525" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
+   <glyph unicode="v" horiz-adv-x="1038" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="890" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="552" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
+   <glyph unicode="s" horiz-adv-x="912" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="p" horiz-adv-x="932" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
+   <glyph unicode="o" horiz-adv-x="974" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="890" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="m" horiz-adv-x="1462" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="213" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="k" horiz-adv-x="911" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
+   <glyph unicode="i" horiz-adv-x="213" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
+   <glyph unicode="e" horiz-adv-x="974" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="d" horiz-adv-x="932" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
+   <glyph unicode="c" horiz-adv-x="890" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,174 752,209 778,262 788,334 L 970,322 C 956,218 912,135 837,73 762,11 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
+   <glyph unicode="a" horiz-adv-x="1059" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="T" horiz-adv-x="1187" d="M 720,1253 L 720,0 530,0 530,1253 46,1253 46,1409 1204,1409 1204,1253 720,1253 Z"/>
+   <glyph unicode="S" horiz-adv-x="1207" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
+   <glyph unicode="R" horiz-adv-x="1250" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 990,1409 1112,1374 1199,1303 1285,1232 1328,1133 1328,1006 1328,901 1298,813 1237,742 1176,671 1091,626 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1086 1108,1149 1053,1192 997,1235 917,1256 812,1256 L 359,1256 359,736 820,736 C 921,736 999,760 1054,807 1109,854 1136,919 1136,1004 Z"/>
+   <glyph unicode="P" horiz-adv-x="1123" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
+   <glyph unicode="O" horiz-adv-x="1419" d="M 1495,711 C 1495,564 1467,435 1411,324 1354,213 1273,128 1168,69 1063,10 938,-20 795,-20 650,-20 526,9 421,68 316,127 235,212 180,323 125,434 97,563 97,711 97,936 159,1113 282,1240 405,1367 577,1430 797,1430 940,1430 1065,1402 1170,1345 1275,1288 1356,1205 1412,1096 1467,987 1495,859 1495,711 Z M 1300,711 C 1300,886 1256,1024 1169,1124 1081,1224 957,1274 797,1274 636,1274 511,1225 423,1126 335,1027 291,889 291,711 291,534 336,394 425,291 514,187 637,135 795,135 958,135 1083,185 1170,286 1257,386 1300,528 1300,711 Z"/>
+   <glyph unicode="M" horiz-adv-x="1398" d="M 1366,0 L 1366,940 C 1366,1044 1369,1144 1375,1240 1342,1121 1313,1027 1287,960 L 923,0 789,0 420,960 364,1130 331,1240 334,1129 338,940 338,0 168,0 168,1409 419,1409 794,432 C 807,393 820,351 833,306 845,261 853,228 857,208 862,235 874,275 891,330 908,384 919,418 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"/>
+   <glyph unicode="L" horiz-adv-x="933" d="M 168,0 L 168,1409 359,1409 359,156 1071,156 1071,0 168,0 Z"/>
+   <glyph unicode="K" horiz-adv-x="1208" d="M 1106,0 L 543,680 359,540 359,0 168,0 168,1409 359,1409 359,703 1038,1409 1263,1409 663,797 1343,0 1106,0 Z"/>
+   <glyph unicode="I" horiz-adv-x="213" d="M 189,0 L 189,1409 380,1409 380,0 189,0 Z"/>
+   <glyph unicode="H" horiz-adv-x="1187" d="M 1121,0 L 1121,653 359,653 359,0 168,0 168,1409 359,1409 359,813 1121,813 1121,1409 1312,1409 1312,0 1121,0 Z"/>
+   <glyph unicode="F" horiz-adv-x="1038" d="M 359,1253 L 359,729 1145,729 1145,571 359,571 359,0 168,0 168,1409 1169,1409 1169,1253 359,1253 Z"/>
+   <glyph unicode="E" horiz-adv-x="1144" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
+   <glyph unicode="C" horiz-adv-x="1334" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
+   <glyph unicode="A" horiz-adv-x="1377" d="M 1167,0 L 1006,412 364,412 202,0 4,0 579,1409 796,1409 1362,0 1167,0 Z M 685,1265 L 676,1237 C 659,1182 635,1111 602,1024 L 422,561 949,561 768,1026 C 749,1072 731,1124 712,1182 L 685,1265 Z"/>
+   <glyph unicode="-" horiz-adv-x="509" d="M 91,464 L 91,624 591,624 591,464 91,464 Z"/>
+   <glyph unicode=" " horiz-adv-x="572"/>
+  </font>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <g class="Page">
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id3">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15299" y="19899" width="3803" height="2327"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 17200,22224 L 15300,22224 15300,19900 19100,19900 19100,22224 17200,22224 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17200,22224 L 15300,22224 15300,19900 19100,19900 19100,22224 17200,22224 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="16017" y="20927"><tspan fill="rgb(255,255,255)" stroke="none">OP-TEE</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15915" y="21638"><tspan fill="rgb(255,255,255)" stroke="none">Common</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id4">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1899" y="20999" width="13003" height="1203"/>
+    <path fill="rgb(65,65,65)" stroke="none" d="M 8400,22200 L 1900,22200 1900,21000 14900,21000 14900,22200 8400,22200 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 8400,22200 L 1900,22200 1900,21000 14900,21000 14900,22200 8400,22200 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="4664" y="21821"><tspan fill="rgb(255,255,255)" stroke="none">Hypervisor                         </tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id5">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6199" y="16223" width="3903" height="1079"/>
+    <path fill="rgb(130,90,155)" stroke="none" d="M 8150,17300 L 6200,17300 6200,16224 10100,16224 10100,17300 8150,17300 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 8150,17300 L 6200,17300 6200,16224 10100,16224 10100,17300 8150,17300 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="7111" y="16983"><tspan fill="rgb(0,0,0)" stroke="none">Flatpak</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id6">
+    <rect class="BoundingBox" stroke="none" fill="none" x="10499" y="15199" width="4403" height="2103"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 12700,17300 L 10500,17300 10500,15200 14900,15200 14900,17300 12700,17300 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 12700,17300 L 10500,17300 10500,15200 14900,15200 14900,17300 12700,17300 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="11642" y="16115"><tspan fill="rgb(0,0,0)" stroke="none">System</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="11644" y="16826"><tspan fill="rgb(0,0,0)" stroke="none">Service</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id7">
+    <rect class="BoundingBox" stroke="none" fill="none" x="10499" y="18599" width="4403" height="2403"/>
+    <path fill="rgb(90,90,90)" stroke="none" d="M 12700,21000 L 10500,21000 10500,18600 14900,18600 14900,21000 12700,21000 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 12700,21000 L 10500,21000 10500,18600 14900,18600 14900,21000 12700,21000 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10878" y="19665"><tspan fill="rgb(255,255,255)" stroke="none">Linux            </tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10719" y="20376"><tspan fill="rgb(255,255,255)" stroke="none">Kernel            </tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id8">
+    <rect class="BoundingBox" stroke="none" fill="none" x="12799" y="18799" width="1903" height="1003"/>
+    <path fill="rgb(190,190,190)" stroke="none" d="M 13750,19800 L 12800,19800 12800,18800 14700,18800 14700,19800 13750,19800 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13750,19800 L 12800,19800 12800,18800 14700,18800 14700,19800 13750,19800 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="13132" y="19521"><tspan fill="rgb(0,0,0)" stroke="none">TEE</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id9">
+    <rect class="BoundingBox" stroke="none" fill="none" x="10499" y="17299" width="4403" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 12700,18600 L 10500,18600 10500,17300 14900,17300 14900,18600 12700,18600 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 12700,18600 L 10500,18600 10500,17300 14900,17300 14900,18600 12700,18600 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10602" y="18171"><tspan fill="rgb(255,255,255)" stroke="none">TEE Client API</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id10">
+    <rect class="BoundingBox" stroke="none" fill="none" x="12799" y="19799" width="1903" height="1003"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 13750,20800 L 12800,20800 12800,19800 14700,19800 14700,20800 13750,20800 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13750,20800 L 12800,20800 12800,19800 14700,19800 14700,20800 13750,20800 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="12958" y="20521"><tspan fill="rgb(255,255,255)" stroke="none">driver</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id11">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15299" y="17299" width="3803" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 17200,18600 L 15300,18600 15300,17300 19100,17300 19100,18600 17200,18600 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17200,18600 L 15300,18600 15300,17300 19100,17300 19100,18600 17200,18600 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15562" y="18171"><tspan fill="rgb(255,255,255)" stroke="none">Internal API</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id12">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15050" y="14450" width="101" height="7825"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 15100,22224 L 15100,14500"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id13">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1899" y="22199" width="17203" height="1203"/>
+    <path fill="rgb(65,65,65)" stroke="none" d="M 10500,23400 L 1900,23400 1900,22200 19100,22200 19100,23400 10500,23400 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 10500,23400 L 1900,23400 1900,22200 19100,22200 19100,23400 10500,23400 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="7241" y="23021"><tspan fill="rgb(255,255,255)" stroke="none">ARM Trusted Firmware</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id14">
+    <rect class="BoundingBox" stroke="none" fill="none" x="10250" y="14450" width="101" height="6601"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 10300,21000 L 10300,14500"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id15">
+    <rect class="BoundingBox" stroke="none" fill="none" x="12099" y="21099" width="2703" height="1003"/>
+    <path fill="rgb(190,190,190)" stroke="none" d="M 13450,22100 L 12100,22100 12100,21100 14800,21100 14800,22100 13450,22100 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13450,22100 L 12100,22100 12100,21100 14800,21100 14800,22100 13450,22100 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="12218" y="21821"><tspan fill="rgb(0,0,0)" stroke="none">Mediator</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id16">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15299" y="18599" width="3803" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 17200,19900 L 15300,19900 15300,18600 19100,18600 19100,19900 17200,19900 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17200,19900 L 15300,19900 15300,18600 19100,18600 19100,19900 17200,19900 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15401" y="19471"><tspan fill="rgb(255,255,255)" stroke="none">TEE Context</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id17">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1899" y="17299" width="8203" height="3703"/>
+    <path fill="rgb(90,90,90)" stroke="none" d="M 6000,21000 L 1900,21000 1900,17300 10100,17300 10100,21000 6000,21000 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 6000,21000 L 1900,21000 1900,17300 10100,17300 10100,21000 6000,21000 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="5156" y="19015"><tspan fill="rgb(255,255,255)" stroke="none">Linux </tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="5541" y="19726"><tspan fill="rgb(255,255,255)" stroke="none">OS</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id18">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15299" y="15199" width="3803" height="2103"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 17200,17300 L 15300,17300 15300,15200 19100,15200 19100,17300 17200,17300 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17200,17300 L 15300,17300 15300,15200 19100,15200 19100,17300 17200,17300 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="16138" y="16115"><tspan fill="rgb(0,0,0)" stroke="none">Trusted</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15653" y="16826"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.ConnectorShape">
+   <g id="id19">
+    <rect class="BoundingBox" stroke="none" fill="none" x="7858" y="16224" width="3983" height="5601"/>
+    <g style="opacity: 0.698039215686274">
+     <path fill="none" stroke="rgb(255,51,51)" stroke-width="200" stroke-linejoin="round" d="M 11591,17799 C 11394,22956 8332,23437 8157,16789"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 11340,17795 L 11600,17300 11840,17805 11340,17795 Z"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 7858,16828 L 8150,16224 8458,16820 7858,16828 Z"/>
+    </g>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.ConnectorShape">
+   <g id="id20">
+    <rect class="BoundingBox" stroke="none" fill="none" x="13555" y="17300" width="3939" height="5739"/>
+    <g style="opacity: 0.698039215686274">
+     <path fill="none" stroke="rgb(255,51,51)" stroke-width="200" stroke-linejoin="round" d="M 13806,17806 C 13958,24640 17025,24639 17193,17858"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 13556,17803 L 13800,17300 14056,17797 13556,17803 Z"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 16892,17896 L 17200,17300 17492,17904 16892,17896 Z"/>
+    </g>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id21">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1899" y="15223" width="3903" height="2103"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 3850,17324 L 1900,17324 1900,15224 5800,15224 5800,17324 3850,17324 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 3850,17324 L 1900,17324 1900,15224 5800,15224 5800,17324 3850,17324 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2303" y="16495"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id22">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6199" y="15223" width="3903" height="1003"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 8150,16224 L 6200,16224 6200,15224 10100,15224 10100,16224 8150,16224 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 8150,16224 L 6200,16224 6200,15224 10100,15224 10100,16224 8150,16224 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="6478" y="15945"><tspan fill="rgb(0,0,0)" stroke="none">Flatpak App</tspan></tspan></tspan></text>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/static/images/op-tee_hypervisor.svg b/static/images/op-tee_hypervisor.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c6ce135c202717b9a06606a0f6ce51f5f7cbe292
--- /dev/null
+++ b/static/images/op-tee_hypervisor.svg
@@ -0,0 +1,305 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="176.03mm" height="92.02mm" viewBox="1599 1201 17603 9202" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1863" descent="445"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="y" horiz-adv-x="1038" d="M 191,-425 C 142,-425 100,-421 67,-414 L 67,-279 C 92,-283 120,-285 151,-285 263,-285 352,-203 417,-38 L 434,5 5,1082 197,1082 425,484 C 428,475 432,464 437,451 442,438 457,394 482,320 507,246 521,205 523,196 L 593,393 830,1082 1020,1082 604,0 C 559,-115 518,-201 479,-258 440,-314 398,-356 351,-384 304,-411 250,-425 191,-425 Z"/>
+   <glyph unicode="x" horiz-adv-x="996" d="M 801,0 L 510,444 217,0 23,0 408,556 41,1082 240,1082 510,661 778,1082 979,1082 612,558 1002,0 801,0 Z"/>
+   <glyph unicode="w" horiz-adv-x="1525" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
+   <glyph unicode="v" horiz-adv-x="1038" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="890" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="552" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
+   <glyph unicode="s" horiz-adv-x="912" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="p" horiz-adv-x="932" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
+   <glyph unicode="o" horiz-adv-x="974" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="890" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="m" horiz-adv-x="1462" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="213" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="i" horiz-adv-x="213" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
+   <glyph unicode="e" horiz-adv-x="974" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="d" horiz-adv-x="932" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
+   <glyph unicode="c" horiz-adv-x="890" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,174 752,209 778,262 788,334 L 970,322 C 956,218 912,135 837,73 762,11 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
+   <glyph unicode="a" horiz-adv-x="1059" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="T" horiz-adv-x="1187" d="M 720,1253 L 720,0 530,0 530,1253 46,1253 46,1409 1204,1409 1204,1253 720,1253 Z"/>
+   <glyph unicode="R" horiz-adv-x="1250" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 990,1409 1112,1374 1199,1303 1285,1232 1328,1133 1328,1006 1328,901 1298,813 1237,742 1176,671 1091,626 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1086 1108,1149 1053,1192 997,1235 917,1256 812,1256 L 359,1256 359,736 820,736 C 921,736 999,760 1054,807 1109,854 1136,919 1136,1004 Z"/>
+   <glyph unicode="P" horiz-adv-x="1123" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
+   <glyph unicode="O" horiz-adv-x="1419" d="M 1495,711 C 1495,564 1467,435 1411,324 1354,213 1273,128 1168,69 1063,10 938,-20 795,-20 650,-20 526,9 421,68 316,127 235,212 180,323 125,434 97,563 97,711 97,936 159,1113 282,1240 405,1367 577,1430 797,1430 940,1430 1065,1402 1170,1345 1275,1288 1356,1205 1412,1096 1467,987 1495,859 1495,711 Z M 1300,711 C 1300,886 1256,1024 1169,1124 1081,1224 957,1274 797,1274 636,1274 511,1225 423,1126 335,1027 291,889 291,711 291,534 336,394 425,291 514,187 637,135 795,135 958,135 1083,185 1170,286 1257,386 1300,528 1300,711 Z"/>
+   <glyph unicode="M" horiz-adv-x="1398" d="M 1366,0 L 1366,940 C 1366,1044 1369,1144 1375,1240 1342,1121 1313,1027 1287,960 L 923,0 789,0 420,960 364,1130 331,1240 334,1129 338,940 338,0 168,0 168,1409 419,1409 794,432 C 807,393 820,351 833,306 845,261 853,228 857,208 862,235 874,275 891,330 908,384 919,418 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"/>
+   <glyph unicode="L" horiz-adv-x="933" d="M 168,0 L 168,1409 359,1409 359,156 1071,156 1071,0 168,0 Z"/>
+   <glyph unicode="K" horiz-adv-x="1208" d="M 1106,0 L 543,680 359,540 359,0 168,0 168,1409 359,1409 359,703 1038,1409 1263,1409 663,797 1343,0 1106,0 Z"/>
+   <glyph unicode="I" horiz-adv-x="213" d="M 189,0 L 189,1409 380,1409 380,0 189,0 Z"/>
+   <glyph unicode="H" horiz-adv-x="1187" d="M 1121,0 L 1121,653 359,653 359,0 168,0 168,1409 359,1409 359,813 1121,813 1121,1409 1312,1409 1312,0 1121,0 Z"/>
+   <glyph unicode="F" horiz-adv-x="1038" d="M 359,1253 L 359,729 1145,729 1145,571 359,571 359,0 168,0 168,1409 1169,1409 1169,1253 359,1253 Z"/>
+   <glyph unicode="E" horiz-adv-x="1144" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
+   <glyph unicode="C" horiz-adv-x="1334" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
+   <glyph unicode="A" horiz-adv-x="1377" d="M 1167,0 L 1006,412 364,412 202,0 4,0 579,1409 796,1409 1362,0 1167,0 Z M 685,1265 L 676,1237 C 659,1182 635,1111 602,1024 L 422,561 949,561 768,1026 C 749,1072 731,1124 712,1182 L 685,1265 Z"/>
+   <glyph unicode="2" horiz-adv-x="974" d="M 103,0 L 103,127 C 137,205 179,274 228,334 277,393 328,447 382,496 436,544 490,589 543,630 596,671 643,713 686,754 729,795 763,839 790,884 816,929 829,981 829,1038 829,1115 806,1175 761,1218 716,1261 653,1282 572,1282 495,1282 432,1261 383,1220 333,1178 304,1119 295,1044 L 111,1061 C 124,1174 172,1263 255,1330 337,1397 443,1430 572,1430 714,1430 823,1397 900,1330 976,1263 1014,1167 1014,1044 1014,989 1002,935 977,881 952,827 914,773 865,719 816,665 721,581 582,468 505,405 444,349 399,299 354,248 321,200 301,153 L 1036,153 1036,0 103,0 Z"/>
+   <glyph unicode="1" horiz-adv-x="911" d="M 156,0 L 156,153 515,153 515,1237 197,1010 197,1180 530,1409 696,1409 696,153 1039,153 1039,0 156,0 Z"/>
+   <glyph unicode="-" horiz-adv-x="509" d="M 91,464 L 91,624 591,624 591,464 91,464 Z"/>
+   <glyph unicode=" " horiz-adv-x="572"/>
+  </font>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <g class="Page">
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id3">
+    <rect class="BoundingBox" stroke="none" fill="none" x="11199" y="6900" width="8003" height="2327"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 15200,9225 L 11200,9225 11200,6901 19200,6901 19200,9225 15200,9225 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 15200,9225 L 11200,9225 11200,6901 19200,6901 19200,9225 15200,9225 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="14017" y="7928"><tspan fill="rgb(255,255,255)" stroke="none">OP-TEE</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="13915" y="8639"><tspan fill="rgb(255,255,255)" stroke="none">Common</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id4">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1599" y="8000" width="9203" height="1203"/>
+    <path fill="rgb(65,65,65)" stroke="none" d="M 6200,9201 L 1600,9201 1600,8001 10800,8001 10800,9201 6200,9201 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 6200,9201 L 1600,9201 1600,8001 10800,8001 10800,9201 6200,9201 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2464" y="8822"><tspan fill="rgb(255,255,255)" stroke="none">Hypervisor                         </tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id5">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15399" y="2200" width="3803" height="2103"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 17300,4301 L 15400,4301 15400,2201 19200,2201 19200,4301 17300,4301 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17300,4301 L 15400,4301 15400,2201 19200,2201 19200,4301 17300,4301 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="16238" y="3116"><tspan fill="rgb(0,0,0)" stroke="none">Trusted</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15753" y="3827"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id6">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6399" y="2200" width="4403" height="2103"/>
+    <path fill="rgb(130,90,155)" stroke="none" d="M 8600,4301 L 6400,4301 6400,2201 10800,2201 10800,4301 8600,4301 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 8600,4301 L 6400,4301 6400,2201 10800,2201 10800,4301 8600,4301 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="7614" y="3116"><tspan fill="rgb(0,0,0)" stroke="none">Apertis</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="7053" y="3827"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id7">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6399" y="5600" width="4403" height="2403"/>
+    <path fill="rgb(90,90,90)" stroke="none" d="M 8600,8001 L 6400,8001 6400,5601 10800,5601 10800,8001 8600,8001 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 8600,8001 L 6400,8001 6400,5601 10800,5601 10800,8001 8600,8001 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="6778" y="6666"><tspan fill="rgb(255,255,255)" stroke="none">Linux            </tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="6619" y="7377"><tspan fill="rgb(255,255,255)" stroke="none">Kernel            </tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id8">
+    <rect class="BoundingBox" stroke="none" fill="none" x="8699" y="5800" width="1903" height="1003"/>
+    <path fill="rgb(190,190,190)" stroke="none" d="M 9650,6801 L 8700,6801 8700,5801 10600,5801 10600,6801 9650,6801 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 9650,6801 L 8700,6801 8700,5801 10600,5801 10600,6801 9650,6801 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="9032" y="6522"><tspan fill="rgb(0,0,0)" stroke="none">TEE</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id9">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6399" y="4300" width="4403" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 8600,5601 L 6400,5601 6400,4301 10800,4301 10800,5601 8600,5601 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 8600,5601 L 6400,5601 6400,4301 10800,4301 10800,5601 8600,5601 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="6502" y="5172"><tspan fill="rgb(255,255,255)" stroke="none">TEE Client API</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id10">
+    <rect class="BoundingBox" stroke="none" fill="none" x="8699" y="6800" width="1903" height="1003"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 9650,7801 L 8700,7801 8700,6801 10600,6801 10600,7801 9650,7801 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 9650,7801 L 8700,7801 8700,6801 10600,6801 10600,7801 9650,7801 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="8858" y="7522"><tspan fill="rgb(255,255,255)" stroke="none">driver</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id11">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15399" y="4300" width="3803" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 17300,5601 L 15400,5601 15400,4301 19200,4301 19200,5601 17300,5601 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17300,5601 L 15400,5601 15400,4301 19200,4301 19200,5601 17300,5601 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15662" y="5172"><tspan fill="rgb(255,255,255)" stroke="none">Internal API</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id12">
+    <rect class="BoundingBox" stroke="none" fill="none" x="10950" y="1451" width="101" height="7825"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 11000,9225 L 11000,1501"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id13">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1599" y="9200" width="17603" height="1203"/>
+    <path fill="rgb(65,65,65)" stroke="none" d="M 10400,10401 L 1600,10401 1600,9201 19200,9201 19200,10401 10400,10401 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 10400,10401 L 1600,10401 1600,9201 19200,9201 19200,10401 10400,10401 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="7141" y="10022"><tspan fill="rgb(255,255,255)" stroke="none">ARM Trusted Firmware</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id14">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6150" y="1451" width="101" height="6601"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 6200,8001 L 6200,1501"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id15">
+    <rect class="BoundingBox" stroke="none" fill="none" x="5899" y="8100" width="4803" height="1003"/>
+    <path fill="rgb(190,190,190)" stroke="none" d="M 8300,9101 L 5900,9101 5900,8101 10700,8101 10700,9101 8300,9101 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 8300,9101 L 5900,9101 5900,8101 10700,8101 10700,9101 8300,9101 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="6361" y="8822"><tspan fill="rgb(0,0,0)" stroke="none">TEE Mediator</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id16">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15399" y="5600" width="3803" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 17300,6901 L 15400,6901 15400,5601 19200,5601 19200,6901 17300,6901 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17300,6901 L 15400,6901 15400,5601 19200,5601 19200,6901 17300,6901 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15501" y="6472"><tspan fill="rgb(255,255,255)" stroke="none">TEE Context</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id17">
+    <rect class="BoundingBox" stroke="none" fill="none" x="11199" y="5600" width="3803" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 13100,6901 L 11200,6901 11200,5601 15000,5601 15000,6901 13100,6901 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13100,6901 L 11200,6901 11200,5601 15000,5601 15000,6901 13100,6901 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="11301" y="6472"><tspan fill="rgb(255,255,255)" stroke="none">TEE Context</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id18">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1599" y="2200" width="4403" height="2103"/>
+    <path fill="rgb(130,90,155)" stroke="none" d="M 3800,4301 L 1600,4301 1600,2201 6000,2201 6000,4301 3800,4301 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 3800,4301 L 1600,4301 1600,2201 6000,2201 6000,4301 3800,4301 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2814" y="3116"><tspan fill="rgb(0,0,0)" stroke="none">Apertis</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2253" y="3827"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id19">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1599" y="5600" width="4403" height="2403"/>
+    <path fill="rgb(90,90,90)" stroke="none" d="M 3800,8001 L 1600,8001 1600,5601 6000,5601 6000,8001 3800,8001 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 3800,8001 L 1600,8001 1600,5601 6000,5601 6000,8001 3800,8001 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="1978" y="6666"><tspan fill="rgb(255,255,255)" stroke="none">Linux            </tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="1819" y="7377"><tspan fill="rgb(255,255,255)" stroke="none">Kernel            </tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id20">
+    <rect class="BoundingBox" stroke="none" fill="none" x="3899" y="5800" width="1903" height="1003"/>
+    <path fill="rgb(190,190,190)" stroke="none" d="M 4850,6801 L 3900,6801 3900,5801 5800,5801 5800,6801 4850,6801 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 4850,6801 L 3900,6801 3900,5801 5800,5801 5800,6801 4850,6801 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="4232" y="6522"><tspan fill="rgb(0,0,0)" stroke="none">TEE</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id21">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1599" y="4300" width="4403" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 3800,5601 L 1600,5601 1600,4301 6000,4301 6000,5601 3800,5601 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 3800,5601 L 1600,5601 1600,4301 6000,4301 6000,5601 3800,5601 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="1702" y="5172"><tspan fill="rgb(255,255,255)" stroke="none">TEE Client API</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id22">
+    <rect class="BoundingBox" stroke="none" fill="none" x="3899" y="6800" width="1903" height="1003"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 4850,7801 L 3900,7801 3900,6801 5800,6801 5800,7801 4850,7801 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 4850,7801 L 3900,7801 3900,6801 5800,6801 5800,7801 4850,7801 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="4058" y="7522"><tspan fill="rgb(255,255,255)" stroke="none">driver</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id23">
+    <rect class="BoundingBox" stroke="none" fill="none" x="11199" y="2200" width="3803" height="2103"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 13100,4301 L 11200,4301 11200,2201 15000,2201 15000,4301 13100,4301 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13100,4301 L 11200,4301 11200,2201 15000,2201 15000,4301 13100,4301 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="12038" y="3116"><tspan fill="rgb(0,0,0)" stroke="none">Trusted</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="11553" y="3827"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id24">
+    <rect class="BoundingBox" stroke="none" fill="none" x="11199" y="4300" width="3803" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 13100,5601 L 11200,5601 11200,4301 15000,4301 15000,5601 13100,5601 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13100,5601 L 11200,5601 11200,4301 15000,4301 15000,5601 13100,5601 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="11462" y="5172"><tspan fill="rgb(255,255,255)" stroke="none">Internal API</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id25">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15150" y="1451" width="101" height="5501"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 15200,6901 L 15200,1501"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id26">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1599" y="2200" width="4403" height="5803"/>
+    <path fill="rgb(255,255,255)" fill-opacity="0.698" stroke="rgb(255,255,255)" stroke-opacity="0.698" d="M 3800,8001 L 1600,8001 1600,2201 6000,2201 6000,8001 3800,8001 Z"/>
+    <path fill="none" stroke="rgb(65,65,65)" d="M 3800,8001 L 1600,8001 1600,2201 6000,2201 6000,8001 3800,8001 Z"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id27">
+    <rect class="BoundingBox" stroke="none" fill="none" x="11199" y="2200" width="3803" height="4703"/>
+    <path fill="rgb(255,255,255)" fill-opacity="0.698" stroke="rgb(255,255,255)" stroke-opacity="0.698" d="M 13100,6901 L 11200,6901 11200,2201 15000,2201 15000,6901 13100,6901 Z"/>
+    <path fill="none" stroke="rgb(65,65,65)" d="M 13100,6901 L 11200,6901 11200,2201 15000,2201 15000,6901 13100,6901 Z"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.ConnectorShape">
+   <g id="id28">
+    <rect class="BoundingBox" stroke="none" fill="none" x="8364" y="4301" width="9218" height="5768"/>
+    <g style="opacity: 0.498039215686275">
+     <path fill="none" stroke="rgb(255,51,51)" stroke-width="200" stroke-linejoin="round" d="M 8614,4804 C 8999,11684 16875,11683 17284,4835"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 8365,4808 L 8600,4301 8865,4793 8365,4808 Z"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 16981,4891 L 17300,4301 17581,4910 16981,4891 Z"/>
+    </g>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.TextShape">
+   <g id="id29">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1600" y="1201" width="4401" height="963"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2884" y="1902"><tspan fill="rgb(190,190,190)" stroke="none">REE 1</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.TextShape">
+   <g id="id30">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6400" y="1201" width="4401" height="963"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="7684" y="1902"><tspan fill="rgb(190,190,190)" stroke="none">REE 2</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.TextShape">
+   <g id="id31">
+    <rect class="BoundingBox" stroke="none" fill="none" x="11200" y="1201" width="3801" height="963"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="12218" y="1902"><tspan fill="rgb(190,190,190)" stroke="none">TEE 1</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.TextShape">
+   <g id="id32">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15400" y="1201" width="3801" height="963"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="16418" y="1902"><tspan fill="rgb(190,190,190)" stroke="none">TEE 2</tspan></tspan></tspan></text>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/static/images/op-tee_proxy.svg b/static/images/op-tee_proxy.svg
new file mode 100644
index 0000000000000000000000000000000000000000..2de8e5b61b41c79ad2eadb0cd093031331861e08
--- /dev/null
+++ b/static/images/op-tee_proxy.svg
@@ -0,0 +1,244 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="172.03mm" height="89.52mm" viewBox="1999 13650 17203 8952" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1863" descent="445"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="y" horiz-adv-x="1038" d="M 191,-425 C 142,-425 100,-421 67,-414 L 67,-279 C 92,-283 120,-285 151,-285 263,-285 352,-203 417,-38 L 434,5 5,1082 197,1082 425,484 C 428,475 432,464 437,451 442,438 457,394 482,320 507,246 521,205 523,196 L 593,393 830,1082 1020,1082 604,0 C 559,-115 518,-201 479,-258 440,-314 398,-356 351,-384 304,-411 250,-425 191,-425 Z"/>
+   <glyph unicode="x" horiz-adv-x="996" d="M 801,0 L 510,444 217,0 23,0 408,556 41,1082 240,1082 510,661 778,1082 979,1082 612,558 1002,0 801,0 Z"/>
+   <glyph unicode="w" horiz-adv-x="1525" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
+   <glyph unicode="v" horiz-adv-x="1038" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="890" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="552" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
+   <glyph unicode="s" horiz-adv-x="912" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="p" horiz-adv-x="932" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
+   <glyph unicode="o" horiz-adv-x="974" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="890" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="m" horiz-adv-x="1462" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="213" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="i" horiz-adv-x="213" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
+   <glyph unicode="e" horiz-adv-x="974" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="d" horiz-adv-x="932" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
+   <glyph unicode="c" horiz-adv-x="890" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,174 752,209 778,262 788,334 L 970,322 C 956,218 912,135 837,73 762,11 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
+   <glyph unicode="a" horiz-adv-x="1059" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="T" horiz-adv-x="1187" d="M 720,1253 L 720,0 530,0 530,1253 46,1253 46,1409 1204,1409 1204,1253 720,1253 Z"/>
+   <glyph unicode="S" horiz-adv-x="1207" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
+   <glyph unicode="R" horiz-adv-x="1250" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 990,1409 1112,1374 1199,1303 1285,1232 1328,1133 1328,1006 1328,901 1298,813 1237,742 1176,671 1091,626 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1086 1108,1149 1053,1192 997,1235 917,1256 812,1256 L 359,1256 359,736 820,736 C 921,736 999,760 1054,807 1109,854 1136,919 1136,1004 Z"/>
+   <glyph unicode="P" horiz-adv-x="1123" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
+   <glyph unicode="O" horiz-adv-x="1419" d="M 1495,711 C 1495,564 1467,435 1411,324 1354,213 1273,128 1168,69 1063,10 938,-20 795,-20 650,-20 526,9 421,68 316,127 235,212 180,323 125,434 97,563 97,711 97,936 159,1113 282,1240 405,1367 577,1430 797,1430 940,1430 1065,1402 1170,1345 1275,1288 1356,1205 1412,1096 1467,987 1495,859 1495,711 Z M 1300,711 C 1300,886 1256,1024 1169,1124 1081,1224 957,1274 797,1274 636,1274 511,1225 423,1126 335,1027 291,889 291,711 291,534 336,394 425,291 514,187 637,135 795,135 958,135 1083,185 1170,286 1257,386 1300,528 1300,711 Z"/>
+   <glyph unicode="M" horiz-adv-x="1398" d="M 1366,0 L 1366,940 C 1366,1044 1369,1144 1375,1240 1342,1121 1313,1027 1287,960 L 923,0 789,0 420,960 364,1130 331,1240 334,1129 338,940 338,0 168,0 168,1409 419,1409 794,432 C 807,393 820,351 833,306 845,261 853,228 857,208 862,235 874,275 891,330 908,384 919,418 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"/>
+   <glyph unicode="L" horiz-adv-x="933" d="M 168,0 L 168,1409 359,1409 359,156 1071,156 1071,0 168,0 Z"/>
+   <glyph unicode="K" horiz-adv-x="1208" d="M 1106,0 L 543,680 359,540 359,0 168,0 168,1409 359,1409 359,703 1038,1409 1263,1409 663,797 1343,0 1106,0 Z"/>
+   <glyph unicode="I" horiz-adv-x="213" d="M 189,0 L 189,1409 380,1409 380,0 189,0 Z"/>
+   <glyph unicode="H" horiz-adv-x="1187" d="M 1121,0 L 1121,653 359,653 359,0 168,0 168,1409 359,1409 359,813 1121,813 1121,1409 1312,1409 1312,0 1121,0 Z"/>
+   <glyph unicode="F" horiz-adv-x="1038" d="M 359,1253 L 359,729 1145,729 1145,571 359,571 359,0 168,0 168,1409 1169,1409 1169,1253 359,1253 Z"/>
+   <glyph unicode="E" horiz-adv-x="1144" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
+   <glyph unicode="C" horiz-adv-x="1334" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
+   <glyph unicode="A" horiz-adv-x="1377" d="M 1167,0 L 1006,412 364,412 202,0 4,0 579,1409 796,1409 1362,0 1167,0 Z M 685,1265 L 676,1237 C 659,1182 635,1111 602,1024 L 422,561 949,561 768,1026 C 749,1072 731,1124 712,1182 L 685,1265 Z"/>
+   <glyph unicode="-" horiz-adv-x="509" d="M 91,464 L 91,624 591,624 591,464 91,464 Z"/>
+   <glyph unicode=" " horiz-adv-x="572"/>
+  </font>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <g class="Page">
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id3">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15399" y="19099" width="3803" height="2327"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 17300,21424 L 15400,21424 15400,19100 19200,19100 19200,21424 17300,21424 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17300,21424 L 15400,21424 15400,19100 19200,19100 19200,21424 17300,21424 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="16117" y="20127"><tspan fill="rgb(255,255,255)" stroke="none">OP-TEE</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="16015" y="20838"><tspan fill="rgb(255,255,255)" stroke="none">Common</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id4">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1999" y="20199" width="13003" height="1203"/>
+    <path fill="rgb(65,65,65)" stroke="none" d="M 8500,21400 L 2000,21400 2000,20200 15000,20200 15000,21400 8500,21400 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 8500,21400 L 2000,21400 2000,20200 15000,20200 15000,21400 8500,21400 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="4764" y="21021"><tspan fill="rgb(255,255,255)" stroke="none">Hypervisor                         </tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id5">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6299" y="14399" width="3903" height="2103"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 8250,16500 L 6300,16500 6300,14400 10200,14400 10200,16500 8250,16500 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 8250,16500 L 6300,16500 6300,14400 10200,14400 10200,16500 8250,16500 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="6703" y="15671"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id6">
+    <rect class="BoundingBox" stroke="none" fill="none" x="10599" y="14399" width="4403" height="2103"/>
+    <path fill="rgb(130,90,155)" stroke="none" d="M 12800,16500 L 10600,16500 10600,14400 15000,14400 15000,16500 12800,16500 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 12800,16500 L 10600,16500 10600,14400 15000,14400 15000,16500 12800,16500 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="12182" y="15315"><tspan fill="rgb(0,0,0)" stroke="none">TEE</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="11990" y="16026"><tspan fill="rgb(0,0,0)" stroke="none">Proxy</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id7">
+    <rect class="BoundingBox" stroke="none" fill="none" x="10599" y="17799" width="4403" height="2403"/>
+    <path fill="rgb(90,90,90)" stroke="none" d="M 12800,20200 L 10600,20200 10600,17800 15000,17800 15000,20200 12800,20200 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 12800,20200 L 10600,20200 10600,17800 15000,17800 15000,20200 12800,20200 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10978" y="18865"><tspan fill="rgb(255,255,255)" stroke="none">Linux            </tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10819" y="19576"><tspan fill="rgb(255,255,255)" stroke="none">Kernel            </tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id8">
+    <rect class="BoundingBox" stroke="none" fill="none" x="12899" y="17999" width="1903" height="1003"/>
+    <path fill="rgb(190,190,190)" stroke="none" d="M 13850,19000 L 12900,19000 12900,18000 14800,18000 14800,19000 13850,19000 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13850,19000 L 12900,19000 12900,18000 14800,18000 14800,19000 13850,19000 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="13232" y="18721"><tspan fill="rgb(0,0,0)" stroke="none">TEE</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id9">
+    <rect class="BoundingBox" stroke="none" fill="none" x="10599" y="16499" width="4403" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 12800,17800 L 10600,17800 10600,16500 15000,16500 15000,17800 12800,17800 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 12800,17800 L 10600,17800 10600,16500 15000,16500 15000,17800 12800,17800 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10702" y="17371"><tspan fill="rgb(255,255,255)" stroke="none">TEE Client API</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id10">
+    <rect class="BoundingBox" stroke="none" fill="none" x="12899" y="18999" width="1903" height="1003"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 13850,20000 L 12900,20000 12900,19000 14800,19000 14800,20000 13850,20000 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13850,20000 L 12900,20000 12900,19000 14800,19000 14800,20000 13850,20000 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="13058" y="19721"><tspan fill="rgb(255,255,255)" stroke="none">driver</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id11">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15399" y="16499" width="3803" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 17300,17800 L 15400,17800 15400,16500 19200,16500 19200,17800 17300,17800 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17300,17800 L 15400,17800 15400,16500 19200,16500 19200,17800 17300,17800 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15662" y="17371"><tspan fill="rgb(255,255,255)" stroke="none">Internal API</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id12">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15150" y="13650" width="101" height="7825"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 15200,21424 L 15200,13700"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id13">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1999" y="21399" width="17203" height="1203"/>
+    <path fill="rgb(65,65,65)" stroke="none" d="M 10600,22600 L 2000,22600 2000,21400 19200,21400 19200,22600 10600,22600 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 10600,22600 L 2000,22600 2000,21400 19200,21400 19200,22600 10600,22600 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="7341" y="22221"><tspan fill="rgb(255,255,255)" stroke="none">ARM Trusted Firmware</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id14">
+    <rect class="BoundingBox" stroke="none" fill="none" x="10350" y="13650" width="101" height="6601"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 10400,20200 L 10400,13700"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id15">
+    <rect class="BoundingBox" stroke="none" fill="none" x="12199" y="20299" width="2703" height="1003"/>
+    <path fill="rgb(190,190,190)" stroke="none" d="M 13550,21300 L 12200,21300 12200,20300 14900,20300 14900,21300 13550,21300 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13550,21300 L 12200,21300 12200,20300 14900,20300 14900,21300 13550,21300 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="12318" y="21021"><tspan fill="rgb(0,0,0)" stroke="none">Mediator</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id16">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15399" y="17799" width="3803" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 17300,19100 L 15400,19100 15400,17800 19200,17800 19200,19100 17300,19100 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17300,19100 L 15400,19100 15400,17800 19200,17800 19200,19100 17300,19100 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15501" y="18671"><tspan fill="rgb(255,255,255)" stroke="none">TEE Context</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id17">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6050" y="13650" width="101" height="6601"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 6100,20200 L 6100,13700"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id18">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6299" y="16499" width="3903" height="3703"/>
+    <path fill="rgb(90,90,90)" stroke="none" d="M 8250,20200 L 6300,20200 6300,16500 10200,16500 10200,20200 8250,20200 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 8250,20200 L 6300,20200 6300,16500 10200,16500 10200,20200 8250,20200 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="6665" y="18215"><tspan fill="rgb(255,255,255)" stroke="none">Alternative </tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="7791" y="18926"><tspan fill="rgb(255,255,255)" stroke="none">OS</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id19">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1999" y="16499" width="3903" height="3703"/>
+    <path fill="rgb(90,90,90)" stroke="none" d="M 3950,20200 L 2000,20200 2000,16500 5900,16500 5900,20200 3950,20200 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 3950,20200 L 2000,20200 2000,16500 5900,16500 5900,20200 3950,20200 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2365" y="18215"><tspan fill="rgb(255,255,255)" stroke="none">Alternative </tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="3491" y="18926"><tspan fill="rgb(255,255,255)" stroke="none">OS</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id20">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15399" y="14399" width="3803" height="2103"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 17300,16500 L 15400,16500 15400,14400 19200,14400 19200,16500 17300,16500 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17300,16500 L 15400,16500 15400,14400 19200,14400 19200,16500 17300,16500 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="16238" y="15315"><tspan fill="rgb(0,0,0)" stroke="none">Trusted</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15753" y="16026"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.ConnectorShape">
+   <g id="id21">
+    <rect class="BoundingBox" stroke="none" fill="none" x="7962" y="16500" width="3980" height="4589"/>
+    <g style="opacity: 0.698039215686274">
+     <path fill="none" stroke="rgb(255,51,51)" stroke-width="200" stroke-linejoin="round" d="M 11691,17002 C 11498,22307 8476,22306 8261,17061"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 11441,16995 L 11700,16500 11940,17005 11441,16995 Z"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 7963,17106 L 8250,16500 8563,17093 7963,17106 Z"/>
+    </g>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.ConnectorShape">
+   <g id="id22">
+    <rect class="BoundingBox" stroke="none" fill="none" x="13655" y="16500" width="3939" height="5739"/>
+    <g style="opacity: 0.698039215686274">
+     <path fill="none" stroke="rgb(255,51,51)" stroke-width="200" stroke-linejoin="round" d="M 13906,17006 C 14058,23840 17125,23839 17293,17058"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 13656,17003 L 13900,16500 14156,16997 13656,17003 Z"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 16992,17096 L 17300,16500 17592,17104 16992,17096 Z"/>
+    </g>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id23">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1999" y="14399" width="3903" height="2103"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 3950,16500 L 2000,16500 2000,14400 5900,14400 5900,16500 3950,16500 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 3950,16500 L 2000,16500 2000,14400 5900,14400 5900,16500 3950,16500 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2403" y="15671"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/static/images/op-tee_tunnel.svg b/static/images/op-tee_tunnel.svg
new file mode 100644
index 0000000000000000000000000000000000000000..404599da4363ad799bb7a9ec92171f5b9cee81b3
--- /dev/null
+++ b/static/images/op-tee_tunnel.svg
@@ -0,0 +1,244 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="172.03mm" height="89.52mm" viewBox="1999 13626 17203 8952" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1863" descent="445"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="y" horiz-adv-x="1038" d="M 191,-425 C 142,-425 100,-421 67,-414 L 67,-279 C 92,-283 120,-285 151,-285 263,-285 352,-203 417,-38 L 434,5 5,1082 197,1082 425,484 C 428,475 432,464 437,451 442,438 457,394 482,320 507,246 521,205 523,196 L 593,393 830,1082 1020,1082 604,0 C 559,-115 518,-201 479,-258 440,-314 398,-356 351,-384 304,-411 250,-425 191,-425 Z"/>
+   <glyph unicode="x" horiz-adv-x="996" d="M 801,0 L 510,444 217,0 23,0 408,556 41,1082 240,1082 510,661 778,1082 979,1082 612,558 1002,0 801,0 Z"/>
+   <glyph unicode="w" horiz-adv-x="1525" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
+   <glyph unicode="v" horiz-adv-x="1038" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="890" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="552" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
+   <glyph unicode="s" horiz-adv-x="912" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="p" horiz-adv-x="932" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
+   <glyph unicode="o" horiz-adv-x="974" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="890" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="m" horiz-adv-x="1462" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="213" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="i" horiz-adv-x="213" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
+   <glyph unicode="e" horiz-adv-x="974" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
+   <glyph unicode="d" horiz-adv-x="932" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
+   <glyph unicode="c" horiz-adv-x="890" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,174 752,209 778,262 788,334 L 970,322 C 956,218 912,135 837,73 762,11 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
+   <glyph unicode="a" horiz-adv-x="1059" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="V" horiz-adv-x="1377" d="M 782,0 L 584,0 9,1409 210,1409 600,417 684,168 768,417 1156,1409 1357,1409 782,0 Z"/>
+   <glyph unicode="T" horiz-adv-x="1187" d="M 720,1253 L 720,0 530,0 530,1253 46,1253 46,1409 1204,1409 1204,1253 720,1253 Z"/>
+   <glyph unicode="S" horiz-adv-x="1207" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
+   <glyph unicode="R" horiz-adv-x="1250" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 990,1409 1112,1374 1199,1303 1285,1232 1328,1133 1328,1006 1328,901 1298,813 1237,742 1176,671 1091,626 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1086 1108,1149 1053,1192 997,1235 917,1256 812,1256 L 359,1256 359,736 820,736 C 921,736 999,760 1054,807 1109,854 1136,919 1136,1004 Z"/>
+   <glyph unicode="P" horiz-adv-x="1123" d="M 1258,985 C 1258,852 1215,746 1128,667 1041,588 922,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 919,1409 1041,1372 1128,1298 1215,1224 1258,1120 1258,985 Z M 1066,983 C 1066,1165 957,1256 738,1256 L 359,1256 359,700 746,700 C 959,700 1066,794 1066,983 Z"/>
+   <glyph unicode="O" horiz-adv-x="1419" d="M 1495,711 C 1495,564 1467,435 1411,324 1354,213 1273,128 1168,69 1063,10 938,-20 795,-20 650,-20 526,9 421,68 316,127 235,212 180,323 125,434 97,563 97,711 97,936 159,1113 282,1240 405,1367 577,1430 797,1430 940,1430 1065,1402 1170,1345 1275,1288 1356,1205 1412,1096 1467,987 1495,859 1495,711 Z M 1300,711 C 1300,886 1256,1024 1169,1124 1081,1224 957,1274 797,1274 636,1274 511,1225 423,1126 335,1027 291,889 291,711 291,534 336,394 425,291 514,187 637,135 795,135 958,135 1083,185 1170,286 1257,386 1300,528 1300,711 Z"/>
+   <glyph unicode="N" horiz-adv-x="1187" d="M 1082,0 L 328,1200 333,1103 338,936 338,0 168,0 168,1409 390,1409 1152,201 C 1144,332 1140,426 1140,485 L 1140,1409 1312,1409 1312,0 1082,0 Z"/>
+   <glyph unicode="M" horiz-adv-x="1398" d="M 1366,0 L 1366,940 C 1366,1044 1369,1144 1375,1240 1342,1121 1313,1027 1287,960 L 923,0 789,0 420,960 364,1130 331,1240 334,1129 338,940 338,0 168,0 168,1409 419,1409 794,432 C 807,393 820,351 833,306 845,261 853,228 857,208 862,235 874,275 891,330 908,384 919,418 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"/>
+   <glyph unicode="L" horiz-adv-x="933" d="M 168,0 L 168,1409 359,1409 359,156 1071,156 1071,0 168,0 Z"/>
+   <glyph unicode="K" horiz-adv-x="1208" d="M 1106,0 L 543,680 359,540 359,0 168,0 168,1409 359,1409 359,703 1038,1409 1263,1409 663,797 1343,0 1106,0 Z"/>
+   <glyph unicode="I" horiz-adv-x="213" d="M 189,0 L 189,1409 380,1409 380,0 189,0 Z"/>
+   <glyph unicode="H" horiz-adv-x="1187" d="M 1121,0 L 1121,653 359,653 359,0 168,0 168,1409 359,1409 359,813 1121,813 1121,1409 1312,1409 1312,0 1121,0 Z"/>
+   <glyph unicode="F" horiz-adv-x="1038" d="M 359,1253 L 359,729 1145,729 1145,571 359,571 359,0 168,0 168,1409 1169,1409 1169,1253 359,1253 Z"/>
+   <glyph unicode="E" horiz-adv-x="1144" d="M 168,0 L 168,1409 1237,1409 1237,1253 359,1253 359,801 1177,801 1177,647 359,647 359,156 1278,156 1278,0 168,0 Z"/>
+   <glyph unicode="C" horiz-adv-x="1334" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
+   <glyph unicode="A" horiz-adv-x="1377" d="M 1167,0 L 1006,412 364,412 202,0 4,0 579,1409 796,1409 1362,0 1167,0 Z M 685,1265 L 676,1237 C 659,1182 635,1111 602,1024 L 422,561 949,561 768,1026 C 749,1072 731,1124 712,1182 L 685,1265 Z"/>
+   <glyph unicode="-" horiz-adv-x="509" d="M 91,464 L 91,624 591,624 591,464 91,464 Z"/>
+   <glyph unicode=" " horiz-adv-x="572"/>
+  </font>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+  <g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
+  </g>
+ </defs>
+ <g class="Page">
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id3">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15399" y="17799" width="3803" height="3603"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 17300,21400 L 15400,21400 15400,17800 19200,17800 19200,21400 17300,21400 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17300,21400 L 15400,21400 15400,17800 19200,17800 19200,21400 17300,21400 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="16174" y="19465"><tspan fill="rgb(255,255,255)" stroke="none">Non-HV</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="16117" y="20176"><tspan fill="rgb(255,255,255)" stroke="none">OP-TEE</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id4">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1999" y="20175" width="13003" height="1203"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 8500,21376 L 2000,21376 2000,20176 15000,20176 15000,21376 8500,21376 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 8500,21376 L 2000,21376 2000,20176 15000,20176 15000,21376 8500,21376 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="4245" y="20997"><tspan fill="rgb(0,0,0)" stroke="none">Alternative Hypervisor             </tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id5">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6299" y="14375" width="3903" height="2103"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 8250,16476 L 6300,16476 6300,14376 10200,14376 10200,16476 8250,16476 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 8250,16476 L 6300,16476 6300,14376 10200,14376 10200,16476 8250,16476 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="6703" y="15647"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id6">
+    <rect class="BoundingBox" stroke="none" fill="none" x="10599" y="14375" width="4403" height="2103"/>
+    <path fill="rgb(130,90,155)" stroke="none" d="M 12800,16476 L 10600,16476 10600,14376 15000,14376 15000,16476 12800,16476 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 12800,16476 L 10600,16476 10600,14376 15000,14376 15000,16476 12800,16476 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="12182" y="15291"><tspan fill="rgb(0,0,0)" stroke="none">TEE</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="11990" y="16002"><tspan fill="rgb(0,0,0)" stroke="none">Proxy</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id7">
+    <rect class="BoundingBox" stroke="none" fill="none" x="10599" y="17775" width="4403" height="2403"/>
+    <path fill="rgb(90,90,90)" stroke="none" d="M 12800,20176 L 10600,20176 10600,17776 15000,17776 15000,20176 12800,20176 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 12800,20176 L 10600,20176 10600,17776 15000,17776 15000,20176 12800,20176 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10978" y="18841"><tspan fill="rgb(255,255,255)" stroke="none">Linux            </tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10819" y="19552"><tspan fill="rgb(255,255,255)" stroke="none">Kernel            </tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id8">
+    <rect class="BoundingBox" stroke="none" fill="none" x="12899" y="17975" width="1903" height="1003"/>
+    <path fill="rgb(190,190,190)" stroke="none" d="M 13850,18976 L 12900,18976 12900,17976 14800,17976 14800,18976 13850,18976 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13850,18976 L 12900,18976 12900,17976 14800,17976 14800,18976 13850,18976 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="13232" y="18697"><tspan fill="rgb(0,0,0)" stroke="none">TEE</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id9">
+    <rect class="BoundingBox" stroke="none" fill="none" x="10599" y="16475" width="4403" height="1303"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 12800,17776 L 10600,17776 10600,16476 15000,16476 15000,17776 12800,17776 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 12800,17776 L 10600,17776 10600,16476 15000,16476 15000,17776 12800,17776 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10702" y="17347"><tspan fill="rgb(255,255,255)" stroke="none">TEE Client API</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id10">
+    <rect class="BoundingBox" stroke="none" fill="none" x="12899" y="18975" width="1903" height="1003"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 13850,19976 L 12900,19976 12900,18976 14800,18976 14800,19976 13850,19976 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13850,19976 L 12900,19976 12900,18976 14800,18976 14800,19976 13850,19976 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="13058" y="19697"><tspan fill="rgb(255,255,255)" stroke="none">driver</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id11">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15399" y="16475" width="3803" height="1327"/>
+    <path fill="rgb(58,90,128)" stroke="none" d="M 17300,17800 L 15400,17800 15400,16476 19200,16476 19200,17800 17300,17800 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17300,17800 L 15400,17800 15400,16476 19200,16476 19200,17800 17300,17800 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15662" y="17359"><tspan fill="rgb(255,255,255)" stroke="none">Internal API</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id12">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15150" y="13626" width="101" height="7825"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 15200,21400 L 15200,13676"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id13">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1999" y="21375" width="17203" height="1203"/>
+    <path fill="rgb(65,65,65)" stroke="none" d="M 10600,22576 L 2000,22576 2000,21376 19200,21376 19200,22576 10600,22576 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 10600,22576 L 2000,22576 2000,21376 19200,21376 19200,22576 10600,22576 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="7341" y="22197"><tspan fill="rgb(255,255,255)" stroke="none">ARM Trusted Firmware</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id14">
+    <rect class="BoundingBox" stroke="none" fill="none" x="10350" y="13626" width="101" height="6601"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 10400,20176 L 10400,13676"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id15">
+    <rect class="BoundingBox" stroke="none" fill="none" x="11299" y="20275" width="3603" height="1003"/>
+    <path fill="rgb(190,190,190)" stroke="none" d="M 13100,21276 L 11300,21276 11300,20276 14900,20276 14900,21276 13100,21276 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 13100,21276 L 11300,21276 11300,20276 14900,20276 14900,21276 13100,21276 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="11445" y="20997"><tspan fill="rgb(0,0,0)" stroke="none">TEE Tunnel</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.LineShape">
+   <g id="id16">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6050" y="13626" width="101" height="6601"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="100" stroke-linejoin="round" d="M 6100,20176 L 6100,13676"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id17">
+    <rect class="BoundingBox" stroke="none" fill="none" x="6299" y="16475" width="3903" height="3703"/>
+    <path fill="rgb(90,90,90)" stroke="none" d="M 8250,20176 L 6300,20176 6300,16476 10200,16476 10200,20176 8250,20176 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 8250,20176 L 6300,20176 6300,16476 10200,16476 10200,20176 8250,20176 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="6665" y="18191"><tspan fill="rgb(255,255,255)" stroke="none">Alternative </tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="7791" y="18902"><tspan fill="rgb(255,255,255)" stroke="none">OS</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id18">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1999" y="16475" width="3903" height="3703"/>
+    <path fill="rgb(90,90,90)" stroke="none" d="M 3950,20176 L 2000,20176 2000,16476 5900,16476 5900,20176 3950,20176 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 3950,20176 L 2000,20176 2000,16476 5900,16476 5900,20176 3950,20176 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2365" y="18191"><tspan fill="rgb(255,255,255)" stroke="none">Alternative </tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="3491" y="18902"><tspan fill="rgb(255,255,255)" stroke="none">OS</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id19">
+    <rect class="BoundingBox" stroke="none" fill="none" x="15399" y="14375" width="3803" height="2103"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 17300,16476 L 15400,16476 15400,14376 19200,14376 19200,16476 17300,16476 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 17300,16476 L 15400,16476 15400,14376 19200,14376 19200,16476 17300,16476 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="16238" y="15291"><tspan fill="rgb(0,0,0)" stroke="none">Trusted</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15753" y="16002"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.ConnectorShape">
+   <g id="id20">
+    <rect class="BoundingBox" stroke="none" fill="none" x="7962" y="16476" width="3980" height="4589"/>
+    <g style="opacity: 0.698039215686274">
+     <path fill="none" stroke="rgb(255,51,51)" stroke-width="200" stroke-linejoin="round" d="M 11691,16978 C 11498,22283 8476,22282 8261,17037"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 11441,16971 L 11700,16476 11940,16981 11441,16971 Z"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 7963,17082 L 8250,16476 8563,17069 7963,17082 Z"/>
+    </g>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.CustomShape">
+   <g id="id21">
+    <rect class="BoundingBox" stroke="none" fill="none" x="1999" y="14375" width="3903" height="2103"/>
+    <path fill="rgb(230,125,30)" stroke="none" d="M 3950,16476 L 2000,16476 2000,14376 5900,14376 5900,16476 3950,16476 Z"/>
+    <path fill="none" stroke="rgb(0,0,0)" d="M 3950,16476 L 2000,16476 2000,14376 5900,14376 5900,16476 3950,16476 Z"/>
+    <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="2403" y="15647"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.ConnectorShape">
+   <g id="id22">
+    <rect class="BoundingBox" stroke="none" fill="none" x="14349" y="21026" width="2403" height="1239"/>
+    <path fill="none" stroke="rgb(190,190,190)" stroke-width="500" stroke-linejoin="round" d="M 14599,21276 C 14599,22270 16501,22208 16501,21400"/>
+   </g>
+  </g>
+  <g class="com.sun.star.drawing.ConnectorShape">
+   <g id="id23">
+    <rect class="BoundingBox" stroke="none" fill="none" x="13655" y="16476" width="3939" height="5739"/>
+    <g style="opacity: 0.698039215686274">
+     <path fill="none" stroke="rgb(255,51,51)" stroke-width="200" stroke-linejoin="round" d="M 13906,16982 C 14058,23816 17125,23815 17293,17034"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 13656,16979 L 13900,16476 14156,16973 13656,16979 Z"/>
+     <path fill="rgb(255,51,51)" stroke="none" d="M 16992,17072 L 17300,16476 17592,17080 16992,17072 Z"/>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file