OpenOrchestrator 1.3.1__tar.gz → 2.0.0rc1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. openorchestrator-2.0.0rc1/.Illustrations/Architecture.drawio +103 -0
  2. openorchestrator-2.0.0rc1/.Illustrations/OpenOrchestrator Logo.svg +563 -0
  3. openorchestrator-2.0.0rc1/.Illustrations/Scheduler.drawio +302 -0
  4. openorchestrator-2.0.0rc1/.github/workflows/Changelog.yml +21 -0
  5. openorchestrator-2.0.0rc1/.github/workflows/Linting.yml +30 -0
  6. openorchestrator-2.0.0rc1/.github/workflows/Run-Tests.yml +38 -0
  7. openorchestrator-2.0.0rc1/.github/workflows/python-publish.yml +37 -0
  8. openorchestrator-2.0.0rc1/.gitignore +165 -0
  9. openorchestrator-2.0.0rc1/.pylintrc +12 -0
  10. openorchestrator-2.0.0rc1/OpenOrchestrator/__main__.py +74 -0
  11. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/common/connection_frame.py +10 -4
  12. openorchestrator-2.0.0rc1/OpenOrchestrator/database/base.py +8 -0
  13. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/database/constants.py +3 -15
  14. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/database/db_util.py +110 -37
  15. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/database/logs.py +3 -15
  16. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/database/queues.py +3 -15
  17. openorchestrator-2.0.0rc1/OpenOrchestrator/database/schedulers.py +32 -0
  18. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/database/triggers.py +7 -16
  19. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator/application.py +13 -8
  20. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator/datetime_input.py +2 -2
  21. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator/popups/constant_popup.py +8 -6
  22. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator/popups/credential_popup.py +10 -8
  23. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator/popups/generic_popups.py +15 -2
  24. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator/popups/trigger_popup.py +25 -14
  25. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator/tabs/constants_tab.py +5 -2
  26. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator/tabs/logging_tab.py +3 -0
  27. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator/tabs/queue_tab.py +4 -1
  28. openorchestrator-2.0.0rc1/OpenOrchestrator/orchestrator/tabs/schedulers_tab.py +45 -0
  29. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator/tabs/settings_tab.py +2 -5
  30. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator/tabs/trigger_tab.py +9 -5
  31. openorchestrator-2.0.0rc1/OpenOrchestrator/orchestrator/test_helper.py +17 -0
  32. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator_connection/connection.py +21 -4
  33. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/scheduler/application.py +3 -2
  34. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/scheduler/run_tab.py +16 -6
  35. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/scheduler/runner.py +51 -63
  36. openorchestrator-2.0.0rc1/OpenOrchestrator/scheduler/settings_tab.py +100 -0
  37. openorchestrator-2.0.0rc1/OpenOrchestrator/scheduler/util.py +8 -0
  38. openorchestrator-2.0.0rc1/OpenOrchestrator/tests/__init__.py +0 -0
  39. openorchestrator-2.0.0rc1/OpenOrchestrator/tests/db_test_util.py +40 -0
  40. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1/OpenOrchestrator}/tests/test_db_util.py +46 -14
  41. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1/OpenOrchestrator}/tests/test_orchestrator_connection.py +23 -2
  42. openorchestrator-2.0.0rc1/OpenOrchestrator/tests/test_trigger_polling.py +143 -0
  43. openorchestrator-2.0.0rc1/OpenOrchestrator/tests/ui_tests/__init__.py +0 -0
  44. openorchestrator-2.0.0rc1/OpenOrchestrator/tests/ui_tests/test_constants_tab.py +167 -0
  45. openorchestrator-2.0.0rc1/OpenOrchestrator/tests/ui_tests/test_logging_tab.py +180 -0
  46. openorchestrator-2.0.0rc1/OpenOrchestrator/tests/ui_tests/test_queues_tab.py +126 -0
  47. openorchestrator-2.0.0rc1/OpenOrchestrator/tests/ui_tests/test_schedulers_tab.py +47 -0
  48. openorchestrator-2.0.0rc1/OpenOrchestrator/tests/ui_tests/test_trigger_tab.py +243 -0
  49. openorchestrator-2.0.0rc1/OpenOrchestrator/tests/ui_tests/ui_util.py +151 -0
  50. openorchestrator-2.0.0rc1/OpenOrchestrator.egg-info/PKG-INFO +158 -0
  51. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator.egg-info/SOURCES.txt +36 -3
  52. openorchestrator-2.0.0rc1/OpenOrchestrator.egg-info/requires.txt +13 -0
  53. openorchestrator-2.0.0rc1/PKG-INFO +158 -0
  54. openorchestrator-2.0.0rc1/README.md +132 -0
  55. openorchestrator-2.0.0rc1/alembic/__init__.py +0 -0
  56. openorchestrator-2.0.0rc1/alembic/env.py +73 -0
  57. openorchestrator-2.0.0rc1/alembic/script.py.mako +17 -0
  58. openorchestrator-2.0.0rc1/alembic/versions/__init__.py +0 -0
  59. openorchestrator-2.0.0rc1/alembic/versions/rev_526b6edac328_add_schedulers_table.py +23 -0
  60. openorchestrator-2.0.0rc1/alembic/versions/rev_90d46abd44a3_added_trigger_priority.py +18 -0
  61. openorchestrator-2.0.0rc1/alembic/versions/rev_b67b7649b282_initial.py +93 -0
  62. openorchestrator-2.0.0rc1/alembic.ini +50 -0
  63. openorchestrator-2.0.0rc1/changelog.md +142 -0
  64. openorchestrator-2.0.0rc1/manual_tests.txt +20 -0
  65. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/pyproject.toml +17 -8
  66. openorchestrator-1.3.1/OpenOrchestrator/__main__.py +0 -20
  67. openorchestrator-1.3.1/OpenOrchestrator/scheduler/connection_frame.py +0 -96
  68. openorchestrator-1.3.1/OpenOrchestrator/scheduler/settings_tab.py +0 -24
  69. openorchestrator-1.3.1/OpenOrchestrator.egg-info/PKG-INFO +0 -60
  70. openorchestrator-1.3.1/OpenOrchestrator.egg-info/requires.txt +0 -8
  71. openorchestrator-1.3.1/PKG-INFO +0 -60
  72. openorchestrator-1.3.1/README.md +0 -39
  73. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/LICENSE +0 -0
  74. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/__init__.py +0 -0
  75. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/common/__init__.py +0 -0
  76. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/common/crypto_util.py +0 -0
  77. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/common/datetime_util.py +0 -0
  78. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/database/__init__.py +0 -0
  79. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/database/truncated_string.py +0 -0
  80. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator/__init__.py +0 -0
  81. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator/popups/__init__.py +0 -0
  82. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/orchestrator_connection/__init__.py +0 -0
  83. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator/scheduler/__init__.py +0 -0
  84. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator.egg-info/dependency_links.txt +0 -0
  85. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/OpenOrchestrator.egg-info/top_level.txt +0 -0
  86. {openorchestrator-1.3.1 → openorchestrator-2.0.0rc1}/setup.cfg +0 -0
@@ -0,0 +1,103 @@
1
+ <mxfile host="www.draw.io" modified="2023-07-07T07:44:44.244Z" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.67" etag="7JDka_XZECzZBEZ5jY8d" version="21.6.1" type="device">
2
+ <diagram id="R2lEEEUBdFMjLlhIrx00" name="Page-1">
3
+ <mxGraphModel dx="1392" dy="775" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0" extFonts="Permanent Marker^https://fonts.googleapis.com/css?family=Permanent+Marker">
4
+ <root>
5
+ <mxCell id="0" />
6
+ <mxCell id="1" parent="0" />
7
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-1" value="Database" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=#6c8ebf;fontSize=16;fillColor=#66FFFF;gradientColor=none;swimlaneFillColor=#CCFFFF;" vertex="1" parent="1">
8
+ <mxGeometry x="335" y="120" width="180" height="150" as="geometry" />
9
+ </mxCell>
10
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-2" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" vertex="1" parent="vAiuzUgHTBZK7nf8tgEe-1">
11
+ <mxGeometry y="30" width="180" height="40" as="geometry" />
12
+ </mxCell>
13
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-3" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" vertex="1" parent="vAiuzUgHTBZK7nf8tgEe-2">
14
+ <mxGeometry width="60" height="40" as="geometry">
15
+ <mxRectangle width="60" height="40" as="alternateBounds" />
16
+ </mxGeometry>
17
+ </mxCell>
18
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-4" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" vertex="1" parent="vAiuzUgHTBZK7nf8tgEe-2">
19
+ <mxGeometry x="60" width="60" height="40" as="geometry">
20
+ <mxRectangle width="60" height="40" as="alternateBounds" />
21
+ </mxGeometry>
22
+ </mxCell>
23
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-5" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" vertex="1" parent="vAiuzUgHTBZK7nf8tgEe-2">
24
+ <mxGeometry x="120" width="60" height="40" as="geometry">
25
+ <mxRectangle width="60" height="40" as="alternateBounds" />
26
+ </mxGeometry>
27
+ </mxCell>
28
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-6" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" vertex="1" parent="vAiuzUgHTBZK7nf8tgEe-1">
29
+ <mxGeometry y="70" width="180" height="40" as="geometry" />
30
+ </mxCell>
31
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-7" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" vertex="1" parent="vAiuzUgHTBZK7nf8tgEe-6">
32
+ <mxGeometry width="60" height="40" as="geometry">
33
+ <mxRectangle width="60" height="40" as="alternateBounds" />
34
+ </mxGeometry>
35
+ </mxCell>
36
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-8" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" vertex="1" parent="vAiuzUgHTBZK7nf8tgEe-6">
37
+ <mxGeometry x="60" width="60" height="40" as="geometry">
38
+ <mxRectangle width="60" height="40" as="alternateBounds" />
39
+ </mxGeometry>
40
+ </mxCell>
41
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-9" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" vertex="1" parent="vAiuzUgHTBZK7nf8tgEe-6">
42
+ <mxGeometry x="120" width="60" height="40" as="geometry">
43
+ <mxRectangle width="60" height="40" as="alternateBounds" />
44
+ </mxGeometry>
45
+ </mxCell>
46
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-10" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" vertex="1" parent="vAiuzUgHTBZK7nf8tgEe-1">
47
+ <mxGeometry y="110" width="180" height="40" as="geometry" />
48
+ </mxCell>
49
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-11" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" vertex="1" parent="vAiuzUgHTBZK7nf8tgEe-10">
50
+ <mxGeometry width="60" height="40" as="geometry">
51
+ <mxRectangle width="60" height="40" as="alternateBounds" />
52
+ </mxGeometry>
53
+ </mxCell>
54
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-12" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" vertex="1" parent="vAiuzUgHTBZK7nf8tgEe-10">
55
+ <mxGeometry x="60" width="60" height="40" as="geometry">
56
+ <mxRectangle width="60" height="40" as="alternateBounds" />
57
+ </mxGeometry>
58
+ </mxCell>
59
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-13" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" vertex="1" parent="vAiuzUgHTBZK7nf8tgEe-10">
60
+ <mxGeometry x="120" width="60" height="40" as="geometry">
61
+ <mxRectangle width="60" height="40" as="alternateBounds" />
62
+ </mxGeometry>
63
+ </mxCell>
64
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-14" value="" style="shape=actor;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
65
+ <mxGeometry x="110" y="320" width="40" height="60" as="geometry" />
66
+ </mxCell>
67
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-15" value="" style="shape=actor;whiteSpace=wrap;html=1;fillColor=#ffe6cc;strokeColor=#d79b00;" vertex="1" parent="1">
68
+ <mxGeometry x="200" y="410" width="40" height="60" as="geometry" />
69
+ </mxCell>
70
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-16" value="" style="shape=actor;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
71
+ <mxGeometry x="90" y="190" width="40" height="60" as="geometry" />
72
+ </mxCell>
73
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-17" value="VM1" style="icon;html=1;image=img/clipart/Gear_128x128.png" vertex="1" parent="1">
74
+ <mxGeometry x="720" y="190" width="60" height="60" as="geometry" />
75
+ </mxCell>
76
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-18" value="VM2" style="icon;html=1;image=img/clipart/Gear_128x128.png" vertex="1" parent="1">
77
+ <mxGeometry x="680" y="332.81" width="60" height="60" as="geometry" />
78
+ </mxCell>
79
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-19" value="VM3" style="icon;html=1;image=img/clipart/Gear_128x128.png" vertex="1" parent="1">
80
+ <mxGeometry x="570" y="440" width="60" height="60" as="geometry" />
81
+ </mxCell>
82
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-20" value="" style="shape=doubleArrow;direction=south;whiteSpace=wrap;html=1;rotation=85;" vertex="1" parent="1">
83
+ <mxGeometry x="212.05" y="123.59" width="40" height="172.81" as="geometry" />
84
+ </mxCell>
85
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-22" value="" style="shape=doubleArrow;direction=south;whiteSpace=wrap;html=1;rotation=65;" vertex="1" parent="1">
86
+ <mxGeometry x="220" y="210" width="40" height="172.81" as="geometry" />
87
+ </mxCell>
88
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-23" value="" style="shape=doubleArrow;direction=south;whiteSpace=wrap;html=1;rotation=40;" vertex="1" parent="1">
89
+ <mxGeometry x="280" y="263.59" width="40" height="172.81" as="geometry" />
90
+ </mxCell>
91
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-24" value="" style="shape=doubleArrow;direction=south;whiteSpace=wrap;html=1;rotation=95;" vertex="1" parent="1">
92
+ <mxGeometry x="600" y="123.6" width="40" height="172.81" as="geometry" />
93
+ </mxCell>
94
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-25" value="" style="shape=doubleArrow;direction=south;whiteSpace=wrap;html=1;rotation=120;" vertex="1" parent="1">
95
+ <mxGeometry x="580" y="220" width="40" height="172.81" as="geometry" />
96
+ </mxCell>
97
+ <mxCell id="vAiuzUgHTBZK7nf8tgEe-26" value="" style="shape=doubleArrow;direction=south;whiteSpace=wrap;html=1;rotation=-35;" vertex="1" parent="1">
98
+ <mxGeometry x="515" y="276.4" width="40" height="172.81" as="geometry" />
99
+ </mxCell>
100
+ </root>
101
+ </mxGraphModel>
102
+ </diagram>
103
+ </mxfile>
@@ -0,0 +1,563 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="210mm"
6
+ height="210mm"
7
+ viewBox="0 0 210 210"
8
+ version="1.1"
9
+ id="svg5"
10
+ inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
11
+ sodipodi:docname="OpenOrchestrator Logo.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg">
16
+ <sodipodi:namedview
17
+ id="namedview7"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#000000"
20
+ borderopacity="0.25"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="false"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:document-units="mm"
26
+ showgrid="false"
27
+ inkscape:zoom="0.72323815"
28
+ inkscape:cx="4253.7855"
29
+ inkscape:cy="540.62413"
30
+ inkscape:window-width="1920"
31
+ inkscape:window-height="1017"
32
+ inkscape:window-x="-8"
33
+ inkscape:window-y="-8"
34
+ inkscape:window-maximized="1"
35
+ inkscape:current-layer="layer1">
36
+ <inkscape:page
37
+ x="0"
38
+ y="0"
39
+ width="210"
40
+ height="210"
41
+ id="page13865" />
42
+ <inkscape:page
43
+ x="220"
44
+ y="0"
45
+ width="210"
46
+ height="210"
47
+ id="page496" />
48
+ <inkscape:page
49
+ x="440"
50
+ y="0"
51
+ width="210"
52
+ height="210"
53
+ id="page14018" />
54
+ <inkscape:page
55
+ x="660"
56
+ y="0"
57
+ width="210"
58
+ height="210"
59
+ id="page13867" />
60
+ <inkscape:page
61
+ x="880"
62
+ y="0"
63
+ width="210"
64
+ height="210"
65
+ id="page13984" />
66
+ <inkscape:page
67
+ x="1100"
68
+ y="0"
69
+ width="210"
70
+ height="210"
71
+ id="page5584" />
72
+ </sodipodi:namedview>
73
+ <defs
74
+ id="defs2" />
75
+ <g
76
+ inkscape:label="Layer 1"
77
+ inkscape:groupmode="layer"
78
+ id="layer1">
79
+ <g
80
+ id="g2541"
81
+ style="fill:#f17136;fill-opacity:1;stroke:#f69200;stroke-width:6;stroke-dasharray:none;stroke-opacity:1">
82
+ <path
83
+ style="fill:#f17136;fill-opacity:1;stroke:#f69200;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
84
+ d="M 104.32259,76.290336 146.5484,26.258077"
85
+ id="path1743" />
86
+ <path
87
+ style="fill:#f17136;fill-opacity:1;stroke:#f69200;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
88
+ d="M 104.32259,76.290336 36.193547,59.612908 v 0"
89
+ id="path2525" />
90
+ <path
91
+ style="fill:#f17136;fill-opacity:1;stroke:#f69200;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
92
+ d="M 40.806446,143.70968 104.32259,76.290336"
93
+ id="path2527" />
94
+ <path
95
+ style="fill:#f17136;fill-opacity:1;stroke:#f69200;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
96
+ d="M 98.645164,172.80646 104.32259,76.290336"
97
+ id="path2529" />
98
+ <path
99
+ style="fill:#f17136;fill-opacity:1;stroke:#f69200;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
100
+ d="M 178.12903,89.064527 104.32259,76.290336"
101
+ id="path2531" />
102
+ <path
103
+ style="fill:#f17136;fill-opacity:1;stroke:#f69200;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
104
+ d="M 166.06453,166.41936 104.32259,76.290336"
105
+ id="path2533" />
106
+ </g>
107
+ <g
108
+ id="g6383"
109
+ style="fill:#72b14f;fill-opacity:1;stroke:#f69200;stroke-width:3;stroke-dasharray:none;stroke-opacity:1">
110
+ <circle
111
+ style="fill:#72b14f;fill-opacity:1;stroke:#f69200;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
112
+ id="circle3774"
113
+ cx="36.193546"
114
+ cy="59.612907"
115
+ r="16" />
116
+ <circle
117
+ style="fill:#72b14f;fill-opacity:1;stroke:#f69200;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
118
+ id="circle3776"
119
+ cx="180.61292"
120
+ cy="89.064529"
121
+ r="16" />
122
+ <circle
123
+ style="fill:#72b14f;fill-opacity:1;stroke:#f69200;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
124
+ id="circle3778"
125
+ cx="98.645164"
126
+ cy="172.80646"
127
+ r="16" />
128
+ </g>
129
+ <g
130
+ id="g6388"
131
+ style="fill:#df5327;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1">
132
+ <circle
133
+ style="fill:#df5327;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
134
+ id="path273"
135
+ cx="40.806446"
136
+ cy="143.70969"
137
+ r="19.161289" />
138
+ <circle
139
+ style="fill:#df5327;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
140
+ id="circle959"
141
+ cx="146.5484"
142
+ cy="26.258078"
143
+ r="19.161289" />
144
+ <circle
145
+ style="fill:#df5327;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
146
+ id="circle961"
147
+ cx="166.06453"
148
+ cy="166.41936"
149
+ r="19.161289" />
150
+ </g>
151
+ <circle
152
+ style="fill:#418ab3;fill-opacity:1;stroke:#f69200;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
153
+ id="circle3780"
154
+ cx="104.32259"
155
+ cy="76.290337"
156
+ r="28.5" />
157
+ <g
158
+ id="g13964"
159
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
160
+ transform="translate(660.00047)">
161
+ <path
162
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
163
+ d="M 104.32259,76.290336 146.5484,26.258077"
164
+ id="path13952" />
165
+ <path
166
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
167
+ d="M 104.32259,76.290336 36.193547,59.612908 v 0"
168
+ id="path13954" />
169
+ <path
170
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
171
+ d="M 40.806446,143.70968 104.32259,76.290336"
172
+ id="path13956" />
173
+ <path
174
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
175
+ d="M 98.645164,172.80646 104.32259,76.290336"
176
+ id="path13958" />
177
+ <path
178
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
179
+ d="M 178.12903,89.064527 104.32259,76.290336"
180
+ id="path13960" />
181
+ <path
182
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
183
+ d="M 166.06453,166.41936 104.32259,76.290336"
184
+ id="path13962" />
185
+ </g>
186
+ <g
187
+ id="g13972"
188
+ style="fill:#e6e6e6;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
189
+ transform="translate(660.00047)">
190
+ <circle
191
+ style="fill:#e6e6e6;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
192
+ id="circle13966"
193
+ cx="36.193546"
194
+ cy="59.612907"
195
+ r="16" />
196
+ <circle
197
+ style="fill:#e6e6e6;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
198
+ id="circle13968"
199
+ cx="180.61292"
200
+ cy="89.064529"
201
+ r="16" />
202
+ <circle
203
+ style="fill:#e6e6e6;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
204
+ id="circle13970"
205
+ cx="98.645164"
206
+ cy="172.80646"
207
+ r="16" />
208
+ </g>
209
+ <g
210
+ id="g13980"
211
+ style="fill:#e6e6e6;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
212
+ transform="translate(660.00047)">
213
+ <circle
214
+ style="fill:#e6e6e6;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
215
+ id="circle13974"
216
+ cx="40.806446"
217
+ cy="143.70969"
218
+ r="19.161289" />
219
+ <circle
220
+ style="fill:#e6e6e6;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
221
+ id="circle13976"
222
+ cx="146.5484"
223
+ cy="26.258078"
224
+ r="19.161289" />
225
+ <circle
226
+ style="fill:#e6e6e6;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
227
+ id="circle13978"
228
+ cx="166.06453"
229
+ cy="166.41936"
230
+ r="19.161289" />
231
+ </g>
232
+ <circle
233
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
234
+ id="circle13982"
235
+ cx="764.32306"
236
+ cy="76.290337"
237
+ r="28.5" />
238
+ <g
239
+ id="g13998"
240
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
241
+ transform="translate(880.00047)">
242
+ <path
243
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
244
+ d="M 104.32259,76.290336 146.5484,26.258077"
245
+ id="path13986" />
246
+ <path
247
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
248
+ d="M 104.32259,76.290336 36.193547,59.612908 v 0"
249
+ id="path13988" />
250
+ <path
251
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
252
+ d="M 40.806446,143.70968 104.32259,76.290336"
253
+ id="path13990" />
254
+ <path
255
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
256
+ d="M 98.645164,172.80646 104.32259,76.290336"
257
+ id="path13992" />
258
+ <path
259
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
260
+ d="M 178.12903,89.064527 104.32259,76.290336"
261
+ id="path13994" />
262
+ <path
263
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
264
+ d="M 166.06453,166.41936 104.32259,76.290336"
265
+ id="path13996" />
266
+ </g>
267
+ <g
268
+ id="g14006"
269
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
270
+ transform="translate(880.00047)">
271
+ <circle
272
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
273
+ id="circle14000"
274
+ cx="36.193546"
275
+ cy="59.612907"
276
+ r="16" />
277
+ <circle
278
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
279
+ id="circle14002"
280
+ cx="180.61292"
281
+ cy="89.064529"
282
+ r="16" />
283
+ <circle
284
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
285
+ id="circle14004"
286
+ cx="98.645164"
287
+ cy="172.80646"
288
+ r="16" />
289
+ </g>
290
+ <g
291
+ id="g14014"
292
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
293
+ transform="translate(880.00047)">
294
+ <circle
295
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
296
+ id="circle14008"
297
+ cx="40.806446"
298
+ cy="143.70969"
299
+ r="19.161289" />
300
+ <circle
301
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
302
+ id="circle14010"
303
+ cx="146.5484"
304
+ cy="26.258078"
305
+ r="19.161289" />
306
+ <circle
307
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
308
+ id="circle14012"
309
+ cx="166.06453"
310
+ cy="166.41936"
311
+ r="19.161289" />
312
+ </g>
313
+ <circle
314
+ style="fill:#fbfbfb;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
315
+ id="circle14016"
316
+ cx="984.32306"
317
+ cy="76.290337"
318
+ r="28.5" />
319
+ <g
320
+ id="g14032"
321
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
322
+ transform="translate(440.00046)">
323
+ <path
324
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
325
+ d="M 104.32259,76.290336 146.5484,26.258077"
326
+ id="path14020" />
327
+ <path
328
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
329
+ d="M 104.32259,76.290336 36.193547,59.612908 v 0"
330
+ id="path14022" />
331
+ <path
332
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
333
+ d="M 40.806446,143.70968 104.32259,76.290336"
334
+ id="path14024" />
335
+ <path
336
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
337
+ d="M 98.645164,172.80646 104.32259,76.290336"
338
+ id="path14026" />
339
+ <path
340
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
341
+ d="M 178.12903,89.064527 104.32259,76.290336"
342
+ id="path14028" />
343
+ <path
344
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
345
+ d="M 166.06453,166.41936 104.32259,76.290336"
346
+ id="path14030" />
347
+ </g>
348
+ <g
349
+ id="g14040"
350
+ style="fill:#c5f9ec;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
351
+ transform="translate(440.00046)">
352
+ <circle
353
+ style="fill:#c5f9ec;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
354
+ id="circle14034"
355
+ cx="36.193546"
356
+ cy="59.612907"
357
+ r="16" />
358
+ <circle
359
+ style="fill:#c5f9ec;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
360
+ id="circle14036"
361
+ cx="180.61292"
362
+ cy="89.064529"
363
+ r="16" />
364
+ <circle
365
+ style="fill:#c5f9ec;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
366
+ id="circle14038"
367
+ cx="98.645164"
368
+ cy="172.80646"
369
+ r="16" />
370
+ </g>
371
+ <g
372
+ id="g14048"
373
+ style="fill:#efa3a8;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
374
+ transform="translate(440.00046)">
375
+ <circle
376
+ style="fill:#efa3a8;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
377
+ id="circle14042"
378
+ cx="40.806446"
379
+ cy="143.70969"
380
+ r="19.161289" />
381
+ <circle
382
+ style="fill:#efa3a8;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
383
+ id="circle14044"
384
+ cx="146.5484"
385
+ cy="26.258078"
386
+ r="19.161289" />
387
+ <circle
388
+ style="fill:#efa3a8;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
389
+ id="circle14046"
390
+ cx="166.06453"
391
+ cy="166.41936"
392
+ r="19.161289" />
393
+ </g>
394
+ <circle
395
+ style="fill:#a0eff7;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
396
+ id="circle14050"
397
+ cx="544.32306"
398
+ cy="76.290337"
399
+ r="28.5" />
400
+ <g
401
+ id="g510"
402
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
403
+ transform="translate(220.00045)">
404
+ <path
405
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
406
+ d="M 104.32259,76.290336 146.5484,26.258077"
407
+ id="path498" />
408
+ <path
409
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
410
+ d="M 104.32259,76.290336 36.193547,59.612908 v 0"
411
+ id="path500" />
412
+ <path
413
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
414
+ d="M 40.806446,143.70968 104.32259,76.290336"
415
+ id="path502" />
416
+ <path
417
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
418
+ d="M 98.645164,172.80646 104.32259,76.290336"
419
+ id="path504" />
420
+ <path
421
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
422
+ d="M 178.12903,89.064527 104.32259,76.290336"
423
+ id="path506" />
424
+ <path
425
+ style="fill:#f17136;fill-opacity:1;stroke:#ff9633;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
426
+ d="M 166.06453,166.41936 104.32259,76.290336"
427
+ id="path508" />
428
+ </g>
429
+ <g
430
+ id="g518"
431
+ style="fill:#0fa37d;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
432
+ transform="translate(220.00045)">
433
+ <circle
434
+ style="fill:#0fa37d;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
435
+ id="circle512"
436
+ cx="36.193546"
437
+ cy="59.612907"
438
+ r="16" />
439
+ <circle
440
+ style="fill:#0fa37d;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
441
+ id="circle514"
442
+ cx="180.61292"
443
+ cy="89.064529"
444
+ r="16" />
445
+ <circle
446
+ style="fill:#0fa37d;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
447
+ id="circle516"
448
+ cx="98.645164"
449
+ cy="172.80646"
450
+ r="16" />
451
+ </g>
452
+ <g
453
+ id="g526"
454
+ style="fill:#d8575b;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
455
+ transform="translate(220.00045)">
456
+ <circle
457
+ style="fill:#d8575b;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
458
+ id="circle520"
459
+ cx="40.806446"
460
+ cy="143.70969"
461
+ r="19.161289" />
462
+ <circle
463
+ style="fill:#d8575b;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
464
+ id="circle522"
465
+ cx="146.5484"
466
+ cy="26.258078"
467
+ r="19.161289" />
468
+ <circle
469
+ style="fill:#d8575b;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
470
+ id="circle524"
471
+ cx="166.06453"
472
+ cy="166.41936"
473
+ r="19.161289" />
474
+ </g>
475
+ <circle
476
+ style="fill:#0fa3b1;fill-opacity:1;stroke:#ff9633;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
477
+ id="circle528"
478
+ cx="324.32306"
479
+ cy="76.290337"
480
+ r="28.5" />
481
+ <g
482
+ id="g5598"
483
+ style="fill:#ff6600;fill-opacity:1;stroke:#d45500;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
484
+ transform="translate(1100.0005)">
485
+ <path
486
+ style="fill:#ff6600;fill-opacity:1;stroke:#d45500;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
487
+ d="M 104.32259,76.290336 146.5484,26.258077"
488
+ id="path5586" />
489
+ <path
490
+ style="fill:#ff6600;fill-opacity:1;stroke:#d45500;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
491
+ d="M 104.32259,76.290336 36.193547,59.612908 v 0"
492
+ id="path5588" />
493
+ <path
494
+ style="fill:#ff6600;fill-opacity:1;stroke:#d45500;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
495
+ d="M 40.806446,143.70968 104.32259,76.290336"
496
+ id="path5590" />
497
+ <path
498
+ style="fill:#ff6600;fill-opacity:1;stroke:#d45500;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
499
+ d="M 98.645164,172.80646 104.32259,76.290336"
500
+ id="path5592" />
501
+ <path
502
+ style="fill:#ff6600;fill-opacity:1;stroke:#d45500;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
503
+ d="M 178.12903,89.064527 104.32259,76.290336"
504
+ id="path5594" />
505
+ <path
506
+ style="fill:#ff6600;fill-opacity:1;stroke:#d45500;stroke-width:6;stroke-dasharray:none;stroke-opacity:1"
507
+ d="M 166.06453,166.41936 104.32259,76.290336"
508
+ id="path5596" />
509
+ </g>
510
+ <g
511
+ id="g5606"
512
+ style="fill:#ff9955;fill-opacity:1;stroke:#d45500;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
513
+ transform="translate(1100.0005)">
514
+ <circle
515
+ style="fill:#ff9955;fill-opacity:1;stroke:#d45500;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
516
+ id="circle5600"
517
+ cx="36.193546"
518
+ cy="59.612907"
519
+ r="16" />
520
+ <circle
521
+ style="fill:#ff9955;fill-opacity:1;stroke:#d45500;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
522
+ id="circle5602"
523
+ cx="180.61292"
524
+ cy="89.064529"
525
+ r="16" />
526
+ <circle
527
+ style="fill:#ff9955;fill-opacity:1;stroke:#d45500;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
528
+ id="circle5604"
529
+ cx="98.645164"
530
+ cy="172.80646"
531
+ r="16" />
532
+ </g>
533
+ <g
534
+ id="g5614"
535
+ style="fill:#ffccaa;fill-opacity:1;stroke:#d45500;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
536
+ transform="translate(1100.0005)">
537
+ <circle
538
+ style="fill:#ffccaa;fill-opacity:1;stroke:#d45500;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
539
+ id="circle5608"
540
+ cx="40.806446"
541
+ cy="143.70969"
542
+ r="19.161289" />
543
+ <circle
544
+ style="fill:#ffccaa;fill-opacity:1;stroke:#d45500;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
545
+ id="circle5610"
546
+ cx="146.5484"
547
+ cy="26.258078"
548
+ r="19.161289" />
549
+ <circle
550
+ style="fill:#ffccaa;fill-opacity:1;stroke:#d45500;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
551
+ id="circle5612"
552
+ cx="166.06453"
553
+ cy="166.41936"
554
+ r="19.161289" />
555
+ </g>
556
+ <circle
557
+ style="fill:#ff6600;fill-opacity:1;stroke:#d45500;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
558
+ id="circle5616"
559
+ cx="1204.323"
560
+ cy="76.290337"
561
+ r="28.5" />
562
+ </g>
563
+ </svg>