Add High Level Servlet Architecture
- Review of Filters - DelegatingFilterProxy - FilterChainProxy - Security Filters Fixes gh-7955
This commit is contained in:
parent
0028414da7
commit
55f42fc153
|
@ -1,8 +1,170 @@
|
|||
[[overall-architecture]]
|
||||
[[servlet-architecture]]
|
||||
= Architecture and Implementation
|
||||
Once you are familiar with setting up and running some namespace-configuration based applications, you may wish to develop more of an understanding of how the framework actually works behind the namespace facade.
|
||||
Like most software, Spring Security has certain central interfaces, classes and conceptual abstractions that are commonly used throughout the framework.
|
||||
In this part of the reference guide we will look at some of these and see how they work together to support authentication and access-control within Spring Security.
|
||||
:figures: images/servlet/architecture
|
||||
|
||||
This section discusses Spring Security's high level architecture within Servlet based applications.
|
||||
We build on this high level understanding within each section of the reference.
|
||||
// FIXME: Add links to other sections of architecture
|
||||
|
||||
[[servlet-filters-review]]
|
||||
== A Review of ``Filter``s
|
||||
|
||||
Spring Security's Servlet support is based on Servlet ``Filter``s, so it is helpful to look at the role of ``Filter``s generally first.
|
||||
The picture below shows the typical layering of the handlers for a single HTTP request.
|
||||
|
||||
.FilterChain
|
||||
[[servlet-filterchain-figure]]
|
||||
image::{figures}/filterchain.svg[]
|
||||
|
||||
The client sends a request to the application, and the container creates a `FilterChain` which contains the ``Filter``s and `Servlet` that should process the `HttpServletRequest` based on the path of the request URI.
|
||||
At most one `Servlet` can handle a single `HttpServletRequest` and `HttpServletResponse`.
|
||||
However, more than one `Filter` can be used to:
|
||||
|
||||
* Prevent downstream ``Filter``s or the `Servlet` from being invoked.
|
||||
In this instance the `Filter` will typically write the `HttpServletResponse`.
|
||||
* Modify the `HttpServletRequest` or `HttpServletResponse` used by the downstream ``Filter``s and `Servlet`
|
||||
|
||||
The power of the `Filter` comes from the `FilterChain` that is passed into it.
|
||||
|
||||
.`FilterChain` Usage Example
|
||||
====
|
||||
[source,java]
|
||||
----
|
||||
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) {
|
||||
// do something before the rest of the application
|
||||
chain.doFilter(request, response); // invoke the rest of the application
|
||||
// do something after the rest of the application
|
||||
}
|
||||
----
|
||||
====
|
||||
|
||||
Since a `Filter` only impacts downstream ``Filter``s and the `Servlet`, the order each `Filter` is invoked is extremely important.
|
||||
|
||||
[[servlet-delegatingfilterproxy]]
|
||||
== DelegatingFilterProxy
|
||||
|
||||
Spring provides a `Filter` implementation named `DelegatingFilterProxy` that allows bridging between the Servlet container's lifecycle and Spring's `ApplicationContext`.
|
||||
The Servlet container allows registering ``Filter``s using its own standards, but it is not aware of Spring defined Beans.
|
||||
`DelegatingFilterProxy` can be registered via standard Servlet container mechanisms, but delegate all the work to a Spring Bean that implements `Filter`.
|
||||
|
||||
Here is a picture of how `DelegatingFilterProxy` fits into the <<servlet-filterchain-figure>>.
|
||||
|
||||
.DelegatingFilterProxy
|
||||
[[servlet-delegatingfilterproxy-figure]]
|
||||
image::{figures}/delegatingfilterproxy.svg[]
|
||||
|
||||
`DelegatingFilterProxy` looks up __Bean Filter~0~__ from the `ApplicationContext` and then invokes __Bean Filter~0~__.
|
||||
The pseudo code of `DelegatingFilterProxy` can be seen below.
|
||||
|
||||
.`DelegatingFilterProxy` Pseudo Code
|
||||
====
|
||||
[source,java,subs="+quotes,+macros"]
|
||||
----
|
||||
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) {
|
||||
// Lazily get Filter that was registered as a Spring Bean
|
||||
// For the example in <<servlet-delegatingfilterproxy-figure>> `delegate` is an instance of __Bean Filter~0~__
|
||||
Filter delegate = getFilterBean(someBeanName);
|
||||
// delegate work to the Spring Bean
|
||||
delegate.doFilter(request, response);
|
||||
}
|
||||
----
|
||||
====
|
||||
|
||||
Another benefit of `DelegatingFilterProxy` is that it allows delaying looking `Filter` bean instances.
|
||||
This is important because the container needs to register the `Filter` instances before the container can startup.
|
||||
However, Spring typically uses a `ContextLoaderListener` to load the Spring Beans which will not be done until after the `Filter` instances need to be registered.
|
||||
|
||||
[[servlet-filterchainproxy]]
|
||||
== FilterChainProxy
|
||||
|
||||
Spring Security's Servlet support is contained within `FilterChainProxy`.
|
||||
`FilterChainProxy` is a special `Filter` provided by Spring Security that allows delegating to many `Filter` instances through the `SecurityFilterChain` API.
|
||||
// FIXME: link to SecurityFilterChain
|
||||
Since `FilterChainProxy` is a Bean, it is typically wrapped in a <<servlet-delegatingfilterproxy>>.
|
||||
|
||||
.FilterChainProxy
|
||||
[[servlet-filterchainproxy-figure]]
|
||||
image::{figures}/filterchainproxy.svg[]
|
||||
|
||||
The <<servlet-security-filters,Security Filters>> in `SecurityFilterChain` are typically Beans, but they are registered with `FilterChainProxy` instead of <<servlet-delegatingfilterproxy>>.
|
||||
`FilterChainProxy` provides a number of advantages to registering directly with the Servlet container or <<servlet-delegatingfilterproxy>>.
|
||||
First, it provides a starting point for all of Spring Security's Servlet support.
|
||||
For that reason, if you are attempting to troubleshoot Spring Security's Servlet support, adding a debug point in `FilterChainProxy` is a great place to start.
|
||||
|
||||
Second, since `FilterChainProxy` is central to Spring Security usage it can perform tasks that are not viewed as optional.
|
||||
// FIXME: Add a link to SecurityContext
|
||||
For example, it clears out the `SecurityContext` to avoid memory leaks.
|
||||
// FIXME: Add a link to HttpFirewall
|
||||
It also applies Spring Security's `HttpFirewall` to protect applications against certain types of attacks.
|
||||
|
||||
In addition, it provides more flexibility in determining when a `SecurityFilterChain` should be invoked.
|
||||
// FIXME: Add link to SecurityFitlerChain
|
||||
In a Servlet container, ``Filter``s are invoked based upon the URL alone.
|
||||
// FIXME: Link to RequestMatcher
|
||||
However, `FilterChainProxy` can determine invocation based upon anything in the `HttpServletRequest` by leveraging the `RequestMatcher` interface.
|
||||
|
||||
In fact, `FilterChainProxy` can be used to determine which `SecurityFilterChain` should be used.
|
||||
This allows providing a totally separate configuration for different _slices_ if your application.
|
||||
|
||||
.Multiple SecurityFilterChain
|
||||
[[servlet-multi-securityfilterchain-figure]]
|
||||
image::{figures}/multi-securityfilterchain.svg[]
|
||||
|
||||
In the <<servlet-multi-securityfilterchain-figure>> Figure `FilterChainProxy` decides which `SecurityFilterChain` should be used.
|
||||
Only the first `SecurityFilterChain` that matches will be invoked.
|
||||
If a URL of `/api/messages/` is requested, it will first match on ``SecurityFilterChain~0~``'s pattern of `+/api/**+`, so only `SecurityFilterChain~0~` will be invoked even though it also matches on ``SecurityFilterChain~n~``.
|
||||
If a URL of `/messages/` is requested, it will not match on ``SecurityFilterChain~0~``'s pattern of `+/api/**+`, so `FilterChainProxy` will continue trying each `SecurityFilterChain`.
|
||||
Assuming that no other, `SecurityFilterChain` instances match `SecurityFilterChain~n~` will be invoked.
|
||||
// FIXME add link to pattern matching
|
||||
|
||||
Notice that `SecurityFilterChain~0~` has only three security ``Filter``s instances configured.
|
||||
However, `SecurityFilterChain~n~` has four security ``Filter``s configured.
|
||||
It is important to note that each `SecurityFilterChain` can be unique and configured in isolation.
|
||||
In fact, a `SecurityFilterChain` might have zero security ``Filter``s if the application wants Spring Security to ignore certain requests.
|
||||
// FIXME: add link to configuring multiple `SecurityFilterChain` instances
|
||||
|
||||
[[servlet-security-filters]]
|
||||
== Security Filters
|
||||
|
||||
The <<servlet-filters-review,order of ``Filter``>>s matters.
|
||||
It is typically not necessary to know the ordering of Spring Security's ``Filter``s.
|
||||
However, there are times that it is beneficial to know the ordering
|
||||
|
||||
Below is a comprehensive list of Spring Security Filter ordering:
|
||||
|
||||
* ChannelProcessingFilter
|
||||
* ConcurrentSessionFilter
|
||||
* WebAsyncManagerIntegrationFilter
|
||||
* SecurityContextPersistenceFilter
|
||||
* HeaderWriterFilter
|
||||
* CorsFilter
|
||||
* CsrfFilter
|
||||
* LogoutFilter
|
||||
* OAuth2AuthorizationRequestRedirectFilter
|
||||
* Saml2WebSsoAuthenticationRequestFilter
|
||||
* X509AuthenticationFilter
|
||||
* AbstractPreAuthenticatedProcessingFilter
|
||||
* CasAuthenticationFilter
|
||||
* OAuth2LoginAuthenticationFilter
|
||||
* Saml2WebSsoAuthenticationFilter
|
||||
* UsernamePasswordAuthenticationFilter
|
||||
* ConcurrentSessionFilter
|
||||
* OpenIDAuthenticationFilter
|
||||
* DefaultLoginPageGeneratingFilter
|
||||
* DefaultLogoutPageGeneratingFilter
|
||||
* DigestAuthenticationFilter
|
||||
* BearerTokenAuthenticationFilter
|
||||
* BasicAuthenticationFilter
|
||||
* RequestCacheAwareFilter
|
||||
* SecurityContextHolderAwareRequestFilter
|
||||
* JaasApiIntegrationFilter
|
||||
* RememberMeAuthenticationFilter
|
||||
* AnonymousAuthenticationFilter
|
||||
* OAuth2AuthorizationCodeGrantFilter
|
||||
* SessionManagementFilter
|
||||
* ExceptionTranslationFilter
|
||||
* FilterSecurityInterceptor
|
||||
* SwitchUserFilter
|
||||
|
||||
include::technical-overview.adoc[]
|
||||
|
||||
|
|
Binary file not shown.
|
@ -0,0 +1,512 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="210mm" height="148mm" viewBox="0 0 21000 14800" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="ClipPathGroup">
|
||||
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
|
||||
<rect x="0" y="0" width="21000" height="14800"/>
|
||||
</clipPath>
|
||||
<clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
|
||||
<rect x="21" y="14" width="20958" height="14771"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<defs>
|
||||
<font id="EmbeddedFont_1" horiz-adv-x="2048">
|
||||
<font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
|
||||
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
|
||||
<glyph unicode="y" horiz-adv-x="1139" d="M 283,-425 C 216,-425 157,-421 106,-412 L 106,-212 C 141,-217 174,-220 203,-220 243,-220 276,-214 303,-201 329,-188 353,-167 374,-138 395,-109 418,-59 444,11 L 16,1082 313,1082 483,575 C 510,502 543,391 584,241 L 609,336 674,571 834,1082 1128,1082 700,-57 C 643,-196 583,-292 522,-345 460,-398 380,-425 283,-425 Z"/>
|
||||
<glyph unicode="x" horiz-adv-x="1139" d="M 819,0 L 567,392 313,0 14,0 410,559 33,1082 336,1082 567,728 797,1082 1102,1082 725,562 1124,0 819,0 Z"/>
|
||||
<glyph unicode="v" horiz-adv-x="1139" d="M 731,0 L 395,0 8,1082 305,1082 494,477 C 504,444 528,360 565,227 572,254 585,302 606,371 627,440 703,677 836,1082 L 1130,1082 731,0 Z"/>
|
||||
<glyph unicode="t" horiz-adv-x="662" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
|
||||
<glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
|
||||
<glyph unicode="o" horiz-adv-x="1113" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
|
||||
<glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
|
||||
<glyph unicode="l" horiz-adv-x="292" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
|
||||
<glyph unicode="i" horiz-adv-x="292" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
|
||||
<glyph unicode="h" horiz-adv-x="1007" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
|
||||
<glyph unicode="g" horiz-adv-x="1033" d="M 596,-434 C 464,-434 358,-409 278,-359 197,-308 148,-236 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 682,-249 739,-225 775,-177 811,-129 829,-58 829,37 L 829,94 831,201 829,201 C 767,68 651,2 481,2 355,2 257,49 188,144 119,239 84,374 84,550 84,727 120,863 191,959 262,1055 366,1103 502,1103 659,1103 768,1038 829,908 L 834,908 C 834,931 836,963 839,1003 842,1043 845,1069 848,1082 L 1114,1082 C 1110,1010 1108,927 1108,832 L 1108,33 C 1108,-121 1064,-237 977,-316 890,-395 763,-434 596,-434 Z M 831,556 C 831,667 811,754 772,817 732,879 675,910 602,910 452,910 377,790 377,550 377,315 451,197 600,197 675,197 732,228 772,291 811,353 831,441 831,556 Z"/>
|
||||
<glyph unicode="e" horiz-adv-x="1007" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
|
||||
<glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,203 60,306 60,418 97,503 170,562 243,621 348,651 487,652 L 720,656 720,711 C 720,782 708,834 683,869 658,903 618,920 562,920 510,920 472,908 448,885 423,861 408,822 402,767 L 109,781 C 127,886 175,966 254,1021 332,1075 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,501 L 576,499 C 511,496 464,489 437,478 410,466 389,448 375,424 360,400 353,368 353,328 353,277 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,236 668,269 689,312 710,354 720,399 720,446 L 720,501 Z"/>
|
||||
<glyph unicode="S" horiz-adv-x="1244" d="M 1286,406 C 1286,268 1235,163 1133,90 1030,17 880,-20 682,-20 501,-20 360,12 257,76 154,140 88,237 59,367 L 344,414 C 363,339 401,285 457,252 513,218 591,201 690,201 896,201 999,264 999,389 999,429 987,462 964,488 940,514 907,536 864,553 821,570 738,591 616,616 511,641 437,661 396,676 355,691 317,708 284,729 251,749 222,773 199,802 176,831 158,864 145,903 132,942 125,986 125,1036 125,1163 173,1261 269,1329 364,1396 503,1430 686,1430 861,1430 992,1403 1080,1348 1167,1293 1224,1203 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 501,1221 412,1165 412,1053 412,1016 422,986 441,963 460,940 488,920 525,904 562,887 638,867 752,842 887,813 984,787 1043,763 1101,738 1147,710 1181,678 1215,645 1241,607 1259,562 1277,517 1286,465 1286,406 Z"/>
|
||||
<glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,872 1275,791 1234,720 1193,649 1134,594 1057,555 980,516 888,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 939,1409 1069,1370 1160,1293 1251,1215 1296,1105 1296,963 Z M 999,958 C 999,1106 912,1180 737,1180 L 432,1180 432,723 745,723 C 826,723 889,743 933,784 977,824 999,882 999,958 Z"/>
|
||||
<glyph unicode="F" horiz-adv-x="1060" d="M 432,1181 L 432,745 1153,745 1153,517 432,517 432,0 137,0 137,1409 1176,1409 1176,1181 432,1181 Z"/>
|
||||
<glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
|
||||
<glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 973,212 1097,301 1166,480 L 1423,383 C 1368,247 1287,146 1180,80 1073,13 944,-20 795,-20 568,-20 393,44 270,173 146,301 84,480 84,711 84,942 144,1120 263,1244 382,1368 555,1430 782,1430 947,1430 1082,1397 1186,1331 1290,1264 1363,1167 1405,1038 L 1145,967 C 1123,1038 1080,1094 1016,1136 951,1177 875,1198 788,1198 655,1198 554,1157 485,1074 416,991 381,870 381,711 381,549 417,425 488,340 559,255 661,212 795,212 Z"/>
|
||||
<glyph unicode="B" horiz-adv-x="1271" d="M 1386,402 C 1386,274 1338,175 1242,105 1146,35 1013,0 842,0 L 137,0 137,1409 782,1409 C 954,1409 1084,1379 1173,1320 1261,1260 1305,1172 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,557 995,623 806,623 L 432,623 432,219 817,219 C 912,219 981,236 1025,271 1068,305 1090,356 1090,425 Z"/>
|
||||
<glyph unicode="2" horiz-adv-x="1006" d="M 71,0 L 71,195 C 108,276 160,354 228,431 295,508 380,588 483,671 582,751 651,817 691,869 730,921 750,972 750,1022 750,1145 688,1206 565,1206 505,1206 459,1190 428,1158 396,1125 375,1077 366,1012 L 83,1028 C 99,1159 148,1258 230,1327 311,1396 422,1430 563,1430 715,1430 832,1395 913,1326 994,1257 1035,1159 1035,1034 1035,968 1022,908 996,855 970,802 937,753 896,708 855,663 810,620 761,581 711,542 663,503 616,466 569,429 527,391 489,353 450,315 422,274 403,231 L 1057,231 1057,0 71,0 Z"/>
|
||||
<glyph unicode="0" horiz-adv-x="980" d="M 1055,705 C 1055,467 1014,287 933,164 851,41 728,-20 565,-20 242,-20 81,222 81,705 81,874 99,1011 134,1118 169,1225 222,1303 293,1354 364,1405 457,1430 573,1430 740,1430 862,1370 939,1249 1016,1128 1055,947 1055,705 Z M 773,705 C 773,835 767,936 754,1008 741,1080 721,1132 693,1163 665,1194 624,1210 571,1210 514,1210 472,1194 443,1163 414,1131 393,1079 381,1008 368,936 362,835 362,705 362,576 369,476 382,404 395,331 415,279 444,248 472,217 513,201 567,201 620,201 662,218 691,251 720,284 741,336 754,409 767,482 773,580 773,705 Z"/>
|
||||
<glyph unicode=" " horiz-adv-x="556"/>
|
||||
</font>
|
||||
</defs>
|
||||
<defs class="TextShapeIndex">
|
||||
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14"/>
|
||||
</defs>
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<defs class="TextEmbeddedBitmaps"/>
|
||||
<g>
|
||||
<g id="id2" class="Master_Slide">
|
||||
<g id="bg-id2" class="Background"/>
|
||||
<g id="bo-id2" class="BackgroundObjects"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="SlideGroup">
|
||||
<g>
|
||||
<g id="container-id1">
|
||||
<g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="5899" width="7190" height="2715"/>
|
||||
<defs>
|
||||
<mask id="mask1">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient1" x1="5099" y1="6099" x2="5099" y2="8625" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient1)" d="M 1599,6099 L 8600,6099 8600,8625 1599,8625 1599,6099 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask1)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5100,8612 L 1612,8612 1612,6112 8587,6112 8587,8612 5100,8612 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5100,8612 L 1612,8612 1612,6112 8587,6112 8587,8612 5100,8612 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="1818" y="6813"><tspan fill="rgb(128,128,128)" stroke="none">DelegatingFilterProxy</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(102,255,255)" stroke="none" d="M 5312,8400 L 1824,8400 1824,5900 8799,5900 8799,8400 5312,8400 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5312,8400 L 1824,8400 1824,5900 8799,5900 8799,8400 5312,8400 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="2030" y="6601"><tspan fill="rgb(0,0,0)" stroke="none">DelegatingFilterProxy</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="299" width="7200" height="1485"/>
|
||||
<defs>
|
||||
<mask id="mask2">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient2" x1="5104" y1="499" x2="5104" y2="1795" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient2)" d="M 1599,499 L 8610,499 8610,1795 1599,1795 1599,499 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask2)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5105,1782 L 1612,1782 1612,512 8597,512 8597,1782 5105,1782 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5105,1782 L 1612,1782 1612,512 8597,512 8597,1782 5105,1782 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4222" y="1368"><tspan fill="rgb(128,128,128)" stroke="none">Client</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(204,255,0)" stroke="none" d="M 5317,1570 L 1824,1570 1824,300 8809,300 8809,1570 5317,1570 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5317,1570 L 1824,1570 1824,300 8809,300 8809,1570 5317,1570 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4434" y="1156"><tspan fill="rgb(0,0,0)" stroke="none">Client</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="11899" width="7200" height="1485"/>
|
||||
<defs>
|
||||
<mask id="mask3">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient3" x1="5104" y1="12099" x2="5104" y2="13395" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient3)" d="M 1599,12099 L 8610,12099 8610,13395 1599,13395 1599,12099 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask3)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5105,13382 L 1612,13382 1612,12112 8597,12112 8597,13382 5105,13382 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5105,13382 L 1612,13382 1612,12112 8597,12112 8597,13382 5105,13382 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4049" y="12968"><tspan fill="rgb(128,128,128)" stroke="none">Servlet</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(0,204,255)" stroke="none" d="M 5317,13170 L 1824,13170 1824,11900 8809,11900 8809,13170 5317,13170 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5317,13170 L 1824,13170 1824,11900 8809,11900 8809,13170 5317,13170 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4261" y="12756"><tspan fill="rgb(0,0,0)" stroke="none">Servlet</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="3500" width="7200" height="1485"/>
|
||||
<defs>
|
||||
<mask id="mask4">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient4" x1="5104" y1="3700" x2="5104" y2="4996" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient4)" d="M 1599,3700 L 8610,3700 8610,4996 1599,4996 1599,3700 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask4)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5105,4983 L 1612,4983 1612,3713 8597,3713 8597,4983 5105,4983 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5105,4983 L 1612,4983 1612,3713 8597,3713 8597,4983 5105,4983 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4226" y="4493"><tspan fill="rgb(128,128,128)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5780" y="4702"><tspan font-size="368px" fill="rgb(128,128,128)" stroke="none">0</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(102,255,255)" stroke="none" d="M 5317,4771 L 1824,4771 1824,3501 8809,3501 8809,4771 5317,4771 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5317,4771 L 1824,4771 1824,3501 8809,3501 8809,4771 5317,4771 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4438" y="4281"><tspan fill="rgb(0,0,0)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5992" y="4490"><tspan font-size="368px" fill="rgb(0,0,0)" stroke="none">0</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id7">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5127" y="1570" width="381" height="1932"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 5317,1847 L 5317,3224"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5316,1570 L 5128,1872 5507,1872 5316,1570 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5318,3501 L 5507,3199 5128,3199 5318,3501 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id8">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="9500" width="7200" height="1510"/>
|
||||
<defs>
|
||||
<mask id="mask5">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient5" x1="5104" y1="9700" x2="5104" y2="11021" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient5)" d="M 1599,9700 L 8610,9700 8610,11021 1599,11021 1599,9700 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask5)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5105,11008 L 1612,11008 1612,9713 8597,9713 8597,11008 5105,11008 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5105,11008 L 1612,11008 1612,9713 8597,9713 8597,11008 5105,11008 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4226" y="10505"><tspan fill="rgb(128,128,128)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5780" y="10715"><tspan font-size="368px" fill="rgb(128,128,128)" stroke="none">2</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(102,255,255)" stroke="none" d="M 5317,10796 L 1824,10796 1824,9501 8809,9501 8809,10796 5317,10796 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5317,10796 L 1824,10796 1824,9501 8809,9501 8809,10796 5317,10796 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4438" y="10293"><tspan fill="rgb(0,0,0)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5992" y="10503"><tspan font-size="368px" fill="rgb(0,0,0)" stroke="none">2</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id9">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5110" y="4801" width="381" height="1144"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 5300,5078 L 5300,5667"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5299,4801 L 5111,5103 5490,5103 5299,4801 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5301,5944 L 5490,5642 5111,5642 5301,5944 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id10">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5110" y="8402" width="381" height="1144"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 5300,8679 L 5300,9268"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5299,8402 L 5111,8704 5490,8704 5299,8402 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5301,9545 L 5490,9243 5111,9243 5301,9545 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id11">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5110" y="10803" width="381" height="1144"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 5300,11080 L 5300,11669"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5299,10803 L 5111,11105 5490,11105 5299,10803 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5301,11946 L 5490,11644 5111,11644 5301,11946 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id12">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1174" y="2874" width="8153" height="10853"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5250,13700 L 5150,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5085,13700 L 4984,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4920,13700 L 4819,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4754,13700 L 4654,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4589,13700 L 4489,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4424,13700 L 4323,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4259,13700 L 4158,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4093,13700 L 3993,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3928,13700 L 3828,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3763,13700 L 3662,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3598,13700 L 3497,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3432,13700 L 3332,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3267,13700 L 3167,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3102,13700 L 3001,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2937,13700 L 2836,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2771,13700 L 2671,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2606,13700 L 2506,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2441,13700 L 2340,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2276,13700 L 2175,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2110,13700 L 2010,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1945,13700 L 1845,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1780,13700 L 1679,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1615,13700 L 1514,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1449,13700 L 1349,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1284,13700 L 1200,13700 1200,13684"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,13619 L 1200,13519"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,13454 L 1200,13353"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,13289 L 1200,13188"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,13123 L 1200,13023"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12958 L 1200,12858"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12793 L 1200,12692"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12628 L 1200,12527"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12462 L 1200,12362"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12297 L 1200,12197"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12132 L 1200,12031"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11967 L 1200,11866"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11801 L 1200,11701"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11636 L 1200,11536"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11471 L 1200,11370"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11306 L 1200,11205"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11140 L 1200,11040"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10975 L 1200,10875"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10810 L 1200,10709"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10645 L 1200,10544"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10479 L 1200,10379"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10314 L 1200,10214"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10149 L 1200,10048"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9984 L 1200,9883"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9818 L 1200,9718"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9653 L 1200,9553"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9488 L 1200,9388"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9323 L 1200,9222"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9158 L 1200,9057"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8992 L 1200,8892"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8827 L 1200,8727"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8662 L 1200,8561"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8497 L 1200,8396"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8331 L 1200,8231"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8166 L 1200,8066"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8001 L 1200,7900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7836 L 1200,7735"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7670 L 1200,7570"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7505 L 1200,7405"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7340 L 1200,7239"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7175 L 1200,7074"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7009 L 1200,6909"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6844 L 1200,6744"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6679 L 1200,6578"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6514 L 1200,6413"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6348 L 1200,6248"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6183 L 1200,6083"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6018 L 1200,5917"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5853 L 1200,5752"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5687 L 1200,5587"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5522 L 1200,5422"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5357 L 1200,5257"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5192 L 1200,5091"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5027 L 1200,4926"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4861 L 1200,4761"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4696 L 1200,4596"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4531 L 1200,4430"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4366 L 1200,4265"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4200 L 1200,4100"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4035 L 1200,3935"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,3870 L 1200,3769"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,3705 L 1200,3604"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,3539 L 1200,3439"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,3374 L 1200,3274"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,3209 L 1200,3108"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,3044 L 1200,2943"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1222,2900 L 1322,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1387,2900 L 1487,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1552,2900 L 1653,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1717,2900 L 1818,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1883,2900 L 1983,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2048,2900 L 2148,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2213,2900 L 2314,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2378,2900 L 2479,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2544,2900 L 2644,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2709,2900 L 2809,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2874,2900 L 2974,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3039,2900 L 3140,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3204,2900 L 3305,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3370,2900 L 3470,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3535,2900 L 3635,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3700,2900 L 3801,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3865,2900 L 3966,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4031,2900 L 4131,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4196,2900 L 4296,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4361,2900 L 4462,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4526,2900 L 4627,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4692,2900 L 4792,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4857,2900 L 4957,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5022,2900 L 5123,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5187,2900 L 5288,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5353,2900 L 5453,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5518,2900 L 5618,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5683,2900 L 5784,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5848,2900 L 5949,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6014,2900 L 6114,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6179,2900 L 6279,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6344,2900 L 6445,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6509,2900 L 6610,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6675,2900 L 6775,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6840,2900 L 6940,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7005,2900 L 7105,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7170,2900 L 7271,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7335,2900 L 7436,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7501,2900 L 7601,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7666,2900 L 7766,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7831,2900 L 7932,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7996,2900 L 8097,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8162,2900 L 8262,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8327,2900 L 8427,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8492,2900 L 8593,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8657,2900 L 8758,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8823,2900 L 8923,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8988,2900 L 9088,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9153,2900 L 9254,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,2918 L 9300,3019"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,3084 L 9300,3184"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,3249 L 9300,3349"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,3414 L 9300,3515"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,3579 L 9300,3680"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,3745 L 9300,3845"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,3910 L 9300,4010"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4075 L 9300,4176"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4240 L 9300,4341"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4406 L 9300,4506"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4571 L 9300,4671"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4736 L 9300,4836"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4901 L 9300,5002"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5066 L 9300,5167"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5232 L 9300,5332"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5397 L 9300,5497"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5562 L 9300,5663"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5727 L 9300,5828"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5893 L 9300,5993"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6058 L 9300,6158"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6223 L 9300,6324"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6388 L 9300,6489"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6554 L 9300,6654"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6719 L 9300,6819"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6884 L 9300,6985"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7049 L 9300,7150"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7215 L 9300,7315"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7380 L 9300,7480"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7545 L 9300,7646"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7710 L 9300,7811"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7876 L 9300,7976"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8041 L 9300,8141"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8206 L 9300,8307"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8371 L 9300,8472"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8537 L 9300,8637"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8702 L 9300,8802"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8867 L 9300,8967"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9032 L 9300,9133"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9197 L 9300,9298"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9363 L 9300,9463"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9528 L 9300,9628"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9693 L 9300,9794"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9858 L 9300,9959"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10024 L 9300,10124"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10189 L 9300,10289"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10354 L 9300,10455"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10519 L 9300,10620"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10685 L 9300,10785"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10850 L 9300,10950"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11015 L 9300,11116"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11180 L 9300,11281"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11346 L 9300,11446"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11511 L 9300,11611"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11676 L 9300,11777"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11841 L 9300,11942"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12007 L 9300,12107"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12172 L 9300,12272"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12337 L 9300,12438"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12502 L 9300,12603"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12668 L 9300,12768"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12833 L 9300,12933"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12998 L 9300,13098"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,13163 L 9300,13264"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,13328 L 9300,13429"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,13494 L 9300,13594"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,13659 L 9300,13700 9241,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9176,13700 L 9075,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9011,13700 L 8910,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8845,13700 L 8745,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8680,13700 L 8580,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8515,13700 L 8414,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8350,13700 L 8249,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8184,13700 L 8084,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8019,13700 L 7919,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7854,13700 L 7753,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7689,13700 L 7588,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7523,13700 L 7423,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7358,13700 L 7258,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7193,13700 L 7092,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7028,13700 L 6927,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6862,13700 L 6762,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6697,13700 L 6597,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6532,13700 L 6431,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6367,13700 L 6266,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6201,13700 L 6101,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6036,13700 L 5936,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5871,13700 L 5771,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5706,13700 L 5605,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5541,13700 L 5440,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5375,13700 L 5275,13700"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id13">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="865" y="2070" width="3836" height="1674"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="1115" y="2771"><tspan fill="rgb(0,0,0)" stroke="none">FilterChain</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id14">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1917" y="6999" width="6784" height="1273"/>
|
||||
<path fill="rgb(0,102,179)" stroke="none" d="M 5309,8270 L 1918,8270 1918,7000 8699,7000 8699,8270 5309,8270 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5309,8270 L 1918,8270 1918,7000 8699,7000 8699,8270 5309,8270 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="3567" y="7751"><tspan fill="rgb(0,0,0)" stroke="none">Bean Filter</tspan></tspan><tspan class="TextPosition" y="8018"><tspan font-size="368px" fill="rgb(0,0,0)" stroke="none">0</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 53 KiB |
Binary file not shown.
|
@ -0,0 +1,481 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="210mm" height="148mm" viewBox="0 0 21000 14800" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="ClipPathGroup">
|
||||
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
|
||||
<rect x="0" y="0" width="21000" height="14800"/>
|
||||
</clipPath>
|
||||
<clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
|
||||
<rect x="21" y="14" width="20958" height="14771"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<defs>
|
||||
<font id="EmbeddedFont_1" horiz-adv-x="2048">
|
||||
<font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
|
||||
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
|
||||
<glyph unicode="v" horiz-adv-x="1139" d="M 731,0 L 395,0 8,1082 305,1082 494,477 C 504,444 528,360 565,227 572,254 585,302 606,371 627,440 703,677 836,1082 L 1130,1082 731,0 Z"/>
|
||||
<glyph unicode="t" horiz-adv-x="662" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
|
||||
<glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
|
||||
<glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
|
||||
<glyph unicode="l" horiz-adv-x="292" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
|
||||
<glyph unicode="i" horiz-adv-x="292" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
|
||||
<glyph unicode="h" horiz-adv-x="1007" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
|
||||
<glyph unicode="e" horiz-adv-x="1007" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
|
||||
<glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,203 60,306 60,418 97,503 170,562 243,621 348,651 487,652 L 720,656 720,711 C 720,782 708,834 683,869 658,903 618,920 562,920 510,920 472,908 448,885 423,861 408,822 402,767 L 109,781 C 127,886 175,966 254,1021 332,1075 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,501 L 576,499 C 511,496 464,489 437,478 410,466 389,448 375,424 360,400 353,368 353,328 353,277 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,236 668,269 689,312 710,354 720,399 720,446 L 720,501 Z"/>
|
||||
<glyph unicode="S" horiz-adv-x="1244" d="M 1286,406 C 1286,268 1235,163 1133,90 1030,17 880,-20 682,-20 501,-20 360,12 257,76 154,140 88,237 59,367 L 344,414 C 363,339 401,285 457,252 513,218 591,201 690,201 896,201 999,264 999,389 999,429 987,462 964,488 940,514 907,536 864,553 821,570 738,591 616,616 511,641 437,661 396,676 355,691 317,708 284,729 251,749 222,773 199,802 176,831 158,864 145,903 132,942 125,986 125,1036 125,1163 173,1261 269,1329 364,1396 503,1430 686,1430 861,1430 992,1403 1080,1348 1167,1293 1224,1203 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 501,1221 412,1165 412,1053 412,1016 422,986 441,963 460,940 488,920 525,904 562,887 638,867 752,842 887,813 984,787 1043,763 1101,738 1147,710 1181,678 1215,645 1241,607 1259,562 1277,517 1286,465 1286,406 Z"/>
|
||||
<glyph unicode="F" horiz-adv-x="1060" d="M 432,1181 L 432,745 1153,745 1153,517 432,517 432,0 137,0 137,1409 1176,1409 1176,1181 432,1181 Z"/>
|
||||
<glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 973,212 1097,301 1166,480 L 1423,383 C 1368,247 1287,146 1180,80 1073,13 944,-20 795,-20 568,-20 393,44 270,173 146,301 84,480 84,711 84,942 144,1120 263,1244 382,1368 555,1430 782,1430 947,1430 1082,1397 1186,1331 1290,1264 1363,1167 1405,1038 L 1145,967 C 1123,1038 1080,1094 1016,1136 951,1177 875,1198 788,1198 655,1198 554,1157 485,1074 416,991 381,870 381,711 381,549 417,425 488,340 559,255 661,212 795,212 Z"/>
|
||||
<glyph unicode="2" horiz-adv-x="1006" d="M 71,0 L 71,195 C 108,276 160,354 228,431 295,508 380,588 483,671 582,751 651,817 691,869 730,921 750,972 750,1022 750,1145 688,1206 565,1206 505,1206 459,1190 428,1158 396,1125 375,1077 366,1012 L 83,1028 C 99,1159 148,1258 230,1327 311,1396 422,1430 563,1430 715,1430 832,1395 913,1326 994,1257 1035,1159 1035,1034 1035,968 1022,908 996,855 970,802 937,753 896,708 855,663 810,620 761,581 711,542 663,503 616,466 569,429 527,391 489,353 450,315 422,274 403,231 L 1057,231 1057,0 71,0 Z"/>
|
||||
<glyph unicode="1" horiz-adv-x="980" d="M 129,0 L 129,209 478,209 478,1170 140,959 140,1180 493,1409 759,1409 759,209 1082,209 1082,0 129,0 Z"/>
|
||||
<glyph unicode="0" horiz-adv-x="980" d="M 1055,705 C 1055,467 1014,287 933,164 851,41 728,-20 565,-20 242,-20 81,222 81,705 81,874 99,1011 134,1118 169,1225 222,1303 293,1354 364,1405 457,1430 573,1430 740,1430 862,1370 939,1249 1016,1128 1055,947 1055,705 Z M 773,705 C 773,835 767,936 754,1008 741,1080 721,1132 693,1163 665,1194 624,1210 571,1210 514,1210 472,1194 443,1163 414,1131 393,1079 381,1008 368,936 362,835 362,705 362,576 369,476 382,404 395,331 415,279 444,248 472,217 513,201 567,201 620,201 662,218 691,251 720,284 741,336 754,409 767,482 773,580 773,705 Z"/>
|
||||
</font>
|
||||
</defs>
|
||||
<defs class="TextShapeIndex">
|
||||
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13"/>
|
||||
</defs>
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<defs class="TextEmbeddedBitmaps"/>
|
||||
<g>
|
||||
<g id="id2" class="Master_Slide">
|
||||
<g id="bg-id2" class="Background"/>
|
||||
<g id="bo-id2" class="BackgroundObjects"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="SlideGroup">
|
||||
<g>
|
||||
<g id="container-id1">
|
||||
<g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="7099" width="7190" height="1485"/>
|
||||
<defs>
|
||||
<mask id="mask1">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient1" x1="5099" y1="7299" x2="5099" y2="8595" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient1)" d="M 1599,7299 L 8600,7299 8600,8595 1599,8595 1599,7299 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask1)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5100,8582 L 1612,8582 1612,7312 8587,7312 8587,8582 5100,8582 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5100,8582 L 1612,8582 1612,7312 8587,7312 8587,8582 5100,8582 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4221" y="8092"><tspan fill="rgb(128,128,128)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5775" y="8301"><tspan font-size="368px" fill="rgb(128,128,128)" stroke="none">1</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(102,255,255)" stroke="none" d="M 5312,8370 L 1824,8370 1824,7100 8799,7100 8799,8370 5312,8370 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5312,8370 L 1824,8370 1824,7100 8799,7100 8799,8370 5312,8370 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4433" y="7880"><tspan fill="rgb(0,0,0)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5987" y="8089"><tspan font-size="368px" fill="rgb(0,0,0)" stroke="none">1</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="1499" width="7200" height="1485"/>
|
||||
<defs>
|
||||
<mask id="mask2">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient2" x1="5104" y1="1699" x2="5104" y2="2995" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient2)" d="M 1599,1699 L 8610,1699 8610,2995 1599,2995 1599,1699 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask2)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5105,2982 L 1612,2982 1612,1712 8597,1712 8597,2982 5105,2982 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5105,2982 L 1612,2982 1612,1712 8597,1712 8597,2982 5105,2982 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4222" y="2568"><tspan fill="rgb(128,128,128)" stroke="none">Client</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(204,255,0)" stroke="none" d="M 5317,2770 L 1824,2770 1824,1500 8809,1500 8809,2770 5317,2770 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5317,2770 L 1824,2770 1824,1500 8809,1500 8809,2770 5317,2770 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4434" y="2356"><tspan fill="rgb(0,0,0)" stroke="none">Client</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="11899" width="7200" height="1485"/>
|
||||
<defs>
|
||||
<mask id="mask3">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient3" x1="5104" y1="12099" x2="5104" y2="13395" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient3)" d="M 1599,12099 L 8610,12099 8610,13395 1599,13395 1599,12099 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask3)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5105,13382 L 1612,13382 1612,12112 8597,12112 8597,13382 5105,13382 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5105,13382 L 1612,13382 1612,12112 8597,12112 8597,13382 5105,13382 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4049" y="12968"><tspan fill="rgb(128,128,128)" stroke="none">Servlet</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(0,204,255)" stroke="none" d="M 5317,13170 L 1824,13170 1824,11900 8809,11900 8809,13170 5317,13170 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5317,13170 L 1824,13170 1824,11900 8809,11900 8809,13170 5317,13170 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4261" y="12756"><tspan fill="rgb(0,0,0)" stroke="none">Servlet</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="4700" width="7200" height="1485"/>
|
||||
<defs>
|
||||
<mask id="mask4">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient4" x1="5104" y1="4900" x2="5104" y2="6196" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient4)" d="M 1599,4900 L 8610,4900 8610,6196 1599,6196 1599,4900 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask4)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5105,6183 L 1612,6183 1612,4913 8597,4913 8597,6183 5105,6183 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5105,6183 L 1612,6183 1612,4913 8597,4913 8597,6183 5105,6183 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4226" y="5693"><tspan fill="rgb(128,128,128)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5780" y="5902"><tspan font-size="368px" fill="rgb(128,128,128)" stroke="none">0</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(102,255,255)" stroke="none" d="M 5317,5971 L 1824,5971 1824,4701 8809,4701 8809,5971 5317,5971 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5317,5971 L 1824,5971 1824,4701 8809,4701 8809,5971 5317,5971 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4438" y="5481"><tspan fill="rgb(0,0,0)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5992" y="5690"><tspan font-size="368px" fill="rgb(0,0,0)" stroke="none">0</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id7">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5127" y="2770" width="381" height="1932"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 5317,3047 L 5317,4424"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5316,2770 L 5128,3072 5507,3072 5316,2770 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5318,4701 L 5507,4399 5128,4399 5318,4701 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id8">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="9500" width="7200" height="1510"/>
|
||||
<defs>
|
||||
<mask id="mask5">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient5" x1="5104" y1="9700" x2="5104" y2="11021" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient5)" d="M 1599,9700 L 8610,9700 8610,11021 1599,11021 1599,9700 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask5)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5105,11008 L 1612,11008 1612,9713 8597,9713 8597,11008 5105,11008 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5105,11008 L 1612,11008 1612,9713 8597,9713 8597,11008 5105,11008 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4226" y="10505"><tspan fill="rgb(128,128,128)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5780" y="10715"><tspan font-size="368px" fill="rgb(128,128,128)" stroke="none">2</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(102,255,255)" stroke="none" d="M 5317,10796 L 1824,10796 1824,9501 8809,9501 8809,10796 5317,10796 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5317,10796 L 1824,10796 1824,9501 8809,9501 8809,10796 5317,10796 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4438" y="10293"><tspan fill="rgb(0,0,0)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5992" y="10503"><tspan font-size="368px" fill="rgb(0,0,0)" stroke="none">2</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id9">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5110" y="6001" width="381" height="1144"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 5300,6278 L 5300,6867"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5299,6001 L 5111,6303 5490,6303 5299,6001 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5301,7144 L 5490,6842 5111,6842 5301,7144 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id10">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5110" y="8402" width="381" height="1144"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 5300,8679 L 5300,9268"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5299,8402 L 5111,8704 5490,8704 5299,8402 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5301,9545 L 5490,9243 5111,9243 5301,9545 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id11">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5110" y="10803" width="381" height="1144"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 5300,11080 L 5300,11669"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5299,10803 L 5111,11105 5490,11105 5299,10803 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5301,11946 L 5490,11644 5111,11644 5301,11946 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id12">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1174" y="4174" width="8153" height="9553"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5254,13700 L 5250,13700 5150,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5085,13700 L 4984,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4920,13700 L 4819,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4754,13700 L 4654,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4589,13700 L 4489,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4424,13700 L 4323,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4259,13700 L 4158,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4093,13700 L 3993,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3928,13700 L 3828,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3763,13700 L 3662,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3598,13700 L 3497,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3432,13700 L 3332,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3267,13700 L 3167,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3102,13700 L 3001,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2937,13700 L 2836,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2771,13700 L 2671,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2606,13700 L 2506,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2441,13700 L 2340,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2276,13700 L 2175,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2110,13700 L 2010,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1945,13700 L 1845,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1780,13700 L 1679,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1615,13700 L 1514,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1449,13700 L 1349,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1284,13700 L 1200,13700 1200,13684"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,13619 L 1200,13519"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,13454 L 1200,13353"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,13289 L 1200,13188"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,13123 L 1200,13023"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12958 L 1200,12858"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12793 L 1200,12692"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12628 L 1200,12527"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12462 L 1200,12362"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12297 L 1200,12197"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12132 L 1200,12031"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11967 L 1200,11866"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11801 L 1200,11701"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11636 L 1200,11536"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11471 L 1200,11370"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11306 L 1200,11205"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11140 L 1200,11040"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10975 L 1200,10875"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10810 L 1200,10709"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10645 L 1200,10544"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10479 L 1200,10379"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10314 L 1200,10214"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10149 L 1200,10048"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9984 L 1200,9883"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9818 L 1200,9718"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9653 L 1200,9553"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9488 L 1200,9388"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9323 L 1200,9222"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9158 L 1200,9057"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8992 L 1200,8892"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8827 L 1200,8727"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8662 L 1200,8561"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8497 L 1200,8396"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8331 L 1200,8231"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8166 L 1200,8066"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8001 L 1200,7900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7836 L 1200,7735"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7670 L 1200,7570"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7505 L 1200,7405"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7340 L 1200,7239"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7175 L 1200,7074"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7009 L 1200,6909"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6844 L 1200,6744"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6679 L 1200,6578"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6514 L 1200,6413"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6348 L 1200,6248"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6183 L 1200,6083"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6018 L 1200,5917"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5853 L 1200,5752"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5687 L 1200,5587"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5522 L 1200,5422"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5357 L 1200,5257"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5192 L 1200,5091"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5027 L 1200,4926"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4861 L 1200,4761"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4696 L 1200,4596"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4531 L 1200,4430"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4366 L 1200,4265"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4200 L 1200,4200 1300,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1365,4200 L 1465,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1530,4200 L 1631,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1695,4200 L 1796,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1861,4200 L 1961,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2026,4200 L 2126,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2191,4200 L 2292,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2356,4200 L 2457,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2522,4200 L 2622,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2687,4200 L 2787,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2852,4200 L 2953,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3017,4200 L 3118,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3183,4200 L 3283,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3348,4200 L 3448,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3513,4200 L 3614,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3678,4200 L 3779,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3844,4200 L 3944,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4009,4200 L 4109,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4174,4200 L 4274,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4339,4200 L 4440,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4504,4200 L 4605,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4670,4200 L 4770,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4835,4200 L 4935,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5000,4200 L 5101,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5165,4200 L 5266,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5331,4200 L 5431,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5496,4200 L 5596,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5661,4200 L 5762,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5826,4200 L 5927,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5992,4200 L 6092,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6157,4200 L 6257,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6322,4200 L 6423,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6487,4200 L 6588,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6653,4200 L 6753,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6818,4200 L 6918,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6983,4200 L 7084,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7148,4200 L 7249,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7314,4200 L 7414,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7479,4200 L 7579,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7644,4200 L 7745,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7809,4200 L 7910,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7975,4200 L 8075,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8140,4200 L 8240,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8305,4200 L 8405,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8470,4200 L 8571,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8635,4200 L 8736,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8801,4200 L 8901,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8966,4200 L 9066,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9131,4200 L 9232,4200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9296,4200 L 9300,4200 9300,4297"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4362 L 9300,4462"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4527 L 9300,4627"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4692 L 9300,4793"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4857 L 9300,4958"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5023 L 9300,5123"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5188 L 9300,5288"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5353 L 9300,5454"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5518 L 9300,5619"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5684 L 9300,5784"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5849 L 9300,5949"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6014 L 9300,6115"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6179 L 9300,6280"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6345 L 9300,6445"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6510 L 9300,6610"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6675 L 9300,6776"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6840 L 9300,6941"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7006 L 9300,7106"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7171 L 9300,7271"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7336 L 9300,7436"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7501 L 9300,7602"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7666 L 9300,7767"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7832 L 9300,7932"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7997 L 9300,8097"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8162 L 9300,8263"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8327 L 9300,8428"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8493 L 9300,8593"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8658 L 9300,8758"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8823 L 9300,8924"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8988 L 9300,9089"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9154 L 9300,9254"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9319 L 9300,9419"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9484 L 9300,9585"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9649 L 9300,9750"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9815 L 9300,9915"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9980 L 9300,10080"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10145 L 9300,10246"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10310 L 9300,10411"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10476 L 9300,10576"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10641 L 9300,10741"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10806 L 9300,10907"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10971 L 9300,11072"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11137 L 9300,11237"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11302 L 9300,11402"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11467 L 9300,11567"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11632 L 9300,11733"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11797 L 9300,11898"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11963 L 9300,12063"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12128 L 9300,12228"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12293 L 9300,12394"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12458 L 9300,12559"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12624 L 9300,12724"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12789 L 9300,12889"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12954 L 9300,13055"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,13119 L 9300,13220"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,13285 L 9300,13385"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,13450 L 9300,13550"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,13615 L 9300,13700 9284,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9220,13700 L 9119,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9054,13700 L 8954,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8889,13700 L 8789,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8724,13700 L 8623,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8559,13700 L 8458,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8393,13700 L 8293,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8228,13700 L 8128,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8063,13700 L 7962,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7898,13700 L 7797,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7732,13700 L 7632,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7567,13700 L 7467,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7402,13700 L 7302,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7237,13700 L 7136,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7072,13700 L 6971,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6906,13700 L 6806,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6741,13700 L 6641,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6576,13700 L 6475,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6411,13700 L 6310,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6245,13700 L 6145,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6080,13700 L 5980,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5915,13700 L 5814,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5750,13700 L 5649,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5584,13700 L 5484,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5419,13700 L 5319,13700"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id13">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="865" y="3270" width="3836" height="1674"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="1115" y="3971"><tspan fill="rgb(0,0,0)" stroke="none">FilterChain</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 48 KiB |
Binary file not shown.
|
@ -0,0 +1,809 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="210mm" height="148mm" viewBox="0 0 21000 14800" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="ClipPathGroup">
|
||||
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
|
||||
<rect x="0" y="0" width="21000" height="14800"/>
|
||||
</clipPath>
|
||||
<clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
|
||||
<rect x="21" y="14" width="20958" height="14771"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<defs>
|
||||
<font id="EmbeddedFont_1" horiz-adv-x="2048">
|
||||
<font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="423"/>
|
||||
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
|
||||
<glyph unicode="y" horiz-adv-x="1139" d="M 283,-425 C 216,-425 157,-421 106,-412 L 106,-212 C 141,-217 174,-220 203,-220 243,-220 276,-214 303,-201 329,-188 353,-167 374,-138 395,-109 418,-59 444,11 L 16,1082 313,1082 483,575 C 510,502 543,391 584,241 L 609,336 674,571 834,1082 1128,1082 700,-57 C 643,-196 583,-292 522,-345 460,-398 380,-425 283,-425 Z"/>
|
||||
<glyph unicode="x" horiz-adv-x="1139" d="M 819,0 L 567,392 313,0 14,0 410,559 33,1082 336,1082 567,728 797,1082 1102,1082 725,562 1124,0 819,0 Z"/>
|
||||
<glyph unicode="v" horiz-adv-x="1139" d="M 731,0 L 395,0 8,1082 305,1082 494,477 C 504,444 528,360 565,227 572,254 585,302 606,371 627,440 703,677 836,1082 L 1130,1082 731,0 Z"/>
|
||||
<glyph unicode="u" horiz-adv-x="1006" d="M 408,1082 L 408,475 C 408,285 472,190 600,190 668,190 723,219 765,278 806,336 827,411 827,502 L 827,1082 1108,1082 1108,242 C 1108,150 1111,69 1116,0 L 848,0 C 840,96 836,168 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 368,-20 280,15 219,86 158,156 127,259 127,395 L 127,1082 408,1082 Z"/>
|
||||
<glyph unicode="t" horiz-adv-x="662" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 585,176 616,181 657,190 L 657,16 C 588,-7 509,-18 420,-18 Z"/>
|
||||
<glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,828 C 143,887 142,937 141,977 139,1016 137,1051 135,1082 L 403,1082 C 405,1070 408,1034 411,973 414,912 416,871 416,851 L 420,851 C 447,927 472,981 493,1012 514,1043 540,1066 569,1081 598,1096 635,1103 679,1103 715,1103 744,1098 766,1088 L 766,853 C 721,863 681,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
|
||||
<glyph unicode="o" horiz-adv-x="1113" d="M 1171,542 C 1171,367 1122,229 1025,130 928,30 793,-20 621,-20 452,-20 320,30 224,130 128,230 80,367 80,542 80,716 128,853 224,953 320,1052 454,1102 627,1102 804,1102 939,1054 1032,958 1125,861 1171,723 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 460,909 375,787 375,542 375,421 396,330 438,267 479,204 539,172 618,172 791,172 877,295 877,542 Z"/>
|
||||
<glyph unicode="n" horiz-adv-x="1007" d="M 844,0 L 844,607 C 844,797 780,892 651,892 583,892 528,863 487,805 445,746 424,671 424,580 L 424,0 143,0 143,840 C 143,898 142,946 141,983 139,1020 137,1053 135,1082 L 403,1082 C 405,1069 408,1036 411,981 414,926 416,888 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 883,1103 971,1068 1032,997 1093,926 1124,823 1124,687 L 1124,0 844,0 Z"/>
|
||||
<glyph unicode="l" horiz-adv-x="292" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
|
||||
<glyph unicode="i" horiz-adv-x="292" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
|
||||
<glyph unicode="h" horiz-adv-x="1007" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 883,1102 971,1067 1032,996 1093,925 1124,822 1124,686 L 1124,0 844,0 844,606 C 844,796 780,891 651,891 583,891 528,862 487,804 445,745 424,670 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1006 421,935 416,866 L 420,866 Z"/>
|
||||
<glyph unicode="g" horiz-adv-x="1033" d="M 596,-434 C 464,-434 358,-409 278,-359 197,-308 148,-236 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 682,-249 739,-225 775,-177 811,-129 829,-58 829,37 L 829,94 831,201 829,201 C 767,68 651,2 481,2 355,2 257,49 188,144 119,239 84,374 84,550 84,727 120,863 191,959 262,1055 366,1103 502,1103 659,1103 768,1038 829,908 L 834,908 C 834,931 836,963 839,1003 842,1043 845,1069 848,1082 L 1114,1082 C 1110,1010 1108,927 1108,832 L 1108,33 C 1108,-121 1064,-237 977,-316 890,-395 763,-434 596,-434 Z M 831,556 C 831,667 811,754 772,817 732,879 675,910 602,910 452,910 377,790 377,550 377,315 451,197 600,197 675,197 732,228 772,291 811,353 831,441 831,556 Z"/>
|
||||
<glyph unicode="e" horiz-adv-x="1007" d="M 586,-20 C 423,-20 298,28 211,125 124,221 80,361 80,546 80,725 124,862 213,958 302,1054 427,1102 590,1102 745,1102 864,1051 946,948 1028,845 1069,694 1069,495 L 1069,487 375,487 C 375,382 395,302 434,249 473,195 528,168 600,168 699,168 762,211 788,297 L 1053,274 C 976,78 821,-20 586,-20 Z M 586,925 C 520,925 469,902 434,856 398,810 379,746 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
|
||||
<glyph unicode="c" horiz-adv-x="1007" d="M 594,-20 C 430,-20 303,29 214,127 125,224 80,360 80,535 80,714 125,853 215,953 305,1052 433,1102 598,1102 725,1102 831,1070 914,1006 997,942 1050,854 1071,741 L 788,727 C 780,782 760,827 728,860 696,893 651,909 592,909 447,909 375,788 375,546 375,297 449,172 596,172 649,172 694,189 730,223 766,256 788,306 797,373 L 1079,360 C 1069,286 1043,220 1000,162 957,104 900,59 830,28 760,-4 681,-20 594,-20 Z"/>
|
||||
<glyph unicode="a" horiz-adv-x="1112" d="M 393,-20 C 288,-20 207,9 148,66 89,123 60,203 60,306 60,418 97,503 170,562 243,621 348,651 487,652 L 720,656 720,711 C 720,782 708,834 683,869 658,903 618,920 562,920 510,920 472,908 448,885 423,861 408,822 402,767 L 109,781 C 127,886 175,966 254,1021 332,1075 439,1102 574,1102 711,1102 816,1068 890,1001 964,934 1001,838 1001,714 L 1001,320 C 1001,259 1008,218 1022,195 1035,172 1058,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 670,51 552,-20 393,-20 Z M 720,501 L 576,499 C 511,496 464,489 437,478 410,466 389,448 375,424 360,400 353,368 353,328 353,277 365,239 389,214 412,189 444,176 483,176 527,176 567,188 604,212 640,236 668,269 689,312 710,354 720,399 720,446 L 720,501 Z"/>
|
||||
<glyph unicode="S" horiz-adv-x="1244" d="M 1286,406 C 1286,268 1235,163 1133,90 1030,17 880,-20 682,-20 501,-20 360,12 257,76 154,140 88,237 59,367 L 344,414 C 363,339 401,285 457,252 513,218 591,201 690,201 896,201 999,264 999,389 999,429 987,462 964,488 940,514 907,536 864,553 821,570 738,591 616,616 511,641 437,661 396,676 355,691 317,708 284,729 251,749 222,773 199,802 176,831 158,864 145,903 132,942 125,986 125,1036 125,1163 173,1261 269,1329 364,1396 503,1430 686,1430 861,1430 992,1403 1080,1348 1167,1293 1224,1203 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 501,1221 412,1165 412,1053 412,1016 422,986 441,963 460,940 488,920 525,904 562,887 638,867 752,842 887,813 984,787 1043,763 1101,738 1147,710 1181,678 1215,645 1241,607 1259,562 1277,517 1286,465 1286,406 Z"/>
|
||||
<glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,872 1275,791 1234,720 1193,649 1134,594 1057,555 980,516 888,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 939,1409 1069,1370 1160,1293 1251,1215 1296,1105 1296,963 Z M 999,958 C 999,1106 912,1180 737,1180 L 432,1180 432,723 745,723 C 826,723 889,743 933,784 977,824 999,882 999,958 Z"/>
|
||||
<glyph unicode="F" horiz-adv-x="1060" d="M 432,1181 L 432,745 1153,745 1153,517 432,517 432,0 137,0 137,1409 1176,1409 1176,1181 432,1181 Z"/>
|
||||
<glyph unicode="D" horiz-adv-x="1271" d="M 1393,715 C 1393,570 1365,443 1308,335 1251,226 1170,143 1066,86 961,29 842,0 707,0 L 137,0 137,1409 647,1409 C 884,1409 1068,1349 1198,1230 1328,1110 1393,938 1393,715 Z M 1096,715 C 1096,866 1057,982 978,1062 899,1141 787,1181 641,1181 L 432,1181 432,228 682,228 C 809,228 909,272 984,359 1059,446 1096,565 1096,715 Z"/>
|
||||
<glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 973,212 1097,301 1166,480 L 1423,383 C 1368,247 1287,146 1180,80 1073,13 944,-20 795,-20 568,-20 393,44 270,173 146,301 84,480 84,711 84,942 144,1120 263,1244 382,1368 555,1430 782,1430 947,1430 1082,1397 1186,1331 1290,1264 1363,1167 1405,1038 L 1145,967 C 1123,1038 1080,1094 1016,1136 951,1177 875,1198 788,1198 655,1198 554,1157 485,1074 416,991 381,870 381,711 381,549 417,425 488,340 559,255 661,212 795,212 Z"/>
|
||||
<glyph unicode="2" horiz-adv-x="1006" d="M 71,0 L 71,195 C 108,276 160,354 228,431 295,508 380,588 483,671 582,751 651,817 691,869 730,921 750,972 750,1022 750,1145 688,1206 565,1206 505,1206 459,1190 428,1158 396,1125 375,1077 366,1012 L 83,1028 C 99,1159 148,1258 230,1327 311,1396 422,1430 563,1430 715,1430 832,1395 913,1326 994,1257 1035,1159 1035,1034 1035,968 1022,908 996,855 970,802 937,753 896,708 855,663 810,620 761,581 711,542 663,503 616,466 569,429 527,391 489,353 450,315 422,274 403,231 L 1057,231 1057,0 71,0 Z"/>
|
||||
<glyph unicode="0" horiz-adv-x="980" d="M 1055,705 C 1055,467 1014,287 933,164 851,41 728,-20 565,-20 242,-20 81,222 81,705 81,874 99,1011 134,1118 169,1225 222,1303 293,1354 364,1405 457,1430 573,1430 740,1430 862,1370 939,1249 1016,1128 1055,947 1055,705 Z M 773,705 C 773,835 767,936 754,1008 741,1080 721,1132 693,1163 665,1194 624,1210 571,1210 514,1210 472,1194 443,1163 414,1131 393,1079 381,1008 368,936 362,835 362,705 362,576 369,476 382,404 395,331 415,279 444,248 472,217 513,201 567,201 620,201 662,218 691,251 720,284 741,336 754,409 767,482 773,580 773,705 Z"/>
|
||||
<glyph unicode=" " horiz-adv-x="556"/>
|
||||
</font>
|
||||
</defs>
|
||||
<defs class="TextShapeIndex">
|
||||
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24"/>
|
||||
</defs>
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<defs class="TextEmbeddedBitmaps"/>
|
||||
<g>
|
||||
<g id="id2" class="Master_Slide">
|
||||
<g id="bg-id2" class="Background"/>
|
||||
<g id="bo-id2" class="BackgroundObjects"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="SlideGroup">
|
||||
<g>
|
||||
<g id="container-id1">
|
||||
<g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="5899" width="7190" height="2715"/>
|
||||
<defs>
|
||||
<mask id="mask1">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient1" x1="5099" y1="6099" x2="5099" y2="8625" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient1)" d="M 1599,6099 L 8600,6099 8600,8625 1599,8625 1599,6099 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask1)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5100,8612 L 1612,8612 1612,6112 8587,6112 8587,8612 5100,8612 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5100,8612 L 1612,8612 1612,6112 8587,6112 8587,8612 5100,8612 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="1818" y="6813"><tspan fill="rgb(128,128,128)" stroke="none">DelegatingFilterProxy</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(102,255,255)" stroke="none" d="M 5312,8400 L 1824,8400 1824,5900 8799,5900 8799,8400 5312,8400 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5312,8400 L 1824,8400 1824,5900 8799,5900 8799,8400 5312,8400 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="2030" y="6601"><tspan fill="rgb(0,0,0)" stroke="none">DelegatingFilterProxy</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="299" width="7200" height="1485"/>
|
||||
<defs>
|
||||
<mask id="mask2">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient2" x1="5104" y1="499" x2="5104" y2="1795" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient2)" d="M 1599,499 L 8610,499 8610,1795 1599,1795 1599,499 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask2)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5105,1782 L 1612,1782 1612,512 8597,512 8597,1782 5105,1782 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5105,1782 L 1612,1782 1612,512 8597,512 8597,1782 5105,1782 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4222" y="1368"><tspan fill="rgb(128,128,128)" stroke="none">Client</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(204,255,0)" stroke="none" d="M 5317,1570 L 1824,1570 1824,300 8809,300 8809,1570 5317,1570 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5317,1570 L 1824,1570 1824,300 8809,300 8809,1570 5317,1570 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4434" y="1156"><tspan fill="rgb(0,0,0)" stroke="none">Client</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="11899" width="7200" height="1485"/>
|
||||
<defs>
|
||||
<mask id="mask3">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient3" x1="5104" y1="12099" x2="5104" y2="13395" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient3)" d="M 1599,12099 L 8610,12099 8610,13395 1599,13395 1599,12099 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask3)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5105,13382 L 1612,13382 1612,12112 8597,12112 8597,13382 5105,13382 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5105,13382 L 1612,13382 1612,12112 8597,12112 8597,13382 5105,13382 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4049" y="12968"><tspan fill="rgb(128,128,128)" stroke="none">Servlet</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(0,204,255)" stroke="none" d="M 5317,13170 L 1824,13170 1824,11900 8809,11900 8809,13170 5317,13170 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5317,13170 L 1824,13170 1824,11900 8809,11900 8809,13170 5317,13170 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4261" y="12756"><tspan fill="rgb(0,0,0)" stroke="none">Servlet</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="3500" width="7200" height="1485"/>
|
||||
<defs>
|
||||
<mask id="mask4">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient4" x1="5104" y1="3700" x2="5104" y2="4996" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient4)" d="M 1599,3700 L 8610,3700 8610,4996 1599,4996 1599,3700 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask4)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5105,4983 L 1612,4983 1612,3713 8597,3713 8597,4983 5105,4983 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5105,4983 L 1612,4983 1612,3713 8597,3713 8597,4983 5105,4983 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4226" y="4493"><tspan fill="rgb(128,128,128)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5780" y="4702"><tspan font-size="368px" fill="rgb(128,128,128)" stroke="none">0</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(102,255,255)" stroke="none" d="M 5317,4771 L 1824,4771 1824,3501 8809,3501 8809,4771 5317,4771 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5317,4771 L 1824,4771 1824,3501 8809,3501 8809,4771 5317,4771 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4438" y="4281"><tspan fill="rgb(0,0,0)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5992" y="4490"><tspan font-size="368px" fill="rgb(0,0,0)" stroke="none">0</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id7">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5127" y="1570" width="381" height="1932"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 5317,1847 L 5317,3224"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5316,1570 L 5128,1872 5507,1872 5316,1570 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5318,3501 L 5507,3199 5128,3199 5318,3501 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id8">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1611" y="9500" width="7200" height="1510"/>
|
||||
<defs>
|
||||
<mask id="mask5">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient5" x1="5104" y1="9700" x2="5104" y2="11021" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient5)" d="M 1599,9700 L 8610,9700 8610,11021 1599,11021 1599,9700 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask5)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 5105,11008 L 1612,11008 1612,9713 8597,9713 8597,11008 5105,11008 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 5105,11008 L 1612,11008 1612,9713 8597,9713 8597,11008 5105,11008 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4226" y="10505"><tspan fill="rgb(128,128,128)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5780" y="10715"><tspan font-size="368px" fill="rgb(128,128,128)" stroke="none">2</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(102,255,255)" stroke="none" d="M 5317,10796 L 1824,10796 1824,9501 8809,9501 8809,10796 5317,10796 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5317,10796 L 1824,10796 1824,9501 8809,9501 8809,10796 5317,10796 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="4438" y="10293"><tspan fill="rgb(0,0,0)" stroke="none">Filter</tspan></tspan><tspan class="TextPosition" x="5992" y="10503"><tspan font-size="368px" fill="rgb(0,0,0)" stroke="none">2</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id9">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5110" y="4801" width="381" height="1144"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 5300,5078 L 5300,5667"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5299,4801 L 5111,5103 5490,5103 5299,4801 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5301,5944 L 5490,5642 5111,5642 5301,5944 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id10">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5110" y="8402" width="381" height="1144"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 5300,8679 L 5300,9268"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5299,8402 L 5111,8704 5490,8704 5299,8402 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5301,9545 L 5490,9243 5111,9243 5301,9545 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id11">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5110" y="10803" width="381" height="1144"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 5300,11080 L 5300,11669"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5299,10803 L 5111,11105 5490,11105 5299,10803 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 5301,11946 L 5490,11644 5111,11644 5301,11946 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id12">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1174" y="2874" width="8153" height="10853"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5250,13700 L 5150,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5085,13700 L 4984,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4920,13700 L 4819,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4754,13700 L 4654,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4589,13700 L 4489,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4424,13700 L 4323,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4259,13700 L 4158,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4093,13700 L 3993,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3928,13700 L 3828,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3763,13700 L 3662,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3598,13700 L 3497,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3432,13700 L 3332,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3267,13700 L 3167,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3102,13700 L 3001,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2937,13700 L 2836,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2771,13700 L 2671,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2606,13700 L 2506,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2441,13700 L 2340,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2276,13700 L 2175,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2110,13700 L 2010,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1945,13700 L 1845,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1780,13700 L 1679,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1615,13700 L 1514,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1449,13700 L 1349,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1284,13700 L 1200,13700 1200,13684"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,13619 L 1200,13519"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,13454 L 1200,13353"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,13289 L 1200,13188"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,13123 L 1200,13023"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12958 L 1200,12858"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12793 L 1200,12692"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12628 L 1200,12527"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12462 L 1200,12362"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12297 L 1200,12197"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,12132 L 1200,12031"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11967 L 1200,11866"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11801 L 1200,11701"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11636 L 1200,11536"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11471 L 1200,11370"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11306 L 1200,11205"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,11140 L 1200,11040"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10975 L 1200,10875"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10810 L 1200,10709"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10645 L 1200,10544"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10479 L 1200,10379"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10314 L 1200,10214"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,10149 L 1200,10048"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9984 L 1200,9883"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9818 L 1200,9718"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9653 L 1200,9553"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9488 L 1200,9388"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9323 L 1200,9222"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,9158 L 1200,9057"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8992 L 1200,8892"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8827 L 1200,8727"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8662 L 1200,8561"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8497 L 1200,8396"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8331 L 1200,8231"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8166 L 1200,8066"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,8001 L 1200,7900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7836 L 1200,7735"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7670 L 1200,7570"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7505 L 1200,7405"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7340 L 1200,7239"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7175 L 1200,7074"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,7009 L 1200,6909"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6844 L 1200,6744"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6679 L 1200,6578"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6514 L 1200,6413"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6348 L 1200,6248"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6183 L 1200,6083"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,6018 L 1200,5917"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5853 L 1200,5752"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5687 L 1200,5587"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5522 L 1200,5422"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5357 L 1200,5257"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5192 L 1200,5091"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,5027 L 1200,4926"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4861 L 1200,4761"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4696 L 1200,4596"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4531 L 1200,4430"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4366 L 1200,4265"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4200 L 1200,4100"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,4035 L 1200,3935"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,3870 L 1200,3769"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,3705 L 1200,3604"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,3539 L 1200,3439"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,3374 L 1200,3274"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,3209 L 1200,3108"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1200,3044 L 1200,2943"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1222,2900 L 1322,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1387,2900 L 1487,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1552,2900 L 1653,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1717,2900 L 1818,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 1883,2900 L 1983,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2048,2900 L 2148,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2213,2900 L 2314,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2378,2900 L 2479,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2544,2900 L 2644,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2709,2900 L 2809,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2874,2900 L 2974,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3039,2900 L 3140,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3204,2900 L 3305,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3370,2900 L 3470,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3535,2900 L 3635,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3700,2900 L 3801,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3865,2900 L 3966,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4031,2900 L 4131,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4196,2900 L 4296,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4361,2900 L 4462,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4526,2900 L 4627,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4692,2900 L 4792,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 4857,2900 L 4957,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5022,2900 L 5123,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5187,2900 L 5288,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5353,2900 L 5453,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5518,2900 L 5618,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5683,2900 L 5784,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5848,2900 L 5949,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6014,2900 L 6114,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6179,2900 L 6279,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6344,2900 L 6445,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6509,2900 L 6610,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6675,2900 L 6775,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6840,2900 L 6940,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7005,2900 L 7105,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7170,2900 L 7271,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7335,2900 L 7436,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7501,2900 L 7601,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7666,2900 L 7766,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7831,2900 L 7932,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7996,2900 L 8097,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8162,2900 L 8262,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8327,2900 L 8427,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8492,2900 L 8593,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8657,2900 L 8758,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8823,2900 L 8923,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8988,2900 L 9088,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9153,2900 L 9254,2900"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,2918 L 9300,3019"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,3084 L 9300,3184"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,3249 L 9300,3349"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,3414 L 9300,3515"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,3579 L 9300,3680"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,3745 L 9300,3845"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,3910 L 9300,4010"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4075 L 9300,4176"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4240 L 9300,4341"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4406 L 9300,4506"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4571 L 9300,4671"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4736 L 9300,4836"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,4901 L 9300,5002"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5066 L 9300,5167"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5232 L 9300,5332"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5397 L 9300,5497"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5562 L 9300,5663"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5727 L 9300,5828"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,5893 L 9300,5993"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6058 L 9300,6158"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6223 L 9300,6324"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6388 L 9300,6489"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6554 L 9300,6654"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6719 L 9300,6819"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,6884 L 9300,6985"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7049 L 9300,7150"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7215 L 9300,7315"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7380 L 9300,7480"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7545 L 9300,7646"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7710 L 9300,7811"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,7876 L 9300,7976"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8041 L 9300,8141"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8206 L 9300,8307"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8371 L 9300,8472"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8537 L 9300,8637"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8702 L 9300,8802"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,8867 L 9300,8967"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9032 L 9300,9133"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9197 L 9300,9298"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9363 L 9300,9463"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9528 L 9300,9628"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9693 L 9300,9794"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,9858 L 9300,9959"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10024 L 9300,10124"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10189 L 9300,10289"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10354 L 9300,10455"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10519 L 9300,10620"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10685 L 9300,10785"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,10850 L 9300,10950"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11015 L 9300,11116"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11180 L 9300,11281"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11346 L 9300,11446"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11511 L 9300,11611"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11676 L 9300,11777"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,11841 L 9300,11942"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12007 L 9300,12107"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12172 L 9300,12272"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12337 L 9300,12438"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12502 L 9300,12603"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12668 L 9300,12768"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12833 L 9300,12933"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,12998 L 9300,13098"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,13163 L 9300,13264"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,13328 L 9300,13429"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,13494 L 9300,13594"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9300,13659 L 9300,13700 9241,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9176,13700 L 9075,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9011,13700 L 8910,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8845,13700 L 8745,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8680,13700 L 8580,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8515,13700 L 8414,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8350,13700 L 8249,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8184,13700 L 8084,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 8019,13700 L 7919,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7854,13700 L 7753,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7689,13700 L 7588,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7523,13700 L 7423,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7358,13700 L 7258,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7193,13700 L 7092,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 7028,13700 L 6927,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6862,13700 L 6762,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6697,13700 L 6597,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6532,13700 L 6431,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6367,13700 L 6266,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6201,13700 L 6101,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6036,13700 L 5936,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5871,13700 L 5771,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5706,13700 L 5605,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5541,13700 L 5440,13700"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 5375,13700 L 5275,13700"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id13">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="865" y="2070" width="3836" height="1674"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="1115" y="2771"><tspan fill="rgb(0,0,0)" stroke="none">FilterChain</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id14">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1917" y="6999" width="6784" height="1273"/>
|
||||
<path fill="rgb(0,102,179)" stroke="none" d="M 5309,8270 L 1918,8270 1918,7000 8699,7000 8699,8270 5309,8270 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 5309,8270 L 1918,8270 1918,7000 8699,7000 8699,8270 5309,8270 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="2769" y="7856"><tspan fill="rgb(0,0,0)" stroke="none">FilterChainProxy</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id15">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="11325" y="4513" width="7200" height="1485"/>
|
||||
<defs>
|
||||
<mask id="mask6">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient6" x1="14818" y1="4713" x2="14818" y2="6009" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient6)" d="M 11313,4713 L 18324,4713 18324,6009 11313,6009 11313,4713 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask6)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 14819,5996 L 11326,5996 11326,4726 18311,4726 18311,5996 14819,5996 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 14819,5996 L 11326,5996 11326,4726 18311,4726 18311,5996 14819,5996 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="12601" y="5506"><tspan fill="rgb(128,128,128)" stroke="none">Security Filter</tspan></tspan><tspan class="TextPosition" y="5715"><tspan font-size="368px" fill="rgb(128,128,128)" stroke="none">0</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(0,102,179)" stroke="none" d="M 15031,5784 L 11538,5784 11538,4514 18523,4514 18523,5784 15031,5784 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 15031,5784 L 11538,5784 11538,4514 18523,4514 18523,5784 15031,5784 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="12813" y="5294"><tspan fill="rgb(0,0,0)" stroke="none">Security Filter</tspan></tspan><tspan class="TextPosition" y="5503"><tspan font-size="368px" fill="rgb(0,0,0)" stroke="none">0</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id16">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="11325" y="9513" width="7200" height="1510"/>
|
||||
<defs>
|
||||
<mask id="mask7">
|
||||
<g>
|
||||
<defs>
|
||||
<linearGradient id="gradient7" x1="14818" y1="9713" x2="14818" y2="11034" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="0.5" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
<stop offset="1" style="stop-color:rgb(128,128,128)"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="fill:url(#gradient7)" d="M 11313,9713 L 18324,9713 18324,11034 11313,11034 11313,9713 Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
</defs>
|
||||
<g style="mask:url(#mask7)">
|
||||
<path fill="rgb(128,128,128)" stroke="none" d="M 14819,11021 L 11326,11021 11326,9726 18311,9726 18311,11021 14819,11021 Z"/>
|
||||
<path fill="none" stroke="rgb(128,128,128)" d="M 14819,11021 L 11326,11021 11326,9726 18311,9726 18311,11021 14819,11021 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="12590" y="10518"><tspan fill="rgb(128,128,128)" stroke="none">Security Filter</tspan></tspan><tspan class="TextPosition" y="10728"><tspan font-size="368px" fill="rgb(128,128,128)" stroke="none">n</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
<path fill="rgb(0,102,179)" stroke="none" d="M 15031,10809 L 11538,10809 11538,9514 18523,9514 18523,10809 15031,10809 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 15031,10809 L 11538,10809 11538,9514 18523,9514 18523,10809 15031,10809 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="12802" y="10306"><tspan fill="rgb(0,0,0)" stroke="none">Security Filter</tspan></tspan><tspan class="TextPosition" y="10516"><tspan font-size="368px" fill="rgb(0,0,0)" stroke="none">n</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id17">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="14824" y="5814" width="381" height="1144"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 15014,6091 L 15014,6680"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 15013,5814 L 14825,6116 15204,6116 15013,5814 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 15015,6957 L 15204,6655 14825,6655 15015,6957 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id18">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="14824" y="8415" width="381" height="1144"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 15014,8692 L 15014,9281"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 15013,8415 L 14825,8717 15204,8717 15013,8415 Z"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 15015,9558 L 15204,9256 14825,9256 15015,9558 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id19">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="10888" y="3986" width="8153" height="7240"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 14969,11199 L 14964,11199 14864,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 14799,11199 L 14698,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 14634,11199 L 14533,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 14468,11199 L 14368,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 14303,11199 L 14203,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 14138,11199 L 14037,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 13973,11199 L 13872,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 13807,11199 L 13707,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 13642,11199 L 13542,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 13477,11199 L 13376,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 13312,11199 L 13211,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 13146,11199 L 13046,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 12981,11199 L 12881,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 12816,11199 L 12715,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 12651,11199 L 12550,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 12485,11199 L 12385,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 12320,11199 L 12220,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 12155,11199 L 12054,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 11990,11199 L 11889,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 11824,11199 L 11724,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 11659,11199 L 11559,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 11494,11199 L 11393,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 11329,11199 L 11228,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 11163,11199 L 11063,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10998,11199 L 10914,11199 10914,11183"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,11118 L 10914,11018"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,10953 L 10914,10852"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,10788 L 10914,10687"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,10622 L 10914,10522"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,10457 L 10914,10357"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,10292 L 10914,10191"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,10127 L 10914,10026"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,9961 L 10914,9861"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,9796 L 10914,9696"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,9631 L 10914,9530"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,9466 L 10914,9365"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,9300 L 10914,9200"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,9135 L 10914,9035"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,8970 L 10914,8869"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,8805 L 10914,8704"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,8639 L 10914,8539"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,8474 L 10914,8374"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,8309 L 10914,8208"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,8144 L 10914,8043"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,7978 L 10914,7878"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,7813 L 10914,7713"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,7648 L 10914,7547"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,7483 L 10914,7382"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,7317 L 10914,7217"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,7152 L 10914,7052"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,6987 L 10914,6887"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,6822 L 10914,6721"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,6657 L 10914,6556"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,6491 L 10914,6391"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,6326 L 10914,6226"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,6161 L 10914,6060"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,5996 L 10914,5895"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,5830 L 10914,5730"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,5665 L 10914,5565"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,5500 L 10914,5399"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,5335 L 10914,5234"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,5169 L 10914,5069"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,5004 L 10914,4904"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,4839 L 10914,4738"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,4674 L 10914,4573"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,4508 L 10914,4408"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,4343 L 10914,4243"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,4178 L 10914,4077"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 10914,4013 L 10914,4012 11014,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 11079,4012 L 11179,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 11244,4012 L 11344,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 11409,4012 L 11510,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 11574,4012 L 11675,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 11740,4012 L 11840,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 11905,4012 L 12005,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 12070,4012 L 12170,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 12235,4012 L 12336,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 12400,4012 L 12501,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 12566,4012 L 12666,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 12731,4012 L 12831,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 12896,4012 L 12997,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 13061,4012 L 13162,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 13227,4012 L 13327,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 13392,4012 L 13492,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 13557,4012 L 13658,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 13722,4012 L 13823,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 13888,4012 L 13988,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 14053,4012 L 14153,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 14218,4012 L 14319,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 14383,4012 L 14484,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 14549,4012 L 14649,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 14714,4012 L 14814,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 14879,4012 L 14980,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 15044,4012 L 15145,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 15210,4012 L 15310,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 15375,4012 L 15475,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 15540,4012 L 15641,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 15705,4012 L 15806,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 15871,4012 L 15971,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 16036,4012 L 16136,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 16201,4012 L 16301,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 16366,4012 L 16467,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 16531,4012 L 16632,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 16697,4012 L 16797,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 16862,4012 L 16962,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 17027,4012 L 17128,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 17192,4012 L 17293,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 17358,4012 L 17458,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 17523,4012 L 17623,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 17688,4012 L 17789,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 17853,4012 L 17954,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 18019,4012 L 18119,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 18184,4012 L 18284,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 18349,4012 L 18450,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 18514,4012 L 18615,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 18680,4012 L 18780,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 18845,4012 L 18945,4012"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19010,4012 L 19014,4012 19014,4109"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,4173 L 19014,4274"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,4339 L 19014,4439"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,4504 L 19014,4604"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,4669 L 19014,4770"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,4834 L 19014,4935"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,5000 L 19014,5100"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,5165 L 19014,5265"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,5330 L 19014,5430"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,5495 L 19014,5596"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,5660 L 19014,5761"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,5826 L 19014,5926"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,5991 L 19014,6091"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,6156 L 19014,6257"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,6321 L 19014,6422"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,6487 L 19014,6587"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,6652 L 19014,6752"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,6817 L 19014,6918"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,6982 L 19014,7083"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,7148 L 19014,7248"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,7313 L 19014,7413"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,7478 L 19014,7579"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,7643 L 19014,7744"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,7809 L 19014,7909"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,7974 L 19014,8074"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,8139 L 19014,8240"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,8304 L 19014,8405"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,8470 L 19014,8570"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,8635 L 19014,8735"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,8800 L 19014,8901"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,8965 L 19014,9066"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,9131 L 19014,9231"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,9296 L 19014,9396"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,9461 L 19014,9561"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,9626 L 19014,9727"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,9791 L 19014,9892"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,9957 L 19014,10057"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,10122 L 19014,10222"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,10287 L 19014,10388"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,10452 L 19014,10553"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,10618 L 19014,10718"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,10783 L 19014,10883"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,10948 L 19014,11049"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 19014,11113 L 19014,11199 18999,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 18934,11199 L 18834,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 18769,11199 L 18669,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 18604,11199 L 18503,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 18439,11199 L 18338,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 18273,11199 L 18173,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 18108,11199 L 18008,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 17943,11199 L 17842,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 17778,11199 L 17677,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 17612,11199 L 17512,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 17447,11199 L 17347,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 17282,11199 L 17181,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 17117,11199 L 17016,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 16951,11199 L 16851,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 16786,11199 L 16686,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 16621,11199 L 16521,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 16456,11199 L 16355,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 16291,11199 L 16190,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 16125,11199 L 16025,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 15960,11199 L 15860,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 15795,11199 L 15694,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 15630,11199 L 15529,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 15464,11199 L 15364,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 15299,11199 L 15199,11199"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" stroke-width="51" stroke-linejoin="round" d="M 15134,11199 L 15033,11199"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id20">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="10579" y="3083" width="8322" height="2385"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="700"><tspan class="TextPosition" x="10829" y="3784"><tspan fill="rgb(0,0,0)" stroke="none">SecurityFilterChain</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id21">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="13963" y="6927" width="2091" height="375"/>
|
||||
<path fill="rgb(0,102,179)" stroke="none" d="M 15008,7300 L 13964,7300 13964,6928 16052,6928 16052,7300 15008,7300 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 15008,7300 L 13964,7300 13964,6928 16052,6928 16052,7300 15008,7300 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id22">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="13963" y="7476" width="2091" height="375"/>
|
||||
<path fill="rgb(0,102,179)" stroke="none" d="M 15008,7849 L 13964,7849 13964,7477 16052,7477 16052,7849 15008,7849 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 15008,7849 L 13964,7849 13964,7477 16052,7477 16052,7849 15008,7849 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id23">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="13963" y="8027" width="2091" height="375"/>
|
||||
<path fill="rgb(0,102,179)" stroke="none" d="M 15008,8400 L 13964,8400 13964,8028 16052,8028 16052,8400 15008,8400 Z"/>
|
||||
<path fill="none" stroke="rgb(235,97,61)" d="M 15008,8400 L 13964,8400 13964,8028 16052,8028 16052,8400 15008,8400 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.LineShape">
|
||||
<g id="id24">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="8799" y="7450" width="2202" height="301"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 8800,7600 L 10570,7600"/>
|
||||
<path fill="rgb(0,0,0)" stroke="none" d="M 11000,7600 L 10550,7450 10550,7750 11000,7600 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 83 KiB |
Binary file not shown.
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 112 KiB |
Loading…
Reference in New Issue