ReykorSlave/Block_diagram/reykor.drawio - draw.io_files/saved_resource.html

447 lines
409 KiB
HTML

<!DOCTYPE html>
<!-- saved from url=(0069)https://app.diagrams.net/?embed=1&proto=json&forceMigration=undefined -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>draw.io</title>
<meta name="application-name" content="diagrams.net"><meta name="apple-mobile-web-app-title" content="diagrams.net">
<meta name="Description" content="draw.io is free online diagram software for making flowcharts, process diagrams, org charts, UML, ER and network diagrams">
<meta name="Keywords" content="drawio, diagram, online, flow chart, flowchart maker, uml, erd">
<meta itemprop="name" content="draw.io - free flowchart maker and diagrams online">
<meta itemprop="description" content="draw.io is a free online diagramming application and flowchart maker . You can use it to create UML, entity relationship,
org charts, BPMN and BPM, database schema and networks. Also possible are telecommunication network, workflow, flowcharts, maps overlays and GIS, electronic
circuit and social network diagrams.">
<meta itemprop="image" content="https://lh4.googleusercontent.com/-cLKEldMbT_E/Tx8qXDuw6eI/AAAAAAAAAAs/Ke0pnlk8Gpg/w500-h344-k/BPMN%2Bdiagram%2Brc2f.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="msapplication-config" content="images/browserconfig.xml">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#d89000">
<script type="text/javascript" defer="true" src="./extensions.min.js.download"></script><script type="text/javascript" defer="true" src="./stencils.min.js.download"></script><script type="text/javascript" defer="true" src="./shapes-14-6-5.min.js.download"></script><script type="text/javascript" defer="true" src="./PostConfig.js.download"></script><script type="text/javascript" defer="true" src="./app.min.js.download"></script><script type="text/javascript" defer="true" src="./PreConfig.js.download"></script><script id="geBootstrap" type="text/javascript">
/**
* URL Parameters and protocol description are here:
*
* https://www.drawio.com/doc/faq/supported-url-parameters
*
* Parameters for developers:
*
* - dev=1: For developers only
* - test=1: For developers only
* - export=URL for export: For developers only
* - ignoremime=1: For developers only (see DriveClient.js). Use Cmd-S to override mime.
* - createindex=1: For developers only (see etc/build/README)
* - filesupport=0: For developers only (see Editor.js in core)
* - savesidebar=1: For developers only (see Sidebar.js)
* - pages=1: For developers only (see Pages.js)
* - lic=email: For developers only (see LicenseServlet.java)
* --
* - networkshapes=1: For testing network shapes (temporary)
*/
var urlParams = (function()
{
var result = new Object();
var params = window.location.search.slice(1).split('&');
for (var i = 0; i < params.length; i++)
{
var idx = params[i].indexOf('=');
if (idx > 0)
{
result[params[i].substring(0, idx)] = params[i].substring(idx + 1);
}
}
return result;
})();
// Forces CDN caches by passing URL parameters via URL hash
if (window.location.hash != null && window.location.hash.substring(0, 2) == '#P')
{
try
{
urlParams = JSON.parse(decodeURIComponent(window.location.hash.substring(2)));
if (urlParams.hash != null)
{
window.location.hash = urlParams.hash;
}
}
catch (e)
{
// ignore
}
}
// Global variable for desktop
var mxIsElectron = navigator.userAgent != null && navigator.userAgent.toLowerCase().indexOf(' electron/') > -1 &&
navigator.userAgent.indexOf(' draw.io/') > -1;
// Redirects page if required
if (urlParams['dev'] != '1')
{
(function()
{
var proto = window.location.protocol;
if (!mxIsElectron)
{
var host = window.location.host;
// Redirects apex, drive and rt to www
if (host === 'draw.io' || host === 'rt.draw.io' || host === 'drive.draw.io')
{
host = 'www.draw.io';
}
var href = proto + '//' + host + window.location.href.substring(
window.location.protocol.length +
window.location.host.length + 2);
// Redirects if href changes
if (href != window.location.href)
{
window.location.href = href;
}
}
})();
}
/**
* Adds meta tag to the page.
*/
function mxmeta(name, content, httpEquiv)
{
try
{
var s = document.createElement('meta');
if (name != null)
{
s.setAttribute('name', name);
}
s.setAttribute('content', content);
if (httpEquiv != null)
{
s.setAttribute('http-equiv', httpEquiv);
}
var t = document.getElementsByTagName('meta')[0];
t.parentNode.insertBefore(s, t);
}
catch (e)
{
// ignore
}
};
/**
* Synchronously adds scripts to the page.
*/
function mxscript(src, onLoad, id, dataAppKey, noWrite, onError)
{
var defer = onLoad == null && !noWrite;
if ((urlParams['dev'] != '1' && typeof document.createElement('canvas').getContext === "function") ||
onLoad != null || noWrite)
{
var s = document.createElement('script');
s.setAttribute('type', 'text/javascript');
s.setAttribute('defer', 'true');
s.setAttribute('src', src);
if (id != null)
{
s.setAttribute('id', id);
}
if (dataAppKey != null)
{
s.setAttribute('data-app-key', dataAppKey);
}
if (onLoad != null)
{
var r = false;
s.onload = s.onreadystatechange = function()
{
if (!r && (!this.readyState || this.readyState == 'complete'))
{
r = true;
onLoad();
}
};
}
if (onError != null)
{
s.onerror = function(e)
{
onError('Failed to load ' + src, e);
};
}
var t = document.getElementsByTagName('script')[0];
if (t != null)
{
t.parentNode.insertBefore(s, t);
}
}
else
{
document.write('<script src="' + src + '"' + ((id != null) ? ' id="' + id +'" ' : '') +
((dataAppKey != null) ? ' data-app-key="' + dataAppKey +'" ' : '') + '></scr' + 'ipt>');
}
};
/**
* Asynchronously adds scripts to the page.
*/
function mxinclude(src)
{
var g = document.createElement('script');
g.type = 'text/javascript';
g.async = true;
g.src = src;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(g, s);
};
/**
* Adds meta tags with application name (depends on offline URL parameter)
*/
(function()
{
var name = 'diagrams.net';
mxmeta('apple-mobile-web-app-title', name);
mxmeta('application-name', name);
if (mxIsElectron)
{
mxmeta(null, 'default-src \'self\'; script-src \'self\' \'sha256-6g514VrT/cZFZltSaKxIVNFF46+MFaTSDTPB8WfYK+c=\'; connect-src \'self\' https://*.draw.io https://*.diagrams.net https://fonts.googleapis.com https://fonts.gstatic.com; img-src * data:; media-src *; font-src *; frame-src \'none\'; style-src \'self\' \'unsafe-inline\' https://fonts.googleapis.com; base-uri \'none\';child-src \'self\';object-src \'none\';', 'Content-Security-Policy');
}
})();
// Checks for local storage
var isLocalStorage = false;
try
{
isLocalStorage = urlParams['local'] != '1' && typeof(localStorage) != 'undefined';
}
catch (e)
{
// ignored
}
var mxScriptsLoaded = false, mxWinLoaded = false;
function checkAllLoaded()
{
if (mxScriptsLoaded && mxWinLoaded)
{
App.main();
}
};
var t0 = new Date();
// Changes paths for local development environment
if (urlParams['dev'] == '1')
{
// Used to request grapheditor/mxgraph sources in dev mode
var mxDevUrl = '';
// Used to request draw.io sources in dev mode
var drawDevUrl = '';
var geBasePath = 'js/grapheditor';
var mxBasePath = 'mxgraph/src';
if (document.location.protocol == 'file:')
{
// Forces includes for dev environment in node.js
mxForceIncludes = true;
}
mxForceIncludes = false;
mxscript(drawDevUrl + 'js/PreConfig.js');
mxscript(drawDevUrl + 'js/diagramly/Init.js');
mxscript(geBasePath + '/Init.js');
mxscript(mxBasePath + '/mxClient.js');
// Adds all JS code that depends on mxClient. This indirection via Devel.js is
// required in some browsers to make sure mxClient.js (and the files that it
// loads asynchronously) are available when the code loaded in Devel.js runs.
mxscript(drawDevUrl + 'js/diagramly/Devel.js');
// Electron
if (mxIsElectron)
{
mxscript('js/diagramly/DesktopLibrary.js');
mxscript('js/diagramly/ElectronApp.js');
}
mxscript(drawDevUrl + 'js/PostConfig.js');
}
else
{
(function()
{
var hostName = window.location.hostname;
// Supported domains are *.draw.io and the packaged version in Quip
var supportedDomain = (hostName.substring(hostName.length - 8, hostName.length) === '.draw.io') ||
(hostName.substring(hostName.length - 13, hostName.length) === '.diagrams.net');
function loadAppJS()
{
mxscript('js/app.min.js', function()
{
mxScriptsLoaded = true;
checkAllLoaded();
// Electron
if (mxIsElectron)
{
mxscript('js/diagramly/DesktopLibrary.js', function()
{
mxscript('js/diagramly/ElectronApp.js', function()
{
mxscript('js/extensions.min.js', function()
{
mxscript('js/stencils.min.js', function()
{
mxscript('js/shapes-14-6-5.min.js', function()
{
mxscript('js/PostConfig.js');
});
});
});
});
});
}
else if (!supportedDomain || navigator.onLine)
{
mxscript('js/PostConfig.js');
}
});
};
if (!supportedDomain || mxIsElectron || navigator.onLine)
{
mxscript('js/PreConfig.js', loadAppJS);
}
else
{
loadAppJS();
}
})();
}
// Adds basic error handling
window.onerror = function()
{
var status = document.getElementById('geStatus');
if (status != null)
{
status.innerHTML = 'Page could not be loaded. Please try refreshing.';
}
};
</script>
<link rel="icon" href="https://app.diagrams.net/favicon.ico" sizes="any">
<link rel="apple-touch-icon" href="https://app.diagrams.net/images/apple-touch-icon.png">
<link rel="stylesheet" type="text/css" href="./grapheditor.css">
<link rel="stylesheet" media="(forced-colors: active)" href="./high-contrast.css" id="high-contrast-stylesheet">
<link rel="canonical" href="https://app.diagrams.net/">
<link rel="manifest" href="https://app.diagrams.net/images/manifest.json">
<link rel="shortcut icon" href="https://app.diagrams.net/favicon.ico">
<style type="text/css">
body { overflow:hidden; }
div.picker { z-index: 10007; }
.geSidebarContainer .geTitle input {
font-size:8pt;
color:#606060;
}
.geBlock {
z-index:-3;
margin:100px;
margin-top:40px;
margin-bottom:30px;
padding:20px;
text-align:center;
min-width:50%;
}
.geBlock h1, .geBlock h2 {
margin-top:0px;
padding-top:0px;
}
.geEditor *:not(.geScrollable)::-webkit-scrollbar {
width:10px;
height:10px;
}
.geEditor ::-webkit-scrollbar-track {
background-clip:padding-box;
border:solid transparent;
border-width:1px;
}
.geEditor ::-webkit-scrollbar-corner {
background-color:transparent;
}
.geEditor ::-webkit-scrollbar-thumb {
background-clip:padding-box;
border:solid transparent;
border-radius:10px;
}
.geTemplate {
border:1px solid transparent;
display:inline-block;
_display:inline;
vertical-align:top;
border-radius:3px;
overflow:hidden;
font-size:14pt;
cursor:pointer;
margin:5px;
}
</style>
<!-- Workaround for binary XHR in IE 9/10, see App.loadUrl -->
<!--[if (IE 9)|(IE 10)]><!-->
<script type="text/vbscript">
Function mxUtilsBinaryToArray(Binary)
Dim i
ReDim byteArray(LenB(Binary))
For i = 1 To LenB(Binary)
byteArray(i-1) = AscB(MidB(Binary, i, 1))
Next
mxUtilsBinaryToArray = byteArray
End Function
</script>
<!--<![endif]-->
<style type="text/css"></style><link rel="stylesheet" href="./common.css" charset="UTF-8" type="text/css"><script type="text/javascript" src="./startup.js.download"></script><script src="./core.js.download" charset="UTF-8"></script><script src="./svg.js.download" charset="UTF-8"></script><script src="./tex.js.download" charset="UTF-8"></script><script src="./asciimath.js.download" charset="UTF-8"></script><script src="./safe.js.download" charset="UTF-8"></script><script src="./tex(1).js.download" charset="UTF-8"></script></head>
<body class="geEditor" style="color-scheme: light;">
<script id="geMain" type="text/javascript">
/**
* Main
*/
if (urlParams['dev'] != '1' && typeof document.createElement('canvas').getContext === "function")
{
window.addEventListener('load', function()
{
mxWinLoaded = true;
checkAllLoaded();
});
}
else
{
App.main();
}
</script>
<div class="geMenubarContainer" style="top: 0px; left: 0px; right: 0px; height: 30px;"><div class="geMenubar" style="padding-top: 0px;"><a class="geItem">File</a><a class="geItem mxDisabled">Edit</a><a class="geItem mxDisabled">View</a><a class="geItem mxDisabled">Arrange</a><a class="geItem mxDisabled">Extras</a><a class="geItem">Help</a><a class="geItem geStatus"></a><div class="geButtonContainer" style="overflow: hidden; padding-right: 8px;"></div></div><a class="geUser geItem" style="background-image: url(&quot;images/expanded.gif&quot;); background-position: 100% 70%; background-repeat: no-repeat; position: absolute; margin: 4px; padding: 2px 16px 2px 2px; right: 26px; top: 2px; display: none;"></a></div><div style="touch-action: none; visibility: hidden; position: absolute; overflow: hidden; height: 1px; width: 1px;"><svg style="left: 0px; top: 0px; width: 100%; height: 100%; display: block; min-width: 1px; min-height: 1px;"><g><g></g><g></g><g></g><g></g></g></svg></div><div class="geSidebarContainer" style="left: 0px; z-index: 1; overflow: visible; top: 69px; width: 0px; bottom: 0px; display: none;"><div style="position: relative; overflow: hidden auto; left: 0px; top: 0px; right: 0px; box-sizing: border-box; max-height: calc(100% - 52px);"><div style="visibility: hidden; display: block;"></div><div style="display: block;"><div class="geSidebar geSearchSidebar"><div style="white-space: nowrap; text-overflow: clip; padding-bottom: 8px; cursor: default;"><input placeholder="Search Shapes" type="text"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgLTk2MCA5NjAgOTYwIiB3aWR0aD0iMjQiPjxwYXRoIGQ9Ik03ODQtMTIwIDUzMi0zNzJxLTMwIDI0LTY5IDM4dC04MyAxNHEtMTA5IDAtMTg0LjUtNzUuNVQxMjAtNTgwcTAtMTA5IDc1LjUtMTg0LjVUMzgwLTg0MHExMDkgMCAxODQuNSA3NS41VDY0MC01ODBxMCA0NC0xNCA4M3QtMzggNjlsMjUyIDI1Mi01NiA1NlpNMzgwLTQwMHE3NSAwIDEyNy41LTUyLjVUNTYwLTU4MHEwLTc1LTUyLjUtMTI3LjVUMzgwLTc2MHEtNzUgMC0xMjcuNSA1Mi41VDIwMC01ODBxMCA3NSA1Mi41IDEyNy41VDM4MC00MDBaIi8+PC9zdmc+" title="Search" class="geAdaptiveAsset" style="position: relative; cursor: pointer; opacity: 0.5; height: 16px; left: -20px; top: 4px; background: url(&quot;data:image/gif;base64,R0lGODlhMAAwAIAAAP///wAAACH5BAEAAAAALAAAAAAwADAAAAIxhI+py+0Po5y02ouz3rz7D4biSJbmiabqyrbuC8fyTNf2jef6zvf+DwwKh8Si8egpAAA7&quot;);"></div><center style="padding-top: 4px; padding-bottom: 4px;"><button style="display: none; line-height: normal; font-size: 12px; padding: 6px 12px; margin-top: 4px; margin-bottom: 8px;">More Results</button></center></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; position: relative;"><span>Scratchpad</span><div style="background-color: inherit;"><div title="Help" style="display: inline; margin-left: 8px; margin-right: 1px; cursor: help;"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNDc4LTI0MHEyMSAwIDM1LjUtMTQuNVQ1MjgtMjkwcTAtMjEtMTQuNS0zNS41VDQ3OC0zNDBxLTIxIDAtMzUuNSAxNC41VDQyOC0yOTBxMCAyMSAxNC41IDM1LjVUNDc4LTI0MFptLTM2LTE1NGg3NHEwLTMzIDcuNS01MnQ0Mi41LTUycTI2LTI2IDQxLTQ5LjV0MTUtNTYuNXEwLTU2LTQxLTg2dC05Ny0zMHEtNTcgMC05Mi41IDMwVDM0Mi02MThsNjYgMjZxNS0xOCAyMi41LTM5dDUzLjUtMjFxMzIgMCA0OCAxNy41dDE2IDM4LjVxMCAyMC0xMiAzNy41VDUwNi01MjZxLTQ0IDM5LTU0IDU5dC0xMCA3M1ptMzggMzE0cS04MyAwLTE1Ni0zMS41VDE5Ny0xOTdxLTU0LTU0LTg1LjUtMTI3VDgwLTQ4MHEwLTgzIDMxLjUtMTU2VDE5Ny03NjNxNTQtNTQgMTI3LTg1LjVUNDgwLTg4MHE4MyAwIDE1NiAzMS41VDc2My03NjNxNTQgNTQgODUuNSAxMjdUODgwLTQ4MHEwIDgzLTMxLjUgMTU2VDc2My0xOTdxLTU0IDU0LTEyNyA4NS41VDQ4MC04MFptMC04MHExMzQgMCAyMjctOTN0OTMtMjI3cTAtMTM0LTkzLTIyN3QtMjI3LTkzcS0xMzQgMC0yMjcgOTN0LTkzIDIyN3EwIDEzNCA5MyAyMjd0MjI3IDkzWm0wLTMyMFoiLz48L3N2Zz4=" valign="middle" border="0" class="geAdaptiveAsset" style="margin-top: -2px; height: 16px; width: 16px;"></div><img class="geAdaptiveAsset" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTkgMTNoLTZ2NmgtMnYtNkg1di0yaDZWNWgydjZoNnYyeiIvPjwvc3ZnPg==" title="Add" valign="absmiddle" border="0" style="position: relative; top: 2px; width: 14px; cursor: pointer; margin: 0px 3px;"><img class="geAdaptiveAsset" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjAwLTIwMGg1N2wzOTEtMzkxLTU3LTU3LTM5MSAzOTF2NTdabS04MCA4MHYtMTcwbDUyOC01MjdxMTItMTEgMjYuNS0xN3QzMC41LTZxMTYgMCAzMSA2dDI2IDE4bDU1IDU2cTEyIDExIDE3LjUgMjZ0NS41IDMwcTAgMTYtNS41IDMwLjVUODE3LTY0N0wyOTAtMTIwSDEyMFptNjQwLTU4NC01Ni01NiA1NiA1NlptLTE0MSA4NS0yOC0yOSA1NyA1Ny0yOS0yOFoiLz48L3N2Zz4=" title="Edit" valign="absmiddle" border="0" style="position: relative; top: 2px; width: 14px; cursor: pointer; margin: 0px 3px;"><img class="geAdaptiveAsset" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMThweCIgdmlld0JveD0iMCAwIDI0IDI0IiB3aWR0aD0iMThweCIgZmlsbD0iIzAwMDAwMCI+PHBhdGggZD0iTTAgMGgyNHYyNEgwVjB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE5IDYuNDFMMTcuNTkgNSAxMiAxMC41OSA2LjQxIDUgNSA2LjQxIDEwLjU5IDEyIDUgMTcuNTkgNi40MSAxOSAxMiAxMy40MSAxNy41OSAxOSAxOSAxNy41OSAxMy40MSAxMiAxOSA2LjQxeiIvPjwvc3ZnPg==" title="Close" valign="absmiddle" border="0" style="position: relative; top: 2px; width: 14px; cursor: pointer; margin: 0px 3px;"></div></a><div><div class="geSidebar" style="touch-action: none;"><div class="geDropTarget">Drag elements here</div></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>General</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none;"><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.6" y="7.8" width="28.8" height="14.4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.6" y="7.8" width="28.8" height="14.4" rx="2.16" ry="2.16" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1" y="7.5" width="30" height="15" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1" y="7.5" width="30" height="15" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.5)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="200%" height="200%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 30px; margin-left: 3px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Text</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.6" y="5.16" width="28.8" height="19.2" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1.6" y="5.16" width="28.8" height="19.2" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.16)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="625%" height="625%"><div style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 178px; height: 1px; padding-top: 39px; margin-left: 12px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 116px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;"><h1 style="margin-top: 0px; pointer-events: none;">Heading</h1><p style="pointer-events: none;">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p></div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><ellipse cx="16" cy="15" rx="14.399999999999999" ry="9.6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></ellipse></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="2.4" y="1.4" width="27.2" height="27.2" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><ellipse cx="16" cy="15" rx="13.600000000000001" ry="13.600000000000001" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></ellipse></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.6" y="7.8" width="28.8" height="14.4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect><path d="M 4.48 7.8 L 4.48 22.2 M 27.52 7.8 L 27.52 22.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 4.48 7.8 L 4.48 22.2 M 27.52 7.8 L 27.52 22.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 16 1.4 L 29.6 15 L 16 28.6 L 2.4 15 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 22.2 L 6.4 7.8 L 30.4 7.8 L 25.6 22.2 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 6.4 5.4 L 25.6 5.4 L 30.4 15 L 25.6 24.6 L 6.4 24.6 L 1.6 15 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.8 1.4 L 26.2 15 L 5.8 28.6 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.8 6.5 C 5.8 3.68 10.37 1.4 16 1.4 C 18.71 1.4 21.3 1.94 23.21 2.89 C 25.13 3.85 26.2 5.15 26.2 6.5 L 26.2 23.5 C 26.2 26.32 21.63 28.6 16 28.6 C 10.37 28.6 5.8 26.32 5.8 23.5 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 26.2 6.5 C 26.2 9.32 21.63 11.6 16 11.6 C 10.37 11.6 5.8 9.32 5.8 6.5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 26.2 6.5 C 26.2 9.32 21.63 11.6 16 11.6 C 10.37 11.6 5.8 9.32 5.8 6.5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 8.8 10.2 C 3.04 10.2 1.6 15 6.21 15.96 C 1.6 18.07 6.78 22.68 10.53 20.76 C 13.12 24.6 21.76 24.6 24.64 20.76 C 30.4 20.76 30.4 16.92 26.8 15 C 30.4 11.16 24.64 7.32 19.6 9.24 C 16 6.36 10.24 6.36 8.8 10.2 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 5.4 L 30.4 5.4 L 30.4 21.72 Q 23.2 16.54 16 21.72 Q 8.8 26.9 1.6 21.72 L 1.6 8.28 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="2.4" y="1.4" width="27.2" height="27.2" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect><path d="M 2.4 8.2 L 29.6 8.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.4 8.2 L 29.6 8.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 9.2 1.4 L 9.2 28.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 9.2 1.4 L 9.2 28.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 5.4 L 25.6 5.4 L 30.4 10.2 L 30.4 24.6 L 6.4 24.6 L 1.6 19.8 L 1.6 5.4 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 1.6 5.4 L 25.6 5.4 L 30.4 10.2 L 6.4 10.2 Z" fill-opacity="0.05" fill="#000000" stroke="none" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); pointer-events: none;"></path><path d="M 1.6 5.4 L 6.4 10.2 L 6.4 24.6 L 1.6 19.8 Z" fill-opacity="0.1" fill="#000000" stroke="none" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); pointer-events: none;"></path><path d="M 6.4 24.6 L 6.4 10.2 L 1.6 5.4 M 6.4 10.2 L 30.4 10.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 6.4 24.6 L 6.4 10.2 L 1.6 5.4 M 6.4 10.2 L 30.4 10.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 5.4 L 25.6 5.4 L 30.4 15 L 25.6 24.6 L 1.6 24.6 L 6.4 15 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 22.2 L 6.4 7.8 L 25.6 7.8 L 30.4 22.2 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 7.8 Q 8.8 16.44 16 7.8 Q 23.2 -0.84 30.4 7.8 L 30.4 22.2 Q 23.2 13.56 16 22.2 Q 8.8 30.84 1.6 22.2 L 1.6 7.8 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.2 1.5 L 18.7 1.5 L 26.8 9.6 L 26.8 28.5 L 5.2 28.5 L 5.2 1.5 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 18.7 1.5 L 18.7 9.6 L 26.8 9.6 Z" fill-opacity="0.05" fill="#000000" stroke="none" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); pointer-events: none;"></path><path d="M 18.7 1.5 L 18.7 9.6 L 26.8 9.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 18.7 1.5 L 18.7 9.6 L 26.8 9.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 13.3 1.5 L 26.8 1.5 L 26.8 28.5 L 5.2 28.5 L 5.2 9.6 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 5.4 L 30.4 5.4 L 30.4 17.4 L 20.8 17.4 L 16 24.6 L 16 17.4 L 1.6 17.4 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><ellipse cx="16" cy="4.88" rx="3.375" ry="3.375" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></ellipse><path d="M 16 8.25 L 16 19.5 M 16 10.5 L 9.25 10.5 M 16 10.5 L 22.75 10.5 M 16 19.5 L 9.25 28.5 M 16 19.5 L 22.75 28.5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 16 8.25 L 16 19.5 M 16 10.5 L 9.25 10.5 M 16 10.5 L 22.75 10.5 M 16 19.5 L 9.25 28.5 M 16 19.5 L 22.75 28.5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.8 1.4 Q 26.2 1.4 26.2 15 Q 26.2 28.6 5.8 28.6 Q 16 15 5.8 1.4 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.8 1.4 Q 26.2 1.4 26.2 15 Q 26.2 28.6 5.8 28.6 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 7.3 3.4 L 30.5 3.4 Q 18.9 15 30.5 26.6 L 7.3 26.6 Q -4.3 15 7.3 3.4 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 3 2 L 3 2 L 29 2 L 29 2" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3 2 L 3 28 L 29 28 L 29 2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3 2 L 3 28 L 29 28 L 29 2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 3 4.99 L 3 2 L 29 2 L 29 4.99" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3 4.99 L 3 28 L 29 28 L 29 4.99" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3 4.99 L 3 28 L 29 28 L 29 4.99" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3 4.99 L 29 4.99" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3 4.99 L 29 4.99" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.13)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="770%" height="770%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 27px; margin-left: 24px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">Vertical Container</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.99 2 L 3 2 L 3 28 L 5.99 28" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 5.99 2 L 29 2 L 29 28 L 5.99 28" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 5.99 2 L 29 2 L 29 28 L 5.99 28" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 5.99 2 L 5.99 28" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 5.99 2 L 5.99 28" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.13)rotate(-90 34.57692307692307 115.38461538461537)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="770%" height="770%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 115px; margin-left: -64px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">Horizontal Container</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.3 8.7 L 1.3 2.4 L 30.7 2.4 L 30.7 8.7" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 1.3 8.7 L 1.3 27.6 L 30.7 27.6 L 30.7 8.7" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.3 8.7 L 1.3 27.6 L 30.7 27.6 L 30.7 8.7" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 1.3 8.7 L 30.7 8.7" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.3 8.7 L 30.7 8.7" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.21)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="477%" height="477%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 26px; margin-left: 7px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">List</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.3" y="8.7" width="29.4" height="6.3" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1.3" y="8.7" width="29.4" height="6.3" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.21)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="477%" height="477%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 130px; height: 1px; padding-top: 56px; margin-left: 12px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Item 1</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.3" y="15" width="29.4" height="6.3" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1.3" y="15" width="29.4" height="6.3" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.21)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="477%" height="477%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 130px; height: 1px; padding-top: 86px; margin-left: 12px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Item 2</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.3" y="21.3" width="29.4" height="6.3" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1.3" y="21.3" width="29.4" height="6.3" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.21)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="477%" height="477%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 130px; height: 1px; padding-top: 116px; margin-left: 12px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Item 3</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.2" y="9.45" width="29.6" height="11.1" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1.2" y="9.45" width="29.6" height="11.1" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.37)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="271%" height="271%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 70px; height: 1px; padding-top: 41px; margin-left: 9px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">List Item</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.29 25.29 Q 26.29 25.29 15.79 14.79 Q 5.29 4.29 23.62 4.29" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 5.29 25.29 Q 26.29 25.29 15.79 14.79 Q 5.29 4.29 23.62 4.29" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 25.82 4.29 L 22.88 5.76 L 23.62 4.29 L 22.88 2.82 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 9.36 22.85 L 10.85 24.33 L 5.97 24.83 L 6.47 19.95 L 7.95 21.44 L 22.44 6.95 L 20.95 5.47 L 25.83 4.97 L 25.33 9.85 L 23.85 8.36 Z" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 9.36 22.85 L 10.85 24.33 L 5.97 24.83 L 6.47 19.95 L 7.95 21.44 L 22.44 6.95 L 20.95 5.47 L 25.83 4.97 L 25.33 9.85 L 23.85 8.36 Z" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 8.87 24.14 L 6.53 21.8 L 18.37 9.97 L 15.92 7.52 L 23.97 6.7 L 23.15 14.75 L 20.7 12.3 Z" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 8.87 24.14 L 6.53 21.8 L 18.37 9.97 L 15.92 7.52 L 23.97 6.7 L 23.15 14.75 L 20.7 12.3 Z" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.48 27.98 L 28.99 1.48" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.48 27.98 L 28.99 1.48" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" stroke-dasharray="1.59 1.59" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.74 27.74 L 28.74 1.74" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.74 27.74 L 28.74 1.74" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" stroke-dasharray="1.04 3.12" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.48 27.98 L 28.99 1.48" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.48 27.98 L 28.99 1.48" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 7.39 23.2 L 24.2 6.39" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 7.39 23.2 L 24.2 6.39" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 5.87 24.72 L 6.88 21.68 L 7.39 23.2 L 8.91 23.71 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 25.72 4.87 L 24.71 7.91 L 24.2 6.39 L 22.68 5.88 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.29 25.29 L 24.4 6.18" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 5.29 25.29 L 24.4 6.18" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 25.96 4.62 L 24.92 7.74 L 24.4 6.18 L 22.84 5.66 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 4.89 14.45 L 26.89 14.45 M 26.89 15.33 L 4.89 15.33 M 26.89 15.33" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 4.89 14.45 L 26.89 14.45 M 26.89 15.33 L 4.89 15.33 M 26.89 15.33" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 3.38 14.88 L 26.78 14.88" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3.38 14.88 L 26.78 14.88" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 28.1 14.88 L 26.35 15.75 L 26.78 14.88 L 26.35 14 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="visibility: hidden; pointer-events: none;"></g><g style="pointer-events: none;"><g transform="scale(0.25)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="400%" height="400%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 62px; margin-left: 68px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); background-color: rgb(241, 243, 244); pointer-events: none;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; background-color: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); white-space: nowrap;">Label</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.31 14.92 L 28.43 14.92" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.31 14.92 L 28.43 14.92" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 29.32 14.92 L 28.13 15.51 L 28.43 14.92 L 28.13 14.32 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="visibility: hidden; pointer-events: none;"></g><g style="pointer-events: none;"><g transform="scale(0.17)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="589%" height="589%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 91px; margin-left: 99px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); background-color: rgb(241, 243, 244); pointer-events: none;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; background-color: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); white-space: nowrap;">Label</div></div></div></foreignobject></g></g><g style="visibility: hidden; pointer-events: none;"></g><g style="pointer-events: none;"><g transform="scale(0.17)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="589%" height="589%"><div style="display: flex; align-items: unsafe flex-end; justify-content: unsafe flex-start; width: 1px; height: 1px; padding-top: 91px; margin-left: 16px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; color: rgb(0, 0, 0); background-color: rgb(241, 243, 244); pointer-events: none;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; background-color: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); white-space: nowrap;">Source</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.31 14.92 L 28.43 14.92" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.31 14.92 L 28.43 14.92" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 29.32 14.92 L 28.13 15.51 L 28.43 14.92 L 28.13 14.32 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="visibility: hidden; pointer-events: none;"></g><g style="pointer-events: none;"><g transform="scale(0.17)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="589%" height="589%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 91px; margin-left: 99px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); background-color: rgb(241, 243, 244); pointer-events: none;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; background-color: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); white-space: nowrap;">Label</div></div></div></foreignobject></g></g><g style="visibility: hidden; pointer-events: none;"></g><g style="pointer-events: none;"><g transform="scale(0.17)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="589%" height="589%"><div style="display: flex; align-items: unsafe flex-end; justify-content: unsafe flex-start; width: 1px; height: 1px; padding-top: 91px; margin-left: 16px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; color: rgb(0, 0, 0); background-color: rgb(241, 243, 244); pointer-events: none;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; background-color: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); white-space: nowrap;">Source</div></div></div></foreignobject></g></g><g style="visibility: hidden; pointer-events: none;"></g><g style="pointer-events: none;"><g transform="scale(0.17)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="589%" height="589%"><div style="display: flex; align-items: unsafe flex-end; justify-content: unsafe flex-end; width: 1px; height: 1px; padding-top: 91px; margin-left: 176px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: right; color: rgb(0, 0, 0); background-color: rgb(241, 243, 244); pointer-events: none;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; background-color: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); white-space: nowrap;">Target</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 3.38 14.88 L 26.78 14.88" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3.38 14.88 L 26.78 14.88" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 28.1 14.88 L 26.35 15.75 L 26.78 14.88 L 26.35 14 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 13.88 13.13 L 18.88 13.13 L 18.88 16.63 L 13.88 16.63 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 13.88 13.13 L 16.38 14.88 L 18.88 13.13" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 13.88 13.13 L 16.38 14.88 L 18.88 13.13" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>Misc</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>Advanced</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>Basic</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Arrows</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>Arrows</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Clipart / Computer</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Clipart / Finance</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Clipart / Various</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Clipart / Networking</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Clipart / People</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Clipart / Telecommunication</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>Flowchart</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Active Directory</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Android</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Atlassian</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Bootstrap</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Data Flow Diagram</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>Entity Relation</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>iOS Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>iOS UI</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>iOS6</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Kubernetes</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Buttons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Containers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Forms</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Graphics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Markup</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Misc</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Navigation</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Text</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Sitemap</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Salesforce / Components</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Salesforce / Product</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Salesforce / Platform</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Salesforce / Industry</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>UML 2.5</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>UML</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Alibaba Cloud</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Buildings</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Computer and Terminals</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Media Converters</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Switch</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Wireless</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Application Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Artificial Intelligence</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Business Productivity</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Contact Center</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Database</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Desktop and App Streaming</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Developer Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Game Development</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / General</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Groups</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Internet of Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Management Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Messaging</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Migration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Mobile Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Network and Content Delivery</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / On-Demand Workforce</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / SDK</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Security Identity and Compliance</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Arrows</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / General Resources</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Illustrations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Groups (light)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Groups (dark)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Application Integration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / AR &amp; VR</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Cost Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Business Productivity</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Customer Engagement</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Database</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Desktop &amp; App Streaming</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Developer Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Game Development</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Internet of Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / IoT Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / IoT Resources</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Machine Learning</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Management Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Media Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Migration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Mobile Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Network &amp; Content Delivery</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Security, Identity &amp; Compliance</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Arrows</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / General Resources</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Illustrations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Groups</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Application Integration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / AR &amp; VR</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Blockchain</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Business Applications</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Cloud Financial Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Contact Center</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Containers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Customer Enablement</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Customer Engagement</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Database</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Developer Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / End User Computing</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Front End Web Mobile</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Game Tech</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Internet of Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Machine Learning</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Management &amp; Governance</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Media Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Migration &amp; Transfer</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Network &amp; Content Delivery</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Quantum Technologies</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Robotics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Satellite</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Security, Identity &amp; Compliance</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Serverless</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS 3D</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / AI and Machine Learning</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / App Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Ecosystem</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Azure Stack</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / VMware Solution</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Blockchain</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Containers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / CXP</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Databases</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / DevOps</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / General</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Hybrid and Multicloud</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Identity</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Integration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Intune</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / IoT</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Management and Governance</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Menu</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Migrate</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Mixed Reality</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Mobile</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Monitor</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Networking</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Other</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Power Platform</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Preview</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Web</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Companies</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Enterprise (flat)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Intune (flat)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / OMS (flat)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / System Center (flat)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / AI and ML Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Analytics Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Compute Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Compute Service VM</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Container Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Databases Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / DevOps Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / General Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Identity Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Integration Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Internet of Things Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Intune Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Management and Governance Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Management and Governance Service - Media</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Migrate Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Mixed Reality Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Mobile Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Networking Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Other Category Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Security Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Storage Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Web Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>C4</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Buildings</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Computers and Peripherals</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Controllers and Modules</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Directors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Hubs and Gateways</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Misc</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Modems and Phones</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / People</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Routers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Servers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Switches</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Wireless</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / LAN Switching</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Routing WAN</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Network Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Data Center</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Wireless LAN</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Collaboration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Security, Clouds and Connectors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Endpoint Client and Device Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / DNA/SD-Access</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / SD-WAN and Viptela</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / ETA/Stealthwatch</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / SAFE</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Architecture</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Business Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Capability</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Design</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / IoT Things Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / People, Places, Things Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Security Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Technology Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Threat</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cumulus</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Locations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Users and Devices</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Cloud Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Components</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Resources</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / NetScaler</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Networking</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Authentication</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix (legacy)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Dynamics365 / App</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Dynamics365 / Mixed Reality</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Dynamics365 / Product Family</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Dynamics365 / Sub App</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Paths</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Zones</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Service Cards</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / User and Device Cards</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / API Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Data Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Data Transfer</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Cloud AI</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Internet of Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Databases</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Management Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Networking</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Developer Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Expanded Product Cards</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Product Cards</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / General Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / AI and Machine Learning</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Serverless</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Operations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Networking</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / CI/CD</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Integration Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / API Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Internet of Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Databases</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Migration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Hybrid and Multi Cloud</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Open Source Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / AI and Machine Learning</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / API Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Data Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Databases</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Developer Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Expanded Product Card Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Generic</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Hybrid and Multi Cloud</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Internet of Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Management Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Migration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Networking</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Open Source Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Applications</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Blockchain</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Data</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / DevOps</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Infrastructure</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Miscellaneous</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Social</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Users</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / VPC</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Boxes</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Connectors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Groups</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Actors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / AI</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Containers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Data</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / DevOps</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Network</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Observability</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Connectors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Network</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Annotations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Colored Connectors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Foundations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Integration Suite</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / App Dev Automation</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Data Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / AI</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Generic Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Component Groups</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Components</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Default Connectors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Default Shapes</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Numbers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Products</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Build Workzone</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Semantic Accent</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Texts</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Clouds</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Communications</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Concepts</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Databases</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Devices</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Servers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Sites</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Users</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>OpenStack / Blue</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>OpenStack / Grey</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>OpenStack / Green</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>OpenStack / Red</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / General</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / APC</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / Cisco</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / Dell</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / F5</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / HP</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / HPE Aruba / Gateways and Controllers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / HPE Aruba / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / HPE Aruba / Switches</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / IBM</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / Oracle</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Data Center</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Miscellaneous</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Software</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Users and Status</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Availability Suite components</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Backup and Replication</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Products</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / VMs and Tape</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / 3D</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Auxiliary</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Data Center</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Features</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / General</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Products and Components</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Software</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / States</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / 3D</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>VMware Validated Design</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Generic</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Relationships</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Motivation</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Strategy</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Business</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Application</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Technology</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Implementation and Migration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>ArchiMate 2.1</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>BPMN 2.0 General</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>BPMN 2.0 Tasks</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>BPMN 2.0 Choreographies</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>BPMN 2.0 Events</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>BPMN 2.0 Gateways</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Model Elements</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Blocks</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Ports and Flows</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Constraint Blocks</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Activities</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Interactions</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / State Machines</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / UseCases</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Allocations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Requirements</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Profiles</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Stereotypes</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Value Stream Mapping</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cabinets</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Infographic</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / Message Construction</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / Message Routing</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / Message Transformation</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / Messaging Channels</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / Messaging Endpoints</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / Messaging Systems</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / System Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Logic Gates</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Resistors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Capacitors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Inductors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Switches and Relays</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Diodes</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Sources</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Transistors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Instruments</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Misc</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Audio</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / PLC Ladder</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Optical</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Vacuum Tubes</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Waveforms</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Rotating Equipment &amp; Mechanical Functions</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Transmission Paths</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Floorplans</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Fluid Power (ISO 1219)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Bottom Navigation</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Bottom Sheets</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Buttons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Cards</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Chips</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Dialogs</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Dividers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Grid Lists</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Lists</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Menus</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Misc</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Pickers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Selection Controls</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Sliders</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Steppers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Tabs</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Text Fields</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Instruments</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Misc</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Valves</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Compressors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Engines</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Filters</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Flow Sensors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Piping</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Crushers Grinding</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Fittings</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Separators</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Agitators</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Apparatus Elements</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Centrifuges</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Compressors ISO</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Driers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Feeders</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Heat Exchangers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Mixers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Pumps</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Pumps DIN</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Pumps ISO</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Shaping Machines</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Vessels</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Threat Modeling</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Web Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Web Logos</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Animals</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Food</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Healthcare</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Nature</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / People</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Safety</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Science</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Sports</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Tech</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Transportation</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Travel</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div></div><div class="geSidebarFooter" style="position: absolute; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; width: 100%; margin-top: -1px; height: 52px;"><button class="geBtn gePrimaryBtn" style="display: inline-flex; align-items: center; white-space: nowrap; padding: 8px; margin: 0px;"><span style="font-size: 18px; margin-right: 5px;">+</span>More Shapes</button></div></div><div class="geSidebarContainer geFormatContainer" style="right: 0px; z-index: 1; top: 69px; width: 240px; bottom: 0px; visibility: hidden;"><div style="white-space: nowrap; text-align: left; cursor: default;"><div class="geFormatSection" style="text-align: center; font-weight: bold; padding-top: 8px; font-size: 13px; border-width: 0px; border-style: solid; display: inline-block; height: 25px; overflow: hidden; width: 106px; cursor: pointer;">Diagram</div><div class="geFormatSection" style="text-align: center; font-weight: bold; padding-top: 8px; font-size: 13px; border-width: 0px 1px 1px; border-style: solid; display: inline-block; height: 25px; overflow: hidden; width: 106px; cursor: pointer; background-color: light-dark(rgb(228, 228, 228), rgb(0, 0, 0));">Style</div><div class="geFormatSection" style="text-align: center; font-weight: bold; padding: 0px; font-size: 13px; border-width: 0px 1px 1px; border-style: solid; display: flex; height: 33px; overflow: hidden; width: 25px; cursor: pointer; background-color: light-dark(rgb(228, 228, 228), rgb(0, 0, 0)); position: absolute; right: 0px; top: 0px; align-items: center; justify-content: center;"><img class="geAdaptiveAsset" border="0" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMThweCIgdmlld0JveD0iMCAwIDI0IDI0IiB3aWR0aD0iMThweCIgZmlsbD0iIzAwMDAwMCI+PHBhdGggZD0iTTAgMGgyNHYyNEgwVjB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE5IDYuNDFMMTcuNTkgNSAxMiAxMC41OSA2LjQxIDUgNSA2LjQxIDEwLjU5IDEyIDUgMTcuNTkgNi40MSAxOSAxMiAxMy40MSAxNy41OSAxOSAxOSAxNy41OSAxMy40MSAxMiAxOSA2LjQxeiIvPjwvc3ZnPg==" title="Hide" style="width: 16px; height: 16px; opacity: 0.5;"></div></div><div style="white-space: nowrap; text-align: left; cursor: default;"><div class="geFormatSection" style="padding: 12px 0px 8px 14px;"><div style="padding: 0px 0px 6px; white-space: nowrap; overflow: hidden; width: 200px; font-weight: bold;">View</div><div style="padding: 6px 0px 0px; white-space: nowrap; overflow: hidden; width: 200px; height: 18px;"><input type="checkbox" checked="" style="margin: 1px 6px 0px 0px; vertical-align: top;"><span style="vertical-align: top;">Grid</span><input type="color" style="position: relative; visibility: hidden; top: 10px; width: 0px; height: 0px; border: none;"><button class="geColorBtn" title="light-dark(#d0d0d0, #424242)" style="position: absolute; margin-top: -3px; left: 178px; height: 22px;"><div style="width: 21px; height: 12px; margin: 2px 18px 2px 3px; border-width: 1px; border-style: solid; background-color: rgb(208, 208, 208);"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0iTTYgNDJ2LTguNGwxOC44NS0xOC44NS0zLjYtMy42TDIzLjMgOS4xbDQuNiA0LjZMMzUgNi42cS41NS0uNTUgMS4xNzUtLjU1dDEuMTc1LjU1bDQuMDUgNC4wNXEuNTUuNTUuNTUgMS4xNzVUNDEuNCAxM2wtNy4xIDcuMSA0LjYgNC42LTIuMDUgMi4wNS0zLjYtMy42TDE0LjQgNDJabTMtM2g0LjM1TDMxLjEgMjEuMjVsLTQuMzUtNC4zNUw5IDM0LjY1Wm0yMy4xNS0yMSA2LjItNi4yLTIuMTUtMi4xNS02LjIgNi4yWm0wIDBMMzAgMTUuODUgMzIuMTUgMThaIi8+PC9zdmc+" class="geColorDropper geAdaptiveAsset" style="position: relative; right: -20px; top: -1px; width: auto; height: 14px;"></div></button><input style="position: absolute; text-align: right; width: 48px; margin-top: -2px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box; left: 104px;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 152px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div></div><div style="display: flex; align-items: center; padding: 3px 0px; height: 18px;"><input type="checkbox" checked="" style="margin: 1px 6px 0px 0px; vertical-align: top;"><div title="Page View" style="display: inline-block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; max-width: 75%; user-select: none;">Page View</div></div></div></div><div style="white-space: nowrap; text-align: left; cursor: default; display: none;"><div class="geFormatSection" style="padding: 2px 0px 8px 14px; white-space: normal;"><div style="margin-right: 16px; padding-bottom: 2px;"><table style="width: 204px;"><tbody><tr style="padding: 0px;"><td style="text-align: center; padding: 2px; width: 50%;"><div style="align-items: center; text-align: left; display: flex; height: 22px; width: 88px;"><input type="checkbox" disabled="disabled" style="margin: 1px 6px 0px 0px;">Sketch</div></td><td style="text-align: center; padding: 2px; width: 50%;"><button disabled="disabled" style="height: 22px; width: 88px;">Rounded</button></td></tr></tbody></table></div></div></div></div><div class="geFooterContainer" style="left: 0px; right: 0px; bottom: 0px; z-index: 10003; height: 0px; display: none;"><div class="geFooter"></div></div><div class="geDiagramContainer geDiagramBackdrop" style="inset: 69px 240px 0px 0px; touch-action: none; cursor: default; overflow: auto; visibility: hidden;" tabindex="0"><div class="geBackgroundPage" style="position: absolute; border-width: 1px; overflow: hidden; left: 0px; top: 0px; width: 849px; height: 1099px; border-color: light-dark(rgb(255, 255, 255), rgb(18, 18, 18)); border-style: solid; background-color: light-dark(rgb(255, 255, 255), rgb(18, 18, 18)); background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyBzdHlsZT0iY29sb3Itc2NoZW1lOiBsaWdodCBkYXJrOyIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJncmlkIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0gMCAxMCBMIDQwIDEwIE0gMTAgMCBMIDEwIDQwIE0gMCAyMCBMIDQwIDIwIE0gMjAgMCBMIDIwIDQwIE0gMCAzMCBMIDQwIDMwIE0gMzAgMCBMIDMwIDQwIiBmaWxsPSJub25lIiBzdHlsZT0ic3Ryb2tlOmxpZ2h0LWRhcmsoI2QwZDBkMCwgIzNhM2EzYSk7IiBzdHJva2U9IiNkMGQwZDAiIG9wYWNpdHk9IjAuMiIgc3Ryb2tlLXdpZHRoPSIxIi8+PHBhdGggZD0iTSA0MCAwIEwgMCAwIDAgNDAiIGZpbGw9Im5vbmUiIHN0eWxlPSJzdHJva2U6bGlnaHQtZGFyaygjZDBkMGQwLCAjM2EzYTNhKTsiIHN0cm9rZT0iI2QwZDBkMCIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+&quot;); background-position: -1px -1px;"></div><svg style="left: 0px; top: 0px; width: 100%; height: 100%; display: block; min-width: 850px; min-height: 1100px; position: absolute; background-image: none;"><defs><filter id="drawio-drop-shadow"><fegaussianblur in="SourceAlpha" stdDeviation="1.7" result="blur"></fegaussianblur><feoffset in="blur" dx="3" dy="3" result="offsetBlur"></feoffset><feflood flood-color="#3D4574" flood-opacity="0.4" result="offsetColor"></feflood><fecomposite in="offsetColor" in2="offsetBlur" operator="in" result="offsetBlur"></fecomposite><feblend in="SourceGraphic" in2="offsetBlur"></feblend></filter></defs><g><g></g><g></g><g></g><g></g></g></svg></div><div class="geTabContainer geTabItem" style="left: 0px; bottom: 0px; right: 240px; visibility: hidden;"></div><div class="geToolbarContainer" style="left: 0px; right: 0px; top: 30px; height: 38px;"><div class="geToolbar"><a class="geLabel mxDisabled" title="View (Space+Drag to pan)" style="display: flex; align-items: center; white-space: nowrap; overflow: hidden; position: relative; box-sizing: border-box; width: 38px; opacity: 1; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-position: right -4px top 50%; background-repeat: no-repeat;"><div class="geToolbarButton geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjAwLTEyMHEtMzMgMC01Ni41LTIzLjVUMTIwLTIwMHYtNTYwcTAtMzMgMjMuNS01Ni41VDIwMC04NDBoNTYwcTMzIDAgNTYuNSAyMy41VDg0MC03NjB2NTYwcTAgMzMtMjMuNSA1Ni41VDc2MC0xMjBIMjAwWm0xMjAtODB2LTU2MEgyMDB2NTYwaDEyMFptODAgMGgzNjB2LTU2MEg0MDB2NTYwWm0tODAgMEgyMDBoMTIwWiIvPjwvc3ZnPg==&quot;); background-position: left center; background-repeat: no-repeat; background-size: 18px;"></div></a><div class="geSeparator"></div><a class="geLabel mxDisabled" title="Zoom (Alt+Mousewheel)" style="white-space: nowrap; position: relative; overflow: hidden; width: 54px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-position: right -4px top 50%; background-repeat: no-repeat;">100%</a><div class="geSeparator"></div><a class="geButton mxDisabled" title="Zoom In (Ctrl + / Alt+Mousewheel)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNzg0LTEyMCA1MzItMzcycS0zMCAyNC02OSAzOHQtODMgMTRxLTEwOSAwLTE4NC41LTc1LjVUMTIwLTU4MHEwLTEwOSA3NS41LTE4NC41VDM4MC04NDBxMTA5IDAgMTg0LjUgNzUuNVQ2NDAtNTgwcTAgNDQtMTQgODN0LTM4IDY5bDI1MiAyNTItNTYgNTZaTTM4MC00MDBxNzUgMCAxMjcuNS01Mi41VDU2MC01ODBxMC03NS01Mi41LTEyNy41VDM4MC03NjBxLTc1IDAtMTI3LjUgNTIuNVQyMDAtNTgwcTAgNzUgNTIuNSAxMjcuNVQzODAtNDAwWm0tNDAtNjB2LTgwaC04MHYtODBoODB2LTgwaDgwdjgwaDgwdjgwaC04MHY4MGgtODBaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton mxDisabled" title="Zoom Out (Ctrl - / Alt+Mousewheel)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNzg0LTEyMCA1MzItMzcycS0zMCAyNC02OSAzOHQtODMgMTRxLTEwOSAwLTE4NC41LTc1LjVUMTIwLTU4MHEwLTEwOSA3NS41LTE4NC41VDM4MC04NDBxMTA5IDAgMTg0LjUgNzUuNVQ2NDAtNTgwcTAgNDQtMTQgODN0LTM4IDY5bDI1MiAyNTItNTYgNTZaTTM4MC00MDBxNzUgMCAxMjcuNS01Mi41VDU2MC01ODBxMC03NS01Mi41LTEyNy41VDM4MC03NjBxLTc1IDAtMTI3LjUgNTIuNVQyMDAtNTgwcTAgNzUgNTIuNSAxMjcuNVQzODAtNDAwWk0yODAtNTQwdi04MGgyMDB2ODBIMjgwWiIvPjwvc3ZnPg==&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><div class="geSeparator"></div><a class="geButton mxDisabled" title="Undo (Ctrl+Z)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjgwLTIwMHYtODBoMjg0cTYzIDAgMTA5LjUtNDBUNzIwLTQyMHEwLTYwLTQ2LjUtMTAwVDU2NC01NjBIMzEybDEwNCAxMDQtNTYgNTYtMjAwLTIwMCAyMDAtMjAwIDU2IDU2LTEwNCAxMDRoMjUycTk3IDAgMTY2LjUgNjNUODAwLTQyMHEwIDk0LTY5LjUgMTU3VDU2NC0yMDBIMjgwWiIvPjwvc3ZnPg==&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton mxDisabled" title="Redo (Ctrl+Y)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMzk2LTIwMHEtOTcgMC0xNjYuNS02M1QxNjAtNDIwcTAtOTQgNjkuNS0xNTdUMzk2LTY0MGgyNTJMNTQ0LTc0NGw1Ni01NiAyMDAgMjAwLTIwMCAyMDAtNTYtNTYgMTA0LTEwNEgzOTZxLTYzIDAtMTA5LjUgNDBUMjQwLTQyMHEwIDYwIDQ2LjUgMTAwVDM5Ni0yODBoMjg0djgwSDM5NloiLz48L3N2Zz4=&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><div class="geSeparator"></div><a class="geButton mxDisabled" title="Delete (Delete)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjgwLTEyMHEtMzMgMC01Ni41LTIzLjVUMjAwLTIwMHYtNTIwaC00MHYtODBoMjAwdi00MGgyNDB2NDBoMjAwdjgwaC00MHY1MjBxMCAzMy0yMy41IDU2LjVUNjgwLTEyMEgyODBabTQwMC02MDBIMjgwdjUyMGg0MDB2LTUyMFpNMzYwLTI4MGg4MHYtMzYwaC04MHYzNjBabTE2MCAwaDgwdi0zNjBoLTgwdjM2MFpNMjgwLTcyMHY1MjAtNTIwWiIvPjwvc3ZnPg==&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><div class="geSeparator"></div><a class="geButton mxDisabled" title="To Front (Ctrl+Shift+F)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMzYwLTI4MHEtMzMgMC01Ni41LTIzLjVUMjgwLTM2MHYtNDAwcTAtMzMgMjMuNS01Ni41VDM2MC04NDBoNDAwcTMzIDAgNTYuNSAyMy41VDg0MC03NjB2NDAwcTAgMzMtMjMuNSA1Ni41VDc2MC0yODBIMzYwWm0wLTgwaDQwMHYtNDAwSDM2MHY0MDBaTTIwMC0yMDB2ODBxLTMzIDAtNTYuNS0yMy41VDEyMC0yMDBoODBabS04MC04MHYtODBoODB2ODBoLTgwWm0wLTE2MHYtODBoODB2ODBoLTgwWm0wLTE2MHYtODBoODB2ODBoLTgwWm0xNjAgNDgwdi04MGg4MHY4MGgtODBabTE2MCAwdi04MGg4MHY4MGgtODBabTE2MCAwdi04MGg4MHY4MGgtODBaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton mxDisabled" title="To Back (Ctrl+Shift+B)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjAwLTEyMHEtMzMgMC01Ni41LTIzLjVUMTIwLTIwMHYtNDgwaDgwdjQ4MGg0ODB2ODBIMjAwWm0xNjAtMjQwdjgwcS0zMyAwLTU2LjUtMjMuNVQyODAtMzYwaDgwWm0tODAtODB2LTgwaDgwdjgwaC04MFptMC0xNjB2LTgwaDgwdjgwaC04MFptODAtMTYwaC04MHEwLTMzIDIzLjUtNTYuNVQzNjAtODQwdjgwWm04MCA0ODB2LTgwaDgwdjgwaC04MFptMC00ODB2LTgwaDgwdjgwaC04MFptMTYwIDB2LTgwaDgwdjgwaC04MFptMCA0ODB2LTgwaDgwdjgwaC04MFptMTYwLTQ4MHYtODBxMzMgMCA1Ni41IDIzLjVUODQwLTc2MGgtODBabTAgNDAwaDgwcTAgMzMtMjMuNSA1Ni41VDc2MC0yODB2LTgwWm0wLTgwdi04MGg4MHY4MGgtODBabTAtMTYwdi04MGg4MHY4MGgtODBaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><div class="geSeparator"></div><a class="geButton mxDisabled" title="Fill Color..."><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJtMjQ3LTkwNCA1Ny01NiAzNDMgMzQzcTIzIDIzIDIzIDU3dC0yMyA1N0w0NTctMzEzcS0yMyAyMy01NyAyM3QtNTctMjNMMTUzLTUwM3EtMjMtMjMtMjMtNTd0MjMtNTdsMTkwLTE5MS05Ni05NlptMTUzIDE1M0wyMDktNTYwaDM4Mkw0MDAtNzUxWm0zNjAgNDcxcS0zMyAwLTU2LjUtMjMuNVQ2ODAtMzYwcTAtMjEgMTIuNS00NXQyNy41LTQ1cTktMTIgMTktMjV0MjEtMjVxMTEgMTIgMjEgMjV0MTkgMjVxMTUgMjEgMjcuNSA0NXQxMi41IDQ1cTAgMzMtMjMuNSA1Ni41VDc2MC0yODBaTTgwIDB2LTE2MGg4MDBWMEg4MFoiLz48L3N2Zz4=&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton mxDisabled" title="Line Color..."><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNODAgMHYtMTYwaDgwMFYwSDgwWm0xNjAtMzIwaDU2bDMxMi0zMTEtMjktMjktMjgtMjgtMzExIDMxMnY1NlptLTgwIDgwdi0xNzBsNDQ4LTQ0N3ExMS0xMSAyNS41LTE3dDMwLjUtNnExNiAwIDMxIDZ0MjcgMThsNTUgNTZxMTIgMTEgMTcuNSAyNnQ1LjUgMzFxMCAxNS01LjUgMjkuNVQ3NzctNjg3TDMzMC0yNDBIMTYwWm01NjAtNTA0LTU2LTU2IDU2IDU2Wk02MDgtNjMxbC0yOS0yOS0yOC0yOCA1NyA1N1oiLz48L3N2Zz4=&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton mxDisabled" title="Shadow"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMTYwLTgwcS0zMyAwLTU2LjUtMjMuNVQ4MC0xNjB2LTQ4MHEwLTMzIDIzLjUtNTYuNVQxNjAtNzIwaDgwdi04MHEwLTMzIDIzLjUtNTYuNVQzMjAtODgwaDQ4MHEzMyAwIDU2LjUgMjMuNVQ4ODAtODAwdjQ4MHEwIDMzLTIzLjUgNTYuNVQ4MDAtMjQwaC04MHY4MHEwIDMzLTIzLjUgNTYuNVQ2NDAtODBIMTYwWm0xNjAtMjQwaDQ4MHYtNDgwSDMyMHY0ODBaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><div class="geSeparator"></div><a class="geButton mxDisabled" title="Connection" style="display: flex; align-items: center; white-space: nowrap; overflow: hidden; position: relative; box-sizing: border-box; width: 38px; opacity: 1; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-position: right -4px top 50%; background-repeat: no-repeat;"><div class="geAdaptiveAsset" style="background-position: left center; background-repeat: no-repeat; height: 100%; width: 100%; background-image: url(&quot;data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIyMHB4IiBoZWlnaHQ9IjIycHgiIHZpZXdCb3g9IjAgMCA0MiAyMCIgdmVyc2lvbj0iMS4xIiBzdHlsZT0iY29sb3Itc2NoZW1lOiBsaWdodCBkYXJrOyI+PHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCwzKSIgc3Ryb2tlLXdpZHRoPSIyIiBkPSJNIDAgOCBMIDI2IDggTCAyNiA0IEwgMzIgOCBMIDI2IDEyIEwgMjYgOCBaIiBzdHJva2U9IiM0MDQwNDAiIGZpbGw9IiM0MDQwNDAiLz48L3N2Zz4=&quot;);"></div></a><a class="geButton mxDisabled" title="Waypoints" style="display: flex; align-items: center; white-space: nowrap; overflow: hidden; position: relative; box-sizing: border-box; width: 38px; opacity: 1; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-position: right -4px top 50%; background-repeat: no-repeat;"><div class="geAdaptiveAsset" style="background-position: left center; background-repeat: no-repeat; height: 100%; width: 100%; background-image: url(&quot;data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE4cHgiIHZpZXdCb3g9IjAgMCAzNiAzNiIgdmVyc2lvbj0iMS4xIiBzdHlsZT0iY29sb3Itc2NoZW1lOiBsaWdodCBkYXJrOyI+PHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMyw0KSIgc3Ryb2tlLXdpZHRoPSIyIiBkPSJNIDAgMjYgTCA0IDI2IEwgNCAzMCBMIDAgMzAgWiBNIDIgMjYgTCAyIDE0IEwgMjggMTQgTCAyOCA0IE0gMjYgMCBMIDMwIDAgTCAzMCA0IEwgMjYgNCBaIiBzdHJva2U9IiM0MDQwNDAiIGZpbGw9Im5vbmUiLz48L3N2Zz4=&quot;);"></div></a><div class="geSeparator"></div><a class="geLabel mxDisabled" title="Insert (Doubleclick to insert text)" style="display: flex; align-items: center; white-space: nowrap; overflow: hidden; position: relative; box-sizing: border-box; width: 38px; opacity: 1; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-position: right -4px top 50%; background-repeat: no-repeat;"><div class="geToolbarButton geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTkgMTNoLTZ2NmgtMnYtNkg1di0yaDZWNWgydjZoNnYyeiIvPjwvc3ZnPg==&quot;); background-position: left center; background-repeat: no-repeat; background-size: 18px;"></div></a><div class="geSeparator"></div><a class="geButton mxDisabled" title="Table" style="position: relative; white-space: nowrap; overflow: hidden; width: 36px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-position: right -4px top 50%; background-repeat: no-repeat;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjAwLTEyMHEtMzMgMC01Ni41LTIzLjVUMTIwLTIwMHYtNTYwcTAtMzMgMjMuNS01Ni41VDIwMC04NDBoNTYwcTMzIDAgNTYuNSAyMy41VDg0MC03NjB2NTYwcTAgMzMtMjMuNSA1Ni41VDc2MC0xMjBIMjAwWm0yNDAtMjQwSDIwMHYxNjBoMjQwdi0xNjBabTgwIDB2MTYwaDI0MHYtMTYwSDUyMFptLTgwLTgwdi0xNjBIMjAwdjE2MGgyNDBabTgwIDBoMjQwdi0xNjBINTIwdjE2MFpNMjAwLTY4MGg1NjB2LTgwSDIwMHY4MFoiLz48L3N2Zz4=&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a></div><a title="Format (Ctrl+Shift+P)" class="geButton geAdaptiveAsset" style="position: absolute; display: inline-block; right: 10px; padding: 2px; font-size: 14px; width: 16px; height: 16px; background-position: 50% 50%; background-size: 16px 16px; background-repeat: no-repeat; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMzAwLTY0MHYzMjBsMTYwLTE2MC0xNjAtMTYwWk0yMDAtMTIwcS0zMyAwLTU2LjUtMjMuNVQxMjAtMjAwdi01NjBxMC0zMyAyMy41LTU2LjVUMjAwLTg0MGg1NjBxMzMgMCA1Ni41IDIzLjVUODQwLTc2MHY1NjBxMCAzMy0yMy41IDU2LjVUNzYwLTEyMEgyMDBabTQ0MC04MGgxMjB2LTU2MEg2NDB2NTYwWm0tODAgMHYtNTYwSDIwMHY1NjBoMzYwWm04MCAwaDEyMC0xMjBaIi8+PC9zdmc+&quot;);"></a><a title="Fullscreen" class="geButton geAdaptiveAsset" style="position: absolute; display: inline-block; right: 30px; padding: 2px; font-size: 14px; width: 16px; height: 16px; background-position: 50% 50%; background-size: 16px 16px; background-repeat: no-repeat; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMTIwLTEyMHYtMjAwaDgwdjEyMGgxMjB2ODBIMTIwWm01MjAgMHYtODBoMTIwdi0xMjBoODB2MjAwSDY0MFpNMTIwLTY0MHYtMjAwaDIwMHY4MEgyMDB2MTIwaC04MFptNjQwIDB2LTEyMEg2NDB2LTgwaDIwMHYyMDBoLTgwWiIvPjwvc3ZnPg==&quot;);"></a></div><div class="geHsplit" style="width: 12px; z-index: 1; touch-action: none; top: 69px; left: 0px; bottom: 0px; display: none;"></div></body></html>