-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathumao.ttl
3064 lines (2226 loc) · 186 KB
/
umao.ttl
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
@prefix : <http://Psychobagger.github.io/umao#> .
@prefix ns: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix schema: <https://schema.org/> .
@base <http://PR0CK0.github.io/umao/> .
<http://PR0CK0.github.io/umao/> rdf:type owl:Ontology ;
dct:creator "Procko"@en ;
dct:description "A metadata ontology for describing the various martial arts."@en ;
dct:modified "2021-06-18"@en ;
dct:title "Upper Martial Arts Ontology"@en ;
vann:preferredNamespacePrefix "umao"@en ;
vann:preferredNamespaceUri "http://PR0CK0.github.io/umao/"@en ;
rdfs:comment "Aligns with schema.org and provides a relatively high-level vocabulary for the description of the various martial arts."@en ,
"TODO: fix IRI: http://.../umao/ should be http://.../umao#. fix rdfs:isDefinedBy to reflect the final URL of this ontology. align with CCO?"@en ;
rdfs:label "Upper Martial Arts Ontology"@en ;
rdfs:seeAlso "https://en.wikipedia.org/wiki/Martial_arts"^^xsd:string ;
owl:versionInfo "0.0.4"@en ;
skos:altLabel "UMAO"@en ;
skos:prefLabel "Upper Martial Arts Ontology"@en .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/creator
dct:creator rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy "http://purl.org/dc/terms/"@en .
### http://purl.org/dc/terms/description
dct:description rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy "http://purl.org/dc/terms/"@en .
### http://purl.org/dc/terms/modified
dct:modified rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy "http://purl.org/dc/terms/"@en .
### http://purl.org/dc/terms/title
dct:title rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy "http://purl.org/dc/terms/"@en .
### http://purl.org/vocab/vann/preferredNamespacePrefix
vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy "http://purl.org/vocab/vann/" .
### http://purl.org/vocab/vann/preferredNamespaceUri
vann:preferredNamespaceUri rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy "http://purl.org/vocab/vann/" .
### http://www.w3.org/2003/06/sw-vocab-status/ns#term_status
ns:term_status rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy "http://www.w3.org/2003/06/sw-vocab-status/ns#"@en .
### http://www.w3.org/2004/02/skos/core#altLabel
skos:altLabel rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy "http://www.w3.org/2004/02/skos/core"@en .
### http://www.w3.org/2004/02/skos/core#prefLabel
skos:prefLabel rdf:type owl:AnnotationProperty ;
rdfs:isDefinedBy "http://www.w3.org/2004/02/skos/core"@en .
#################################################################
# Object Properties
#################################################################
### http://PR0CK0.github.io/umao#affectedBy
<http://PR0CK0.github.io/umao#affectedBy> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#affects> ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( <http://PR0CK0.github.io/umao#MartialArtEquipment>
<http://PR0CK0.github.io/umao#MidFightComponent>
)
] ;
rdfs:comment "Some martial art technique is affected by some martial art equipment or some component of some occuring fight."@en .
### http://PR0CK0.github.io/umao#affects
<http://PR0CK0.github.io/umao#affects> rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://PR0CK0.github.io/umao#MartialArtEquipment>
<http://PR0CK0.github.io/umao#MidFightComponent>
)
] ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:comment "Some martial art equipment or some component of some occuring fight affects some martial art technique."@en .
### http://PR0CK0.github.io/umao#begins
<http://PR0CK0.github.io/umao#begins> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#beginsWith> ;
rdfs:domain <http://PR0CK0.github.io/umao#Initiation> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtExecution> ;
rdfs:comment "Some initiation begins some martial art execution."@en ;
rdfs:label "begins"@en .
### http://PR0CK0.github.io/umao#beginsWith
<http://PR0CK0.github.io/umao#beginsWith> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtExecution> ;
rdfs:range <http://PR0CK0.github.io/umao#Initiation> ;
rdfs:comment "Some martial art execution begins with some initiation."@en ;
rdfs:label "begins with"@en .
### http://PR0CK0.github.io/umao#binds
<http://PR0CK0.github.io/umao#binds> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#boundBy> ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtRule> ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( <http://PR0CK0.github.io/umao#MartialArt>
<http://PR0CK0.github.io/umao#MartialArtSport>
)
] ;
rdfs:comment "Some martial art rule binds some martial art or its sport."@en ;
rdfs:label "binds"@en .
### http://PR0CK0.github.io/umao#boundBy
<http://PR0CK0.github.io/umao#boundBy> rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://PR0CK0.github.io/umao#MartialArt>
<http://PR0CK0.github.io/umao#MartialArtSport>
)
] ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtRule> ;
rdfs:comment "Some martial art or its sport is bound by some martial art rule"@en ;
rdfs:label "bound by"@en .
### http://PR0CK0.github.io/umao#composedOf
<http://PR0CK0.github.io/umao#composedOf> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#composes> ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtExecution> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:comment "Some martial art execution is composed of some martial art technique (generally more than one)."@en ;
rdfs:label "composed of"@en .
### http://PR0CK0.github.io/umao#composes
<http://PR0CK0.github.io/umao#composes> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtExecution> ;
rdfs:comment "Some martial art technique (generally more than one) composes some martial art execution."@en ;
rdfs:label "composes"@en .
### http://PR0CK0.github.io/umao#derivedFrom
<http://PR0CK0.github.io/umao#derivedFrom> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtSport> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArt> .
### http://PR0CK0.github.io/umao#determinedBy
<http://PR0CK0.github.io/umao#determinedBy> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#determines> ;
rdfs:domain <http://PR0CK0.github.io/umao#FightOutcome> ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( <http://PR0CK0.github.io/umao#MartialArtSportScoringSystem>
<http://PR0CK0.github.io/umao#Termination>
)
] ;
rdfs:comment "Some fight outcome is determined by some martial art termination or some martial art scoring system."@en ;
rdfs:label "determined by"@en .
### http://PR0CK0.github.io/umao#determines
<http://PR0CK0.github.io/umao#determines> rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://PR0CK0.github.io/umao#MartialArtSportScoringSystem>
<http://PR0CK0.github.io/umao#Termination>
)
] ;
rdfs:range <http://PR0CK0.github.io/umao#FightOutcome> ;
rdfs:comment "Some martial art termination or martial art scoring system determines some fight outcome."@en ;
rdfs:label "determines"@en .
### http://PR0CK0.github.io/umao#ends
<http://PR0CK0.github.io/umao#ends> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#endsWith> ;
rdfs:domain <http://PR0CK0.github.io/umao#Termination> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtExecution> ;
rdfs:comment "Some termination ends some martial art execution."@en ;
rdfs:label "ends"@en .
### http://PR0CK0.github.io/umao#endsWith
<http://PR0CK0.github.io/umao#endsWith> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtExecution> ;
rdfs:range <http://PR0CK0.github.io/umao#Termination> ;
rdfs:comment "Some martial art execution ends with some termination."@en ;
rdfs:label "ends with"@en .
### http://PR0CK0.github.io/umao#enforcesRulesOn
<http://PR0CK0.github.io/umao#enforcesRulesOn> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#rulesEnforcedBy> ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtGoverningBody> ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( <http://PR0CK0.github.io/umao#MartialArt>
<http://PR0CK0.github.io/umao#MartialArtSport>
)
] .
### http://PR0CK0.github.io/umao#engagedBy
<http://PR0CK0.github.io/umao#engagedBy> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#engagesIn> ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtExecution> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtAgent> ;
rdfs:comment "Some martial art execution is engaged in by some martial art agent."@en ;
rdfs:label "engaged by"@en .
### http://PR0CK0.github.io/umao#engagesIn
<http://PR0CK0.github.io/umao#engagesIn> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtAgent> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtExecution> ;
rdfs:comment "Some martial art agent engages in some martial art execution."@en ;
rdfs:label "engages in"@en .
### http://PR0CK0.github.io/umao#hasNotablePractitioner
<http://PR0CK0.github.io/umao#hasNotablePractitioner> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#notablyPracticed> ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArt> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtAgent> ;
rdfs:comment "Some martial art has some notable martial art practitioner (e.g. boxing has Mike Tyson)."@en ;
rdfs:label "has notable pactitioner"@en ;
skos:prefLabel "has notable pactitioner"@en .
### http://PR0CK0.github.io/umao#hosts
<http://PR0CK0.github.io/umao#hosts> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#takesPlaceIn> ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtExecutionPlace> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtExecution> ;
rdfs:comment "Some martial art execution place hosts some martial art execution."@en ;
rdfs:label "hosts"@en ;
skos:prefLabel "hosts" .
### http://PR0CK0.github.io/umao#injures
<http://PR0CK0.github.io/umao#injures> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#UnarmedAttackingTechnique> ;
rdfs:range <http://PR0CK0.github.io/umao#BodyPart> ;
rdfs:comment "Some attacking technique injures some opponent body part."@en ;
rdfs:label "injures"@en .
### http://PR0CK0.github.io/umao#learnsBy
<http://PR0CK0.github.io/umao#learnsBy> rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://PR0CK0.github.io/umao#MartialArtCombatant>
<http://PR0CK0.github.io/umao#MartialArtStudent>
)
] ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtTraining> .
### http://PR0CK0.github.io/umao#mayResultIn
<http://PR0CK0.github.io/umao#mayResultIn> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:range <http://PR0CK0.github.io/umao#Termination> ;
rdfs:comment "Some martial art technique may result in some fight termination."@en ;
rdfs:label "may result in"@en .
### http://PR0CK0.github.io/umao#notablyPracticed
<http://PR0CK0.github.io/umao#notablyPracticed> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtAgent> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArt> ;
rdfs:comment "Some martial art agent was notable for their practice of some martial art (e.g. Bruce Lee and Jeet Kune Do)."@en ;
rdfs:label "notably practiced"@en ;
skos:prefLabel "notably practiced"@en .
### http://PR0CK0.github.io/umao#opensUp
<http://PR0CK0.github.io/umao#opensUp> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#UnarmedAttackingTechnique> .
### http://PR0CK0.github.io/umao#performedBy
<http://PR0CK0.github.io/umao#performedBy> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#performs> ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:range <http://PR0CK0.github.io/umao#BodyPart> .
### http://PR0CK0.github.io/umao#performedOn
<http://PR0CK0.github.io/umao#performedOn> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:comment "Some attacking martial art technique is performed on some body part of an opponent."@en ;
rdfs:label "performed on"@en ;
skos:prefLabel "performed on"@en .
### http://PR0CK0.github.io/umao#performs
<http://PR0CK0.github.io/umao#performs> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#BodyPart> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtTechnique> .
### http://PR0CK0.github.io/umao#practicedBy
<http://PR0CK0.github.io/umao#practicedBy> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#practices> ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArt> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtAgent> ;
rdfs:comment "Some martial art is practiced by some martial art agent."@en ;
rdfs:label "practiced by"@en ;
skos:altLabel "participated in by"@en ;
skos:prefLabel "practiced by"@en .
### http://PR0CK0.github.io/umao#practices
<http://PR0CK0.github.io/umao#practices> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtAgent> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArt> ;
rdfs:comment "Some martial art agent practices some martial art."@en ;
rdfs:label "practices"@en ;
skos:altLabel "participates in"@en ;
skos:prefLabel "practices"@en .
### http://PR0CK0.github.io/umao#precededBy
<http://PR0CK0.github.io/umao#precededBy> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#precedes> ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtMuscleAction> .
### http://PR0CK0.github.io/umao#precedes
<http://PR0CK0.github.io/umao#precedes> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtMuscleAction> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtTechnique> .
### http://PR0CK0.github.io/umao#prescribedBy
<http://PR0CK0.github.io/umao#prescribedBy> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#prescribes> ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtSportRankingSystem> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtGoverningBody> .
### http://PR0CK0.github.io/umao#prescribes
<http://PR0CK0.github.io/umao#prescribes> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtGoverningBody> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtSportRankingSystem> .
### http://PR0CK0.github.io/umao#prohibitedBy
<http://PR0CK0.github.io/umao#prohibitedBy> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#prohibits> ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:range <http://PR0CK0.github.io/umao#TechniqueRule> ;
rdfs:comment "Some martial art technique is prohibited by some martial art technique rule."@en ;
rdfs:label "prohibited by"@en .
### http://PR0CK0.github.io/umao#prohibits
<http://PR0CK0.github.io/umao#prohibits> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#TechniqueRule> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:comment "Some martial art technique rule prohibits some martial art technique"@en ;
rdfs:label "prohibits"@en .
### http://PR0CK0.github.io/umao#rulesEnforcedBy
<http://PR0CK0.github.io/umao#rulesEnforcedBy> rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://PR0CK0.github.io/umao#MartialArt>
<http://PR0CK0.github.io/umao#MartialArtSport>
)
] ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtGoverningBody> .
### http://PR0CK0.github.io/umao#subjectTo
<http://PR0CK0.github.io/umao#subjectTo> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#subjects> ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtStance> .
### http://PR0CK0.github.io/umao#subjects
<http://PR0CK0.github.io/umao#subjects> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtStance> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtTechnique> .
### http://PR0CK0.github.io/umao#takesPlaceIn
<http://PR0CK0.github.io/umao#takesPlaceIn> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtExecution> ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtExecutionPlace> ;
rdfs:comment "Some martial art execution takes place in some martial art execution place."@en ;
rdfs:label "takes place in"@en ;
skos:prefLabel "takes place in" .
### http://PR0CK0.github.io/umao#usedBy
<http://PR0CK0.github.io/umao#usedBy> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://PR0CK0.github.io/umao#uses> ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://PR0CK0.github.io/umao#MartialArtEquipment>
<http://PR0CK0.github.io/umao#MartialArtStance>
<http://PR0CK0.github.io/umao#MartialArtTechnique>
)
] ;
rdfs:range <http://PR0CK0.github.io/umao#MartialArtAgent> ;
rdfs:comment "Some martial art technique, stance or equipment is used by some martial art agent."@en ;
rdfs:label "used by"@en .
### http://PR0CK0.github.io/umao#uses
<http://PR0CK0.github.io/umao#uses> rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtAgent> ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( <http://PR0CK0.github.io/umao#MartialArtEquipment>
<http://PR0CK0.github.io/umao#MartialArtStance>
<http://PR0CK0.github.io/umao#MartialArtTechnique>
)
] ;
rdfs:comment "Some martial art agent uses some technique, equipment or stance."@en ;
rdfs:label "uses"@en .
### http://Psychobagger.github.io/umao#enables
:enables rdf:type owl:ObjectProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#Weapon> ;
rdfs:range <http://PR0CK0.github.io/umao#ArmedFightingTechnique> ;
rdfs:comment "Some weapon enables some armed fighting technique."@en ;
rdfs:label "enables"@en ;
skos:prefLabel "enables"@en .
#################################################################
# Data properties
#################################################################
### http://PR0CK0.github.io/umao#hasNumberOfMartialArtAgents
<http://PR0CK0.github.io/umao#hasNumberOfMartialArtAgents> rdf:type owl:DatatypeProperty ;
rdfs:domain <http://PR0CK0.github.io/umao#MartialArtAgent> ;
rdfs:range xsd:integer ;
rdfs:comment "Some martial art execution has some number of martial art agents." ;
rdfs:label "has number of martial art agents" .
### http://PR0CK0.github.io/umao#hasNumberOfMartialArtCombatants
<http://PR0CK0.github.io/umao#hasNumberOfMartialArtCombatants> rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf <http://PR0CK0.github.io/umao#hasNumberOfMartialArtAgents> ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://PR0CK0.github.io/umao#MartialArtFighting>
<http://PR0CK0.github.io/umao#TrainingFight>
)
] ;
rdfs:range xsd:integer ;
rdfs:comment "Some training fight or fight has some number of martial art combatants." ;
rdfs:label "has number of martial art combatants" .
#################################################################
# Classes
#################################################################
### http://PR0CK0.github.io/umao#AdmissionSubmission
<http://PR0CK0.github.io/umao#AdmissionSubmission> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#Submission> ;
rdfs:comment "An end of some martial art execution where some martial art agent requests to stop."@en ;
rdfs:label "Admission Submission"@en ;
skos:prefLabel "Admission Submission"@en .
### http://PR0CK0.github.io/umao#AdvancingTechnique
<http://PR0CK0.github.io/umao#AdvancingTechnique> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#UnarmedPositioningTechnique> .
### http://PR0CK0.github.io/umao#Ankle
<http://PR0CK0.github.io/umao#Ankle> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#DistalBodyPart> .
### http://PR0CK0.github.io/umao#AnkleEquipment
<http://PR0CK0.github.io/umao#AnkleEquipment> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#LowerBodyEquipment> .
### http://PR0CK0.github.io/umao#ArmEquipment
<http://PR0CK0.github.io/umao#ArmEquipment> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#UpperBodyEquipment> .
### http://PR0CK0.github.io/umao#ArmLock
<http://PR0CK0.github.io/umao#ArmLock> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#Lock> ;
rdfs:comment "A martial art technique in which some arm of some opponent is locked by some attacker."@en ;
rdfs:label "Arm Lock"@en ;
skos:prefLabel "Arm Lock"@en .
### http://PR0CK0.github.io/umao#ArmedCloseTechnique
<http://PR0CK0.github.io/umao#ArmedCloseTechnique> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#ArmedFightingTechnique> .
### http://PR0CK0.github.io/umao#ArmedFightingTechnique
<http://PR0CK0.github.io/umao#ArmedFightingTechnique> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:comment "A martial art technique which is performed with some weapon which is used by some martial art agent."@en ;
rdfs:label "Armed Fighting Technique" ;
skos:prefLabel "Armed Fighting Technique" .
### http://PR0CK0.github.io/umao#ArmedMartialArtCombatant
<http://PR0CK0.github.io/umao#ArmedMartialArtCombatant> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MartialArtCombatant> ;
rdfs:comment "A martial art agent who is armed with a weapon."@en ;
rdfs:label "Armed Martial Art Combatant"@en ;
skos:prefLabel "Armed Martial Art Combatant"@en .
### http://PR0CK0.github.io/umao#ArmedRangedTechnique
<http://PR0CK0.github.io/umao#ArmedRangedTechnique> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#ArmedFightingTechnique> .
### http://PR0CK0.github.io/umao#Back
<http://PR0CK0.github.io/umao#Back> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#ProximalBodyPart> .
### http://PR0CK0.github.io/umao#BackThrow
<http://PR0CK0.github.io/umao#BackThrow> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#Throw> .
### http://PR0CK0.github.io/umao#Backfist
<http://PR0CK0.github.io/umao#Backfist> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#PunchStrike> .
### http://PR0CK0.github.io/umao#Backslap
<http://PR0CK0.github.io/umao#Backslap> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#OpenHandedStrike> ;
rdfs:comment "A martial art technique which strikes with the rear side of some hand."@en ;
rdfs:label "Backslap"@en ;
skos:prefLabel "Backslap"@en .
### http://PR0CK0.github.io/umao#Backstep
<http://PR0CK0.github.io/umao#Backstep> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#RetreatingTechnique> .
### http://PR0CK0.github.io/umao#Belt
<http://PR0CK0.github.io/umao#Belt> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#LowerBodyEquipment> .
### http://PR0CK0.github.io/umao#Bicep
<http://PR0CK0.github.io/umao#Bicep> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#DistalBodyPart> .
### http://PR0CK0.github.io/umao#Bite
<http://PR0CK0.github.io/umao#Bite> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#DirtyTechnique> ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://PR0CK0.github.io/umao#performedBy> ;
owl:allValuesFrom <http://PR0CK0.github.io/umao#Teeth>
] ;
rdfs:comment "A martial art technique in which the teeth are used against some opponent."@en ;
rdfs:label "Bite"@en ;
skos:prefLabel "Bite"@en .
### http://PR0CK0.github.io/umao#Block
<http://PR0CK0.github.io/umao#Block> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#UnarmedDefendingTechnique> ;
rdfs:comment "A martial art technique in which some part of the body, or a movement of the body, is used to block some incoming attack or advancement from some opponent."@en ;
rdfs:label "Block"@en ;
skos:prefLabel "Block"@en .
### http://PR0CK0.github.io/umao#BlockingFocusedMartialArt
<http://PR0CK0.github.io/umao#BlockingFocusedMartialArt> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#StrikingFocusedMartialArt> ;
rdfs:comment "A martial art which focuses on blocking incoming attacks."@en .
### http://PR0CK0.github.io/umao#BludgeoningWeaponsAttackingTechnique
<http://PR0CK0.github.io/umao#BludgeoningWeaponsAttackingTechnique> rdf:type owl:Class ;
rdfs:subClassOf :ArmedCloseAttackingTechnique .
### http://PR0CK0.github.io/umao#BludgeoningWeaponsFocusedMartialArt
<http://PR0CK0.github.io/umao#BludgeoningWeaponsFocusedMartialArt> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#CloseWeaponsFocusedMartialArt> .
### http://PR0CK0.github.io/umao#BodyAdvantageTechnique
<http://PR0CK0.github.io/umao#BodyAdvantageTechnique> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:comment "A martial art technique in which some martial art agent uses some bodily advantage over some other martial art agent."@en ;
rdfs:label "Body Advantage Technique" ;
skos:prefLabel "Body Advantage Technique" .
### http://PR0CK0.github.io/umao#BodyEquipment
<http://PR0CK0.github.io/umao#BodyEquipment> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MartialArtEquipment> .
### http://PR0CK0.github.io/umao#BodyFocusedMartialArt
<http://PR0CK0.github.io/umao#BodyFocusedMartialArt> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#PracticalityFocusedMartialArt> ;
rdfs:comment "A martial art which focuses on the human body as target and weapon."@en ;
rdfs:label "Body Focused Martial Art"@en ;
skos:prefLabel "Body Focused Martial Art"@en .
### http://PR0CK0.github.io/umao#BodyPart
<http://PR0CK0.github.io/umao#BodyPart> rdf:type owl:Class ;
rdfs:subClassOf <http://schema.org/AnatomicalStructure> ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://PR0CK0.github.io/umao#performs> ;
owl:someValuesFrom <http://PR0CK0.github.io/umao#MartialArtTechnique>
] ;
rdfs:comment "A part of the human body."@en ;
rdfs:label "Body Part"@en ;
skos:prefLabel "Body Part"@en .
### http://PR0CK0.github.io/umao#BodyPartInjury
<http://PR0CK0.github.io/umao#BodyPartInjury> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#TechnicalKnockout> ;
rdfs:comment "An end of some martial art execution where some martial art agent is technically knocked out due to an injury to some body part."@en ;
rdfs:label "Body Part Injury"@en ;
skos:prefLabel "Body Part Injury"@en .
### http://PR0CK0.github.io/umao#BodyPositionShift
<http://PR0CK0.github.io/umao#BodyPositionShift> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#TelegraphedAction> .
### http://PR0CK0.github.io/umao#BodyShove
<http://PR0CK0.github.io/umao#BodyShove> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#Throw> ,
<http://PR0CK0.github.io/umao#Trip> .
### http://PR0CK0.github.io/umao#BoneInjury
<http://PR0CK0.github.io/umao#BoneInjury> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#BodyPartInjury> ;
rdfs:comment "An end of some martial art execution where some martial art agent is technically knocked out due to an injury to some bone."@en ;
rdfs:label "Bone Injury"@en ;
skos:prefLabel "Bone Injury"@en .
### http://PR0CK0.github.io/umao#BoundaryEquipment
<http://PR0CK0.github.io/umao#BoundaryEquipment> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#EnvironmentEquipment> .
### http://PR0CK0.github.io/umao#Brawl
<http://PR0CK0.github.io/umao#Brawl> rdf:type owl:Class ;
owl:equivalentClass <http://PR0CK0.github.io/umao#ManyManFight> ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MultipleAgentFight> .
### http://PR0CK0.github.io/umao#Cadence
<http://PR0CK0.github.io/umao#Cadence> rdf:type owl:Class ;
owl:equivalentClass <http://PR0CK0.github.io/umao#Rhythm> ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MidFightComponent> .
### http://PR0CK0.github.io/umao#CeremonyRule
<http://PR0CK0.github.io/umao#CeremonyRule> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MartialArtRule> ;
rdfs:comment "A rule which provides structure and adherence to some ceremony associated with some martial art. Ceremonies are often traditions passed down through the martial art executions of a culture or ethnic group."@en ;
rdfs:label "Ceremony Rule"@en ;
skos:prefLabel "Ceremony Rule"@en .
### http://PR0CK0.github.io/umao#ChestEquipment
<http://PR0CK0.github.io/umao#ChestEquipment> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#TrainingEquipment> .
### http://PR0CK0.github.io/umao#Chin
<http://PR0CK0.github.io/umao#Chin> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#ProximalBodyPart> .
### http://PR0CK0.github.io/umao#Choke
<http://PR0CK0.github.io/umao#Choke> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#Lock> ;
rdfs:comment "A martial art technique in which the neck or throat of some opponent is locked by some attacker."@en ;
rdfs:label "Choke"@en ;
skos:prefLabel "Choke"@en .
### http://PR0CK0.github.io/umao#CircleLeft
<http://PR0CK0.github.io/umao#CircleLeft> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#RepositioningTechnique> .
### http://PR0CK0.github.io/umao#CircleRight
<http://PR0CK0.github.io/umao#CircleRight> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#RepositioningTechnique> .
### http://PR0CK0.github.io/umao#Clinch
<http://PR0CK0.github.io/umao#Clinch> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#Hold> .
### http://PR0CK0.github.io/umao#ClinchingFocusedMartialArt
<http://PR0CK0.github.io/umao#ClinchingFocusedMartialArt> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#HoldingFocusedMartialArt> .
### http://PR0CK0.github.io/umao#CloseWeaponsFocusedMartialArt
<http://PR0CK0.github.io/umao#CloseWeaponsFocusedMartialArt> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#WeaponsFocusedMartialArt> .
### http://PR0CK0.github.io/umao#CompressionLock
<http://PR0CK0.github.io/umao#CompressionLock> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#Lock> ;
rdfs:comment "A martial art technique in which some larger part of some opponent's body (like the ribcage or a thigh) is locked by some attacker."@en ;
rdfs:label "Compression Lock"@en ;
skos:prefLabel "Compression Lock"@en .
### http://PR0CK0.github.io/umao#CooperativeTeamSport
<http://PR0CK0.github.io/umao#CooperativeTeamSport> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#TeamSport> .
### http://PR0CK0.github.io/umao#Cross
<http://PR0CK0.github.io/umao#Cross> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#PunchStrike> ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://PR0CK0.github.io/umao#performedBy> ;
owl:allValuesFrom <http://PR0CK0.github.io/umao#RearHand>
] .
### http://PR0CK0.github.io/umao#CuttingWeaponsAttackingTechnique
<http://PR0CK0.github.io/umao#CuttingWeaponsAttackingTechnique> rdf:type owl:Class ;
rdfs:subClassOf :ArmedCloseAttackingTechnique .
### http://PR0CK0.github.io/umao#CuttingWeaponsFocusedMartialArt
<http://PR0CK0.github.io/umao#CuttingWeaponsFocusedMartialArt> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#CloseWeaponsFocusedMartialArt> .
### http://PR0CK0.github.io/umao#Death
<http://PR0CK0.github.io/umao#Death> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#Termination> ;
rdfs:comment "An end of some martial art execution where some martial art agent dies."@en ;
rdfs:label "Death"@en ;
skos:altLabel "Eternal Termination"@en ,
"Final Termination"@en ;
skos:prefLabel "Death"@en .
### http://PR0CK0.github.io/umao#DirectionTechnique
<http://PR0CK0.github.io/umao#DirectionTechnique> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#EnvironmentUsageTechnique> .
### http://PR0CK0.github.io/umao#DirtyTechnique
<http://PR0CK0.github.io/umao#DirtyTechnique> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#UnarmedAttackingTechnique> ;
rdfs:comment "A martial art technique which is considered to be \"dirty\", by virtue of ruthlessness, efficacy, or perceived imbalance in fights. A typical \"dirty move\" is eye gouging. The author would like to note that dirty moves do not exist in real, non-sporting fighting."@en ;
rdfs:label "Dirty Technique"@en ;
skos:altLabel "Bad Move"@en ,
"Dirty Move"@en ,
"Foul Move"@en ,
"Illegal Move"@en ,
"Nasty Move"@en ,
"Unfair Move"@en ,
"Unsportsmanlike Move"@en ;
skos:prefLabel "Dirty Technique"@en .
### http://PR0CK0.github.io/umao#DistalBodyPart
<http://PR0CK0.github.io/umao#DistalBodyPart> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#BodyPart> ;
rdfs:comment "A part of the human body which is distant from the core."@en ;
rdfs:label "Distal Body Part"@en ;
skos:altLabel "Distant Body Part"@en ;
skos:prefLabel "Distal Body Part"@en .
### http://PR0CK0.github.io/umao#Dodge
<http://PR0CK0.github.io/umao#Dodge> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#UnarmedDefendingTechnique> .
### http://PR0CK0.github.io/umao#DominantSideBackwardStance
<http://PR0CK0.github.io/umao#DominantSideBackwardStance> rdf:type owl:Class ;
owl:equivalentClass <http://PR0CK0.github.io/umao#SubordinateSideForwardStance> ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MartialArtStance> ;
rdfs:comment "A position in which some martial art agent is found with their dominant side farthest from some opponent."@en .
### http://PR0CK0.github.io/umao#DominantSideForwardStance
<http://PR0CK0.github.io/umao#DominantSideForwardStance> rdf:type owl:Class ;
owl:equivalentClass <http://PR0CK0.github.io/umao#SubordinateSideBackwardStance> ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MartialArtStance> ;
rdfs:comment "A position in which some martial art agent is found with their dominant side closest to some opponent."@en .
### http://PR0CK0.github.io/umao#Draw
<http://PR0CK0.github.io/umao#Draw> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#FightOutcome> ;
rdfs:comment "The outcome of some martial art execution where no definitive winner or loser is identified after termination."@en ;
rdfs:label "Draw"@en ;
skos:altLabel "Tie"@en ;
skos:prefLabel "Draw"@en .
### http://PR0CK0.github.io/umao#Drilling
<http://PR0CK0.github.io/umao#Drilling> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MartialArtTraining> .
### http://PR0CK0.github.io/umao#Duck
<http://PR0CK0.github.io/umao#Duck> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#UnarmedDefendingTechnique> .
### http://PR0CK0.github.io/umao#Ear
<http://PR0CK0.github.io/umao#Ear> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#DistalBodyPart> .
### http://PR0CK0.github.io/umao#EarClap
<http://PR0CK0.github.io/umao#EarClap> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#DirtyTechnique> ,
<http://PR0CK0.github.io/umao#OpenHandedStrike> .
### http://PR0CK0.github.io/umao#Elbow
<http://PR0CK0.github.io/umao#Elbow> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#DistalBodyPart> .
### http://PR0CK0.github.io/umao#ElbowStrike
<http://PR0CK0.github.io/umao#ElbowStrike> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#Strike> ;
rdfs:comment "A martial art technique which strikes with some elbow."@en ;
rdfs:label "Elbow Strike"@en ;
skos:prefLabel "Elbow Strike"@en .
### http://PR0CK0.github.io/umao#End
<http://PR0CK0.github.io/umao#End> rdf:type owl:Class ;
owl:equivalentClass <http://PR0CK0.github.io/umao#Termination> ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#FightComponent> ;
rdfs:label "End"@en ;
skos:prefLabel "End"@en .
### http://PR0CK0.github.io/umao#EnvironmentEquipment
<http://PR0CK0.github.io/umao#EnvironmentEquipment> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MartialArtEquipment> .
### http://PR0CK0.github.io/umao#EnvironmentUsageTechnique
<http://PR0CK0.github.io/umao#EnvironmentUsageTechnique> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MartialArtTechnique> ;
rdfs:comment "A martial art technique which uses the environment."@en .
### http://PR0CK0.github.io/umao#EquipmentManipulationFocusedMartialArt
<http://PR0CK0.github.io/umao#EquipmentManipulationFocusedMartialArt> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#HoldingFocusedMartialArt> ;
rdfs:comment "A martial art which focuses on the manipulation of opponent equipment."@en .
### http://PR0CK0.github.io/umao#EquipmentRule
<http://PR0CK0.github.io/umao#EquipmentRule> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MartialArtRule> ;
rdfs:comment "A rule which provides guidelines for some equipment which is used in some martial art."@en ;
rdfs:label "Equipment Rule"@en ;
skos:prefLabel "Equipment Rule"@en .
### http://PR0CK0.github.io/umao#EquippedTarget
<http://PR0CK0.github.io/umao#EquippedTarget> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#Target> .
### http://PR0CK0.github.io/umao#Eye
<http://PR0CK0.github.io/umao#Eye> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#ProximalBodyPart> .
### http://PR0CK0.github.io/umao#EyeDistraction
<http://PR0CK0.github.io/umao#EyeDistraction> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#UnarmedMentalDisturbanceTechnique> .
### http://PR0CK0.github.io/umao#FallingFocusedMartialArt
<http://PR0CK0.github.io/umao#FallingFocusedMartialArt> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#HoldingFocusedMartialArt> .
### http://PR0CK0.github.io/umao#Feint
<http://PR0CK0.github.io/umao#Feint> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#UnarmedMentalDisturbanceTechnique> .
### http://PR0CK0.github.io/umao#FightComponent
<http://PR0CK0.github.io/umao#FightComponent> rdf:type owl:Class ;
rdfs:subClassOf <http://schema.org/Intangible> ;
rdfs:comment "A component of some martial art execution."@en ;
rdfs:label "Fight Component"@en ;
skos:altLabel "Martial Art Execution Component"@en ;
skos:prefLabel "Fight Component"@en .
### http://PR0CK0.github.io/umao#FightInitiationRule
<http://PR0CK0.github.io/umao#FightInitiationRule> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MartialArtRule> ;
rdfs:comment "A rule which provides guidelines for an initiation of some martial art execution."@en ;
rdfs:label "Fight Initiation Rule"@en ;
skos:prefLabel "Fight Initiation Rule"@en .
### http://PR0CK0.github.io/umao#FightOutcome
<http://PR0CK0.github.io/umao#FightOutcome> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#FightComponent> ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://PR0CK0.github.io/umao#determinedBy> ;
owl:someValuesFrom <http://PR0CK0.github.io/umao#MartialArtSportScoringSystem>
] ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://PR0CK0.github.io/umao#determinedBy> ;
owl:someValuesFrom <http://PR0CK0.github.io/umao#Termination>
] ;
rdfs:comment "The end result of some martial art execution which has been terminated."@en ;
rdfs:label "Fight Outcome"@en ;
skos:altLabel "Fight Result"@en ;
skos:prefLabel "Fight Outcome"@en .
### http://PR0CK0.github.io/umao#FightTerminationRule
<http://PR0CK0.github.io/umao#FightTerminationRule> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#MartialArtRule> ;
rdfs:comment "A rule which provides guidelines for a termination of some martial art execution."@en ;
rdfs:label "Fight Termination Rule"@en ;
skos:prefLabel "Fight Termination Rule"@en .
### http://PR0CK0.github.io/umao#Finger
<http://PR0CK0.github.io/umao#Finger> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#DistalBodyPart> .
### http://PR0CK0.github.io/umao#FingerStrike
<http://PR0CK0.github.io/umao#FingerStrike> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#Strike> ;
rdfs:comment "A martial art technique which strikes with some finger."@en ;
rdfs:label "Finger Strike"@en ;
skos:prefLabel "Finger Strike"@en .
### http://PR0CK0.github.io/umao#Fingernail
<http://PR0CK0.github.io/umao#Fingernail> rdf:type owl:Class ;
rdfs:subClassOf <http://PR0CK0.github.io/umao#Nail> .
### http://PR0CK0.github.io/umao#FirearmAttackingTechnique
<http://PR0CK0.github.io/umao#FirearmAttackingTechnique> rdf:type owl:Class ;
rdfs:subClassOf :ArmedRangedAttackingTechnique .