-
Notifications
You must be signed in to change notification settings - Fork 3
/
legal_forms.ttl
2203 lines (2200 loc) · 285 KB
/
legal_forms.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 owl: <http://www.w3.org/2002/07/owl#> .
@prefix fibo-be-corp-corp: <http://www.omg.org/spec/EDMC-FIBO/BE/Corporations/Corporations/> .
<http://openleis.com/legal_entities/search/legal_form/%20FONDO%20DE%20TITULIZACION%20DE%20ACTIVOS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/(PROPRIETARY)%20LIMITED> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Proprietary_limited_company> .
<http://openleis.com/legal_entities/search/legal_form/119%20Nezisková%20organizácia> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/6039/09> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/A%20BERMUDA%20EXEMPTED%20MUTUAL%20FUND%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/A%20WORLD%20FINANCE%20-%20AWF> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ADMEA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ADMINISTRACION%20PUBLICA%20FORAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ADMINISTRACION%20PUBLICA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ADMINISTRACIÓN%20LOCAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ADMINISTRACIÓN%20PÚBLICA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AGENCY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AGRO%20SOURCING%20SERVICE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AGRUPACION%20DE%20INTERES%20ECONOMICO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AGRUPACION%20INTERES%20ECONOMICO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AGRUPACIÓN%20DE%20INTERÉS%20ECONÓMICO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AGRUPAMENTO%20COMPLEMENTAR%20EMPRESAS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AIE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AIR%20LIQUIDE%20INTERNATIONAL%20CORPORATION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AKCIJU%20SABIEDRIBA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AKCINE%20BENDROVE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AKCIONARSKO%20DRUSTVO%20ZA%20OSIGURANJE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AKCIONARSKO%20DRUSTVO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AKCIONERSKO%20DRUSTVO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AKCIOVA%20SPOLECNOST> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Akciová_společnost> .
<http://openleis.com/legal_entities/search/legal_form/AKCIOVA%20SPOLOCNOST> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Akciová_společnost> .
<http://openleis.com/legal_entities/search/legal_form/AKSJESELSKAP> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Aksjeselskap> .
<http://openleis.com/legal_entities/search/legal_form/AKTIEBOLAG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AKTIENGESELLSCHAFT> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Aktiengesellschaft> .
<http://openleis.com/legal_entities/search/legal_form/AKTIESELSKAB> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Aktieselskab> .
<http://openleis.com/legal_entities/search/legal_form/AKTSIASELTS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AKTSIONERNO%20DRUZHESTVO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AKTSIONERNOYE%20OBSHCHESTVO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ALLMENN%20AKSJESELSKAP> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Allmennaksjeselskap> .
<http://openleis.com/legal_entities/search/legal_form/ALMENNYTTIG%20BOLIGFORENING> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ALSACE%20SELESTAT%20DISTRIBUTION%20ALSEDIS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ALTER%20INGENIEROS%20SLU> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ALTRE%20FORME> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AMEFA%20FRANCE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ANDELSSELSKAB%20(-FORENING)%20MED%20BEGRÆNSET%20ANSVAR> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ANDELSSELSKAB%20(-FORENING)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ANDELSSELSKAB%20MED%20BEGRÆNSET%20ANSVAR> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ANDELSSELSKAB> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ANDEN%20UDENLANDSK%20VIRKSOMHED> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ANONIM%20SIRKET> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ANONIMA> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://es.dbpedia.org/resource/Sociedad_anónima> .
<http://openleis.com/legal_entities/search/legal_form/ANONIMI%20BIOMIXANIKI%20EMPORIKI%20ETERIA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ANONIMI%20ETAIRIA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ANPARTSSELSKAB> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Anpartsselskab> .
<http://openleis.com/legal_entities/search/legal_form/ANSTALT%20OFFENTLICHEN%20RECHTS> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://de.dbpedia.org/resource/Anstalt_des_öffentlichen_Rechts> .
<http://openleis.com/legal_entities/search/legal_form/ANSVARLIG%20NORSK%20SELSKAP> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Ansvarlig_selskap> .
<http://openleis.com/legal_entities/search/legal_form/ARUBA%20VRIJGESRELDE%20VENNOOTSCHAP> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ASOCIACION%20PRIVADA%20SIN%20FIN%20LUCRATIVO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ASOCIACIÓN%20CULTURAL%20SIN%20ÁNIMO%20DE%20LUCRO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ASOCIACIÓN> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ASSOCIATION%20OF%20MUTUAL%20INSURANCE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ASSOCIATION%20SANS%20BUT%20LUCRATIVE%20/%20VERENIGING%20ZONDER%20WINSTOOGMERK> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ASSOCIATION%20SANS%20BUT%20LUCRATIVE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ASSOCIATION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ASSOCIAZIONE%20NON%20RICONOSCIUTA%20EX%20ARTICOLO%2036%20CC> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ASSOCIAZIONE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ATGM> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AURORA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AUSTRALIAN%20PRIVATE%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AUSTRALIAN%20PROPRIETARY%20COMPANY,%20LIMITED%20BY%20SHARES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AUSTRALIAN%20PUBLIC%20COMPANY%20LIMITED%20BY%20SHARES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AUSTRALIAN%20PUBLIC%20COMPANY,%20LIMITED%20BY%20SHARES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AUSTRALIAN%20WHOLESALE%20UNIT%20TRUST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AV%20INDUSTRY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AWPG%20ARTHUR%20WORLD%20PARTICIPATION%20GROUP%20SARL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AXA%20BANK%20EUROPE%20SCF> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AYUNTAMIENTO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AZIENDA%20DI%20STATO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AZIENDA%20MUNICIPALE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/AZIENDA%20SPECIALE%20DI%20CUI%20AL%20DLGS%20267/2000> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Administration%20de%20l'état> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Agrupacion%20de%20Interes%20Economico> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Agrupación%20de%20Interés%20Económico> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Ajuntament> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Akciju%20Sabiedriba> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Akcine%20Bendrove> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Akcionarsko%20Drustvo%20Za%20Osiguranje> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Akcionarsko%20Drustvo> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Akcionersko%20Drustvo> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Akciova%20Spolecnost> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Akciová_společnost> .
<http://openleis.com/legal_entities/search/legal_form/Akciová%20společnost> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Akciová_společnost> .
<http://openleis.com/legal_entities/search/legal_form/Akciová%20spoločnosť> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Akciová_společnost> .
<http://openleis.com/legal_entities/search/legal_form/Aksjeselskap> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Aksjeselskap> .
<http://openleis.com/legal_entities/search/legal_form/Aktiengesellschaft%20(AG)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Aktiengesellschaft%20nach%20iranischem%20Recht> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Aktiengesellschaft> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Aktiengesellschaft> .
<http://openleis.com/legal_entities/search/legal_form/Aktieselskab> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Aktieselskab> .
<http://openleis.com/legal_entities/search/legal_form/Aktsiaselts> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Aktsionerno%20Druzhestvo> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Allmenn%20Aksjeselskap> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Allmennaksjeselskap> .
<http://openleis.com/legal_entities/search/legal_form/Allmennaksjeselskap> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Andelsboligforening> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Andelsselskab%20med%20begrænset%20ansvar> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Anonim%20Sirket> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Anonim%20Şirket> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Anonimi%20Biomixaniki%20Emporiki%20Eteria> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Anonimi%20Etairia> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Anpartsselskab> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Anpartsselskab> .
<http://openleis.com/legal_entities/search/legal_form/Anstalt%20öffentlichen%20Rechts> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://de.dbpedia.org/resource/Anstalt_des_öffentlichen_Rechts> .
<http://openleis.com/legal_entities/search/legal_form/Anstalt> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Ansvarlig%20Norsk%20Selskap> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Ansvarlig_selskap> .
<http://openleis.com/legal_entities/search/legal_form/Ansvarlig%20selskap%20med%20solidarisk%20ansvar> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Antilliaanse%20besloten%20vennootschap%20(Handelsregister%20te%20Curaçao%20onder%20nummer%2089152)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Antilliaanse%20naamloze%20vennootschap%20(Handelsregister%20te%20Curaçao%20onder%20nummer%2070491)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Antilliaanse%20naamloze%20vennootschap%20(Handelsregister%20te%20Curaçao%20onder%20nummer%2073347)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Antilliaanse%20naamloze%20vennootschap%20(Handelsregister%20te%20Curaçao%20onder%20nummer%2078862)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Antilliaanse%20naamloze%20vennootschap> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Aracı%20Kurum> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Asociación%20Deportiva%20sin%20ánimo%20de%20lucro> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Asociación%20en%20Participación> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Association%20Sans%20But%20Lucrative> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Association%20loi%201901%20ou%20assimilé> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Autre%20groupement%20de%20droit%20privé%20non%20doté%20de%20la%20personnalité%20morale> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Autre%20personne%20morale%20de%20droit%20privé%20inscrite%20au%20RCS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Autre%20personne%20morale%20de%20droit%20privé> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Autre%20personne%20morale%20de%20droit%20public%20administratif> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/B.V.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BAHRAINI%20JOINT-STOCK%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BANCA%20MULTIPLE%20O%20COMERCIAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BANCO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BANKAKTIEBOLAG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BANKING%20FOUNDATION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BANKVIRKSOMHET> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BANQUE%20MISR> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BBSP%20PARTNERS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BE'ERAVON%20MUGBAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BECUSA,S.A.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BEGRENSET%20ANSVAR> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BERHAD> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BESLOTEN%20VENNOOTSCHAP%20MET%20BEPERKTE%20AANSPRAKELIJKHEID> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Besloten_vennootschap> .
<http://openleis.com/legal_entities/search/legal_form/BESLOTEN%20VENNOOTSCHAP> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Besloten_vennootschap> .
<http://openleis.com/legal_entities/search/legal_form/BETETI%20TARSASAG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BGAD> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BGEA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BGOT> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BORACAY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BOSTADSRÄTTSFÖRENING> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BUILDING%20HOUSING%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BUILDING%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BUILDING%20SOCIETYHIGH%20STREET> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BURGERLIJKE%20VENNOOTSCHAP%20ONDER%20VORM%20VAN%20NAAMLOZE%20VENNOOTSCHAP> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/BV> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Bahraini%20Joint-Stock%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Banco%20Central> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Banka> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Banking%20Companies%20-%20Others> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Berhad> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Besloten%20Vennootschap%20Met%20Beperkte%20Aansprakelijkheid> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Besloten_vennootschap> .
<http://openleis.com/legal_entities/search/legal_form/Besloten%20Vennootschap> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Besloten_vennootschap> .
<http://openleis.com/legal_entities/search/legal_form/Beteti%20Tarsasag> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Body%20Corporate> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Bostadsrättsförening%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Branch%20(Fióktelep)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Branch%20(Fióktelepe)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Branch> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Buitenlandse%20Rechtsvorm> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CAJA%20DE%20AHORROS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CAPITAL%20POOL%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CAYMAN%20ISLAND%20EXEMPTED%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CAYMAN%20ISLANDS%20EXEMPTED%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CAYMAN%20ISLANDS%20EXEMPTED%20LIMITED%20PARTNERSHIP> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CAYMAN%20ISLANDS%20ORDINARY%20NON-RESIDENT%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CHAA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CHAG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CHARITABLE%20INCORPORATED%20ORGANISATION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CHARITABLE%20INDUSTRIAL%20&%20PROVIDENT%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CHARITABLE%20TRUST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CHARITY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CIE%20FRANCAISE%20AGENCEMENT%20DECORATION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CINQUIEME%20LEASE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CLOSED%20ENDED%20INVESTMENT%20TRUST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CLOSED%20JOINT-STOCK%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CO-OPERATIVE%20&%20COMMUNITY%20BENEFIT%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CO-OPERATIVE%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COFINEA%20I> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMETAL,%20S.%20A.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMMANDITAIRE%20VENNOOTSCHAP%20OP%20AANDELEN> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMMANDITAIRE%20VENNOOTSCHAP> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMMERCIAL%20BANK> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMMON%20INVESTMENT%20FUND> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMMUNITY%20BENEFIT%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMPAGNIE%20IMMOBILIERE%20DU%20LION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMPANIA%20ANONIMA> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://es.dbpedia.org/resource/Sociedad_anónima> .
<http://openleis.com/legal_entities/search/legal_form/COMPANIA%20DE%20RESPONSABILIDAD%20LIMITADA> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://es.dbpedia.org/resource/Sociedad_de_responsabilidad_limitada> .
<http://openleis.com/legal_entities/search/legal_form/COMPANIA%20POR%20ACCIONES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMPANY%20LIMITED%20BY%20GUARANTEE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMPANY%20LIMITED%20BY%20SHARES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMPANY%20LIMITED> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMPANY%20PORTFOLIO%20ACCOUNTS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMPARTIMENTO%20DE%20UN%20FONDO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMPARTIMENTO%20FONDO%20DE%20INVERSION%20MOBILIARIA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMUNIDAD%20AUTONOMA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COMUNIDAD%20DE%20REGANTES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CONGREGACION%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CONGREGACION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CONSORCI%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CONSORCI> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CONSORCIO%20DE%20LA%20GENERALITAT%20DE%20CATALUÑA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CONSORCIO%20PÚBLICO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CONSORCIO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CONSORZIO%20CON%20ATTIVITA'%20ESTERNA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CONSORZIO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COOOPERATIVA%20DE%20CREDITO%20VALENCIANA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COOPERATIEVE%20VENNOOTSCHAP%20MET%20BEPERKTE%20AANSPRAKELIJKHEID> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COOPERATIVA%20DE%20CREDITO> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Sociedad_Cooperativa_de_Crédito> .
<http://openleis.com/legal_entities/search/legal_form/COOPERATIVA%20DE%20CRÉDITO%20> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Sociedad_Cooperativa_de_Crédito> .
<http://openleis.com/legal_entities/search/legal_form/COOPERATIVA%20DE%20CRÉDITO> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Sociedad_Cooperativa_de_Crédito> .
<http://openleis.com/legal_entities/search/legal_form/COOPERATIVA%20POR%20ACCIONES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COOPERATIVA%20SOCIALE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COOPERATIVA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COOPERATIVE%20DE%20RESPONSABILIDADE%20LIMITADA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CORPORACIÓN%20DE%20DERECHO%20PÚBLICO%20CON%20PERSONALIDAD%20JURÍDICA%20PROPIA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CORPORACIÓN%20LOCAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CORPORATION%20SOLE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CORPORATION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/COÖPERATIE%20MET%20UITGESLOTEN%20AANSPRAKELIJKHEID> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CREDIT%20IMMOBILIER%20DE%20FRANCE%20ILE%20DE%20FRANCE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CSSR> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CUIDEACHTA%20PHOIBLI%20THEORANTA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CYLC> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CZAS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/CZSS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Caisse%20d'épargne%20et%20de%20prévoyance> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Caja%20de%20Ahorros> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Cayman%20Islands%20Exempted%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Cayman%20Islands%20Exempted%20Limited%20Partnership> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Closed%20Joint-Stock%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Collective%20forest> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Collectivité%20territoriale> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Comandita%20por%20Accoes> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Commanditaire%20Vennootschap> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Company%20Limited> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Company%20pension%20fund> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Compartimento%20Fondo> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Consorci> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Consorcio%20público> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Cooperatieve%20Vennootschap%20Met%20Beperkte%20Aansprakelijkheid> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Cooperativa%20Nacional> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Cooperativa%20de%20Crédito> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Sociedad_Cooperativa_de_Crédito> .
<http://openleis.com/legal_entities/search/legal_form/Cooperativa%20de%20crédito> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Cooperativa> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Cooperative%20bank> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Cooperative%20de%20Responsabilidade%20Limitada> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Cooperative> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Corporation> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Coöperatie> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Coöperatieve%20Vereniging%20U.A.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/D.O.O.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DELNISKA%20DRUZBA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DIONICKO%20DRUSTVO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DIPUTACION%20FORAL%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DIPUTACION%20FORAL%20DE%20BIZKAIA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DISCRETIONARY%20FOUNDATION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DRUJESTVO%20S%20OGRANICHENA%20OTGOVORNOST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DRUSTVO%20S%20OGRANICENOM%20ODGOVORNOSCU> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DRUSTVO%20SA%20OGRANICENOM%20ODGOVORNOSCU> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DRUSTVO%20SO%20OGRANICENA%20ODGOVORNOST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DRUZBA%20Z%20NEOMEJENO%20ODGOVORNOSTJO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DRUZBA%20Z%20OMEJENO%20ODGOVORNOSTJO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DRUZHESTVO%20S%20OGRANICHENA%20OTGOVORNOST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DRUZSTVO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DRUŽSTVO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DURR%20SYSTEMS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Delniska%20Druzba> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Delniška%20družba> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Department%20of%20the%20Registrar%20of%20Companies%20and%20Official%20Receiver> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Dionicko%20Drustvo> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Drujestvo%20S%20Ogranichena%20Otgovornost> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Drustvo%20S%20Ogranicenom%20Odgovornoscu> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Drustvo%20Sa%20Ogranicenom%20Odgovornoscu> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Druzba%20Z%20Neomejeno%20Odgovornostjo> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Druzba%20Z%20Omejeno%20Odgovornostjo> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Družstvo> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/DØDSBO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Důchodový%20fond> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/E.F.C.%20ESTABLECIMIENTO%20FINANCIERO%20DE%20CRÉDITO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EAD> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EDNOLICHNO%20AKTSIONERNO%20DRUZHESTVO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EDNOLICHNO%20DRUZHESTVO%20S%20OGRANICHENA%20OTGOVORNOST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EDUCATION%20INSTITUTE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EDUCATIONAL%20CHARITY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EEOS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EGYEB%20SZOVETKEZET> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EGYENI%20VALLALKOZO%20-%20PRIVATE%20ENTREPRENEUR> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EGYESÜLET> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EINGETRAGENE%20GENOSSENSCHAFT> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EINGETRAGENER%20KAUFMANN> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://de.dbpedia.org/resource/Eingetragener_Kaufmann>.
<http://openleis.com/legal_entities/search/legal_form/EINGETRAGENER%20VEREIN> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EINKAHLUTAFELAG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EKONOMISK%20FÖRENING> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EMPRESA%20UNIPERSONAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EMPRESARIO%20INDIVIDUALES%20DE%20RESPONSABILIDAD%20LIMITADA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENERGY%20TRIP> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENKELTMANDSVIRKSOMHED> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENS%20PÚBLIC> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENSKILD%20FIRMA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTE%20DIRITTO%20PUBBLICO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTE%20ECCLESIASTICO%20CIVILMENTE%20RICONOSCIUTO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTE%20MORALE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTE%20PUBBLICO%20ECONOMICO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTE%20PUBLICO%20EMPRESARIAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTE%20PUBLICO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTE%20PÚBLICO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTERPRISE%20UNIPERSONNELLE%20A%20RESPONSABILITE%20LIMITEE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20AUTONOMICA%20DE%20DERECHO%20PUBLICO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20DE%20DERECHO%20PUBLICO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20DE%20DERECHO%20PÚBLICO%20SUJETA%20A%20DERCHO%20PRIVADO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20DE%20DERECHO%20PÚBLICO%20SUJETA%20A%20DERECHO%20PRIVADO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20DE%20PREVISION%20SOCIAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20DE%20PREVISIÓN%20SOCIAL%20VOLUNTARIA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20DE%20PREVISIÓN%20SOCIAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20GESTORA%20FONDOS%20DE%20PENSIONES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20JURIDICA%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20JURIDICA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20JURÍDICA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20LOCAL%20TERRITORIAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20LOCAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20MERCANTIL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20PUBLICA%20EMPRESARIAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20PUBLICA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20PÚBLICA%20EMPRESARIAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDAD%20PÚBLICA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTIDADE%20PUBLICA%20EMPRESARIAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTITAT%20LOCAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTITY%20WITH%20LEGAL%20PERSONALITY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ENTREPRISE%20ÉTRANGÈRE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EPSV%20(ENTIDAD%20DE%20PREVISION%20SOCIAL%20VOLUNTARIA)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EPSV-ENTIDAD%20DE%20PREVISON%20SOCIAL%20VOLUNTARIA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EPSV> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ERHVERVSDRIVENDE%20FOND> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ESERCIZIO%20DEL%20CREDITO%20ED%20OPERAZIONI%20DI%20BANCA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ETABLISSEMENT%20D'UTILITÉ%20PUBLIQUE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ETABLISSEMENT%20PUBLIC%20A%20CARACTERE%20INDUSTRIEL%20ET%20COMMERCIAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ETAIRIA%20PERIORISMENIS%20EUTHINIS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ETERORYTHMOS%20ETERIA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ETIS%20D.O.O.,%20LJUBLJANA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EUROPABOLAG%20/%20SOCIETAS%20EUROPAEA> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/European_Company_Regulation> .
<http://openleis.com/legal_entities/search/legal_form/EUROPAI%20RESZVENYTARSASAG> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/European_Company_Regulation> .
<http://openleis.com/legal_entities/search/legal_form/EUROPAISCHE%20GESELLSCHAFT> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/European_Company_Regulation> .
<http://openleis.com/legal_entities/search/legal_form/EUROPEA%20DE%20TITULIZACIÓN,%20SOCIEDAD%20ANONIMA,%20SOCIEDAD%20GESTORA%20DE%20FONDOS%20DE%20TITULIZACION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EUROPEAN%20PUBLIC%20LIMITED-LIABILITY%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/European_Company_Regulation> .
<http://openleis.com/legal_entities/search/legal_form/EVATOURS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EXEMPT%20CHARITY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EXEMPT> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EXEMPTED%20COMPANY%20INCORPORATED%20IN%20THE%20CAYMAN%20ISLANDS%20WITH%20LIMITED%20LIABILITY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EXEMPTED%20COMPANY%20WITH%20LIMITED%20LIABILITY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EXEMPTED%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EXEMPTED%20LIMITED%20PARTNERSHIP> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/EXEMPTED%20TRUST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Ednolichno%20Aktsionerno%20Druzhestvo> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Ednolichno%20Druzhestvo%20S%20Ogranichena%20Otgovornost> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Eenmanszaak> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Eingetragene%20Genossenschaft> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Eingetragener%20Kaufmann%20/%20Kauffrau> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://de.dbpedia.org/resource/Eingetragener_Kaufmann> .
<http://openleis.com/legal_entities/search/legal_form/Eingetragener%20Verein> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Einkahlutafelag> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Einzelkaufmann> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://de.dbpedia.org/resource/Eingetragener_Kaufmann> .
<http://openleis.com/legal_entities/search/legal_form/Einzelunternehmen> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://de.dbpedia.org/resource/Eingetragener_Kaufmann> .
<http://openleis.com/legal_entities/search/legal_form/Elektrik%20Piyasası%20Üyesi> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Emeklilik%20Şirketi> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Enskild%20Firma> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Ente%20de%20la%20Administracion%20local> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Enterprise%20unipersonnelle%20à%20responsabilité%20limitée> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Entidad%20Pública%20Empresarial> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Entidad%20de%20derecho%20público> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Entidad%20de%20previsión%20social%20voluntaria> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Etablissement%20public%20administratif> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Etablissement%20public%20ou%20régie%20à%20caractère%20industriel%20ou%20commercial> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Etairia%20Periorismenis%20Euthinis> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Eterorythmos%20Eteria> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Eurooppayhtio> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/European_Company_Regulation> .
<http://openleis.com/legal_entities/search/legal_form/European%20Public%20Limited-Liability%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/European_Company_Regulation> .
<http://openleis.com/legal_entities/search/legal_form/European%20company%20-%20Societas%20Europaea%20(SE)> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/European_Company_Regulation> .
<http://openleis.com/legal_entities/search/legal_form/Europeisk%20Selskap> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/European_Company_Regulation> .
<http://openleis.com/legal_entities/search/legal_form/Europäische%20Aktiengesellschaft%20(SE)%20&%20Compagnie%20Kommanditgesellschaft> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Europäische%20Aktiengesellschaft%20(SE)> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/European_Company_Regulation> .
<http://openleis.com/legal_entities/search/legal_form/Europäische%20wirtschaftliche%20Interessenvereinigung> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/European_economic_interest_grouping> .
<http://openleis.com/legal_entities/search/legal_form/Európska%20spoločnosť> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Evidované%20církevní%20právnické%20osoby> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Evropska%20Spolecnost> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Evropská%20společnost> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/F.C.P.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/F.I%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/F.I.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/F.I.I.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/F.I.L.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/F.I> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/F.P.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FACKELMANN%20FRANCE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FAIGES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FAMILY%20SETTLEMENT> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FCP%20Specialised%20Investment%20Fund> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FCP> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FCT%20-%20Fonds%20Commun%20de%20Titrisation%20a%20Compartiments> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FFONDO%20DE%20TITULIZACION%20DE%20ACTIVOS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FI> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FIL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FILIAL%20AF%20UDENLANDSK%20ANPARTSSELSKAB%20ELLER%20SELSKAB> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FINISH%20LINE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FOND> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDAZIONE%20BANCARIA%20EX%20DECRETO%20LEGISLATIVO%20N.%20153%20DEL%2017%20%20MAGGIO%201999> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDAZIONE%20BANCARIA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDAZIONE%20IMPRESA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDAZIONE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDE%20DE%20PENSIONES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20CAPITAL%20RIESGO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20INVERSION%20(F.I.)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20INVERSION%20(FI)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20INVERSION%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20INVERSION%20INMOBILIARIO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20INVERSION%20INMOBILIDARIO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20INVERSION%20LIBRE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20INVERSION%20MOBILIARIA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20INVERSION%20MOBILIARIO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20INVERSION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20INVERSIONES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20INVERSIÓN%20LIBRE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20INVERSIÓN%20MOBILIARIA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20INVERSIÓN> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20PENISONES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20PENSIONES%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20PENSIONES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20TITULIZACION%20DE%20ACTIVOS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20TITULIZACION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20TITULIZACIÓN%20DE%20ACTIVOS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20TITULIZACIÓN%20HIPOTECARIA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20DE%20TITULIZACIÓN> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20INVERSION%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20INVERSION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO%20TITULIZACION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDOS%20DE%20TITULIZACION%20DE%20ACTIVOS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FONDS%20COMMUN%20DE%20PLACEMENT> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FORENING%20ELLER%20SELSKAB%20MED%20BEGRÆNSET%20ANSVAR> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FORENING> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FORMA%20SOCIAL%20LIMITADA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FOUNDATION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FOUNDATIONS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FP> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FREE%20ZONE%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FREE%20ZONE%20ESTABLISHMENT> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FREEZONE%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FRIENDLY%20SOCIETIES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FRIENDLY%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FRIVILLIG%20FORENING> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FUND%20-%20UNIT%20TRUST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FUND> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FUNDACION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FUNDACIÓN%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FUNDACIÓN%20ACOGIDA%20A%20LA%20LEY%2049/2002> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FUNDACIÓN> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FUNDAÇÃO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FUNDLOGIC> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FYZICKA%20OSOBA-%20PODNIKATEL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondation> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fonden> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20Titulización%20Hipotecaria> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20Inversion%20Mobiliaria> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20Inversion> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20Inversión%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20Inversión%20Mobiliaria> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20Inversión%20mobiliaria> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20Inversión> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20Invesión> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20Pensiones> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20Titulización%20de%20Activos> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20inversion> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20inversión%20Mobiliaria> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20inversión%20mobiliaria> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20inversión%20mobiliario> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20inversión> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20de%20pensiones> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo%20pensiones> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fondo> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fonds%20Commun%20de%20Placement> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fonds%20ou%20compartiment%20de%20fonds> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Forening%20med%20begrænset%20ansvar> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Forening/lag/innretning> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Forening> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Formeel%20Buitenlandse%20Vennootschap%20(Corporation,%20Secretary%20of%20State%20Delaware%20onder%20nummer%203521300)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Formeel%20Buitenlandse%20Vennootschap%20(Handelsregister%20te%20Curacao%20onder%20nummer%20101219)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Formeel%20Buitenlandse%20Vennootschap%20(Handelsregister%20te%20Curacao%20onder%20nummer%2029381)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Formeel%20Buitenlandse%20Vennootschap%20(Handelsregister%20te%20Curaçao%20onder%20nummer%2031205)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Foundation> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Free%20Zone%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Free%20Zone%20Establishment> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fundación> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fundação> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fyzická%20osoba%20podnikající%20dle%20živnostenského%20zákona%20nezapsaná%20v%20obchodním%20rejstříku> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Fyzická%20osoba%20podnikající%20dle%20živnostenského%20zákona%20zapsaná%20v%20obchodním%20rejstříku> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/FÖRSÄKRINGSAKTIEBOLAG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GBLP> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GBLT> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GE%20CORPORATE%20FINANCE%20BANK> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GEA%20BATIGNOLLES%20TECHNOLOGIES%20THERMIQUES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GEMEINNUTZIGE%20GESELLSCHAFT%20MIT%20BESCHRANKTER%20HAFTUNG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GENERAL%20PARTNERSHIP> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GENERELLE%20OFFENTLIGE%20TJENESTER> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GESELLSCHAFT%20BURGERLICHEN%20RECHTS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GESELLSCHAFT%20DES%20BURGERLICHEN%20RECHTS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GESELLSCHAFT%20MIT%20BESCHRANKTER%20HAFTUNG%20&%20COMPAGNIE%20KOMMANDITGESELLSCHAFT> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GESELLSCHAFT%20MIT%20BESCHRANKTER%20HAFTUNG> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Gesellschaft_mit_beschränkter_Haftung> .
<http://openleis.com/legal_entities/search/legal_form/GEWONE%20COMMANDITAIRE%20VENNOOTSCHAP> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GJENSIDIG%20FORSIKRINGSSELSKAP> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GMAC%20BANQUE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GODO%20KAISHA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GOVERNMENT%20TREASURY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GRAE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GROUPEMENT%20D'INTERET%20ECONOMIQUE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GRUPPO%20EUROPEO%20DI%20INTERESSE%20ECONOMICO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Garanční%20fond%20obchodníků%20s%20cennými%20papíry> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GbR> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Gebietskörperschaft%20des%20öffentlichen%20Rechts> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Gemeinnützige%20Gesellschaft%20mit%20beschränkter%20Haftung> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/General%20Partnership> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Genossenschaft> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Gesellschaft%20Bürgerlichen%20Rechts> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Gesellschaft%20bürgerlichen%20Rechts> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Gesellschaft%20des%20bürgerlichen%20Rechts> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Gesellschaft%20mit%20beschränkter%20Haftung%20&%20Compagnie%20Kommanditgesellschaft> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Gesellschaft%20mit%20beschränkter%20Haftung> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Gesellschaft_mit_beschränkter_Haftung> .
<http://openleis.com/legal_entities/search/legal_form/GesmbH.> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Gesellschaft_mit_beschränkter_Haftung> .
<http://openleis.com/legal_entities/search/legal_form/Gewone%20Commanditaire%20Vennootschap> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Gjensidig%20forsikringselskap> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/GmbH> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Gesellschaft_mit_beschränkter_Haftung> .
<http://openleis.com/legal_entities/search/legal_form/Godo%20Kaisha> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Government%20and%20its%20bureaus> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Government%20business%20with%20separate%20administration> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Groupement%20d'intérêt%20économique> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/HANDELSBOLAG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/HLUTAFELAG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/HOST%20CAPITAL%20LIMITED> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/HOUSING%20ASSOCIATION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/HOUSING%20COOPERATIVE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/HOUSING%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/HRA%20Juristische%20Person> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/HRA%20sonstige%20Rechtsformen> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/HUKF> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/HUOT> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/HURE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/HUZM> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Handelsbolag> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Head%20Office%20of%20Credit%20Cooperatives> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Housing%20corporation> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/I.I.C.I.I.I.L.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ICVC%20-%20INVESTMENT%20COMPANY%20WITH%20VARIABLE%20CAPITAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ICVC%20SUB-FUND> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/IDCA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/IICIICIL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/IMPRESA%20INDIVIDUALE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INCORPORATED%20/%20INCORPOREE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INCORPORATED%20BY%20ROYAL%20CHARTER> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INCORPORATED%20CELL%20COMPANY%20PUBLIC> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INCORPORATED%20CELL%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INCORPORATED%20CELL%20PRIVATE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INCORPORATED%20FRIENDLY%20SOCIETY%20(INCORPORATED%20UNDER%20FRIENDLY%20SOCIETIES%20ACT%201992%20SCH.3)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INCORPORATED%20FRIENDLY%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INCORPORATED> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Private_company_limited_by_shares> .
<http://openleis.com/legal_entities/search/legal_form/INCORPORATION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INDUSTRIAL%20&%20%20PROVIDENT%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INDUSTRIAL%20&%20PROVIDENT%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INDUSTRIAL%20AND%20PROVIDENT%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INSTITUIÇÃO%20PARTICULAR%20DE%20SOLIDARIEDADE%20SOCIAL%20(UTILIDADE%20PÚBLICA%20CFR%20ART.16º%20DEC-LEI%2072/90%20DE%2003%20MARÇO)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INSTITUTIONAL%20MANAGED%20PORTFOLIO%20BY%20CA%20GEST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INSTITUTIONAL%20MANAGED%20PORTFOLIO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INSTITUTIONAL%20MANAGED%20PORTOFOLIO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INTERESSENTSKAB> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INTERKOMMUNALT%20SELSKAP> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Interkommunalt_selskap> .
<http://openleis.com/legal_entities/search/legal_form/INVESTMENT%20COMPANY%20WITH%20FIXED%20SHARE%20CAPITAL,%20PUBLIC%20LIMITED%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INVESTMENT%20COMPANY%20WITH%20VARIABLE%20CAPITAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INVESTMENT%20COMPANY%20WITH%20VARIABLE%20SHARE%20CAPITAL,%20LIMITED> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INVESTMENT%20COMPANY%20WITH%20VARIABLE%20SHARE%20CAPITAL,%20PUBLIC%20LIMITED%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/INVESTMENTAKTIENGESELLSCHAFT%20MIT%20TEILGESELLSCHAFTSVERMÖGEN> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ISTITUTO%20RELIGIOSO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ITSO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Ideel%20Förening> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Inc.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Incorporated%20/%20Incorporee> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Incorporated> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Private_company_limited_by_shares> .
<http://openleis.com/legal_entities/search/legal_form/Incorporation> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Industry-wide%20pension%20fund> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Institución%20de%20Inversión%20Colectiva%20(I.I.C.)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Institución%20de%20Inversión%20Colectiva> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Institución%20de%20Invesión%20Colectiva%20(I.I.C.)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Insurance%20Companies%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Insurance%20company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Interessentskab> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Interkommunalt%20selskap> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Investment%20Company%20with%20Fixed%20Share%20Capital,%20Public%20Limited%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Investment%20Company%20with%20Variable%20Share%20Capital,%20Limited> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Investment%20Company%20with%20Variable%20Share%20Capital,%20Public%20Limited%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Investment%20Holding%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/JERSEY%20INTERNATIONAL%20BUSINESS%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/JERSEY%20PROPERTY%20UNIT%20TRUST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/JERSEY%20UNIT%20TRUST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/JETEC%20INGENIERIE%20SA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/JOINT%20STOCK%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/JOINT%20VENTURE%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/JOINT-STOCK%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/JSC> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/JULKINEN%20OSAKEYHTIO> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Julkinen_osakeyhtiö> .
<http://openleis.com/legal_entities/search/legal_form/JURIDICA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Jersey%20Property%20Unit%20Trusts> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Joint%20Stock%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Joint%20municipal%20authority> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Joint%20stock%20company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Joint-stock%20company%20(AB)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Joint-stock%20company%20(AG)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Joint-stock%20company%20(S.A.)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Joint-stock%20company%20(SA)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Joint-stock%20company%20(d.d.)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Julkinen%20Osakeyhtio> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Julkinen_osakeyhtiö> .
<http://openleis.com/legal_entities/search/legal_form/Juristische%20Person%20des%20öffentlichen%20Rechts> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KABUSHIKI%20KAISHA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KOMADITNI%20SPOLECNOST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KOMANDITINE%20UKINE%20BENDRIJA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KOMANDITNA%20SPOLOCNOST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KOMANDITNÁ%20SPOLOČNOSŤ> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KOMMANDITAKTIESELSKAB/PARTNERSELSKAB> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KOMMANDITBOLAG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KOMMANDITGESELLSCHAFT%20AUF%20AKTIEN> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://de.dbpedia.org/resource/Kommanditgesellschaft_auf_Aktien> .
<http://openleis.com/legal_entities/search/legal_form/KOMMANDITGESELLSCHAFT> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Kommanditgesellschaft> .
<http://openleis.com/legal_entities/search/legal_form/KOMMANDITSELSKAB> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Kommanditselskab> .
<http://openleis.com/legal_entities/search/legal_form/KOMMANDITTIYHTIO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KOMMANDITTSELSKAP> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Kommandittselskap> .
<http://openleis.com/legal_entities/search/legal_form/KOMMUN> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KOMMUNALFÖRBUND> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KOMMUNALT%20FORETAK> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KOOPERATINĖ%20BENDROVĖ> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KOOPERATĪVĀ%20SABIEDRĪBA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KORLATOLT%20FELELOSSEGU%20TARSASAG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/KUWAITI%20JOINT%20STOCK%20COMPANY%20(%20CLOSED)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Kabushiki%20Kaisha> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Kerkgenootschap> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Kft.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Kft> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Kollektivtreuhänderschaft> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Komaditni%20Spolecnost> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Komanditinė%20ūkinė%20bendrija> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Komanditno%20Druzhestvo> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Komanditní%20společnost> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Komanditsabiedriba> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Kommanditbolag> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Kommanditgesellschaft%20auf%20Aktien> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://de.dbpedia.org/resource/Kommanditgesellschaft_auf_Aktien> .
<http://openleis.com/legal_entities/search/legal_form/Kommanditgesellschaft> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Kommanditgesellschaft> .
<http://openleis.com/legal_entities/search/legal_form/Kommanditselskab> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Kommanditselskab> .
<http://openleis.com/legal_entities/search/legal_form/Kommandittiyhtio> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Kommandittselskap> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Kooperatīvā%20sabiedrība> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Korlatolt%20Felelossegu%20Tarsasag> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Kozkereseti%20Tarsasag> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Kozos%20Vallalat> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Kraj> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Körperschaft%20des%20öffentlichen%20Rechts> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Körperschaft%20des%20öffentlichenRechts> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Körperschaft%20öffentlichen%20Rechts> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Külföldi%20vállalkozás%20magyarországi%20fióktelepe> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LCPA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LENKELTMANDSFIRMA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LILMITADA> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://es.dbpedia.org/resource/Sociedad_de_responsabilidad_limitada> .
<http://openleis.com/legal_entities/search/legal_form/LIMITADA%20> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://es.dbpedia.org/resource/Sociedad_de_responsabilidad_limitada> .
<http://openleis.com/legal_entities/search/legal_form/LIMITADA%20EMPRESAS%20DE%20PEQUENO%20PORTE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LIMITADA%20MICRO%20EMPRESA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LIMITADA%20UNIPERSONAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LIMITADA> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://es.dbpedia.org/resource/Sociedad_de_responsabilidad_limitada> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20BY%20GUARANTEE%20-%20MUTUAL%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20BY%20SHARES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20EXEMPT%20PRIVATE%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20LIABILITY%20COMPANY%20(D.O.O.)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20LIABILITY%20COMPANY%20(SRL)> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://it.dbpedia.org/resource/Società_a_responsabilità_limitata> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20LIABILITY%20COMPANY%20D.O.O.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20LIABILITY%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_liability_company> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20LIABILITY%20LIMITED%20PARTNERSHIP> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_liability_partnership> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20LIABILITY%20PARTNERSHIP> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_liability_partnership> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20PARTNERSHIP> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_partnership> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20PARTNERSHIPS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20PRIVATE%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED%20SIRKET> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_partnership> .
<http://openleis.com/legal_entities/search/legal_form/LIMITED> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LIMITEE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LLC> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_liability_company> .
<http://openleis.com/legal_entities/search/legal_form/LOCAL%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LTAB> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LTD%20-%20Limited%20company%20-%20s.r.o.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LTD> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Private_company_limited_by_shares> .
<http://openleis.com/legal_entities/search/legal_form/LTUA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LUSA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LUSR> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LUSS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LVAS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/LVOT> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limitada%20[%20Limited,%20Ltd%20]> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://es.dbpedia.org/resource/Sociedad_de_responsabilidad_limitada> .
<http://openleis.com/legal_entities/search/legal_form/Limitada> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://es.dbpedia.org/resource/Sociedad_de_responsabilidad_limitada> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20(Ltd.)> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Private_company_limited_by_shares> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Company%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Private_company_limited_by_shares> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Liability%20Comapny> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Liability%20Company%20(Kft.)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Liability%20Company(ApS)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Liability%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_liability_company> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Liability%20Limited%20Partnership> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_liability_partnership> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Liability%20Partnership%20(LLP)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Liability%20Partnership%20LLP%20(Companies%20Registration%20Office%20Cardiff%20onder%20nummer%20OC339304)> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_liability_partnership> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Liability%20Partnership> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_liability_partnership> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Liabilty%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Libility%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Partnership> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_partnership> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Sirket> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20by%20Shares> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20company> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Private_company_limited_by_shares> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(B.V.)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(GmBH)> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Gesellschaft_mit_beschränkter_Haftung> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(GmbH)> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Gesellschaft_mit_beschränkter_Haftung> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(Kft)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(Kft.)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(LDA)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(LLC)> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_liability_company> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(Limited)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(Ltd.)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(OOD)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(SRL)> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://it.dbpedia.org/resource/Società_a_responsabilità_limitata> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(Sp.z%20o.o.)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(d.o.o.)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company%20(s.o.o)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20company> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_liability_company> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20cooperative%20(z.o.o.)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20liability%20partnership%20(LLP)> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Limited_liability_partnership> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20partnership%20(KG)> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://de.dbpedia.org/resource/Kommanditgesellschaft> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20partnership> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited%20Şirket> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Limited> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Private_company_limited_by_shares> .
<http://openleis.com/legal_entities/search/legal_form/Limitee> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Ltd.%20GmbH%20&%20Co.%20KG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Ltd.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Lutheran%20Church> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/M-46.230> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MAHLE%20COMPOSANTS%20MOTEUR%20FRANCE%20SAS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MAHLE%20FRANCE%20SAS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MAJOR> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MAN%20FINANCIAL%20SERVICES%20S.A.S.> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MANUFACTURE%20GENERALE%20HORLOGERE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MASALE%20PRODUCTES%20SL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MASTER%20FUND> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MERCEDES-BENZ%20BANK%20AG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MP%20GLASS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MTPL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MULTILATERAL%20BANK> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MULTILATERAL%20DEVELOPMENT%20BANK> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MULTILATERAL%20DEVELOPMENT%20INSTITUTION%20ESTABLISHED%20AND%20OWNED%20BY%20THE%20FIVE%20NORDIC%20COUNTRIES> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUNCIPIALITY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUNICIPALITY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUA%20ASSICURAZIONE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUA%20DE%20SEGUROS%20Y%20REASEGUROS%20A%20PRIMA%20FIJA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUA%20DE%20SEGUROS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUAL%20ASSURANCE%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUAL%20BUILDING%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUAL%20FUND> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUAL%20SOCIETY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUALIDAD%20DE%20PREVISION%20SOCIAL%20A%20PRIMA%20FIJA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUALIDAD%20DE%20PREVISION%20SOCIAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUALIDAD%20DE%20PREVISIÓN%20SOCIAL%20A%20PRIMA%20FIJA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUALIDAD%20DE%20PREVISIÓN%20SOCIAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUALIDAD%20DE%20PREVISON%20SOCIAL%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUALIDAD%20DE%20PREVISON%20SOCIAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUALIDAD%20PREVISIÓN%20SOCIAL%20A%20PRIMA%20FIJA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUALIDAD> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUALITAT%20DE%20PREVISIO%20SOCIAL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/MUTUELLE%20NATIONALE%20RETRAITE%20DES%20ARTISANS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Maatschap> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Miteigentumsfonds%20nach%20österreichischem%20Recht%20(InvFG%20/%20AIFMG)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Municipality> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Mutua%20de%20Seguros%20a%20Prima%20Fija> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Mutua%20de%20Seguros%20y%20Reaseguros%20a%20Prima%20Fija> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Mutua> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Mutual%20insurance%20company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/N.S.%20UNLIMITED%20LIABILITY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/N.V.> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Naamloze_vennootschap> .
<http://openleis.com/legal_entities/search/legal_form/NAAMLOZE%20VENNOOTSCHAP> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Naamloze_vennootschap> .
<http://openleis.com/legal_entities/search/legal_form/NINGUNO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/NLBV> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/NLNA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/NO%20APLICA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/NOAK> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/NON%20CELLULAR%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/NON-LEGAL%20ENTITY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/NON-PROFIT%20ASSOCIATION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/NV> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Naamloze_vennootschap> .
<http://openleis.com/legal_entities/search/legal_form/NYILVANOSAN%20MUKODO%20RESZVENYTARSASAG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/NYILVÁNOSAN%20MŰKÖDŐ%20RÉSZVÉNYTÁRS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/NYILVÁNOSAN%20MŰKÖDŐ%20RÉSZVÉNYTÁRSASÁG> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Naamloze%20Vennootschap%20(Handelsregister%20te%20Curacao%20onder%20nummer%2045283)> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Naamloze_vennootschap> .
<http://openleis.com/legal_entities/search/legal_form/Naamloze%20Vennootschap%20(Handelsregister%20te%20Curaçao%20onder%20nummer%205778)> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Naamloze_vennootschap> .
<http://openleis.com/legal_entities/search/legal_form/Naamloze%20Vennootschap> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Naamloze_vennootschap> .
<http://openleis.com/legal_entities/search/legal_form/Nadace> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Nadační%20fond> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Nationalised%20Banks> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Niet%20Formeel%20Buitenlandse%20Vennootschap%20%20(Handelsregister%20te%20Bremen%20onder%20nummer%20HRB%2027706)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Niet%20Formeel%20Buitenlandse%20Vennootschap%20(Handelsregister%20te%20Bremen%20onder%20nummer%20HRB%2027704)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Non-Banking%20Finance%20Companies%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Non-profit%20association> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Nyilvanosan%20Mukodo%20Reszvenytarsasag> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Národní%20podnik> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OBSHCHESTVO%20S%20OGRANICHENNOY%20OTVETSTVENNOSTYU> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OEIC%20-%20OPEN%20ENDED%20INVESTMENT%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OFFENE%20GESELLSCHAFT> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://de.dbpedia.org/resource/Offene_Gesellschaft_(Österreich)> .
<http://openleis.com/legal_entities/search/legal_form/OFFENE%20HANDELSGESELLSCHAFT> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://de.dbpedia.org/resource/Offene_Handelsgesellschaft> .
<http://openleis.com/legal_entities/search/legal_form/OMORYTHMOS%20ETERIA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OPEN%20ENDED%20EXEMPTED%20SEGREGATED%20PORTFOLIO%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OPEN%20ENDED%20INVESTMENT%20COMPANY%20(OEIC)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OPEN%20ENDED%20MULTI%20CLASS%20SPECIALIST%20FUND%20WITH%20LIMITED%20LIABILITY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OPEN%20JOINT-STOCK%20COMPANY> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ORDEN%20RELIGIOSA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ORGANISMO%20PÚBLICO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/ORGANIZACNI%20SLOZKA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OSAKEYHTIO> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Osakeyhtiö> .
<http://openleis.com/legal_entities/search/legal_form/OSAUHING> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OSUUSKUNTA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OTHER%20-%20AKCIOVA%20SPOLOCNOST> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Akciová_společnost> .
<http://openleis.com/legal_entities/search/legal_form/OTHER%20-%20DRUZSTVO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OTHER%20-%20FYZICKA%20OSOBA-%20PODNIKATEL> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OTHER%20-%20KOMANDITNA%20SPOLOCNOST> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OTHER%20-%20SPOLOCNOST%20S%20RUCENIM%20OBMEDZENYM> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Spoločdnosť_s_ručením_obmedzeným> .
<http://openleis.com/legal_entities/search/legal_form/OTHER%20-%20ZAUJMOVE%20ZDRUZENIE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OTHER%20COMPANY%20TYPE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OTHER> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/OTKRYTOYE%20AKTSIONERNOYE%20OBSHCHESTVO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Obec%20nebo%20městská%20část%20hlavního%20města%20Prahy> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Obec> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Obecně%20prospěšná%20společnost> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Obshchestvo%20S%20Ogranichennoy%20Otvetstvennostyu> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Odborová%20organizace%20a%20organizace%20zaměstnavatelů> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Odštěpný%20závod> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Offene%20Gesellschaft> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://de.dbpedia.org/resource/Offene_Gesellschaft_(Österreich)> .
<http://openleis.com/legal_entities/search/legal_form/Offene%20Handelsgesellschaft> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://de.dbpedia.org/resource/Offene_Handelsgesellschaft> .
<http://openleis.com/legal_entities/search/legal_form/Onderlinge%20Waarborg%20Maatschappij> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Open%20Joint-Stock%20Company> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Orden%20Religiosa> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Organisasjonsledd> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Organisme%20de%20Financement%20de%20Pensions%20> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Organisme%20de%20placement%20collectif%20en%20valeurs%20mobilières> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Organisme%20de%20retraite%20à%20adhésion%20non%20obligatoire> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Organisme%20gérant%20un%20régime%20de%20protection%20sociale%20à%20adhésion%20obligatoire> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Organisme%20mutualiste> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Organisme%20professionnel> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Organismo%20Público-Universidad> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Organizační%20složka%20státu> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Organizační%20složka%20zahraniční%20právnické%20osoby> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Osakeyhtio> a <http://dbpedia.org/resource/Types_of_business_entity> ;
owl:sameAs <http://dbpedia.org/resource/Osakeyhtiö> .
<http://openleis.com/legal_entities/search/legal_form/Osauhing> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Ostatní> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Other%20foundation> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Other%20juridical%20person%20under%20public%20law> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Other%20juridical%20persons> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Other> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Otkriytoe%20Aktsyonernoye%20Obshchestvo> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/Otkrytoye%20Aktsionernoye%20Obshchestvo> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PARTNERSHIP> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PCUP%20(PUBLIC%20INTEREST%20COLLECTIVE%20ENTITY)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PENANAMAN%20MODAL%20ASING> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PENSION%20FOUNDATION> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PENSION%20FUND> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PENSION%20SCHEME> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PERSEROAN%20TERBATAS,%20TERBUKA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PERSEROAN%20TERBUKA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PERSONA%20GIURIDICA%20PRIVATA,%20SENZA%20FINE%20DI%20LUCRO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PERSONA%20JURIDICA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PHYTORUS> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PLAN%20DE%20PREVISION%20[EPSV]> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PLC> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PLKA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PLOT> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PLSA> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PLSC> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PLSJ> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PLSK> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PLZK> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PLZO> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PRI/LBG/NSC%20(PRIVATE,%20LIMITED%20BY%20GUARANTEE,%20NO%20SHARE%20CAPITAL,%20USE%20OF%20'LIMITED'%20EXEMPTION)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PRI/LTD%20BY%20GUAR/NSC%20(PRIVATE,%20LIMITED%20BY%20GUARANTEE,%20NO%20SHARE%20CAPITAL)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PRI/LTD%20BY%20GUAR/NSC> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PRI/LTD/GUAR/NSC%20(PRIVATE,%20LIMITED%20BY%20GUARANTEE,%20NO%20SHARE%20CAPITAL)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PRIMÆRKOMMUNE> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PRIV%20LTD%20SECT.%2030%20(PRIVATE%20LIMITED%20COMPANY,%20SECTION%2030%20OF%20THE%20COMPANIES%20ACT)> a <http://dbpedia.org/resource/Types_of_business_entity> .
<http://openleis.com/legal_entities/search/legal_form/PRIVAT%20INSTITUTION> a <http://dbpedia.org/resource/Types_of_business_entity> .