-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2370 lines (2261 loc) · 175 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SESY & GSET Kurzreferenz</title>
<style>
:root {
font-size: 62.5%;
}
[id] {
scroll-margin-top: 2rem;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
}
p, li {
line-height: 1.5;
}
p a,
li a{
color: #000;
}
p.quellen {
font-size: 1.4rem;
width: 100%;
max-width: 100%;
}
p.quellen a {
color: #000;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
background: #bbb;
line-height: 1;
font-size: 1.6rem;
font-family: Verdana, sans-serif;
}
ol, ul {
list-style: disc;
padding-left: 1.4rem;
}
ul li {
margin-top: 0.5rem;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
table td,
table th {
padding: .5rem 1rem;
text-align: center;
}
table tr td:last-child,
table tr th:last-child {
text-align: right;
padding-right: 0;
}
table tr td:first-child,
table tr th:first-child {
text-align: left;
padding-left: 0;
}
table thead,
table tbody {
border-bottom: .1rem solid #000;
}
table.txt tr th,
table.txt tr td {
text-align: left;
}
table.txt td {
border: 1px solid #000 !important;
}
table {
margin-top: 1.6rem;
}
h2,
h3,
p,
ul {
margin-top: 1rem;
}
h3 + p {
margin-top: .5rem;
}
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 64px;
background: #ccc;
border-bottom: .1rem solid #000;
padding: 10px 24px;
z-index: 999;
display: flex;
align-items: center;
}
header ul {
padding: 0;
display: flex;
list-style: none;
margin: 0 auto;
max-width: 100rem;
width: 100%;
}
header ul li {
margin: 0 1rem 0 0;
}
header button {
font-size: 1.6rem;
padding: 0.5rem;
}
header label{
font-size: 1.6rem;
font-weight: bold;
margin-right: 8px;
}
header input{
border: 2px solid #000;
padding: 8px 16px;
max-width: 100%;
box-sizing: border-box;
}
main {
width: 100%;
padding: 10px 24px 50px;
box-sizing: border-box;
margin-top: 64px;
}
details {
background: #eeeeee;
padding: 16px;
margin-top: 16px;
border-radius: 3px;
border: 3px solid #000;
}
details details {
background: #eeeeee;
padding: 1rem;
margin: .5rem 0 0;
}
details summary {
font-weight: bold;
font-size: 2.4rem;
}
details details summary {
font-size: 1.8rem;
}
summary + details {
margin-top: 1rem;
}
p + details{
margin-top: 16px;
}
summary{
line-height: 1.5;
text-overflow: ellipsis;
overflow: hidden;
}
code {
background: #111;
color: #00ff3b;
font-weight: 400;
border: 1px solid #111;
padding: 1rem;
width: 100%;
display: block;
margin-top: 1rem;
line-height: 1.5;
font-family: monospace;
border-radius: 3px;
white-space: nowrap;
overflow-x: scroll;
}
code table,
code table td {
text-align: center !important;
border: 1px solid #00ff3b;
}
code table {
margin-top: 0;
}
code table td {
padding: 10px !important;
}
code {
}
em {
white-space: nowrap;
font-family: monospace;
}
a {
text-underline-offset: 5px;
}
code a {
color: #00ff3b;
}
code + details {
margin-top: 2rem;
}
svg {
background: #fff;
padding: 20px;
margin-top: 16px;
max-width: 600px;
width: 100%;
box-sizing: border-box;
}
h2,
h3 {
font-weight: bold;
font-size: 1.8rem;
}
h3 {
font-size: 1.6rem;
}
h3 + table {
margin-top: 0;
}
p {
max-width: 80rem;
}
figcaption {
font-size: 1.4rem;
padding: 8px 0 16px;
font-style: italic;
}
@media(max-width: 600px){
header{
flex-direction: column;
height: 84px;
align-items: flex-start;
}
header label{
margin-bottom: 8px;
}
main{
margin-top: 84px;
}
}
</style>
</head>
<body>
<header>
<label for="sectionSearch">Zu Abschnitt springen:</label>
<input list="sections" id="sectionSearch" name="search" autocomplete="off" size="50"/>
<datalist id="sections"></datalist>
</header>
<main>
<details>
<summary>RDF Schema</summary>
<details>
<summary>Ableitungsregeln</summary>
<details>
<summary>Type/subclass</summary>
<code>
O <abbr title="rdf:type">a</abbr> C1 .<br/>
C1 rdfs:subClassOf C2 .<br/>
# Es folgt: <br/>
O <abbr title="rdf:type">a</abbr> C2 .
</code>
</details>
<details>
<summary>subClass-transitiv</summary>
<code>
C1 rdfs:subClassOf C2 .<br/>
C2 rdfs:subClassOf C3 .<br/>
C1 rdfs:subClassOf C3 .<br/>
</code>
</details>
<details>
<summary>subClass-reflexiv</summary>
<code>
O <abbr title="rdf:type">a</abbr> C .<br/>
C rdfs:subClassOf C .
</code>
</details>
<details>
<summary>Property</summary>
<code>
O1 p O2 .<br/>
p <abbr title="rdf:type">a</abbr> rdf:Property .
</code>
</details>
<details>
<summary>subProperty</summary>
<code>
p1 rdfs:subPropertyOf p2 .<br/>
O1 p1 O2 .<br/>
O1 p2 O2 .
</code>
</details>
<details>
<summary>subProperty-Transitivität</summary>
<code>
p1 rdfs:subPropertyOf p2 .<br/>
p2 rdfs:subPropertyOf p3 .<br/>
p1 rdfs:subPropertyOf p3 .
</code>
</details>
<details>
<summary>Domain & Range</summary>
<code>
p rdf:type C1 .<br/>
a p b .<br/>
a rdf:type C1 .<br/>
</code>
<code>
p rdf:type C2 .<br/>
a p b .<br/>
b rdf:type C2 .
</code>
</details>
<details>
<summary>Membership</summary>
<code>
p rdf:type rdfs:ContainerMembershipProperty .<br/>
a p b .<br/>
a rdfs:member b .
</code>
</details>
</details>
<details>
<summary>Properties</summary>
<details>
<summary>Domain & Range</summary>
<figure>
<svg width="500px" height="100%" viewBox="0 0 486 176" version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:10;">
<g>
<path d="M240.5,60.5L170.64,111.73" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M166.4,114.84L169.98,107.88L170.64,111.73L174.12,113.52L166.4,114.84Z"
style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M179.657,101.665L176.272,97.073L176.972,96.557L177.485,97.253C177.424,96.796 177.43,96.459 177.505,96.244C177.58,96.029 177.708,95.854 177.89,95.72C178.152,95.527 178.48,95.414 178.874,95.381L179.139,96.301C178.866,96.329 178.634,96.413 178.444,96.553C178.274,96.678 178.159,96.842 178.099,97.044C178.039,97.247 178.047,97.46 178.123,97.684C178.24,98.024 178.42,98.359 178.663,98.687L180.435,101.091L179.657,101.665ZM185.592,97.288L185.165,96.709C185.21,97.379 184.95,97.922 184.385,98.339C184.019,98.609 183.608,98.756 183.152,98.78C182.697,98.805 182.251,98.698 181.816,98.461C181.381,98.224 180.99,97.87 180.643,97.4C180.305,96.942 180.075,96.47 179.953,95.984C179.83,95.498 179.849,95.043 180.008,94.619C180.166,94.195 180.435,93.844 180.812,93.566C181.089,93.362 181.378,93.238 181.681,93.196C181.983,93.153 182.271,93.175 182.544,93.263L180.868,90.989L181.642,90.418L186.314,96.756L185.592,97.288ZM181.443,96.811C181.877,97.399 182.325,97.747 182.787,97.855C183.25,97.963 183.649,97.893 183.987,97.645C184.327,97.394 184.513,97.042 184.546,96.588C184.578,96.135 184.384,95.623 183.964,95.052C183.5,94.424 183.039,94.052 182.581,93.937C182.122,93.821 181.715,93.894 181.361,94.155C181.015,94.41 180.83,94.765 180.806,95.218C180.782,95.672 180.995,96.203 181.443,96.811ZM187.724,95.717L184.785,91.731L184.097,92.238L183.651,91.633L184.339,91.126L183.978,90.637C183.751,90.329 183.609,90.08 183.554,89.889C183.48,89.632 183.491,89.372 183.588,89.107C183.684,88.842 183.902,88.585 184.242,88.334C184.461,88.173 184.722,88.02 185.026,87.876L185.41,88.641C185.227,88.731 185.063,88.83 184.919,88.936C184.683,89.11 184.553,89.284 184.529,89.457C184.506,89.63 184.596,89.855 184.8,90.132L185.112,90.555L186.007,89.895L186.454,90.501L185.559,91.16L188.497,95.146L187.724,95.717ZM188.676,92.899L189.356,92.211C189.627,92.488 189.921,92.635 190.24,92.654C190.558,92.673 190.895,92.551 191.249,92.29C191.607,92.026 191.818,91.758 191.884,91.485C191.949,91.212 191.91,90.978 191.766,90.782C191.636,90.606 191.458,90.524 191.23,90.535C191.073,90.545 190.743,90.653 190.241,90.858C189.564,91.135 189.076,91.302 188.778,91.359C188.48,91.417 188.206,91.394 187.955,91.292C187.704,91.19 187.496,91.027 187.33,90.802C187.179,90.598 187.086,90.374 187.051,90.13C187.016,89.887 187.037,89.648 187.113,89.414C187.169,89.235 187.278,89.038 187.441,88.822C187.604,88.606 187.806,88.409 188.045,88.233C188.405,87.967 188.76,87.786 189.108,87.689C189.457,87.592 189.762,87.584 190.022,87.666C190.283,87.748 190.547,87.919 190.815,88.179L190.13,88.844C189.921,88.633 189.685,88.523 189.422,88.512C189.158,88.502 188.875,88.608 188.573,88.831C188.215,89.095 188.004,89.342 187.938,89.573C187.873,89.804 187.898,89.998 188.015,90.157C188.089,90.258 188.188,90.325 188.311,90.359C188.436,90.396 188.586,90.392 188.762,90.347C188.861,90.318 189.139,90.215 189.596,90.039C190.255,89.78 190.728,89.617 191.015,89.55C191.301,89.483 191.572,89.494 191.828,89.581C192.084,89.668 192.309,89.845 192.505,90.11C192.696,90.369 192.8,90.669 192.818,91.01C192.836,91.351 192.748,91.689 192.555,92.024C192.362,92.36 192.086,92.661 191.725,92.927C191.129,93.366 190.583,93.578 190.087,93.56C189.592,93.543 189.121,93.323 188.676,92.899ZM194.641,90.617L193.987,89.731L194.873,89.077L195.527,89.964L194.641,90.617ZM199.863,86.767L199.436,86.187C199.48,86.857 199.22,87.401 198.655,87.817C198.289,88.087 197.878,88.234 197.423,88.259C196.967,88.283 196.522,88.177 196.086,87.94C195.651,87.702 195.26,87.349 194.914,86.879C194.576,86.421 194.346,85.948 194.223,85.463C194.101,84.977 194.119,84.522 194.278,84.098C194.437,83.674 194.705,83.322 195.083,83.044C195.359,82.84 195.649,82.717 195.951,82.674C196.253,82.631 196.541,82.654 196.815,82.741L195.138,80.467L195.912,79.897L200.585,86.234L199.863,86.767ZM195.714,86.289C196.147,86.877 196.595,87.225 197.058,87.334C197.52,87.442 197.92,87.372 198.257,87.123C198.597,86.872 198.784,86.52 198.816,86.067C198.849,85.613 198.655,85.101 198.234,84.531C197.771,83.902 197.31,83.531 196.851,83.415C196.392,83.3 195.986,83.373 195.631,83.634C195.285,83.889 195.101,84.243 195.077,84.697C195.053,85.15 195.265,85.681 195.714,86.289ZM191.909,86.912L191.256,86.026L192.142,85.373L192.795,86.259L191.909,86.912ZM199.826,83.25C199.199,82.4 198.971,81.596 199.142,80.838C199.286,80.207 199.642,79.682 200.21,79.264C200.841,78.798 201.51,78.625 202.215,78.743C202.921,78.861 203.542,79.285 204.08,80.014C204.515,80.605 204.769,81.135 204.842,81.604C204.914,82.074 204.85,82.527 204.65,82.964C204.449,83.401 204.149,83.767 203.748,84.062C203.105,84.536 202.434,84.713 201.734,84.593C201.034,84.473 200.398,84.026 199.826,83.25ZM200.626,82.661C201.059,83.249 201.512,83.594 201.984,83.698C202.457,83.801 202.887,83.709 203.276,83.423C203.662,83.138 203.875,82.754 203.915,82.271C203.955,81.788 203.753,81.245 203.309,80.643C202.89,80.075 202.444,79.74 201.97,79.638C201.497,79.535 201.068,79.625 200.685,79.908C200.296,80.195 200.08,80.578 200.038,81.059C199.997,81.539 200.192,82.073 200.626,82.661ZM206.732,81.702L203.347,77.111L204.043,76.598L204.518,77.242C204.497,76.911 204.555,76.589 204.693,76.275C204.831,75.962 205.053,75.693 205.359,75.468C205.699,75.217 206.03,75.082 206.352,75.063C206.673,75.043 206.972,75.128 207.249,75.315C207.217,74.512 207.492,73.895 208.074,73.466C208.529,73.13 208.972,72.998 209.403,73.07C209.834,73.141 210.243,73.439 210.63,73.964L212.953,77.115L212.179,77.686L210.047,74.794C209.818,74.482 209.627,74.277 209.476,74.177C209.324,74.078 209.152,74.035 208.957,74.049C208.763,74.063 208.577,74.136 208.398,74.268C208.075,74.506 207.886,74.811 207.831,75.183C207.776,75.555 207.923,75.977 208.272,76.45L210.238,79.117L209.46,79.691L207.261,76.708C207.006,76.362 206.751,76.149 206.497,76.07C206.243,75.99 205.971,76.057 205.683,76.269C205.464,76.431 205.304,76.638 205.203,76.89C205.102,77.143 205.092,77.411 205.172,77.694C205.252,77.978 205.446,78.328 205.754,78.746L207.51,81.128L206.732,81.702ZM216.686,73.489C216.578,73.947 216.428,74.324 216.236,74.621C216.044,74.919 215.795,75.18 215.49,75.405C214.985,75.777 214.507,75.94 214.054,75.893C213.602,75.847 213.234,75.632 212.951,75.248C212.786,75.023 212.685,74.78 212.651,74.519C212.616,74.258 212.64,74.01 212.723,73.775C212.806,73.541 212.929,73.318 213.095,73.107C213.218,72.954 213.419,72.746 213.7,72.481C214.273,71.943 214.67,71.512 214.89,71.19C214.815,71.081 214.766,71.012 214.745,70.983C214.511,70.666 214.273,70.497 214.03,70.476C213.702,70.446 213.342,70.576 212.95,70.865C212.584,71.135 212.361,71.399 212.281,71.655C212.201,71.912 212.239,72.234 212.396,72.621L211.559,73.079C211.388,72.702 211.308,72.355 211.318,72.038C211.329,71.721 211.445,71.398 211.665,71.069C211.885,70.74 212.192,70.429 212.587,70.138C212.979,69.849 213.331,69.661 213.644,69.572C213.957,69.484 214.223,69.467 214.441,69.522C214.66,69.577 214.871,69.694 215.074,69.873C215.198,69.986 215.387,70.216 215.642,70.562L216.407,71.599C216.94,72.323 217.294,72.768 217.469,72.935C217.643,73.103 217.844,73.238 218.072,73.341L217.259,73.941C217.059,73.839 216.868,73.688 216.686,73.489ZM215.34,71.799C215.142,72.123 214.791,72.533 214.285,73.03C214,73.312 213.812,73.531 213.721,73.686C213.631,73.842 213.591,74.001 213.601,74.165C213.611,74.329 213.666,74.479 213.765,74.615C213.918,74.822 214.124,74.937 214.383,74.96C214.643,74.982 214.923,74.882 215.226,74.659C215.526,74.438 215.744,74.176 215.881,73.873C216.018,73.569 216.057,73.263 215.998,72.955C215.952,72.718 215.803,72.427 215.55,72.084L215.34,71.799ZM219.036,72.631L215.651,68.04L216.429,67.466L219.814,72.057L219.036,72.631ZM220.999,71.184L217.614,66.593L218.314,66.076L218.795,66.729C218.76,65.976 219.062,65.365 219.699,64.895C219.975,64.691 220.266,64.553 220.572,64.482C220.877,64.41 221.147,64.412 221.381,64.489C221.615,64.565 221.837,64.697 222.047,64.885C222.182,65.008 222.382,65.25 222.648,65.61L224.729,68.433L223.951,69.007L221.892,66.214C221.658,65.897 221.453,65.682 221.277,65.57C221.101,65.457 220.901,65.411 220.678,65.431C220.454,65.451 220.239,65.538 220.032,65.691C219.7,65.935 219.492,66.251 219.406,66.639C219.321,67.027 219.495,67.515 219.928,68.103L221.777,70.61L220.999,71.184ZM215.023,67.188L214.363,66.293L215.141,65.719L215.801,66.614L215.023,67.188Z"
style="fill-rule:nonzero;"/>
<path d="M240.5,60.5L315.25,111.89" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M319.58,114.87L311.83,113.79L315.25,111.89L315.79,108.02L319.58,114.87Z"
style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M306.55,100.106L307.315,100.759C306.863,101.16 306.369,101.377 305.836,101.411C305.303,101.446 304.76,101.28 304.207,100.916C303.511,100.456 303.1,99.877 302.975,99.179C302.85,98.481 303.043,97.745 303.554,96.971C304.082,96.17 304.699,95.684 305.403,95.514C306.107,95.344 306.788,95.476 307.446,95.91C308.082,96.33 308.46,96.89 308.577,97.589C308.695,98.289 308.494,99.032 307.975,99.818C307.944,99.866 307.895,99.936 307.829,100.03L304.278,97.687C303.963,98.23 303.847,98.728 303.929,99.181C304.012,99.635 304.252,99.993 304.65,100.255C304.945,100.45 305.249,100.539 305.561,100.522C305.873,100.505 306.202,100.366 306.55,100.106ZM296.764,96.416L297.472,97.051C297.345,97.314 297.32,97.551 297.396,97.76C297.498,98.042 297.722,98.297 298.069,98.526C298.442,98.772 298.78,98.888 299.082,98.872C299.384,98.857 299.659,98.738 299.909,98.517C300.059,98.38 300.306,98.048 300.65,97.52C300.023,97.702 299.447,97.62 298.921,97.273C298.266,96.841 297.916,96.271 297.868,95.562C297.821,94.853 298.016,94.168 298.452,93.508C298.751,93.054 299.11,92.689 299.528,92.413C299.946,92.138 300.38,91.998 300.83,91.995C301.281,91.992 301.716,92.129 302.138,92.407C302.7,92.778 303.013,93.311 303.078,94.006L303.457,93.432L304.201,93.923L301.485,98.039C300.996,98.78 300.574,99.255 300.219,99.465C299.864,99.675 299.464,99.761 299.018,99.725C298.573,99.688 298.111,99.512 297.633,99.196C297.065,98.822 296.69,98.391 296.509,97.905C296.328,97.419 296.413,96.923 296.764,96.416ZM304.761,97.053L307.419,98.807C307.648,98.383 307.744,98.016 307.709,97.705C307.657,97.225 307.427,96.849 307.017,96.579C306.646,96.335 306.253,96.253 305.837,96.335C305.421,96.416 305.062,96.656 304.761,97.053ZM299.319,93.997C298.907,94.622 298.731,95.159 298.789,95.61C298.848,96.06 299.064,96.409 299.438,96.655C299.808,96.9 300.213,96.962 300.653,96.843C301.092,96.723 301.513,96.358 301.915,95.748C302.3,95.166 302.461,94.641 302.397,94.174C302.334,93.708 302.12,93.354 301.755,93.114C301.397,92.877 300.996,92.822 300.552,92.948C300.109,93.073 299.698,93.423 299.319,93.997ZM292.066,92.75L295.208,87.989L295.934,88.468L295.487,89.145C296.182,88.853 296.86,88.925 297.52,89.361C297.807,89.55 298.037,89.776 298.209,90.037C298.382,90.299 298.473,90.553 298.482,90.8C298.491,91.046 298.444,91.3 298.34,91.561C298.271,91.731 298.113,92.002 297.867,92.376L295.935,95.303L295.128,94.771L297.039,91.875C297.256,91.546 297.387,91.279 297.432,91.075C297.476,90.871 297.451,90.667 297.355,90.465C297.259,90.262 297.104,90.09 296.888,89.948C296.545,89.721 296.176,89.634 295.783,89.688C295.389,89.741 294.991,90.073 294.589,90.682L292.873,93.283L292.066,92.75ZM290.454,90.844C289.988,90.9 289.582,90.89 289.236,90.812C288.891,90.734 288.56,90.591 288.243,90.382C287.72,90.037 287.402,89.644 287.29,89.203C287.177,88.762 287.252,88.343 287.515,87.945C287.669,87.712 287.862,87.534 288.095,87.411C288.329,87.289 288.57,87.226 288.818,87.223C289.067,87.219 289.319,87.259 289.574,87.341C289.76,87.404 290.025,87.521 290.371,87.693C291.074,88.046 291.614,88.269 291.993,88.365C292.069,88.256 292.117,88.187 292.137,88.157C292.354,87.828 292.43,87.547 292.367,87.311C292.281,86.993 292.034,86.7 291.628,86.432C291.248,86.181 290.924,86.063 290.656,86.076C290.387,86.09 290.098,86.237 289.789,86.518L289.071,85.89C289.365,85.599 289.663,85.404 289.965,85.305C290.266,85.206 290.609,85.203 290.994,85.296C291.379,85.389 291.776,85.57 292.185,85.84C292.592,86.109 292.89,86.374 293.081,86.638C293.272,86.901 293.38,87.144 293.404,87.368C293.428,87.592 293.39,87.83 293.292,88.083C293.229,88.238 293.078,88.495 292.842,88.854L292.132,89.93C291.637,90.68 291.341,91.166 291.244,91.387C291.147,91.609 291.09,91.844 291.071,92.094L290.228,91.537C290.255,91.315 290.33,91.084 290.454,90.844ZM291.576,88.997C291.204,88.923 290.698,88.735 290.057,88.432C289.694,88.261 289.424,88.16 289.247,88.129C289.07,88.098 288.906,88.116 288.755,88.181C288.605,88.247 288.483,88.35 288.39,88.491C288.248,88.706 288.211,88.939 288.28,89.19C288.348,89.441 288.539,89.67 288.853,89.877C289.164,90.082 289.485,90.197 289.817,90.22C290.148,90.244 290.449,90.175 290.718,90.014C290.925,89.889 291.146,89.649 291.381,89.293L291.576,88.997ZM283.893,87.358L287.035,82.597L287.761,83.076L287.285,83.798C287.693,83.582 288.011,83.472 288.239,83.468C288.467,83.464 288.675,83.524 288.863,83.649C289.135,83.828 289.355,84.097 289.521,84.456L288.749,85.021C288.629,84.774 288.47,84.586 288.273,84.456C288.096,84.339 287.903,84.288 287.693,84.301C287.482,84.315 287.285,84.396 287.101,84.545C286.822,84.773 286.57,85.057 286.345,85.398L284.7,87.89L283.893,87.358ZM281.576,85.828L282.182,84.909L283.101,85.516L282.495,86.435L281.576,85.828ZM277.376,81.017L278.257,81.418C278.09,81.768 278.053,82.095 278.146,82.4C278.238,82.706 278.468,82.98 278.836,83.222C279.206,83.467 279.531,83.573 279.81,83.54C280.089,83.508 280.295,83.39 280.429,83.187C280.55,83.004 280.565,82.809 280.476,82.599C280.413,82.455 280.198,82.182 279.831,81.782C279.338,81.242 279.013,80.842 278.857,80.582C278.7,80.322 278.626,80.057 278.635,79.786C278.645,79.515 278.726,79.263 278.88,79.03C279.02,78.818 279.198,78.654 279.414,78.537C279.631,78.42 279.862,78.357 280.109,78.348C280.295,78.338 280.518,78.373 280.777,78.451C281.036,78.53 281.29,78.651 281.538,78.815C281.911,79.062 282.204,79.332 282.415,79.626C282.627,79.92 282.739,80.203 282.752,80.476C282.766,80.748 282.696,81.055 282.544,81.396L281.684,80.983C281.81,80.715 281.832,80.455 281.751,80.204C281.67,79.953 281.472,79.724 281.158,79.517C280.788,79.272 280.483,79.159 280.244,79.177C280.004,79.195 279.83,79.286 279.722,79.451C279.653,79.555 279.624,79.671 279.634,79.798C279.643,79.928 279.699,80.068 279.802,80.218C279.863,80.301 280.055,80.526 280.378,80.894C280.849,81.423 281.165,81.811 281.326,82.057C281.488,82.303 281.572,82.561 281.578,82.831C281.584,83.101 281.496,83.374 281.315,83.649C281.138,83.918 280.892,84.119 280.578,84.253C280.265,84.387 279.917,84.422 279.535,84.357C279.154,84.291 278.776,84.135 278.402,83.889C277.784,83.481 277.397,83.041 277.242,82.57C277.088,82.099 277.132,81.581 277.376,81.017ZM284.111,81.986L284.717,81.067L285.636,81.674L285.03,82.593L284.111,81.986ZM274.403,81.095L277.13,76.962L276.417,76.492L276.831,75.864L277.544,76.334L277.878,75.828C278.089,75.508 278.275,75.289 278.434,75.171C278.65,75.013 278.898,74.934 279.18,74.933C279.461,74.932 279.779,75.048 280.131,75.281C280.358,75.431 280.592,75.623 280.831,75.858L280.246,76.482C280.098,76.342 279.949,76.223 279.8,76.124C279.555,75.962 279.347,75.9 279.176,75.938C279.006,75.975 278.826,76.138 278.637,76.424L278.347,76.864L279.275,77.476L278.861,78.104L277.932,77.491L275.205,81.625L274.403,81.095ZM272.192,79.637L272.589,79.036C271.975,79.309 271.376,79.253 270.79,78.866C270.41,78.616 270.131,78.281 269.95,77.862C269.77,77.442 269.716,76.988 269.789,76.497C269.861,76.007 270.059,75.518 270.38,75.031C270.694,74.555 271.057,74.177 271.471,73.894C271.885,73.612 272.318,73.472 272.771,73.474C273.224,73.477 273.646,73.608 274.038,73.866C274.325,74.056 274.54,74.285 274.684,74.554C274.829,74.823 274.907,75.1 274.919,75.387L276.475,73.029L277.278,73.559L272.941,80.131L272.192,79.637ZM271.209,75.578C270.807,76.188 270.635,76.728 270.693,77.2C270.751,77.671 270.954,78.022 271.304,78.253C271.657,78.486 272.051,78.539 272.488,78.413C272.925,78.288 273.339,77.929 273.729,77.337C274.159,76.686 274.349,76.125 274.299,75.654C274.249,75.184 274.041,74.827 273.673,74.584C273.314,74.348 272.918,74.297 272.484,74.431C272.05,74.565 271.625,74.947 271.209,75.578ZM266.037,75.576L269.179,70.815L269.905,71.294L269.429,72.016C269.837,71.8 270.155,71.69 270.383,71.686C270.611,71.682 270.819,71.742 271.007,71.867C271.279,72.046 271.498,72.315 271.665,72.674L270.893,73.239C270.773,72.992 270.614,72.804 270.416,72.674C270.24,72.557 270.047,72.506 269.836,72.519C269.626,72.533 269.429,72.614 269.244,72.763C268.966,72.991 268.714,73.275 268.489,73.615L266.844,76.108L266.037,75.576Z"
style="fill-rule:nonzero;"/>
<path d="M280.5,30.5L354.13,30.5" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M359.38,30.5L352.38,34L354.13,30.5L352.38,27L359.38,30.5Z"
style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<ellipse cx="240.5" cy="30.5" rx="40" ry="30"
style="fill:white;stroke:black;stroke-width:1px;stroke-miterlimit:4;"/>
<path d="M236.859,34L236.859,33.086C236.375,33.789 235.717,34.141 234.885,34.141C234.517,34.141 234.175,34.07 233.856,33.93C233.538,33.789 233.301,33.612 233.147,33.399C232.993,33.187 232.885,32.926 232.822,32.617C232.779,32.41 232.758,32.082 232.758,31.633L232.758,27.777L233.812,27.777L233.812,31.229C233.812,31.779 233.834,32.15 233.877,32.342C233.943,32.619 234.084,32.837 234.299,32.995C234.513,33.153 234.779,33.232 235.095,33.232C235.412,33.232 235.709,33.151 235.986,32.989C236.263,32.827 236.46,32.606 236.575,32.327C236.69,32.048 236.748,31.643 236.748,31.111L236.748,27.777L237.802,27.777L237.802,34L236.859,34ZM223.025,32.143L224.068,31.979C224.127,32.396 224.29,32.717 224.557,32.939C224.825,33.162 225.199,33.273 225.679,33.273C226.164,33.273 226.523,33.175 226.758,32.978C226.992,32.78 227.109,32.549 227.109,32.283C227.109,32.045 227.006,31.857 226.799,31.721C226.654,31.627 226.295,31.508 225.72,31.363C224.947,31.168 224.411,30.999 224.112,30.856C223.813,30.714 223.587,30.517 223.432,30.265C223.278,30.013 223.201,29.734 223.201,29.43C223.201,29.152 223.264,28.896 223.391,28.659C223.518,28.423 223.691,28.227 223.91,28.07C224.074,27.949 224.298,27.847 224.581,27.763C224.864,27.679 225.168,27.637 225.492,27.637C225.98,27.637 226.409,27.707 226.778,27.848C227.147,27.988 227.42,28.179 227.595,28.419C227.771,28.659 227.892,28.98 227.959,29.383L226.927,29.523C226.881,29.203 226.745,28.953 226.52,28.773C226.296,28.594 225.978,28.504 225.568,28.504C225.084,28.504 224.738,28.584 224.531,28.744C224.324,28.904 224.22,29.092 224.22,29.307C224.22,29.443 224.263,29.566 224.349,29.676C224.435,29.789 224.57,29.883 224.754,29.957C224.859,29.996 225.17,30.086 225.685,30.227C226.431,30.426 226.952,30.589 227.247,30.716C227.542,30.843 227.773,31.027 227.941,31.27C228.109,31.512 228.193,31.812 228.193,32.172C228.193,32.523 228.091,32.854 227.885,33.165C227.68,33.476 227.385,33.716 226.998,33.886C226.611,34.056 226.174,34.141 225.685,34.141C224.877,34.141 224.26,33.973 223.837,33.637C223.413,33.301 223.142,32.803 223.025,32.143ZM255.047,32.143L256.09,31.979C256.148,32.396 256.311,32.717 256.579,32.939C256.846,33.162 257.22,33.273 257.701,33.273C258.185,33.273 258.545,33.175 258.779,32.978C259.013,32.78 259.131,32.549 259.131,32.283C259.131,32.045 259.027,31.857 258.82,31.721C258.676,31.627 258.316,31.508 257.742,31.363C256.968,31.168 256.432,30.999 256.134,30.856C255.835,30.714 255.608,30.517 255.454,30.265C255.3,30.013 255.222,29.734 255.222,29.43C255.222,29.152 255.286,28.896 255.413,28.659C255.54,28.423 255.713,28.227 255.931,28.07C256.095,27.949 256.319,27.847 256.602,27.763C256.885,27.679 257.189,27.637 257.513,27.637C258.002,27.637 258.43,27.707 258.8,27.848C259.169,27.988 259.441,28.179 259.617,28.419C259.793,28.659 259.914,28.98 259.98,29.383L258.949,29.523C258.902,29.203 258.766,28.953 258.542,28.773C258.317,28.594 258,28.504 257.59,28.504C257.105,28.504 256.76,28.584 256.552,28.744C256.345,28.904 256.242,29.092 256.242,29.307C256.242,29.443 256.285,29.566 256.371,29.676C256.457,29.789 256.592,29.883 256.775,29.957C256.881,29.996 257.191,30.086 257.707,30.227C258.453,30.426 258.973,30.589 259.268,30.716C259.563,30.843 259.795,31.027 259.963,31.27C260.131,31.512 260.215,31.812 260.215,32.172C260.215,32.523 260.112,32.854 259.907,33.165C259.702,33.476 259.406,33.716 259.019,33.886C258.633,34.056 258.195,34.141 257.707,34.141C256.898,34.141 256.282,33.973 255.858,33.637C255.434,33.301 255.164,32.803 255.047,32.143ZM253.054,31.996L254.144,32.131C253.972,32.768 253.654,33.262 253.189,33.613C252.724,33.965 252.131,34.141 251.408,34.141C250.498,34.141 249.776,33.86 249.243,33.3C248.71,32.739 248.443,31.953 248.443,30.941C248.443,29.895 248.713,29.082 249.252,28.504C249.791,27.926 250.49,27.637 251.349,27.637C252.181,27.637 252.861,27.92 253.388,28.486C253.916,29.053 254.179,29.85 254.179,30.877C254.179,30.939 254.177,31.033 254.174,31.158L249.533,31.158C249.572,31.842 249.765,32.365 250.113,32.729C250.461,33.092 250.894,33.273 251.414,33.273C251.801,33.273 252.131,33.172 252.404,32.969C252.677,32.766 252.894,32.441 253.054,31.996ZM243.492,34L243.492,33.215C243.097,33.832 242.517,34.141 241.752,34.141C241.256,34.141 240.8,34.004 240.384,33.73C239.968,33.457 239.645,33.075 239.417,32.585C239.188,32.095 239.074,31.531 239.074,30.895C239.074,30.273 239.177,29.71 239.385,29.204C239.592,28.698 239.902,28.311 240.316,28.041C240.73,27.771 241.193,27.637 241.705,27.637C242.08,27.637 242.414,27.716 242.707,27.874C243,28.032 243.238,28.238 243.422,28.492L243.422,25.41L244.47,25.41L244.47,34L243.492,34ZM231.75,33.057L231.902,33.988C231.605,34.051 231.34,34.082 231.105,34.082C230.722,34.082 230.426,34.021 230.215,33.9C230.004,33.779 229.855,33.62 229.769,33.423C229.683,33.226 229.64,32.811 229.64,32.178L229.64,28.598L228.867,28.598L228.867,27.777L229.64,27.777L229.64,26.236L230.689,25.604L230.689,27.777L231.75,27.777L231.75,28.598L230.689,28.598L230.689,32.236C230.689,32.537 230.708,32.73 230.745,32.816C230.782,32.902 230.843,32.971 230.926,33.021C231.01,33.072 231.131,33.098 231.287,33.098C231.404,33.098 231.558,33.084 231.75,33.057ZM220.406,34L220.406,32.799L221.607,32.799L221.607,34L220.406,34ZM246.135,34L246.135,27.777L247.189,27.777L247.189,34L246.135,34ZM240.158,30.895C240.158,31.691 240.326,32.287 240.662,32.682C240.998,33.076 241.394,33.273 241.851,33.273C242.312,33.273 242.704,33.085 243.026,32.708C243.348,32.331 243.51,31.756 243.51,30.982C243.51,30.131 243.345,29.506 243.017,29.107C242.689,28.709 242.285,28.51 241.804,28.51C241.336,28.51 240.944,28.701 240.63,29.084C240.315,29.467 240.158,30.07 240.158,30.895ZM249.592,30.291L253.066,30.291C253.019,29.768 252.886,29.375 252.668,29.113C252.332,28.707 251.896,28.504 251.361,28.504C250.877,28.504 250.469,28.666 250.139,28.99C249.809,29.314 249.627,29.748 249.592,30.291ZM220.406,28.979L220.406,27.777L221.607,27.777L221.607,28.979L220.406,28.979ZM246.135,26.623L246.135,25.41L247.189,25.41L247.189,26.623L246.135,26.623Z"
style="fill-rule:nonzero;"/>
<path d="M120.5,30.5L194.13,30.5" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M199.38,30.5L192.38,34L194.13,30.5L192.38,27L199.38,30.5Z"
style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M60.5,60.5L129.81,116.62" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M133.89,119.92L126.24,118.24L129.81,116.62L130.65,112.8L133.89,119.92Z"
style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M112.365,95.511L113.064,96.236C112.575,96.591 112.063,96.759 111.529,96.742C110.995,96.724 110.47,96.507 109.955,96.09C109.307,95.565 108.954,94.95 108.898,94.243C108.841,93.536 109.104,92.822 109.687,92.101C110.291,91.355 110.952,90.931 111.669,90.83C112.387,90.729 113.052,90.926 113.664,91.422C114.257,91.902 114.578,92.495 114.627,93.203C114.676,93.911 114.405,94.631 113.812,95.363C113.776,95.407 113.721,95.473 113.646,95.56L110.339,92.884C109.973,93.393 109.809,93.878 109.847,94.337C109.885,94.797 110.089,95.176 110.46,95.476C110.735,95.699 111.029,95.817 111.341,95.83C111.653,95.842 111.994,95.736 112.365,95.511ZM110.881,92.3L113.357,94.303C113.625,93.903 113.757,93.547 113.752,93.234C113.747,92.751 113.554,92.355 113.172,92.046C112.827,91.767 112.443,91.648 112.021,91.689C111.599,91.729 111.219,91.933 110.881,92.3ZM102.044,92.334L107.007,86.201L107.691,86.755L107.225,87.331C107.569,87.236 107.888,87.215 108.183,87.266C108.477,87.318 108.769,87.461 109.059,87.695C109.437,88.002 109.692,88.369 109.824,88.798C109.956,89.227 109.952,89.679 109.812,90.153C109.673,90.628 109.432,91.076 109.089,91.499C108.722,91.953 108.31,92.296 107.853,92.527C107.397,92.759 106.935,92.846 106.468,92.788C106.001,92.73 105.596,92.563 105.254,92.286C105.003,92.083 104.822,91.848 104.708,91.582C104.595,91.315 104.539,91.049 104.542,90.784L102.795,92.942L102.044,92.334ZM105.873,88.994C105.411,89.564 105.185,90.079 105.196,90.539C105.206,90.999 105.375,91.362 105.704,91.627C106.038,91.898 106.438,91.988 106.905,91.898C107.372,91.808 107.845,91.467 108.324,90.874C108.782,90.309 109.008,89.791 109.003,89.322C108.998,88.853 108.834,88.488 108.511,88.226C108.191,87.967 107.787,87.888 107.298,87.988C106.81,88.088 106.335,88.423 105.873,88.994ZM97.728,88.856L98.215,88.083C98.343,88.26 98.469,88.398 98.591,88.498C98.758,88.633 98.914,88.713 99.06,88.738C99.205,88.764 99.35,88.752 99.495,88.704C99.603,88.667 99.831,88.542 100.178,88.33C100.225,88.3 100.297,88.257 100.393,88.201L102.305,82.396L103.115,83.052L101.96,86.366C101.816,86.789 101.646,87.218 101.451,87.654C101.816,87.378 102.192,87.125 102.577,86.893L105.616,85.076L106.368,85.684L101.032,88.828C100.457,89.169 100.045,89.391 99.796,89.493C99.462,89.633 99.162,89.691 98.896,89.667C98.63,89.642 98.377,89.533 98.138,89.34C97.993,89.223 97.856,89.061 97.728,88.856ZM98.952,85.908L98.523,86.66C98.276,86.533 98.069,86.403 97.902,86.267C97.629,86.047 97.452,85.832 97.372,85.624C97.291,85.417 97.277,85.218 97.33,85.027C97.382,84.837 97.591,84.517 97.956,84.066L100.02,81.515L99.469,81.069L99.942,80.484L100.493,80.93L101.382,79.832L102.494,79.986L101.24,81.535L101.996,82.146L101.523,82.731L100.767,82.119L98.669,84.712C98.496,84.927 98.398,85.075 98.375,85.158C98.351,85.24 98.355,85.324 98.386,85.409C98.416,85.493 98.487,85.581 98.599,85.671C98.682,85.738 98.8,85.818 98.952,85.908ZM94.6,83.499L95.293,82.643L96.149,83.336L95.456,84.192L94.6,83.499ZM92.195,81.553L95.31,77.704L94.646,77.166L95.119,76.582L95.783,77.119L96.165,76.647C96.406,76.349 96.612,76.149 96.782,76.048C97.012,75.911 97.267,75.856 97.547,75.883C97.827,75.909 98.132,76.055 98.46,76.321C98.672,76.492 98.885,76.707 99.101,76.964L98.458,77.528C98.324,77.374 98.188,77.241 98.049,77.128C97.821,76.944 97.62,76.862 97.446,76.883C97.273,76.903 97.078,77.047 96.862,77.315L96.531,77.724L97.395,78.423L96.922,79.008L96.058,78.308L92.943,82.158L92.195,81.553ZM97.496,79.921L98.188,79.065L99.044,79.758L98.352,80.614L97.496,79.921ZM90.137,79.888L90.589,79.328C89.952,79.54 89.361,79.426 88.816,78.984C88.462,78.698 88.216,78.338 88.077,77.903C87.938,77.468 87.929,77.011 88.049,76.529C88.169,76.048 88.412,75.581 88.779,75.127C89.137,74.685 89.536,74.343 89.975,74.102C90.414,73.861 90.859,73.763 91.31,73.81C91.76,73.857 92.168,74.028 92.532,74.323C92.8,74.539 92.992,74.788 93.11,75.07C93.227,75.351 93.278,75.635 93.263,75.922L95.04,73.726L95.787,74.331L90.834,80.452L90.137,79.888ZM89.552,75.752C89.092,76.32 88.868,76.841 88.88,77.316C88.892,77.791 89.061,78.16 89.387,78.424C89.715,78.69 90.103,78.781 90.55,78.698C90.997,78.616 91.443,78.299 91.889,77.747C92.38,77.141 92.624,76.601 92.62,76.128C92.616,75.654 92.442,75.279 92.1,75.002C91.766,74.732 91.377,74.643 90.932,74.734C90.487,74.826 90.027,75.165 89.552,75.752ZM84.404,75.249L87.992,70.815L88.668,71.362L88.124,72.034C88.552,71.859 88.879,71.781 89.106,71.799C89.333,71.817 89.534,71.897 89.71,72.039C89.963,72.244 90.155,72.533 90.286,72.906L89.463,73.394C89.367,73.137 89.228,72.934 89.044,72.785C88.88,72.652 88.692,72.582 88.481,72.575C88.271,72.568 88.066,72.63 87.869,72.76C87.569,72.96 87.291,73.218 87.034,73.535L85.156,75.857L84.404,75.249Z"
style="fill-rule:nonzero;"/>
<ellipse cx="60.5" cy="30.5" rx="60" ry="30"
style="fill:white;stroke:black;stroke-width:1px;stroke-miterlimit:4;"/>
<path d="M55.04,31.996L56.13,32.131C55.958,32.768 55.64,33.262 55.175,33.613C54.71,33.965 54.117,34.141 53.394,34.141C52.484,34.141 51.762,33.86 51.229,33.3C50.696,32.739 50.429,31.953 50.429,30.941C50.429,29.895 50.699,29.082 51.238,28.504C51.777,27.926 52.476,27.637 53.335,27.637C54.167,27.637 54.847,27.92 55.374,28.486C55.902,29.053 56.165,29.85 56.165,30.877C56.165,30.939 56.164,31.033 56.16,31.158L51.519,31.158C51.558,31.842 51.751,32.365 52.099,32.729C52.447,33.092 52.88,33.273 53.4,33.273C53.787,33.273 54.117,33.172 54.39,32.969C54.664,32.766 54.88,32.441 55.04,31.996ZM73.533,34L73.533,33.086C73.048,33.789 72.39,34.141 71.558,34.141C71.191,34.141 70.848,34.07 70.53,33.93C70.211,33.789 69.975,33.612 69.821,33.399C69.666,33.187 69.558,32.926 69.496,32.617C69.453,32.41 69.431,32.082 69.431,31.633L69.431,27.777L70.486,27.777L70.486,31.229C70.486,31.779 70.507,32.15 70.55,32.342C70.617,32.619 70.757,32.837 70.972,32.995C71.187,33.153 71.453,33.232 71.769,33.232C72.085,33.232 72.382,33.151 72.66,32.989C72.937,32.827 73.133,32.606 73.248,32.327C73.364,32.048 73.421,31.643 73.421,31.111L73.421,27.777L74.476,27.777L74.476,34L73.533,34ZM38.828,33.232C38.437,33.564 38.061,33.799 37.7,33.936C37.338,34.072 36.951,34.141 36.537,34.141C35.853,34.141 35.328,33.974 34.96,33.64C34.593,33.306 34.41,32.879 34.41,32.359C34.41,32.055 34.479,31.776 34.618,31.524C34.756,31.272 34.938,31.07 35.163,30.918C35.387,30.766 35.64,30.65 35.921,30.572C36.128,30.518 36.441,30.465 36.859,30.414C37.71,30.312 38.337,30.191 38.74,30.051C38.744,29.906 38.746,29.814 38.746,29.775C38.746,29.346 38.646,29.043 38.447,28.867C38.177,28.629 37.777,28.51 37.246,28.51C36.749,28.51 36.383,28.597 36.147,28.771C35.911,28.944 35.736,29.252 35.622,29.693L34.591,29.553C34.685,29.111 34.839,28.755 35.054,28.483C35.269,28.212 35.58,28.003 35.986,27.856C36.392,27.71 36.863,27.637 37.398,27.637C37.929,27.637 38.361,27.699 38.693,27.824C39.025,27.949 39.269,28.106 39.425,28.296C39.581,28.485 39.691,28.725 39.753,29.014C39.789,29.193 39.806,29.518 39.806,29.986L39.806,31.393C39.806,32.373 39.829,32.993 39.873,33.253C39.918,33.513 40.007,33.762 40.14,34L39.039,34C38.929,33.781 38.859,33.525 38.828,33.232ZM89.728,31.996L90.818,32.131C90.646,32.768 90.328,33.262 89.863,33.613C89.398,33.965 88.804,34.141 88.081,34.141C87.171,34.141 86.45,33.86 85.916,33.3C85.383,32.739 85.117,31.953 85.117,30.941C85.117,29.895 85.386,29.082 85.925,28.504C86.464,27.926 87.164,27.637 88.023,27.637C88.855,27.637 89.535,27.92 90.062,28.486C90.589,29.053 90.853,29.85 90.853,30.877C90.853,30.939 90.851,31.033 90.847,31.158L86.206,31.158C86.246,31.842 86.439,32.365 86.787,32.729C87.134,33.092 87.568,33.273 88.087,33.273C88.474,33.273 88.804,33.172 89.078,32.969C89.351,32.766 89.568,32.441 89.728,31.996ZM23.06,34L23.06,32.799L24.261,32.799L24.261,34L23.06,34ZM41.447,34L41.447,27.777L42.501,27.777L42.501,34L41.447,34ZM82.779,34L82.779,25.41L83.833,25.41L83.833,34L82.779,34ZM57.443,34L57.443,27.777L58.392,27.777L58.392,28.721C58.634,28.279 58.858,27.988 59.063,27.848C59.268,27.707 59.494,27.637 59.74,27.637C60.095,27.637 60.456,27.75 60.824,27.977L60.46,28.955C60.203,28.803 59.945,28.727 59.687,28.727C59.456,28.727 59.249,28.796 59.066,28.935C58.882,29.073 58.751,29.266 58.673,29.512C58.556,29.887 58.497,30.297 58.497,30.742L58.497,34L57.443,34ZM44.107,34L44.107,27.777L45.056,27.777L45.056,28.662C45.513,27.979 46.173,27.637 47.037,27.637C47.412,27.637 47.756,27.704 48.071,27.839C48.385,27.974 48.621,28.15 48.777,28.369C48.933,28.588 49.042,28.848 49.105,29.148C49.144,29.344 49.164,29.686 49.164,30.174L49.164,34L48.109,34L48.109,30.215C48.109,29.785 48.068,29.464 47.986,29.251C47.904,29.038 47.758,28.868 47.549,28.741C47.34,28.614 47.095,28.551 46.814,28.551C46.365,28.551 45.977,28.693 45.651,28.979C45.325,29.264 45.162,29.805 45.162,30.602L45.162,34L44.107,34ZM92.142,34L92.142,27.777L93.091,27.777L93.091,28.662C93.548,27.979 94.208,27.637 95.072,27.637C95.447,27.637 95.791,27.704 96.106,27.839C96.42,27.974 96.656,28.15 96.812,28.369C96.968,28.588 97.078,28.848 97.14,29.148C97.179,29.344 97.199,29.686 97.199,30.174L97.199,34L96.144,34L96.144,30.215C96.144,29.785 96.103,29.464 96.021,29.251C95.939,29.038 95.793,28.868 95.584,28.741C95.375,28.614 95.13,28.551 94.849,28.551C94.4,28.551 94.012,28.693 93.686,28.979C93.36,29.264 93.197,29.805 93.197,30.602L93.197,34L92.142,34ZM76.128,34L76.128,25.41L77.183,25.41L77.183,28.492C77.675,27.922 78.296,27.637 79.046,27.637C79.507,27.637 79.908,27.728 80.247,27.909C80.587,28.091 80.83,28.342 80.977,28.662C81.123,28.982 81.197,29.447 81.197,30.057L81.197,34L80.142,34L80.142,30.057C80.142,29.529 80.028,29.146 79.799,28.905C79.571,28.665 79.247,28.545 78.83,28.545C78.517,28.545 78.223,28.626 77.948,28.788C77.672,28.95 77.476,29.17 77.359,29.447C77.242,29.725 77.183,30.107 77.183,30.596L77.183,34L76.128,34ZM61.539,34L61.539,25.41L62.675,25.41L62.675,29.67L66.941,25.41L68.482,25.41L64.878,28.891L68.64,34L67.14,34L64.081,29.652L62.675,31.023L62.675,34L61.539,34ZM26.253,34L26.253,25.41L30.062,25.41C30.828,25.41 31.41,25.487 31.808,25.642C32.206,25.796 32.525,26.068 32.763,26.459C33.001,26.85 33.121,27.281 33.121,27.754C33.121,28.363 32.923,28.877 32.529,29.295C32.134,29.713 31.525,29.979 30.701,30.092C31.001,30.236 31.23,30.379 31.386,30.52C31.718,30.824 32.033,31.205 32.33,31.662L33.824,34L32.394,34L31.257,32.213C30.925,31.697 30.652,31.303 30.437,31.029C30.222,30.756 30.03,30.564 29.86,30.455C29.69,30.346 29.517,30.27 29.341,30.227C29.212,30.199 29.001,30.186 28.708,30.186L27.39,30.186L27.39,34L26.253,34ZM38.74,30.877C38.357,31.033 37.783,31.166 37.017,31.275C36.583,31.338 36.277,31.408 36.097,31.486C35.917,31.564 35.779,31.679 35.681,31.829C35.583,31.979 35.535,32.146 35.535,32.33C35.535,32.611 35.641,32.846 35.854,33.033C36.067,33.221 36.378,33.314 36.789,33.314C37.195,33.314 37.556,33.226 37.872,33.048C38.189,32.87 38.421,32.627 38.57,32.318C38.683,32.08 38.74,31.729 38.74,31.264L38.74,30.877ZM51.578,30.291L55.052,30.291C55.005,29.768 54.872,29.375 54.654,29.113C54.318,28.707 53.882,28.504 53.347,28.504C52.863,28.504 52.455,28.666 52.125,28.99C51.795,29.314 51.613,29.748 51.578,30.291ZM86.265,30.291L89.74,30.291C89.693,29.768 89.56,29.375 89.341,29.113C89.005,28.707 88.57,28.504 88.035,28.504C87.55,28.504 87.143,28.666 86.813,28.99C86.483,29.314 86.3,29.748 86.265,30.291ZM27.39,29.201L29.833,29.201C30.353,29.201 30.759,29.147 31.052,29.04C31.345,28.933 31.568,28.761 31.72,28.524C31.872,28.288 31.949,28.031 31.949,27.754C31.949,27.348 31.801,27.014 31.506,26.752C31.211,26.49 30.746,26.359 30.109,26.359L27.39,26.359L27.39,29.201ZM23.06,28.979L23.06,27.777L24.261,27.777L24.261,28.979L23.06,28.979ZM41.447,26.623L41.447,25.41L42.501,25.41L42.501,26.623L41.447,26.623Z"
style="fill-rule:nonzero;"/>
<ellipse cx="320.5" cy="145.5" rx="50" ry="30"
style="fill:white;stroke:black;stroke-width:1px;stroke-miterlimit:4;"/>
<path d="M285.192,146.24L286.264,146.146C286.315,146.576 286.433,146.929 286.619,147.204C286.804,147.479 287.092,147.702 287.483,147.872C287.874,148.042 288.313,148.127 288.801,148.127C289.235,148.127 289.618,148.063 289.95,147.934C290.282,147.805 290.529,147.628 290.691,147.403C290.853,147.179 290.934,146.934 290.934,146.668C290.934,146.398 290.856,146.163 290.7,145.962C290.544,145.761 290.286,145.592 289.926,145.455C289.696,145.365 289.186,145.226 288.397,145.036C287.608,144.847 287.055,144.668 286.739,144.5C286.329,144.285 286.023,144.019 285.822,143.7C285.621,143.382 285.52,143.025 285.52,142.631C285.52,142.197 285.643,141.792 285.889,141.415C286.135,141.038 286.495,140.752 286.967,140.557C287.44,140.361 287.965,140.264 288.544,140.264C289.18,140.264 289.742,140.366 290.228,140.571C290.715,140.776 291.089,141.078 291.35,141.477C291.612,141.875 291.753,142.326 291.772,142.83L290.682,142.912C290.624,142.369 290.425,141.959 290.088,141.682C289.75,141.404 289.251,141.266 288.59,141.266C287.903,141.266 287.402,141.392 287.088,141.644C286.773,141.896 286.616,142.199 286.616,142.555C286.616,142.863 286.727,143.117 286.95,143.316C287.169,143.516 287.74,143.72 288.664,143.929C289.588,144.138 290.221,144.32 290.565,144.477C291.065,144.707 291.434,144.999 291.673,145.353C291.911,145.706 292.03,146.113 292.03,146.574C292.03,147.031 291.899,147.462 291.637,147.866C291.376,148.271 291,148.585 290.509,148.81C290.019,149.034 289.467,149.146 288.854,149.146C288.077,149.146 287.425,149.033 286.9,148.807C286.375,148.58 285.963,148.239 285.664,147.784C285.365,147.329 285.208,146.814 285.192,146.24ZM356.835,149L356.835,148.215C356.44,148.832 355.86,149.141 355.094,149.141C354.598,149.141 354.142,149.004 353.726,148.73C353.31,148.457 352.988,148.075 352.759,147.585C352.531,147.095 352.417,146.531 352.417,145.895C352.417,145.273 352.52,144.71 352.727,144.204C352.934,143.698 353.245,143.311 353.659,143.041C354.073,142.771 354.536,142.637 355.048,142.637C355.423,142.637 355.757,142.716 356.049,142.874C356.342,143.032 356.581,143.238 356.764,143.492L356.764,140.41L357.813,140.41L357.813,149L356.835,149ZM297.508,146.721L298.546,146.855C298.432,147.57 298.142,148.13 297.675,148.534C297.209,148.938 296.635,149.141 295.956,149.141C295.104,149.141 294.42,148.862 293.902,148.306C293.384,147.749 293.126,146.951 293.126,145.912C293.126,145.24 293.237,144.652 293.46,144.148C293.682,143.645 294.021,143.267 294.476,143.015C294.931,142.763 295.426,142.637 295.962,142.637C296.637,142.637 297.19,142.808 297.62,143.149C298.049,143.491 298.325,143.977 298.446,144.605L297.421,144.764C297.323,144.346 297.15,144.031 296.902,143.82C296.654,143.609 296.354,143.504 296.003,143.504C295.471,143.504 295.04,143.694 294.708,144.075C294.376,144.456 294.21,145.059 294.21,145.883C294.21,146.719 294.37,147.326 294.69,147.705C295.01,148.084 295.428,148.273 295.944,148.273C296.358,148.273 296.704,148.146 296.981,147.893C297.258,147.639 297.434,147.248 297.508,146.721ZM347.717,146.996L348.807,147.131C348.635,147.768 348.317,148.262 347.852,148.613C347.387,148.965 346.794,149.141 346.071,149.141C345.161,149.141 344.439,148.86 343.906,148.3C343.373,147.739 343.106,146.953 343.106,145.941C343.106,144.895 343.376,144.082 343.915,143.504C344.454,142.926 345.153,142.637 346.012,142.637C346.844,142.637 347.524,142.92 348.051,143.486C348.579,144.053 348.842,144.85 348.842,145.877C348.842,145.939 348.84,146.033 348.837,146.158L344.196,146.158C344.235,146.842 344.428,147.365 344.776,147.729C345.124,148.092 345.557,148.273 346.077,148.273C346.464,148.273 346.794,148.172 347.067,147.969C347.34,147.766 347.557,147.441 347.717,146.996ZM306.374,146.996L307.464,147.131C307.292,147.768 306.973,148.262 306.508,148.613C306.044,148.965 305.45,149.141 304.727,149.141C303.817,149.141 303.095,148.86 302.562,148.3C302.029,147.739 301.762,146.953 301.762,145.941C301.762,144.895 302.032,144.082 302.571,143.504C303.11,142.926 303.809,142.637 304.669,142.637C305.501,142.637 306.18,142.92 306.708,143.486C307.235,144.053 307.499,144.85 307.499,145.877C307.499,145.939 307.497,146.033 307.493,146.158L302.852,146.158C302.891,146.842 303.085,147.365 303.432,147.729C303.78,148.092 304.214,148.273 304.733,148.273C305.12,148.273 305.45,148.172 305.723,147.969C305.997,147.766 306.214,147.441 306.374,146.996ZM331.522,146.721L332.559,146.855C332.446,147.57 332.156,148.13 331.689,148.534C331.222,148.938 330.649,149.141 329.969,149.141C329.118,149.141 328.433,148.862 327.916,148.306C327.398,147.749 327.139,146.951 327.139,145.912C327.139,145.24 327.251,144.652 327.473,144.148C327.696,143.645 328.035,143.267 328.49,143.015C328.945,142.763 329.44,142.637 329.975,142.637C330.651,142.637 331.204,142.808 331.633,143.149C332.063,143.491 332.339,143.977 332.46,144.605L331.434,144.764C331.337,144.346 331.164,144.031 330.916,143.82C330.668,143.609 330.368,143.504 330.016,143.504C329.485,143.504 329.053,143.694 328.721,144.075C328.389,144.456 328.223,145.059 328.223,145.883C328.223,146.719 328.383,147.326 328.704,147.705C329.024,148.084 329.442,148.273 329.958,148.273C330.372,148.273 330.717,148.146 330.995,147.893C331.272,147.639 331.448,147.248 331.522,146.721ZM317.764,148.057L317.917,148.988C317.62,149.051 317.354,149.082 317.12,149.082C316.737,149.082 316.44,149.021 316.229,148.9C316.018,148.779 315.87,148.62 315.784,148.423C315.698,148.226 315.655,147.811 315.655,147.178L315.655,143.598L314.882,143.598L314.882,142.777L315.655,142.777L315.655,141.236L316.704,140.604L316.704,142.777L317.764,142.777L317.764,143.598L316.704,143.598L316.704,147.236C316.704,147.537 316.722,147.73 316.759,147.816C316.797,147.902 316.857,147.971 316.941,148.021C317.025,148.072 317.145,148.098 317.301,148.098C317.419,148.098 317.573,148.084 317.764,148.057ZM282.403,149L282.403,147.799L283.604,147.799L283.604,149L282.403,149ZM333.655,149L333.655,140.41L339.45,140.41L339.45,141.424L334.792,141.424L334.792,144.084L338.823,144.084L338.823,145.098L334.792,145.098L334.792,149L333.655,149ZM299.454,149L299.454,142.777L300.508,142.777L300.508,149L299.454,149ZM318.801,149L318.801,142.777L319.856,142.777L319.856,149L318.801,149ZM340.798,149L340.798,142.777L341.852,142.777L341.852,149L340.798,149ZM350.108,149L350.108,140.41L351.163,140.41L351.163,149L350.108,149ZM324.801,149L324.801,142.777L325.856,142.777L325.856,149L324.801,149ZM321.743,149L321.743,143.592L320.805,143.592L320.805,142.777L321.743,142.777L321.743,142.174C321.743,141.557 321.876,141.084 322.141,140.756C322.407,140.428 322.827,140.264 323.401,140.264C323.788,140.264 324.145,140.309 324.473,140.398L324.309,141.289C324.102,141.254 323.913,141.236 323.741,141.236C323.378,141.236 323.13,141.309 322.997,141.453C322.864,141.598 322.798,141.904 322.798,142.373L322.798,142.777L324.005,142.777L324.005,143.592L322.798,143.592L322.798,149L321.743,149ZM308.788,149L308.788,142.777L309.737,142.777L309.737,143.662C310.194,142.979 310.854,142.637 311.717,142.637C312.092,142.637 312.437,142.704 312.752,142.839C313.066,142.974 313.301,143.15 313.458,143.369C313.614,143.588 313.723,143.848 313.786,144.148C313.825,144.344 313.844,144.686 313.844,145.174L313.844,149L312.79,149L312.79,145.215C312.79,144.785 312.749,144.464 312.667,144.251C312.585,144.038 312.439,143.868 312.23,143.741C312.021,143.614 311.776,143.551 311.495,143.551C311.046,143.551 310.658,143.693 310.332,143.979C310.006,144.264 309.842,144.805 309.842,145.602L309.842,149L308.788,149ZM353.501,145.895C353.501,146.691 353.669,147.287 354.005,147.682C354.34,148.076 354.737,148.273 355.194,148.273C355.655,148.273 356.047,148.085 356.369,147.708C356.691,147.331 356.852,146.756 356.852,145.982C356.852,145.131 356.688,144.506 356.36,144.107C356.032,143.709 355.628,143.51 355.147,143.51C354.678,143.51 354.287,143.701 353.972,144.084C353.658,144.467 353.501,145.07 353.501,145.895ZM344.255,145.291L347.729,145.291C347.682,144.768 347.549,144.375 347.331,144.113C346.995,143.707 346.559,143.504 346.024,143.504C345.54,143.504 345.132,143.666 344.802,143.99C344.472,144.314 344.29,144.748 344.255,145.291ZM302.911,145.291L306.385,145.291C306.339,144.768 306.206,144.375 305.987,144.113C305.651,143.707 305.215,143.504 304.68,143.504C304.196,143.504 303.789,143.666 303.459,143.99C303.129,144.314 302.946,144.748 302.911,145.291ZM282.403,143.979L282.403,142.777L283.604,142.777L283.604,143.979L282.403,143.979ZM324.801,141.623L324.801,140.41L325.856,140.41L325.856,141.623L324.801,141.623ZM340.798,141.623L340.798,140.41L341.852,140.41L341.852,141.623L340.798,141.623ZM318.801,141.623L318.801,140.41L319.856,140.41L319.856,141.623L318.801,141.623ZM299.454,141.623L299.454,140.41L300.508,140.41L300.508,141.623L299.454,141.623Z"
style="fill-rule:nonzero;"/>
<ellipse cx="165.5" cy="145.5" rx="55" ry="30"
style="fill:white;stroke:black;stroke-width:1px;stroke-miterlimit:4;"/>
<g transform="matrix(1,0,0,1,140.657,149)">
<g>
<text x="0px" y="0px"
style="font-family:'ArialMT', 'Arial', sans-serif;font-size:12px;">:Scientist</text>
</g>
</g>
<path d="M423,60.5L354.74,117.14" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M350.7,120.49L353.85,113.33L354.74,117.14L358.32,118.72L350.7,120.49Z"
style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M367.813,101.232L364.202,96.817L364.875,96.266L365.423,96.935C365.338,96.481 365.328,96.145 365.392,95.926C365.456,95.708 365.575,95.527 365.75,95.384C366.002,95.178 366.324,95.048 366.716,94.996L367.026,95.901C366.755,95.943 366.528,96.038 366.345,96.188C366.181,96.322 366.075,96.491 366.025,96.696C365.975,96.901 365.994,97.113 366.081,97.333C366.216,97.667 366.412,97.992 366.671,98.308L368.561,100.62L367.813,101.232ZM373.521,96.563L373.066,96.006C373.144,96.673 372.911,97.229 372.368,97.673C372.016,97.961 371.613,98.128 371.159,98.176C370.705,98.223 370.255,98.139 369.809,97.924C369.362,97.709 368.954,97.375 368.584,96.924C368.224,96.483 367.97,96.023 367.824,95.544C367.677,95.065 367.672,94.61 367.81,94.178C367.947,93.746 368.197,93.382 368.56,93.085C368.827,92.868 369.109,92.73 369.409,92.672C369.709,92.614 369.997,92.622 370.275,92.696L368.486,90.509L369.231,89.9L374.216,95.995L373.521,96.563ZM369.353,96.295C369.816,96.86 370.281,97.185 370.748,97.27C371.216,97.355 371.611,97.265 371.936,97C372.263,96.732 372.431,96.371 372.441,95.917C372.451,95.462 372.231,94.961 371.783,94.412C371.288,93.808 370.809,93.459 370.345,93.367C369.881,93.275 369.479,93.368 369.138,93.647C368.805,93.919 368.638,94.282 368.637,94.736C368.636,95.19 368.875,95.71 369.353,96.295ZM375.571,94.887L372.436,91.053L371.775,91.594L371.299,91.012L371.96,90.471L371.576,90.002C371.333,89.705 371.179,89.463 371.114,89.276C371.027,89.023 371.025,88.762 371.108,88.493C371.191,88.224 371.396,87.956 371.723,87.688C371.934,87.516 372.187,87.35 372.483,87.192L372.905,87.936C372.727,88.035 372.569,88.142 372.43,88.255C372.203,88.441 372.082,88.621 372.067,88.795C372.052,88.969 372.153,89.189 372.371,89.455L372.704,89.863L373.565,89.159L374.041,89.741L373.18,90.445L376.315,94.278L375.571,94.887ZM377.966,92.928L377.269,92.076L378.121,91.379L378.818,92.231L377.966,92.928ZM383.847,90.956L383.189,90.321C383.389,90.232 383.55,90.137 383.672,90.038C383.838,89.902 383.948,89.765 384.003,89.628C384.057,89.491 384.075,89.347 384.058,89.195C384.044,89.081 383.968,88.833 383.831,88.451C383.81,88.398 383.783,88.319 383.748,88.213L378.454,85.16L379.261,84.5L382.271,86.306C382.655,86.532 383.041,86.786 383.427,87.067C383.232,86.653 383.06,86.233 382.912,85.809L381.751,82.463L382.499,81.851L384.492,87.715C384.709,88.348 384.842,88.796 384.892,89.061C384.96,89.416 384.956,89.722 384.878,89.977C384.8,90.233 384.642,90.458 384.404,90.653C384.26,90.771 384.074,90.872 383.847,90.956ZM381.21,89.158L381.859,89.73C381.684,89.947 381.514,90.123 381.348,90.259C381.076,90.481 380.83,90.611 380.61,90.647C380.391,90.684 380.193,90.657 380.017,90.567C379.842,90.477 379.571,90.207 379.203,89.758L377.126,87.218L376.577,87.667L376.101,87.085L376.65,86.636L375.755,85.542L376.132,84.485L377.394,86.027L378.146,85.412L378.622,85.994L377.87,86.609L379.982,89.191C380.156,89.404 380.281,89.531 380.358,89.57C380.434,89.61 380.516,89.623 380.606,89.61C380.695,89.598 380.795,89.546 380.905,89.455C380.989,89.387 381.09,89.288 381.21,89.158ZM375.052,89.365L374.355,88.513L375.207,87.816L375.904,88.668L375.052,89.365ZM388.131,87.438L383.135,81.331L383.817,80.773L384.286,81.347C384.264,80.991 384.307,80.674 384.418,80.396C384.529,80.119 384.728,79.862 385.016,79.626C385.393,79.318 385.805,79.143 386.252,79.101C386.699,79.059 387.14,79.155 387.576,79.388C388.012,79.622 388.403,79.949 388.747,80.37C389.117,80.822 389.368,81.295 389.502,81.789C389.636,82.284 389.627,82.754 389.475,83.199C389.324,83.644 389.078,84.006 388.737,84.285C388.487,84.489 388.22,84.62 387.936,84.676C387.652,84.733 387.38,84.733 387.121,84.677L388.879,86.826L388.131,87.438ZM385.639,83.009C386.104,83.578 386.562,83.903 387.015,83.987C387.467,84.07 387.856,83.978 388.183,83.711C388.516,83.439 388.686,83.065 388.693,82.59C388.7,82.115 388.462,81.582 387.979,80.992C387.519,80.429 387.058,80.102 386.598,80.012C386.137,79.921 385.746,80.007 385.425,80.27C385.106,80.531 384.946,80.911 384.944,81.409C384.943,81.908 385.174,82.441 385.639,83.009ZM393.342,77.979L394.193,77.442C394.441,77.994 394.502,78.529 394.376,79.048C394.25,79.568 393.931,80.037 393.418,80.456C392.772,80.985 392.098,81.205 391.394,81.116C390.69,81.028 390.045,80.625 389.458,79.907C388.85,79.164 388.57,78.431 388.617,77.708C388.664,76.985 388.992,76.374 389.602,75.875C390.192,75.393 390.839,75.199 391.542,75.295C392.245,75.391 392.894,75.803 393.491,76.532C393.527,76.577 393.58,76.644 393.65,76.735L390.357,79.428C390.781,79.891 391.222,80.15 391.68,80.206C392.137,80.262 392.55,80.139 392.919,79.838C393.193,79.613 393.369,79.35 393.445,79.047C393.521,78.744 393.487,78.388 393.342,77.979ZM389.895,78.779L392.361,76.763C392.024,76.418 391.701,76.217 391.394,76.158C390.92,76.065 390.493,76.173 390.114,76.484C389.77,76.765 389.575,77.116 389.529,77.538C389.483,77.96 389.605,78.373 389.895,78.779Z"
style="fill-rule:nonzero;"/>
<ellipse cx="423" cy="30.5" rx="62.5" ry="30"
style="fill:white;stroke:black;stroke-width:1px;stroke-miterlimit:4;"/>
<path d="M433.875,31.24L434.948,31.146C434.998,31.576 435.117,31.929 435.302,32.204C435.488,32.479 435.776,32.702 436.166,32.872C436.557,33.042 436.996,33.127 437.485,33.127C437.918,33.127 438.301,33.063 438.633,32.934C438.965,32.805 439.212,32.628 439.374,32.403C439.536,32.179 439.618,31.934 439.618,31.668C439.618,31.398 439.539,31.163 439.383,30.962C439.227,30.761 438.969,30.592 438.61,30.455C438.379,30.365 437.869,30.226 437.08,30.036C436.291,29.847 435.739,29.668 435.422,29.5C435.012,29.285 434.706,29.019 434.505,28.7C434.304,28.382 434.203,28.025 434.203,27.631C434.203,27.197 434.327,26.792 434.573,26.415C434.819,26.038 435.178,25.752 435.651,25.557C436.123,25.361 436.649,25.264 437.227,25.264C437.864,25.264 438.425,25.366 438.911,25.571C439.398,25.776 439.772,26.078 440.034,26.477C440.295,26.875 440.436,27.326 440.455,27.83L439.366,27.912C439.307,27.369 439.109,26.959 438.771,26.682C438.433,26.404 437.934,26.266 437.274,26.266C436.586,26.266 436.085,26.392 435.771,26.644C435.456,26.896 435.299,27.199 435.299,27.555C435.299,27.863 435.411,28.117 435.633,28.316C435.852,28.516 436.423,28.72 437.347,28.929C438.271,29.138 438.905,29.32 439.248,29.477C439.748,29.707 440.118,29.999 440.356,30.353C440.594,30.706 440.713,31.113 440.713,31.574C440.713,32.031 440.582,32.462 440.321,32.866C440.059,33.271 439.683,33.585 439.193,33.81C438.702,34.034 438.151,34.146 437.537,34.146C436.76,34.146 436.109,34.033 435.583,33.807C435.058,33.58 434.646,33.239 434.347,32.784C434.048,32.329 433.891,31.814 433.875,31.24ZM468.205,31.721L469.243,31.855C469.129,32.57 468.839,33.13 468.372,33.534C467.906,33.938 467.332,34.141 466.653,34.141C465.801,34.141 465.117,33.862 464.599,33.306C464.081,32.749 463.823,31.951 463.823,30.912C463.823,30.24 463.934,29.652 464.157,29.148C464.379,28.645 464.718,28.267 465.173,28.015C465.628,27.763 466.123,27.637 466.659,27.637C467.334,27.637 467.887,27.808 468.317,28.149C468.746,28.491 469.022,28.977 469.143,29.605L468.118,29.764C468.02,29.346 467.847,29.031 467.599,28.82C467.351,28.609 467.051,28.504 466.7,28.504C466.168,28.504 465.737,28.694 465.405,29.075C465.073,29.456 464.907,30.059 464.907,30.883C464.907,31.719 465.067,32.326 465.387,32.705C465.707,33.084 466.125,33.273 466.641,33.273C467.055,33.273 467.401,33.146 467.678,32.893C467.955,32.639 468.131,32.248 468.205,31.721ZM412.166,33.232C411.776,33.564 411.4,33.799 411.038,33.936C410.677,34.072 410.289,34.141 409.875,34.141C409.192,34.141 408.666,33.974 408.299,33.64C407.932,33.306 407.748,32.879 407.748,32.359C407.748,32.055 407.818,31.776 407.956,31.524C408.095,31.272 408.277,31.07 408.501,30.918C408.726,30.766 408.979,30.65 409.26,30.572C409.467,30.518 409.78,30.465 410.198,30.414C411.049,30.312 411.676,30.191 412.078,30.051C412.082,29.906 412.084,29.814 412.084,29.775C412.084,29.346 411.985,29.043 411.786,28.867C411.516,28.629 411.116,28.51 410.584,28.51C410.088,28.51 409.722,28.597 409.486,28.771C409.249,28.944 409.075,29.252 408.961,29.693L407.93,29.553C408.024,29.111 408.178,28.755 408.393,28.483C408.608,28.212 408.918,28.003 409.325,27.856C409.731,27.71 410.202,27.637 410.737,27.637C411.268,27.637 411.7,27.699 412.032,27.824C412.364,27.949 412.608,28.106 412.764,28.296C412.92,28.485 413.03,28.725 413.092,29.014C413.127,29.193 413.145,29.518 413.145,29.986L413.145,31.393C413.145,32.373 413.167,32.993 413.212,33.253C413.257,33.513 413.346,33.762 413.479,34L412.377,34C412.268,33.781 412.198,33.525 412.166,33.232ZM446.192,31.721L447.229,31.855C447.116,32.57 446.826,33.13 446.359,33.534C445.892,33.938 445.319,34.141 444.639,34.141C443.787,34.141 443.103,33.862 442.585,33.306C442.068,32.749 441.809,31.951 441.809,30.912C441.809,30.24 441.92,29.652 442.143,29.148C442.366,28.645 442.704,28.267 443.16,28.015C443.615,27.763 444.11,27.637 444.645,27.637C445.321,27.637 445.873,27.808 446.303,28.149C446.733,28.491 447.008,28.977 447.129,29.605L446.104,29.764C446.006,29.346 445.833,29.031 445.585,28.82C445.337,28.609 445.037,28.504 444.686,28.504C444.155,28.504 443.723,28.694 443.391,29.075C443.059,29.456 442.893,30.059 442.893,30.883C442.893,31.719 443.053,32.326 443.373,32.705C443.694,33.084 444.112,33.273 444.627,33.273C445.041,33.273 445.387,33.146 445.664,32.893C445.942,32.639 446.118,32.248 446.192,31.721ZM455.057,31.996L456.147,32.131C455.975,32.768 455.657,33.262 455.192,33.613C454.727,33.965 454.133,34.141 453.411,34.141C452.5,34.141 451.779,33.86 451.245,33.3C450.712,32.739 450.446,31.953 450.446,30.941C450.446,29.895 450.715,29.082 451.254,28.504C451.793,27.926 452.493,27.637 453.352,27.637C454.184,27.637 454.864,27.92 455.391,28.486C455.918,29.053 456.182,29.85 456.182,30.877C456.182,30.939 456.18,31.033 456.176,31.158L451.536,31.158C451.575,31.842 451.768,32.365 452.116,32.729C452.463,33.092 452.897,33.273 453.416,33.273C453.803,33.273 454.133,33.172 454.407,32.969C454.68,32.766 454.897,32.441 455.057,31.996ZM474.405,31.996L475.494,32.131C475.323,32.768 475.004,33.262 474.539,33.613C474.075,33.965 473.481,34.141 472.758,34.141C471.848,34.141 471.126,33.86 470.593,33.3C470.06,32.739 469.793,31.953 469.793,30.941C469.793,29.895 470.063,29.082 470.602,28.504C471.141,27.926 471.84,27.637 472.7,27.637C473.532,27.637 474.211,27.92 474.739,28.486C475.266,29.053 475.53,29.85 475.53,30.877C475.53,30.939 475.528,31.033 475.524,31.158L470.883,31.158C470.922,31.842 471.116,32.365 471.463,32.729C471.811,33.092 472.244,33.273 472.764,33.273C473.151,33.273 473.481,33.172 473.754,32.969C474.028,32.766 474.244,32.441 474.405,31.996ZM420.387,30.889C420.387,29.736 420.707,28.883 421.348,28.328C421.883,27.867 422.536,27.637 423.305,27.637C424.161,27.637 424.86,27.917 425.403,28.478C425.946,29.038 426.217,29.812 426.217,30.801C426.217,31.602 426.097,32.231 425.857,32.69C425.617,33.149 425.267,33.506 424.808,33.76C424.349,34.014 423.848,34.141 423.305,34.141C422.434,34.141 421.73,33.861 421.193,33.303C420.656,32.744 420.387,31.939 420.387,30.889ZM387.047,30.889C387.047,29.736 387.368,28.883 388.008,28.328C388.543,27.867 389.196,27.637 389.965,27.637C390.821,27.637 391.52,27.917 392.063,28.478C392.606,29.038 392.877,29.812 392.877,30.801C392.877,31.602 392.757,32.231 392.517,32.69C392.277,33.149 391.927,33.506 391.468,33.76C391.009,34.014 390.508,34.141 389.965,34.141C389.094,34.141 388.39,33.861 387.853,33.303C387.316,32.744 387.047,31.939 387.047,30.889ZM417.082,33.057L417.235,33.988C416.938,34.051 416.672,34.082 416.438,34.082C416.055,34.082 415.758,34.021 415.547,33.9C415.336,33.779 415.188,33.62 415.102,33.423C415.016,33.226 414.973,32.811 414.973,32.178L414.973,28.598L414.2,28.598L414.2,27.777L414.973,27.777L414.973,26.236L416.022,25.604L416.022,27.777L417.082,27.777L417.082,28.598L416.022,28.598L416.022,32.236C416.022,32.537 416.04,32.73 416.077,32.816C416.115,32.902 416.175,32.971 416.259,33.021C416.343,33.072 416.463,33.098 416.619,33.098C416.737,33.098 416.891,33.084 417.082,33.057ZM427.453,34L427.453,27.777L428.403,27.777L428.403,28.662C428.86,27.979 429.52,27.637 430.383,27.637C430.758,27.637 431.103,27.704 431.417,27.839C431.732,27.974 431.967,28.15 432.123,28.369C432.28,28.588 432.389,28.848 432.452,29.148C432.491,29.344 432.51,29.686 432.51,30.174L432.51,34L431.455,34L431.455,30.215C431.455,29.785 431.414,29.464 431.332,29.251C431.25,29.038 431.105,28.868 430.896,28.741C430.687,28.614 430.442,28.551 430.161,28.551C429.711,28.551 429.324,28.693 428.997,28.979C428.671,29.264 428.508,29.805 428.508,30.602L428.508,34L427.453,34ZM398.11,34L398.11,27.777L399.053,27.777L399.053,28.65C399.248,28.346 399.508,28.101 399.832,27.915C400.157,27.729 400.526,27.637 400.94,27.637C401.401,27.637 401.779,27.732 402.074,27.924C402.369,28.115 402.577,28.383 402.698,28.727C403.19,28 403.83,27.637 404.619,27.637C405.237,27.637 405.711,27.808 406.043,28.149C406.375,28.491 406.541,29.018 406.541,29.729L406.541,34L405.493,34L405.493,30.08C405.493,29.658 405.458,29.354 405.39,29.169C405.322,28.983 405.198,28.834 405.018,28.721C404.838,28.607 404.627,28.551 404.385,28.551C403.948,28.551 403.584,28.696 403.295,28.987C403.006,29.278 402.862,29.744 402.862,30.385L402.862,34L401.807,34L401.807,29.957C401.807,29.488 401.721,29.137 401.549,28.902C401.377,28.668 401.096,28.551 400.705,28.551C400.409,28.551 400.134,28.629 399.882,28.785C399.63,28.941 399.448,29.17 399.334,29.471C399.221,29.771 399.164,30.205 399.164,30.771L399.164,34L398.11,34ZM418.119,34L418.119,27.777L419.174,27.777L419.174,34L418.119,34ZM374.426,34L374.426,25.41L375.563,25.41L375.563,34L374.426,34ZM377.432,34L377.432,27.777L378.381,27.777L378.381,28.662C378.838,27.979 379.498,27.637 380.362,27.637C380.737,27.637 381.081,27.704 381.396,27.839C381.71,27.974 381.946,28.15 382.102,28.369C382.258,28.588 382.368,28.848 382.43,29.148C382.469,29.344 382.489,29.686 382.489,30.174L382.489,34L381.434,34L381.434,30.215C381.434,29.785 381.393,29.464 381.311,29.251C381.229,29.038 381.083,28.868 380.874,28.741C380.665,28.614 380.42,28.551 380.139,28.551C379.69,28.551 379.302,28.693 378.976,28.979C378.65,29.264 378.487,29.805 378.487,30.602L378.487,34L377.432,34ZM394.102,34L394.102,27.777L395.051,27.777L395.051,28.721C395.293,28.279 395.517,27.988 395.722,27.848C395.927,27.707 396.153,27.637 396.399,27.637C396.754,27.637 397.116,27.75 397.483,27.977L397.119,28.955C396.862,28.803 396.604,28.727 396.346,28.727C396.116,28.727 395.909,28.796 395.725,28.935C395.541,29.073 395.411,29.266 395.332,29.512C395.215,29.887 395.157,30.297 395.157,30.742L395.157,34L394.102,34ZM448.137,34L448.137,27.777L449.192,27.777L449.192,34L448.137,34ZM384.358,34L384.358,28.598L383.426,28.598L383.426,27.777L384.358,27.777L384.358,27.115C384.358,26.697 384.395,26.387 384.469,26.184C384.571,25.91 384.749,25.688 385.005,25.519C385.261,25.349 385.619,25.264 386.08,25.264C386.377,25.264 386.705,25.299 387.065,25.369L386.907,26.289C386.688,26.25 386.481,26.23 386.286,26.23C385.965,26.23 385.739,26.299 385.606,26.436C385.473,26.572 385.407,26.828 385.407,27.203L385.407,27.777L386.619,27.777L386.619,28.598L385.407,28.598L385.407,34L384.358,34ZM371.057,34L371.057,32.799L372.258,32.799L372.258,34L371.057,34ZM457.471,34L457.471,27.777L458.42,27.777L458.42,28.662C458.877,27.979 459.537,27.637 460.401,27.637C460.776,27.637 461.12,27.704 461.435,27.839C461.749,27.974 461.985,28.15 462.141,28.369C462.297,28.588 462.407,28.848 462.469,29.148C462.508,29.344 462.528,29.686 462.528,30.174L462.528,34L461.473,34L461.473,30.215C461.473,29.785 461.432,29.464 461.35,29.251C461.268,29.038 461.122,28.868 460.913,28.741C460.704,28.614 460.459,28.551 460.178,28.551C459.729,28.551 459.341,28.693 459.015,28.979C458.689,29.264 458.526,29.805 458.526,30.602L458.526,34L457.471,34ZM412.078,30.877C411.696,31.033 411.121,31.166 410.356,31.275C409.922,31.338 409.616,31.408 409.436,31.486C409.256,31.564 409.118,31.679 409.02,31.829C408.922,31.979 408.873,32.146 408.873,32.33C408.873,32.611 408.98,32.846 409.193,33.033C409.406,33.221 409.717,33.314 410.127,33.314C410.534,33.314 410.895,33.226 411.211,33.048C411.528,32.87 411.76,32.627 411.909,32.318C412.022,32.08 412.078,31.729 412.078,31.264L412.078,30.877ZM388.131,30.889C388.131,31.686 388.305,32.282 388.653,32.679C389,33.075 389.438,33.273 389.965,33.273C390.489,33.273 390.924,33.074 391.272,32.676C391.619,32.277 391.793,31.67 391.793,30.854C391.793,30.084 391.619,29.501 391.269,29.104C390.919,28.708 390.485,28.51 389.965,28.51C389.438,28.51 389,28.707 388.653,29.102C388.305,29.496 388.131,30.092 388.131,30.889ZM421.471,30.889C421.471,31.686 421.645,32.282 421.993,32.679C422.34,33.075 422.778,33.273 423.305,33.273C423.828,33.273 424.264,33.074 424.612,32.676C424.959,32.277 425.133,31.67 425.133,30.854C425.133,30.084 424.958,29.501 424.609,29.104C424.259,28.708 423.825,28.51 423.305,28.51C422.778,28.51 422.34,28.707 421.993,29.102C421.645,29.496 421.471,30.092 421.471,30.889ZM470.942,30.291L474.416,30.291C474.369,29.768 474.237,29.375 474.018,29.113C473.682,28.707 473.246,28.504 472.711,28.504C472.227,28.504 471.82,28.666 471.49,28.99C471.16,29.314 470.977,29.748 470.942,30.291ZM451.594,30.291L455.069,30.291C455.022,29.768 454.889,29.375 454.67,29.113C454.334,28.707 453.899,28.504 453.364,28.504C452.879,28.504 452.472,28.666 452.142,28.99C451.812,29.314 451.629,29.748 451.594,30.291ZM371.057,28.979L371.057,27.777L372.258,27.777L372.258,28.979L371.057,28.979ZM448.137,26.623L448.137,25.41L449.192,25.41L449.192,26.623L448.137,26.623ZM418.119,26.623L418.119,25.41L419.174,25.41L419.174,26.623L418.119,26.623Z"
style="fill-rule:nonzero;"/>
</g>
</svg>
<figcaption>Grafische Darstellung Ableitung Domain & Range</figcaption>
</figure>
<details id="prop-domain">
<summary>rdfs:domain</summary>
<p><em>rdfs:domain</em> legt den Definitionsbereich einer Property fest.</p>
<code>
P rdfs:domain C
</code>
<p><em>P</em> ist eine Instanz der Klasse <em>rdf:Property</em>, <em>C</em> ist eine Instanz der Klasse
<em>rdfs:Class</em>.
Das bedeutet, dass Ressourcen welche als Subjekt <em>P</em> haben, Instanzen von <em>C</em> sind.
</p>
<code>
:studies rdfs:domain :Scientist .<br/>
:RainerKuhlen :studies :InformationScience .
</code>
<p>In diesem Beispiel folgt → <em>:RainerKuhlen</em> ist vom <em>rdf:type :Scientist</em></p>
</details>
<details id="prop-range">
<summary>rdfs:range</summary>
<p><em>rdfs:range</em> legt den Wertebereich einer Property fest.</p>
<code>
P rdfs:range C
</code>
<p><em>P</em> ist eine Instanz der Klasse <em>rdf:Property</em>, <em>C</em> ist eine Instanz der Klasse
<em>rdfs:Class</em>.
Das bedeutet, dass Ressourcen welche als Objekt <em>P</em> haben, Instanzen von <em>C</em> sind.</p>
<code>
:studies rdfs:range :ScientificField .<br/>
:RainerKuhlen :studies :InformationScience .
</code>
<p>In diesem Beispiel folgt → <em>:InformationScience</em> ist vom <em>rdf:type :ScientificField</em>
</p>
</details>
</details>
</details>
<details>
<summary>Reifikation (rdf:Statement)</summary>
<p>Dient dazu Aussagen über Aussagen zu machen.</p>
<h2>Beispiel 1</h2>
<p>Rainer Kuhlen definiert, dass Information durch einen Neuigkeitswert gekennzeichnet ist.</p>
<code>
@prefix : <http://example.com/> .<br />
@prefix rdf: <https://www.w3.org/TR/1999/REC-rdf-syntax-19990222/><br />
<br />
:RainerKuhlen :definiert [<br />
a rdf:Statement ;<br />
rdf:subject :Information ;<br />
rdf:predicate :hatEigenschaft ;<br />
rdf:object :Neuigkeitswert <br />
] .
</code>
<svg width="100%" height="100%" style="max-width: 100%;" viewBox="0 0 850 300" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;">
<g transform="matrix(1,0,0,1,-0.753013,0)">
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<rect x="-3.242" y="-296.004" width="849.496" height="299.999" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g transform="matrix(1,0,0,1,421.506,-37.7522)">
<text x="-36.881px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.982px;">Namespaces:</text>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g transform="matrix(1,0,0,1,421.506,-22.7712)">
<text x="-56.11px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.982px;">http://example.com/</text>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g transform="matrix(1,0,0,1,421.506,-7.79013)">
<text x="-172.826px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.982px;">rdf: https://www<tspan x="-80.91px -77.415px " y="0px 0px ">.w</tspan>3.or<tspan x="-45.436px -38.444px " y="0px 0px ">g/</tspan>TR/1999/REC-rdf-syntax-19990222/</text>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g id="node1">
<circle cx="263.607" cy="-182.148" r="17.977" style="fill:none;stroke:rgb(0,128,0);stroke-width:1px;"/>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g id="node2">
<ellipse cx="759.171" cy="-263.046" rx="75.192" ry="17.977" style="fill:none;stroke:rgb(0,0,255);stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,759.171,-259.35)">
<text x="-38.052px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.982px;">rdf:Statement</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g id="edge1">
<path d="M273.632,-197.305C279.764,-206.134 288.718,-216.583 299.562,-222.098C422.617,-284.684 588.367,-281.461 683.198,-272.739" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M683.671,-276.205L693.276,-271.767L682.999,-269.246L683.671,-276.205Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,478.834,-280.823)">
<text x="-141.557px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.982px;">http://www<tspan x="-78.766px -75.271px " y="0px 0px ">.w</tspan>3.or<tspan x="-43.292px -36.301px " y="0px 0px ">g/</tspan>1999/02/22-rdf-syntax-ns#type</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g id="node3">
<ellipse cx="759.171" cy="-209.114" rx="65.705" ry="17.977" style="fill:none;stroke:rgb(0,0,255);stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,759.171,-205.419)">
<text x="-33.392px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.982px;">Information</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g id="edge2">
<path d="M281.595,-183.077C344.596,-186.519 567.263,-198.684 684.591,-205.094" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M684.411,-208.585L694.574,-205.64L684.793,-201.605L684.411,-208.585Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,478.834,-206.917)">
<text x="-29.897px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.982px;">rdf:subject</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g id="node4">
<ellipse cx="759.171" cy="-155.182" rx="81.383" ry="17.977" style="fill:none;stroke:rgb(0,0,255);stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,759.171,-151.487)">
<text x="-41.541px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.982px;">hatEigenschaft</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g id="edge3">
<path d="M279.385,-173.222C285.421,-170.049 292.609,-166.849 299.562,-165.17C428.088,-134.131 582.799,-139.151 675.673,-146.514" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M675.612,-150.016L685.852,-147.35L676.184,-143.049L675.612,-150.016Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,478.834,-168.965)">
<text x="-35.71px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.982px;">rdf:predicate</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g id="node5">
<ellipse cx="759.171" cy="-101.251" rx="83.28" ry="17.977" style="fill:none;stroke:rgb(0,0,255);stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,759.171,-97.5556)">
<text x="-42.712px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.982px;">Neuigkeitswert</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g id="edge4">
<path d="M269.571,-164.927C274.636,-150.797 284.002,-131.64 299.562,-122.224C422.098,-48.069 598.584,-67.687 692.898,-85.968" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M692.396,-89.433L702.874,-87.957L693.762,-82.576L692.396,-89.433Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,478.834,-126.019)">
<text x="-27.176px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.982px;">rdf:object</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g id="node6">
<ellipse cx="74.753" cy="-182.148" rx="74.093" ry="17.977" style="fill:none;stroke:rgb(0,0,255);stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,74.7527,-178.453)">
<text x="-39.216px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.982px;">RainerKuhlen</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99494,296.004)">
<g id="edge5">
<path d="M148.797,-182.148L235.022,-182.148" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M235.275,-185.644L245.262,-182.148L235.275,-178.653L235.275,-185.644Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,197.191,-185.943)">
<text x="-23.298px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.982px;">definiert</text>
</g>
</g>
</g>
</g>
</svg>
<h2>Beispiel 2</h2>
<p>Ferdinand glaubt, dass Charles weiss, dass er seine Theorie kennt.</p>
<code>
@prefix : <http://example.com/> .<br />
@prefix rdf: <https://www.w3.org/TR/1999/REC-rdf-syntax-19990222/> .<br />
<br />
:Ferdinand :glaubt [<br />
a rdf:Statement ;<br />
rdf:subject :Charles ;<br />
rdf:predicate :weiss ;<br />
rdf:object [<br />
a rdf:Statement ;<br />
rdf:subject :Ferdinand ;<br />
rdf:predicate :kennt ;<br />
rdf:object :TheorieVonCharles<br />
]<br />
] .
</code>
<svg width="100%" height="100%" style="max-width: 100%;" viewBox="0 0 1348 304" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;">
<g transform="matrix(1,0,0,1,-0.435388,0)">
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<rect x="-3.561" y="-300.002" width="1347.13" height="303.998" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g transform="matrix(1,0,0,1,670.004,-37.7652)">
<text x="-36.894px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">Namespaces:</text>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g transform="matrix(1,0,0,1,670.004,-22.779)">
<text x="-56.129px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">http://example.com/</text>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g transform="matrix(1,0,0,1,670.004,-7.79282)">
<text x="-172.886px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">rdf: https://www<tspan x="-80.938px -77.441px " y="0px 0px ">.w</tspan>3.or<tspan x="-45.451px -38.458px " y="0px 0px ">g/</tspan>TR/1999/REC-rdf-syntax-19990222/</text>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="node1">
<circle cx="18.419" cy="-176.116" r="17.983" style="fill:none;stroke:rgb(0,128,0);stroke-width:1px;"/>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="node2">
<ellipse cx="1264.25" cy="-269.03" rx="75.218" ry="17.983" style="fill:none;stroke:rgb(0,0,255);stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,1264.25,-265.334)">
<text x="-38.065px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">rdf:Statement</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="edge1">
<path d="M24.841,-193.081C30.148,-206.857 39.615,-225.648 54.386,-236.061C95.742,-265.214 115.927,-252.084 166.283,-257.041C543.212,-294.152 996.49,-280.841 1180.04,-273.051" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M1180.33,-276.538L1190.16,-272.615L1180.03,-269.552L1180.33,-276.538Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,561.001,-284.816)">
<text x="-141.606px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">http://www<tspan x="-78.794px -75.297px " y="0px 0px ">.w</tspan>3.or<tspan x="-43.307px -36.313px " y="0px 0px ">g/</tspan>1999/02/22-rdf-syntax-ns#type</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="node3">
<ellipse cx="264.983" cy="-230.066" rx="57.637" ry="17.983" style="fill:none;stroke:rgb(0,0,255);stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,264.983,-226.37)">
<text x="-28.357px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">Ferdinand</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="edge2">
<path d="M33.893,-185.38C40.005,-188.914 47.331,-192.672 54.386,-195.098C101.116,-211.174 156.331,-220 198.355,-224.763" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M198.16,-228.259L208.47,-225.859L198.914,-221.306L198.16,-228.259Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,101.342,-220.875)">
<text x="-29.907px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">rdf:subject</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="node4">
<ellipse cx="264.983" cy="-176.116" rx="37.859" ry="17.983" style="fill:none;stroke:rgb(0,0,255);stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,264.983,-172.419)">
<text x="-15.537px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">kennt</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="edge3">
<path d="M36.615,-176.116L216.801,-176.116" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M217.017,-179.613L227.008,-176.116L217.017,-172.619L217.017,-179.613Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,101.342,-179.912)">
<text x="-35.722px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">rdf:predicate</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="node5">
<ellipse cx="264.983" cy="-122.165" rx="98.492" ry="17.983" style="fill:none;stroke:rgb(0,0,255);stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,264.983,-118.469)">
<text x="-54.251px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">TheorieV<tspan x="-2.462px 4.531px " y="0px 0px ">on</tspan>Charles</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="edge4">
<path d="M33.893,-166.851C40.005,-163.318 47.331,-159.56 54.386,-157.133C90.02,-144.876 130.587,-136.832 166.477,-131.592" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M167.062,-135.041L176.468,-130.187L166.088,-128.116L167.062,-135.041Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,101.342,-160.93)">
<text x="-27.185px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">rdf:object</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="node6">
<circle cx="776.303" cy="-208.086" r="17.983" style="fill:none;stroke:rgb(0,128,0);stroke-width:1px;"/>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="edge9">
<path d="M322.435,-227.63C431.522,-222.923 667.602,-212.734 747.914,-209.268" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M748.353,-212.75L758.182,-208.826L748.051,-205.762L748.353,-212.75Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,561.001,-227.868)">
<text x="-17.48px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">glaubt</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="edge8">
<path d="M759.768,-199.994C690.449,-164.9 402.447,-29.882 166.283,-80.204C113.016,-91.554 97.07,-96.332 54.386,-130.158C46.621,-136.311 39.641,-144.561 33.997,-152.373" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M30.945,-150.642L28.221,-160.871L36.729,-154.574L30.945,-150.642Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,264.983,-84.0008)">
<text x="-27.185px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">rdf:object</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="edge5">
<path d="M792.526,-216.511C798.504,-219.423 805.538,-222.379 812.27,-224.072C967.182,-263.031 1012.97,-223.358 1170.94,-247.05C1181.67,-248.66 1192.99,-250.895 1203.88,-253.328" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M1203.21,-256.763L1213.73,-255.606L1204.79,-249.949L1203.21,-256.763Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,991.604,-250.847)">
<text x="-141.606px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">http://www<tspan x="-78.794px -75.297px " y="0px 0px ">.w</tspan>3.or<tspan x="-43.307px -36.313px " y="0px 0px ">g/</tspan>1999/02/22-rdf-syntax-ns#type</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="node7">
<ellipse cx="1264.25" cy="-208.086" rx="46.55" ry="17.983" style="fill:none;stroke:rgb(0,0,255);stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,1264.25,-204.39)">
<text x="-21.363px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">Charles</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="edge6">
<path d="M794.312,-208.086L1207.15,-208.086" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M1207.36,-211.583L1217.36,-208.086L1207.36,-204.59L1207.36,-211.583Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,991.604,-211.883)">
<text x="-29.907px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">rdf:subject</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="node8">
<ellipse cx="1264.25" cy="-154.136" rx="36.26" ry="17.983" style="fill:none;stroke:rgb(0,0,255);stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,1264.25,-150.439)">
<text x="-15.541px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">weiss</text>
</g>
</g>
</g>
<g transform="matrix(1,0,0,1,3.99632,300.002)">
<g id="edge7">
<path d="M791.677,-198.509C797.774,-194.927 805.116,-191.219 812.27,-189.104C955.808,-146.682 1135.6,-148.046 1218.09,-151.51" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<path d="M1217.99,-155.006L1228.13,-151.963L1218.3,-148.02L1217.99,-155.006Z" style="fill-rule:nonzero;stroke:black;stroke-width:1px;"/>
<g transform="matrix(1,0,0,1,991.604,-192.9)">
<text x="-35.722px" y="0px" style="font-family:'TimesNewRomanPSMT', 'Times New Roman', serif;font-size:13.987px;">rdf:predicate</text>
</g>
</g>
</g>
</g>
</svg>
</details>
</details>
<details>
<summary>Terse RDF Triple Language (Turtle)</summary>
<p>Turtle ist eine Syntax um RDF Graphen textlich abzubilden. Ein RDF Graph besteht aus den zwei Knoten über eine
gerichtete Kante verbunden (Subjekt, Prädikat, Objekt).</p>
<figure>
<svg width="500" height="100%" viewBox="0 0 399 86" version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:10;">
<g transform="matrix(1,0,0,1,362,70.7965)">
<text x="-33.359px" y="0px" style="font-family:'Verdana', sans-serif;font-size:20px;">Objekt</text>
</g>
<g transform="matrix(1,0,0,1,42,70.7965)">
<text x="-38.652px" y="0px" style="font-family:'Verdana', sans-serif;font-size:20px;">Subjekt</text>
</g>
<g transform="matrix(1,0,0,1,202,27.0495)">
<text x="-41.143px" y="0px" style="font-family:'Verdana', sans-serif;font-size:20px;">Prädikat</text>
</g>
<path d="M338.03,33.5L328.03,38.5L330.53,33.5L328.03,28.5L338.03,33.5Z"
style="fill-rule:nonzero;stroke:black;stroke-width:4px;"/>
<path d="M62.5,33.5L330.53,33.5" style="fill:none;fill-rule:nonzero;stroke:black;stroke-width:4px;"/>
<circle cx="362.5" cy="33.5" r="20"/>
<circle cx="42.5" cy="33.5" r="20"/>
</svg>
<figcaption>Visuelle Darstellung eines RDF Graphen.</figcaption>
</figure>
<h2>Beispiel eines Turtle Dokuments</h2>
<code>
<a href="#prefix">@prefix ex: <http://example.org/></a> .<br/>
@prefix dc: <http://purl.org/dc/elements/1.1/> .<br/>
<br/>
<a href="#simple">ex:Bibliothek ex:bibliotheksTyp ex:HochschuleBibliothek .</a><br/>
dc:creator rdf:label <a href="#literale">"Ferdinand de Saussure"@de</a> <a href="#list-obj">;</a><br/>
:ex:born <a href="#literale">"2020-02-02"^^xsd:date</a> .
</code>
<details id="simple">
<summary>Simples Tripel (x y z .)</summary>
<p>Ein simple Aussage besteht aus der Abfolge von Subjekt, Prädikat, Objekt jeweils durch ein Leerzeichen
getrennt und abgeschlossen mit einem <strong>«<em>.</em>»</strong>.</p>
<code>
<http://example.org/#FerdinandDeSaussure> <http://example.org/#hatBeruf> <http://example.org/#Sprachwissenschaftler>
.
</code>
</details>
<details id="list-predicates">
<summary>Liste Prädikaten (;)</summary>
<p>Oftmals wird das gleiche Subjekt mehrmals wiederholt und mit verschiedenen Prädikaten versehen. Für die
Kurzschreibweise kann ein «<em>;</em>» verwendet werden. Dadurch wird das Subjekt wiederholt.</p>
<p>Folgende Beispiele sind in den Aussagen identisch:</p>
<code>
<http://example.org/#FerdinandDeSaussure> <http://example.org/#hatBeruf> <http://example.org/#Sprachwissenschaftler>
;<br/>
<http://example.org/#geboren> "1857-11-26" .
</code>
<code>
<http://example.org/#FerdinandDeSaussure> <http://example.org/#hatBeruf> <http://example.org/#Sprachwissenschaftler>
.<br/>
<http://example.org/#FerdinandDeSaussure> <http://example.org/#geboren> "1857-11-26" .
</code>
</details>
<details id="list-obj">
<summary>Liste Objekte (,)</summary>
<p>Oftmals wird das gleiche Objekt mehrmals mit dem gleichen Subjekt und Prädikate wiederholt. Für die
Kurzschreibweise kann ein «<em>,</em>» verwendet werden. Dadurch werden Subjekt und Prädikat wiederholt.</p>
<p>Folgende Beispiele sind in den Aussagen identisch:</p>
<code>
<http://example.org/#FerdinandDeSaussure> <http://example.org/#name> "Ferdinand de Saussuere",
"弗迪南·德·索緒爾" .
</code>
<code>
<http://example.org/#FerdinandDeSaussure> <http://example.org/#name> "Ferdinand de Saussuere"
.<br/>
<http://example.org/#FerdinandDeSaussure> <http://example.org/#name> "弗迪南·德·索緒爾" .<br/>
</code>
</details>
<details>
<summary>IRI (Internationalized Resource Identifier)</summary>
<p>Eine IRI kann absolut, relativ oder mit einem präfix geschrieben werden. Absolute und relative IRIs sind in «<em><</em>»
und «<em>></em>» eingeschlossen (z.B. <http://example.org/#name> oder <#name>). </p>
<details id="prefix">
<summary>Präfix (@prefix)</summary>
<p>Initialisiert wird ein Präfix mittels «<em>@prefix</em>». Das «<em>:</em>» verbindet das Präfix Label und
den lokalen Teil.</p>
<p>Folgende Beispiele sind in den Aussagen identisch:</p>
<code>
@prefix ex: <http://www.example.org/#> .<br/>
ex:FerdinandDeSaussure ex:name "Ferdinand de Saussuere" .
</code>
<code>
<http://www.example.org/#FerdinandDeSaussure> <http://www.example.org/#name> "Ferdinand de
Saussuere" .
</code>
</details>
<details id="a-type">
<summary>http://www.w3.org/1999/02/22-rdf-syntax-ns#type (a)</summary>
<p>Wird an der Prädikatsposition «<em>a</em>» geschrieben steht dies für den IRI
http://www.w3.org/1999/02/22-rdf-syntax-ns#type.</p>
<p>Folgende Beispiele sind in den Aussagen identisch:</p>
<code>
:FerdinandDeSaussure a :Person .
</code>
<code>
:FerdinandDeSaussure <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> :Person .
</code>
<code>
@prefix rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#> .<br/>
:FerdinandDeSaussure rdf:type :Person .
</code>
</details>
<details id="base">
<summary>Basis IRI (@base)</summary>
<p>Mittels «<em>@base</em>» wird die Basis IRI festgelegt welche sich darauf auswirkt wie lokale IRIs
aufgelöst werden.</p>
<code>
@base <http://my.example.org/> .<br/>
<FerdinandDeSaussure> <name> "Ferdinand de Saussuere" .<br/>
# Wird aufgelöst zu <http://my.example.org/FerdinandDeSaussure> <http://my.example.org/name>
"Ferdinand de Saussuere" .
</code>
</details>
</details>
<details id="literale">
<summary>Literale</summary>
<p>Literale enthalten Werte wie Zeichenketten, Zahlen oder Daten.</p>
<p>Literale werden mit Anführungszeichen gekennzeichnet. Zusätzlich kann dem Literal ein Sprachen-Tag mittels
«<em>@</em>» oder ein Datentyp IRI mittels «<em>^^</em>» erweitert werden</p>
<code>
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .<br/>
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .<br/>
<br/>
:FerdinandDeSaussure rdfs:label "Ferdinand de Saussure"^^xsd:string .<br/>
:FerdinandDeSaussure :name "Ferdinand de Saussuere"@de, "弗迪南·德·索緒爾"@zh .
</code>
</details>
<details>
<summary>Leere Knoten</summary>
<details id="blank-node-label">
<summary>Leerer Knoten mit Label (_)</summary>
<p>
Ein leerer Knoten wird mittels «<em>_:</em>» initialisert gefolgt von einer Zeichenfolge aus Buchstaben
und Zahlen.
</p>
<code>
@prefix foaf: <http://xmlns.com/foaf/0.1/> .<br/>
<br/>
_:deSaussure foaf:knows _:faesch .<br/>
_:faesch foaf:knows _:deSaussure .
</code>
</details>
<details id="blank-node-no-label">
<summary>Leerer Knoten ohne Label ([])</summary>
<p>Ein anonymer Knoten wird mittels «<em>[]</em>» initialisiert.</p>
<code>
@prefix foaf: <http://xmlns.com/foaf/0.1/> .<br/>
<br/>
[] foaf:knows [ foaf:name "Ferdinand de Saussure" ] .<br/>
</code>
<p>Leere anonyme Knoten können auch verschachtelt werden.</p>
<code>
@prefix foaf:
<http:
//xmlns.com/foaf/0.1/> .
[ foaf:name "Ferdinand de Saussure" ] foaf:knows [<br/>
foaf:name "Marie Faesch" ;<br/>
foaf:knows [<br/>
foaf:name "Jules Faesch" ] ;<br/>
foaf:mbox <marie.faesch@example.com> ] .
</code>
<p>Das obere Beispiel kann auch so geschrieben werden.</p>
<code>
_:a <http://xmlns.com/foaf/0.1/name> "Ferdinand de Saussure" .<br/>
_:a <http://xmlns.com/foaf/0.1/knows> _:b .<br/>
_:b <http://xmlns.com/foaf/0.1/name> "Marie Faesch" .<br/>
_:b <http://xmlns.com/foaf/0.1/knows> _:c .<br/>
_:c <http://xmlns.com/foaf/0.1/name> "Jules Faesch" .<br/>
_:b <http://xmlns.com/foaf/0.1/mbox> <marie.faesch@example.com> .
</code>
</details>
</details>
<details id="collections">
<summary>Collections ( (:a :b :c) )</summary>
<p>Eine Collections wird mittels «<em>()</em>» initialisiert. Eine Collection ist eine «abgeschlossene» Liste von Elementen. Das heisst nach der Definition können ihr keine zusätzlichen Elemente angefügt werden.</p>
<code>
@prefix : <http://example.org/foo> .<br/>