fluffix 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.rspec +1 -0
- data/Gemfile +17 -0
- data/Gemfile.lock +92 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +22 -0
- data/Rakefile +48 -0
- data/VERSION +1 -0
- data/entity_types_edited.yml +930 -0
- data/features/association.feature +0 -0
- data/features/bank.feature +13 -0
- data/features/company.feature +19 -0
- data/features/cooperative.feature +15 -0
- data/features/corporation.feature +47 -0
- data/features/inc.feature +12 -0
- data/features/l3c.feature +15 -0
- data/features/ltd.feature +15 -0
- data/features/pac.feature +14 -0
- data/features/plc.feature +17 -0
- data/features/sc.feature +14 -0
- data/features/simple.feature +26 -0
- data/features/spa.feature +12 -0
- data/features/step_definitions/sluffix_steps.rb +24 -0
- data/features/support/env.rb +29 -0
- data/lib/fluffix.rb +21 -0
- data/lib/tasks/get.rb +86 -0
- data/spec/fluffix_spec.rb +7 -0
- data/spec/spec_helper.rb +29 -0
- metadata +186 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 841d36ac1a5fdc842eb9ba0958540d320d3d6b50
|
4
|
+
data.tar.gz: b4bb7f0f5f98e26a085450578e945b873bf05015
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 613beea0a25f53297871bd83a565f7ef259f9611307dc6d924b2f6c13b19ac98c6133a28c31610cfd9d21dd943809ab6c23c373f9e3275acba748b380420c48f
|
7
|
+
data.tar.gz: 93f2c75061e8a0b7fc14c246009effbef4d6170a2d839f95255e8ab3fb3b731c032a7cffbefd5375ca8118f4ac87b93f83aea61c54a3ce2edc71494fa57ca766
|
data/.document
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/Gemfile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
source "http://rubygems.org"
|
2
|
+
# Add dependencies required to use your gem here.
|
3
|
+
# Example:
|
4
|
+
# gem "activesupport", ">= 2.3.5"
|
5
|
+
|
6
|
+
# Add dependencies to develop your gem here.
|
7
|
+
# Include everything needed to run rake, tests, features, etc.
|
8
|
+
group :development do
|
9
|
+
gem "rspec", "~> 2.8.0"
|
10
|
+
gem "yard", "~> 0.7"
|
11
|
+
gem "rdoc", "~> 3.12"
|
12
|
+
gem "cucumber", ">= 0"
|
13
|
+
gem "bundler", "~> 1.0"
|
14
|
+
gem "jeweler", "~> 2.0.1"
|
15
|
+
gem "simplecov", ">= 0"
|
16
|
+
gem "awesome_print"
|
17
|
+
end
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,92 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
addressable (2.3.8)
|
5
|
+
awesome_print (1.6.1)
|
6
|
+
builder (3.2.2)
|
7
|
+
cucumber (2.1.0)
|
8
|
+
builder (>= 2.1.2)
|
9
|
+
cucumber-core (~> 1.3.0)
|
10
|
+
diff-lcs (>= 1.1.3)
|
11
|
+
gherkin3 (~> 3.1.0)
|
12
|
+
multi_json (>= 1.7.5, < 2.0)
|
13
|
+
multi_test (>= 0.1.2)
|
14
|
+
cucumber-core (1.3.0)
|
15
|
+
gherkin3 (~> 3.1.0)
|
16
|
+
descendants_tracker (0.0.4)
|
17
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
18
|
+
diff-lcs (1.1.3)
|
19
|
+
docile (1.1.5)
|
20
|
+
faraday (0.9.2)
|
21
|
+
multipart-post (>= 1.2, < 3)
|
22
|
+
gherkin3 (3.1.2)
|
23
|
+
git (1.2.9.1)
|
24
|
+
github_api (0.13.0)
|
25
|
+
addressable (~> 2.3)
|
26
|
+
descendants_tracker (~> 0.0.4)
|
27
|
+
faraday (~> 0.8, < 0.10)
|
28
|
+
hashie (>= 3.4)
|
29
|
+
multi_json (>= 1.7.5, < 2.0)
|
30
|
+
nokogiri (~> 1.6.6)
|
31
|
+
oauth2
|
32
|
+
hashie (3.4.3)
|
33
|
+
highline (1.7.8)
|
34
|
+
jeweler (2.0.1)
|
35
|
+
builder
|
36
|
+
bundler (>= 1.0)
|
37
|
+
git (>= 1.2.5)
|
38
|
+
github_api
|
39
|
+
highline (>= 1.6.15)
|
40
|
+
nokogiri (>= 1.5.10)
|
41
|
+
rake
|
42
|
+
rdoc
|
43
|
+
json (1.8.3)
|
44
|
+
jwt (1.5.2)
|
45
|
+
mini_portile2 (2.0.0)
|
46
|
+
multi_json (1.11.2)
|
47
|
+
multi_test (0.1.2)
|
48
|
+
multi_xml (0.5.5)
|
49
|
+
multipart-post (2.0.0)
|
50
|
+
nokogiri (1.6.7)
|
51
|
+
mini_portile2 (~> 2.0.0.rc2)
|
52
|
+
oauth2 (1.0.0)
|
53
|
+
faraday (>= 0.8, < 0.10)
|
54
|
+
jwt (~> 1.0)
|
55
|
+
multi_json (~> 1.3)
|
56
|
+
multi_xml (~> 0.5)
|
57
|
+
rack (~> 1.2)
|
58
|
+
rack (1.6.4)
|
59
|
+
rake (10.4.2)
|
60
|
+
rdoc (3.12.2)
|
61
|
+
json (~> 1.4)
|
62
|
+
rspec (2.8.0)
|
63
|
+
rspec-core (~> 2.8.0)
|
64
|
+
rspec-expectations (~> 2.8.0)
|
65
|
+
rspec-mocks (~> 2.8.0)
|
66
|
+
rspec-core (2.8.0)
|
67
|
+
rspec-expectations (2.8.0)
|
68
|
+
diff-lcs (~> 1.1.2)
|
69
|
+
rspec-mocks (2.8.0)
|
70
|
+
simplecov (0.11.1)
|
71
|
+
docile (~> 1.1.0)
|
72
|
+
json (~> 1.8)
|
73
|
+
simplecov-html (~> 0.10.0)
|
74
|
+
simplecov-html (0.10.0)
|
75
|
+
thread_safe (0.3.5)
|
76
|
+
yard (0.8.7.6)
|
77
|
+
|
78
|
+
PLATFORMS
|
79
|
+
ruby
|
80
|
+
|
81
|
+
DEPENDENCIES
|
82
|
+
awesome_print
|
83
|
+
bundler (~> 1.0)
|
84
|
+
cucumber
|
85
|
+
jeweler (~> 2.0.1)
|
86
|
+
rdoc (~> 3.12)
|
87
|
+
rspec (~> 2.8.0)
|
88
|
+
simplecov
|
89
|
+
yard (~> 0.7)
|
90
|
+
|
91
|
+
BUNDLED WITH
|
92
|
+
1.10.6
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2015 John Jansen
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
= Fluffix
|
2
|
+
|
3
|
+
Removes business entity type suffixes from strings.
|
4
|
+
source: https://en.wikipedia.org/wiki/Types_of_business_entity
|
5
|
+
|
6
|
+
{<img src="https://codeship.com/projects/904f97a0-7d55-0133-1844-629a1689a2f6/status?branch=master" alt="Status?branch=master" />}[https://codeship.com/projects/120166]
|
7
|
+
|
8
|
+
== Contributing to Fluffix
|
9
|
+
|
10
|
+
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
11
|
+
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
12
|
+
* Fork the project.
|
13
|
+
* Start a feature/bugfix branch.
|
14
|
+
* Commit and push until you are happy with your contribution.
|
15
|
+
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
16
|
+
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
17
|
+
|
18
|
+
== Copyright
|
19
|
+
|
20
|
+
Copyright (c) 2015 John Jansen. See LICENSE.txt for
|
21
|
+
further details.
|
22
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'bundler'
|
5
|
+
begin
|
6
|
+
Bundler.setup(:default, :development)
|
7
|
+
rescue Bundler::BundlerError => e
|
8
|
+
$stderr.puts e.message
|
9
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
10
|
+
exit e.status_code
|
11
|
+
end
|
12
|
+
require 'rake'
|
13
|
+
|
14
|
+
require 'jeweler'
|
15
|
+
Jeweler::Tasks.new do |gem|
|
16
|
+
# gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
|
17
|
+
gem.name = "fluffix"
|
18
|
+
gem.homepage = "http://github.com/johnjansen/fluffix"
|
19
|
+
gem.license = "MIT"
|
20
|
+
gem.summary = %Q{remove or adds suffixes (from/to) company names}
|
21
|
+
gem.description = %Q{Removes or adds business entity type / tld suffixes (to/from) company names.}
|
22
|
+
gem.email = "john.jansen@me.com"
|
23
|
+
gem.authors = ["John Jansen"]
|
24
|
+
# dependencies defined in Gemfile
|
25
|
+
end
|
26
|
+
Jeweler::RubygemsDotOrgTasks.new
|
27
|
+
|
28
|
+
require 'rspec/core'
|
29
|
+
require 'rspec/core/rake_task'
|
30
|
+
RSpec::Core::RakeTask.new(:spec) do |spec|
|
31
|
+
spec.pattern = FileList['spec/**/*_spec.rb']
|
32
|
+
end
|
33
|
+
|
34
|
+
desc "Code coverage detail"
|
35
|
+
task :simplecov do
|
36
|
+
ENV['COVERAGE'] = "true"
|
37
|
+
Rake::Task['spec'].execute
|
38
|
+
end
|
39
|
+
|
40
|
+
require 'cucumber/rake/task'
|
41
|
+
Cucumber::Rake::Task.new(:features)
|
42
|
+
|
43
|
+
task :default => :spec
|
44
|
+
|
45
|
+
require 'yard'
|
46
|
+
YARD::Rake::YardocTask.new
|
47
|
+
|
48
|
+
require 'tasks/get'
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.0
|
@@ -0,0 +1,930 @@
|
|
1
|
+
# https://www.harborcompliance.com/information/company-suffixes
|
2
|
+
---
|
3
|
+
- - - (a )?(pro\.?(fessional)?|chartered|service|svc\.?|(non ?|not for )profit)? ?corp(oration)?
|
4
|
+
- p\.?(a|c)
|
5
|
+
- s\.?c
|
6
|
+
- inc(orporated)?
|
7
|
+
- bank(ing|ers)?
|
8
|
+
- ((and|&|\+|trust) )?co(mpany)?
|
9
|
+
- (limited|ltd)( liability (co(mpany)?)?)?
|
10
|
+
- deposit
|
11
|
+
- credit union
|
12
|
+
- societa per azioni
|
13
|
+
- s\.?p\.?a
|
14
|
+
- (pro\.?(fessional)? )?assoc(iation)?
|
15
|
+
- club
|
16
|
+
- foundation
|
17
|
+
- fund
|
18
|
+
- institute
|
19
|
+
- society
|
20
|
+
- union
|
21
|
+
- syndicate
|
22
|
+
- church
|
23
|
+
- college
|
24
|
+
- university
|
25
|
+
- chartered
|
26
|
+
- (p|l)?\.?(l\.?){0,2}c
|
27
|
+
- (l|1)\.?3\.?c
|
28
|
+
- league
|
29
|
+
- committee
|
30
|
+
- co\-?op(erative)?
|
31
|
+
# https://www.harborcompliance.com/information/company-suffixes ENDS
|
32
|
+
|
33
|
+
|
34
|
+
- - - sh.a.
|
35
|
+
- shoqeri aksionere
|
36
|
+
- - - sh.p.k.
|
37
|
+
- shoqeri me pergjegjesi te kufizuar
|
38
|
+
- - - shoqeri komandite
|
39
|
+
- - - shoqeri kolektive
|
40
|
+
- - - s.a.
|
41
|
+
- sociedad anónima
|
42
|
+
- - - s.r.l.
|
43
|
+
- sociedad de responsabilidad limitada
|
44
|
+
- - ltd.
|
45
|
+
- - - s.c.s.
|
46
|
+
- sociedad en comandita simple
|
47
|
+
- - - soc.col.
|
48
|
+
- sociedad colectiva
|
49
|
+
- - - s.e.
|
50
|
+
- sociedad del estado
|
51
|
+
- - - ltd.
|
52
|
+
- limited
|
53
|
+
- - - pty. ltd.
|
54
|
+
- proprietary limited company
|
55
|
+
- - - gen
|
56
|
+
- genossenschaft
|
57
|
+
- erwerbsgenossenschaft
|
58
|
+
- wirtschaftsgenossenschaft
|
59
|
+
- - - privatstiftung
|
60
|
+
- - - verein
|
61
|
+
- - - e.u.
|
62
|
+
- eingetragenes einzelunternehmen
|
63
|
+
- - - kapitalgesellschaften
|
64
|
+
- - ag
|
65
|
+
- aktiengesellschaft
|
66
|
+
- - gmbh
|
67
|
+
- gesellschaft mit beschränkter haftung
|
68
|
+
- - - ag
|
69
|
+
- aktiengesellschaft
|
70
|
+
- - - gmbh
|
71
|
+
- gesellschaft mit beschränkter haftung
|
72
|
+
- - - personengesellschaften
|
73
|
+
- - unincorporated
|
74
|
+
- - stg
|
75
|
+
- stille gesellschaft
|
76
|
+
- - gesbr
|
77
|
+
- gesellschaft des bürgerlichen rechts
|
78
|
+
- - incorporated
|
79
|
+
- - og
|
80
|
+
- offene gesellschaft
|
81
|
+
- - kg
|
82
|
+
- kommanditgesellschaft
|
83
|
+
- - - unincorporated
|
84
|
+
- - stg
|
85
|
+
- stille gesellschaft
|
86
|
+
- - gesbr
|
87
|
+
- gesellschaft des bürgerlichen rechts
|
88
|
+
- - - stg
|
89
|
+
- stille gesellschaft
|
90
|
+
- - - gesbr
|
91
|
+
- gesellschaft des bürgerlichen rechts
|
92
|
+
- - - incorporated
|
93
|
+
- - og
|
94
|
+
- offene gesellschaft
|
95
|
+
- - kg
|
96
|
+
- kommanditgesellschaft
|
97
|
+
- - - og
|
98
|
+
- offene gesellschaft
|
99
|
+
- - - kg
|
100
|
+
- kommanditgesellschaft
|
101
|
+
- - - "ААТ"
|
102
|
+
- "Адкрытае акцыянернае таварыства adkritaye aktsiyanernaye tavaristva"
|
103
|
+
- - - "ЗАТ"
|
104
|
+
- "Закрытае ацыянернае таварыства zakritaye aktsiyanernaye tavaristva"
|
105
|
+
- - - "ТАА"
|
106
|
+
- "Таварыства з абмежаванай адказнасцю tavaristva z abmezhavanaj adkaznastsiu"
|
107
|
+
- - - foundations
|
108
|
+
- - private stichting
|
109
|
+
- fondation privée
|
110
|
+
- - stichting van openbaar nut
|
111
|
+
- fondation d'utilité publique
|
112
|
+
- - - private stichting
|
113
|
+
- fondation privée
|
114
|
+
- - - stichting van openbaar nut
|
115
|
+
- fondation d'utilité publique
|
116
|
+
- - - coentreprises
|
117
|
+
- joint ventures
|
118
|
+
- - esv
|
119
|
+
- economisch samenwerkingsverband
|
120
|
+
- gie
|
121
|
+
- groupement d'intérêt économique
|
122
|
+
- - stille handelsvennootschap
|
123
|
+
- société interne
|
124
|
+
- - tijdelijke handelsvennootschap
|
125
|
+
- société momentanée
|
126
|
+
- - - esv
|
127
|
+
- economisch samenwerkingsverband
|
128
|
+
- gie
|
129
|
+
- groupement d'intérêt économique
|
130
|
+
- - - stille handelsvennootschap
|
131
|
+
- société interne
|
132
|
+
- - - tijdelijke handelsvennootschap
|
133
|
+
- société momentanée
|
134
|
+
- - - vzw
|
135
|
+
- vereniging zonder winstoogmerk
|
136
|
+
- asbl
|
137
|
+
- association sans but lucratif
|
138
|
+
- vog
|
139
|
+
- vereinigung ohne gewinnerzielungsabsicht
|
140
|
+
- - - vereniging in deelneming
|
141
|
+
- sep
|
142
|
+
- société en participation
|
143
|
+
- - - feitelijke vereniging
|
144
|
+
- société de fait
|
145
|
+
- - - eenmanszaak
|
146
|
+
- entreprise individuelle
|
147
|
+
- - - vof
|
148
|
+
- vennootschap onder firma
|
149
|
+
- snc
|
150
|
+
- société en nom collectif
|
151
|
+
- - - comm.v
|
152
|
+
- gewone commanditaire vennootschap
|
153
|
+
- scs
|
154
|
+
- société en commandite simple
|
155
|
+
- - - comm.va
|
156
|
+
- commanditaire vennootschap op aandelen
|
157
|
+
- sca
|
158
|
+
- société en commandite par actions
|
159
|
+
- - - bvba
|
160
|
+
- besloten vennootschap met beperkte aansprakelijkheid
|
161
|
+
- sprl
|
162
|
+
- société privée à responsabilité limitée
|
163
|
+
- - - nv
|
164
|
+
- naamloze vennootschap
|
165
|
+
- sa
|
166
|
+
- societé anonyme
|
167
|
+
- - - co-operative companies
|
168
|
+
- - cvba
|
169
|
+
- coöperatieve vennootschap met beperkte aansprakelijkheid
|
170
|
+
- scrl
|
171
|
+
- société coopérative à responsabilité limitée
|
172
|
+
- - cvoa
|
173
|
+
- coöperatieve vennootschap met onbeperkte aansprakelijkheid
|
174
|
+
- scri
|
175
|
+
- société coopérative à responsabilité illimitée
|
176
|
+
- - - cvba
|
177
|
+
- coöperatieve vennootschap met beperkte aansprakelijkheid
|
178
|
+
- scrl
|
179
|
+
- société coopérative à responsabilité limitée
|
180
|
+
- - - cvoa
|
181
|
+
- coöperatieve vennootschap met onbeperkte aansprakelijkheid
|
182
|
+
- scri
|
183
|
+
- société coopérative à responsabilité illimitée
|
184
|
+
- - - d.d.
|
185
|
+
- dioničko društvo
|
186
|
+
- - - a.d.
|
187
|
+
- akcionarsko društvo
|
188
|
+
- - - d.n.o.
|
189
|
+
- društvo s neograničenom solidarnom odgovornošću
|
190
|
+
- - - d.o.o.
|
191
|
+
- društvo s ograničenom odgovornošću
|
192
|
+
- - - k.d.
|
193
|
+
- komanditno društvo
|
194
|
+
- - - s.p.
|
195
|
+
- samostalni preduzetnik
|
196
|
+
- - - sociedade limitada
|
197
|
+
- ltda.
|
198
|
+
- - - s.a.
|
199
|
+
- sociedade anônima
|
200
|
+
- - - sociedade em comandita simples
|
201
|
+
- - - sociedade em nome coletivo
|
202
|
+
- - - sociedade em conta de participação
|
203
|
+
- - - sociedade em comum
|
204
|
+
- - - empresa individual
|
205
|
+
- firma individual
|
206
|
+
- - - micro empreendedor individual
|
207
|
+
- - - empresa pública
|
208
|
+
- - - sociedade de economia mista
|
209
|
+
- - - associação em sentido estrito
|
210
|
+
- sem finalidade lucrativa
|
211
|
+
- - - organização não governamental
|
212
|
+
- - - organização da sociedade civil de interesse público
|
213
|
+
- - - organização social
|
214
|
+
- - - serviços sociais autônomos
|
215
|
+
- - - fundação privada
|
216
|
+
- - - fundação pública
|
217
|
+
- - - ood
|
218
|
+
- ООД
|
219
|
+
- drujestvo s ogranichena otgovornost
|
220
|
+
- дружество с ограничена отговорност
|
221
|
+
- - - kd
|
222
|
+
- КД
|
223
|
+
- komanditno druzhestvo
|
224
|
+
- командитно дружество
|
225
|
+
- - - sd
|
226
|
+
- СД
|
227
|
+
- subiratelno druzhestvo
|
228
|
+
- събирателно дружество
|
229
|
+
- - - pte ltd.
|
230
|
+
- private limited company
|
231
|
+
- - - plc ltd.
|
232
|
+
- public limited company
|
233
|
+
- - - state company
|
234
|
+
- - - state joint venture company
|
235
|
+
- - - s.a.
|
236
|
+
- sociedad anónima
|
237
|
+
- - - ltda.
|
238
|
+
- sociedad de responsabilidad limitada
|
239
|
+
- - - "有限公司"
|
240
|
+
- - - "股份有限公司"
|
241
|
+
- - - s.a.
|
242
|
+
- sociedad anónima
|
243
|
+
- - - ltda.
|
244
|
+
- sociedad de responsabilidad limitada
|
245
|
+
- - - d.d.
|
246
|
+
- dioničko društvo
|
247
|
+
- - - d.o.o.
|
248
|
+
- društvo s ograničenom odgovornošću
|
249
|
+
- - - j.t.d.
|
250
|
+
- javno trgovačko društvo
|
251
|
+
- - - k.d.
|
252
|
+
- komanditno društvo
|
253
|
+
- - - obrt
|
254
|
+
- - - a.s.
|
255
|
+
- akc. spol.
|
256
|
+
- akciová společnost
|
257
|
+
- - - s.r.o.
|
258
|
+
- spol. s r.o.
|
259
|
+
- společnost s ručením omezeným
|
260
|
+
- - - v.o.s.
|
261
|
+
- veřejná obchodní společnost
|
262
|
+
- - - k.s.
|
263
|
+
- komanditní společnost
|
264
|
+
- - - o.p.s.
|
265
|
+
- obecně prospěšná společnost
|
266
|
+
- - - forening
|
267
|
+
- - - i/s
|
268
|
+
- interessentskab
|
269
|
+
- - - s.a.
|
270
|
+
- sociedad anónima
|
271
|
+
- - - s.a.s
|
272
|
+
- sociedad anónima simplificada
|
273
|
+
- - - srl.
|
274
|
+
- sociedad de resposabilidad limitada
|
275
|
+
- - - eirl.
|
276
|
+
- empresa individual de responsabilidad limitada
|
277
|
+
- - - s.a.
|
278
|
+
- sociedad anónima
|
279
|
+
- - - cía. ltda.
|
280
|
+
- compañía limitada
|
281
|
+
- - - fie
|
282
|
+
- füüsilisest isikust ettevõtja
|
283
|
+
- - - partnerships
|
284
|
+
- - uÜ
|
285
|
+
- usaldusühing
|
286
|
+
- - tÜ
|
287
|
+
- täisühing
|
288
|
+
- - - uÜ
|
289
|
+
- usaldusühing
|
290
|
+
- - - tÜ
|
291
|
+
- täisühing
|
292
|
+
- - - companies
|
293
|
+
- - oÜ
|
294
|
+
- osaühing
|
295
|
+
- - as
|
296
|
+
- aktsiaselts
|
297
|
+
- - - oÜ
|
298
|
+
- osaühing
|
299
|
+
- - - as
|
300
|
+
- aktsiaselts
|
301
|
+
- - - tulundusühistu
|
302
|
+
- - - ay
|
303
|
+
- avoin yhtiö
|
304
|
+
- öppet bolag
|
305
|
+
- - - ky
|
306
|
+
- kommandiittiyhtiö
|
307
|
+
- kommanditbolag
|
308
|
+
- kb
|
309
|
+
- - - oy
|
310
|
+
- osakeyhtiö
|
311
|
+
- aktiebolag
|
312
|
+
- ab
|
313
|
+
- - - oyj
|
314
|
+
- julkinen osakeyhtiö
|
315
|
+
- publikt aktiebolag
|
316
|
+
- abp
|
317
|
+
- - - osk
|
318
|
+
- osuuskunta
|
319
|
+
- andelslag
|
320
|
+
- anl.
|
321
|
+
- - - freelancers
|
322
|
+
- - individual independent contractors
|
323
|
+
- - auto-entrepreneur
|
324
|
+
- - profession libérale
|
325
|
+
- - ei
|
326
|
+
- entreprise individuelle
|
327
|
+
- entreprise en nom personnel
|
328
|
+
- - - auto-entrepreneur
|
329
|
+
- - - profession libérale
|
330
|
+
- - - société d'investissement à capital fixe
|
331
|
+
- - sicav
|
332
|
+
- société d'investissement à capital variable
|
333
|
+
- - - société d'investissement à capital fixe
|
334
|
+
- - - sicav
|
335
|
+
- société d'investissement à capital variable
|
336
|
+
- - - association
|
337
|
+
- - association non-déclarée
|
338
|
+
- - association déclarée
|
339
|
+
- - - association non-déclarée
|
340
|
+
- - - association déclarée
|
341
|
+
- - - partnerships
|
342
|
+
- société de personnes
|
343
|
+
- - sep
|
344
|
+
- société en participation
|
345
|
+
- - snc
|
346
|
+
- société en nom collectif
|
347
|
+
- - scs
|
348
|
+
- société en commandite simple
|
349
|
+
- - sca
|
350
|
+
- société en commandite par actions
|
351
|
+
- - - sep
|
352
|
+
- société en participation
|
353
|
+
- - - snc
|
354
|
+
- société en nom collectif
|
355
|
+
- - - scs
|
356
|
+
- société en commandite simple
|
357
|
+
- - - sca
|
358
|
+
- société en commandite par actions
|
359
|
+
- - - companies
|
360
|
+
- société de capitaux
|
361
|
+
- - sarl
|
362
|
+
- sàrl
|
363
|
+
- société à responsabilité limitée
|
364
|
+
- - eurl
|
365
|
+
- entreprise unipersonnelle à responsabilité limitée
|
366
|
+
- - sa
|
367
|
+
- société anonyme
|
368
|
+
- - scop
|
369
|
+
- société coopérative de production
|
370
|
+
- - sem
|
371
|
+
- société d'économie mixte
|
372
|
+
- - sas
|
373
|
+
- société par actions simplifiée
|
374
|
+
- - - sarl
|
375
|
+
- sàrl
|
376
|
+
- société à responsabilité limitée
|
377
|
+
- - eurl
|
378
|
+
- entreprise unipersonnelle à responsabilité limitée
|
379
|
+
- - - eurl
|
380
|
+
- entreprise unipersonnelle à responsabilité limitée
|
381
|
+
- - - sa
|
382
|
+
- société anonyme
|
383
|
+
- - scop
|
384
|
+
- société coopérative de production
|
385
|
+
- - sem
|
386
|
+
- société d'économie mixte
|
387
|
+
- - sas
|
388
|
+
- société par actions simplifiée
|
389
|
+
- - - sa
|
390
|
+
- société anonyme
|
391
|
+
- - scop
|
392
|
+
- société coopérative de production
|
393
|
+
- - sem
|
394
|
+
- société d'économie mixte
|
395
|
+
- - - scop
|
396
|
+
- société coopérative de production
|
397
|
+
- - - sem
|
398
|
+
- société d'économie mixte
|
399
|
+
- - - sas
|
400
|
+
- société par actions simplifiée
|
401
|
+
- - - e.g.
|
402
|
+
- eingetragene genossenschaft
|
403
|
+
- - - e.v.
|
404
|
+
- eingetragener verein
|
405
|
+
- - - innengesellschaft
|
406
|
+
- - ohg
|
407
|
+
- offene handelsgesellschaft
|
408
|
+
- - kg
|
409
|
+
- kommanditgesellschaft
|
410
|
+
- - partg
|
411
|
+
- partnerschaftsgesellschaft
|
412
|
+
- - - innengesellschaft
|
413
|
+
- - - ohg
|
414
|
+
- offene handelsgesellschaft
|
415
|
+
- - kg
|
416
|
+
- kommanditgesellschaft
|
417
|
+
- - - ohg
|
418
|
+
- offene handelsgesellschaft
|
419
|
+
- - - kg
|
420
|
+
- kommanditgesellschaft
|
421
|
+
- - - partg
|
422
|
+
- partnerschaftsgesellschaft
|
423
|
+
- - - kgaa
|
424
|
+
- kommanditgesellschaft auf aktien
|
425
|
+
- - gmbh
|
426
|
+
- ɡeɪɛmbeɪhɑ
|
427
|
+
- gesellschaft mit beschränkter haftung
|
428
|
+
- - ag
|
429
|
+
- aktiengesellschaft
|
430
|
+
- - - kgaa
|
431
|
+
- kommanditgesellschaft auf aktien
|
432
|
+
- - kg
|
433
|
+
- - - gmbh
|
434
|
+
- ɡeɪɛmbeɪhɑ
|
435
|
+
- gesellschaft mit beschränkter haftung
|
436
|
+
- - - ag
|
437
|
+
- aktiengesellschaft
|
438
|
+
- - - a.e.
|
439
|
+
- anónimi etería
|
440
|
+
- Ανώνυμη Εταιρεία
|
441
|
+
- Α.Ε.
|
442
|
+
- - - e.p.e.
|
443
|
+
- etería periorisménis euthínis
|
444
|
+
- Εταιρεία Περιορισμένης Ευθύνης
|
445
|
+
- Ε.Π.Ε.
|
446
|
+
- - - pvt. ltd.
|
447
|
+
- private limited company
|
448
|
+
- - - ltd.
|
449
|
+
- public limited company
|
450
|
+
- - - pt
|
451
|
+
- perseroan terbatas
|
452
|
+
- - - pt tbk
|
453
|
+
- perseroan terbatas terbuka
|
454
|
+
- perseroan terbuka
|
455
|
+
- - - "شرکت سهامی عام"
|
456
|
+
- sherkat sahami am
|
457
|
+
- - - "شرکت سهامی خاص"
|
458
|
+
- sherkat sahami khas
|
459
|
+
- - - "شرکت با مسئولیت محدود"
|
460
|
+
- sherkat ba masouliyat mahdoud
|
461
|
+
- - - "شرکت مختلط غیر سهامی"
|
462
|
+
- sherkat mokhtalet gheyr sahami
|
463
|
+
- - - "شرکت تضامنی"
|
464
|
+
- sherkat tazamoni
|
465
|
+
- - - forme individuali
|
466
|
+
- - - società di persone
|
467
|
+
- partnerships
|
468
|
+
- - s.s.
|
469
|
+
- società semplice
|
470
|
+
- - s.n.c.
|
471
|
+
- società in nome collettivo
|
472
|
+
- - s.a.s
|
473
|
+
- società in accomandita semplice
|
474
|
+
- - - s.s.
|
475
|
+
- società semplice
|
476
|
+
- - - s.n.c.
|
477
|
+
- società in nome collettivo
|
478
|
+
- - - s.a.s
|
479
|
+
- società in accomandita semplice
|
480
|
+
- - - società di capitali
|
481
|
+
- companies
|
482
|
+
- - s.a.p.a
|
483
|
+
- società in accomandita per azioni
|
484
|
+
- - s.r.l.
|
485
|
+
- società a responsabilità limitata
|
486
|
+
- - - s.a.p.a
|
487
|
+
- società in accomandita per azioni
|
488
|
+
- - - s.r.l.
|
489
|
+
- società a responsabilità limitata
|
490
|
+
- - - 주식회사
|
491
|
+
- 株式會社
|
492
|
+
- jusik hoesa
|
493
|
+
- - - 유한회사
|
494
|
+
- 有限會社
|
495
|
+
- yuhan hoesa
|
496
|
+
- - - sia
|
497
|
+
- sabiedrība ar ierobežotu atbildību
|
498
|
+
- - - as
|
499
|
+
- akciju sabiedrība
|
500
|
+
- - - ik
|
501
|
+
- individuālais komersants
|
502
|
+
- - - ks
|
503
|
+
- komandītsabiedrība
|
504
|
+
- - - bo
|
505
|
+
- bezpeļņas organizācija
|
506
|
+
- - - uab
|
507
|
+
- uždaroji akcinė bendrovė
|
508
|
+
- - - ab
|
509
|
+
- akcinė bendrovė
|
510
|
+
- - - všĮ
|
511
|
+
- viešoji įstaiga
|
512
|
+
- - - iĮ
|
513
|
+
- individuali įmonė
|
514
|
+
- - - tŪb
|
515
|
+
- tikroji ūkinė bendrija
|
516
|
+
- - - kŪb
|
517
|
+
- komanditinė ūkinė bendrija
|
518
|
+
- - - mb
|
519
|
+
- mažoji bendrija
|
520
|
+
- - - s.a.
|
521
|
+
- société anonyme
|
522
|
+
- - - s.a.r.l.
|
523
|
+
- société à responsabilité limitée
|
524
|
+
- - - société en commandite simple
|
525
|
+
- secs
|
526
|
+
- - - a.d.
|
527
|
+
- А.Д.
|
528
|
+
- akcionersko društvo
|
529
|
+
- Акционерско друштво
|
530
|
+
- - - d.o.o.
|
531
|
+
- Д.О.О.
|
532
|
+
- društvo so ograničena odgovornost
|
533
|
+
- Друштво со ограничена одговорност
|
534
|
+
- - - k.d.
|
535
|
+
- К.Д.
|
536
|
+
- komanditno društvo
|
537
|
+
- Командитно друштво
|
538
|
+
- - - k.d.a.
|
539
|
+
- К.Д.А.
|
540
|
+
- komanditno društvo so akcie
|
541
|
+
- Командитно друштво со акции
|
542
|
+
- - - j.t.d.
|
543
|
+
- Ј.Т.Д.
|
544
|
+
- javno trgovsko društvo
|
545
|
+
- Јавно трговско друштво
|
546
|
+
- - - bhd.
|
547
|
+
- berhad
|
548
|
+
- - - sdn. bhd.
|
549
|
+
- sendirian berhad
|
550
|
+
- - - s.a.
|
551
|
+
- sociedad anónima
|
552
|
+
- - - s. de r.l.
|
553
|
+
- sociedad de responsabilidad limitada
|
554
|
+
- - - y compañía
|
555
|
+
- y sucesores
|
556
|
+
- sociedad en nombre colectivo
|
557
|
+
- - - s. en c.
|
558
|
+
- sociedad en comandita simple
|
559
|
+
- - - s. en c. por a.
|
560
|
+
- sociedad en comandita por acciones
|
561
|
+
- - - "ХК"
|
562
|
+
- khuvitsaat kompani
|
563
|
+
- Хувьцаат Компани
|
564
|
+
- - - "ХХК"
|
565
|
+
- khyazgaarlagdmal khariutslagatai kompani
|
566
|
+
- Хязгаарлагдмал Хариуцлагатай Компани
|
567
|
+
- - - "ТББ"
|
568
|
+
- teriin vus vaigruullaga
|
569
|
+
- Төрийн Бус Байгууллага
|
570
|
+
- - - stichting
|
571
|
+
- - - mutual societies
|
572
|
+
- wettelijke aansprakelijkheid
|
573
|
+
- limited
|
574
|
+
- b.a.
|
575
|
+
- beperkte aansprakelijkheid
|
576
|
+
- beperkte exempt
|
577
|
+
- u.a.
|
578
|
+
- uitsluiting van aansprakelijkheid
|
579
|
+
- - coöperatie
|
580
|
+
- - onderlinge waarborgmaatschappij
|
581
|
+
- - - coöperatie
|
582
|
+
- - - onderlinge waarborgmaatschappij
|
583
|
+
- - - mts
|
584
|
+
- maatschap
|
585
|
+
- - - eenmanszaak
|
586
|
+
- - - incorporated entities
|
587
|
+
- - vof
|
588
|
+
- vennootschap onder firma
|
589
|
+
- - cv
|
590
|
+
- commanditaire vennootschap
|
591
|
+
- - bv
|
592
|
+
- besloten vennootschap
|
593
|
+
- - nv
|
594
|
+
- naamloze vennootschap
|
595
|
+
- - - vof
|
596
|
+
- vennootschap onder firma
|
597
|
+
- - - cv
|
598
|
+
- commanditaire vennootschap
|
599
|
+
- - - bv
|
600
|
+
- besloten vennootschap
|
601
|
+
- - - nv
|
602
|
+
- naamloze vennootschap
|
603
|
+
- - - ltd
|
604
|
+
- limited
|
605
|
+
- - - asa
|
606
|
+
- allmennaksjeselskap
|
607
|
+
- - - as
|
608
|
+
- aksjeselskap
|
609
|
+
- - - ks
|
610
|
+
- kommandittselskap
|
611
|
+
- - - ltd.
|
612
|
+
- limited
|
613
|
+
- - - pvt. ltd.
|
614
|
+
- private limited company
|
615
|
+
- - - s.a.
|
616
|
+
- sociedad anónima
|
617
|
+
- - - s.a.
|
618
|
+
- spółka akcyjna
|
619
|
+
- - - sp.j.
|
620
|
+
- spółka jawna
|
621
|
+
- - - sp.k.
|
622
|
+
- spółka komandytowa
|
623
|
+
- - - sp.p.
|
624
|
+
- spółka partnerska
|
625
|
+
- - - sp. z o.o.
|
626
|
+
- spółka z ograniczoną odpowiedzialnością
|
627
|
+
- - - spółdzielnia
|
628
|
+
- - - s.a.
|
629
|
+
- sociedade anónima
|
630
|
+
- - plc
|
631
|
+
- - s.a.
|
632
|
+
- sociedade aberta
|
633
|
+
- - s.f.
|
634
|
+
- sociedade fechada
|
635
|
+
- - - s.a.
|
636
|
+
- sociedade aberta
|
637
|
+
- - - s.f.
|
638
|
+
- sociedade fechada
|
639
|
+
- - - lda.
|
640
|
+
- limitada
|
641
|
+
- - ltd.
|
642
|
+
- uk
|
643
|
+
- - - s.a.
|
644
|
+
- societate pe acţiuni
|
645
|
+
- - - s.c.s.
|
646
|
+
- societate în comandită simplă
|
647
|
+
- - - s.n.c.
|
648
|
+
- societate în nume colectiv
|
649
|
+
- - - s.r.l.
|
650
|
+
- societate cu răspundere limitată
|
651
|
+
- - - pfa
|
652
|
+
- persoana fizica autorizata
|
653
|
+
- - - o.n.g.
|
654
|
+
- organizație non-guvernamentală
|
655
|
+
- - - a.d.
|
656
|
+
- a.д.
|
657
|
+
- akcionarsko društvo
|
658
|
+
- aкционарско друштво
|
659
|
+
- - - d.o.o.
|
660
|
+
- д.о.о.
|
661
|
+
- društvo sa ograničenom odgovornošću
|
662
|
+
- друштво сa ограниченом одговорношћу
|
663
|
+
- - - k.d.
|
664
|
+
- к.д.
|
665
|
+
- komanditno društvo
|
666
|
+
- командитно друштво
|
667
|
+
- - - o.d.
|
668
|
+
- о.д.
|
669
|
+
- ortačko društvo
|
670
|
+
- ортачко друштво
|
671
|
+
- - - preduzetnik
|
672
|
+
- - - ltd
|
673
|
+
- bhd
|
674
|
+
- pte ltd
|
675
|
+
- sdn bhd
|
676
|
+
- private limited company
|
677
|
+
- sendiran berhad
|
678
|
+
- - - ltd
|
679
|
+
- bhd
|
680
|
+
- public limited company
|
681
|
+
- berhad
|
682
|
+
- - - a.s.
|
683
|
+
- akciová spoločnosť
|
684
|
+
- - - s.r.o.
|
685
|
+
- spol. s r.o.
|
686
|
+
- spoločnosť s ručením obmedzeným
|
687
|
+
- - - k.s.
|
688
|
+
- komanditná spoločnosť
|
689
|
+
- - - v.o.s.
|
690
|
+
- verejná obchodná spoločnosť
|
691
|
+
- - - družstvo
|
692
|
+
- - - d.d.
|
693
|
+
- delniška družba
|
694
|
+
- - - d.o.o.
|
695
|
+
- družba z omejeno odgovornostjo
|
696
|
+
- - - d.n.o.
|
697
|
+
- družba z neomejeno odgovornostjo
|
698
|
+
- - - k.d.
|
699
|
+
- komanditna družba
|
700
|
+
- - - s.p.
|
701
|
+
- samostojni podjetnik
|
702
|
+
- - - vereniging sonder winsoogmerk
|
703
|
+
- section 21 company
|
704
|
+
- artikel 21-maatskappy
|
705
|
+
- - private company
|
706
|
+
- privaat maatskappy
|
707
|
+
- - section 53
|
708
|
+
- b company
|
709
|
+
- unlimited liability company
|
710
|
+
- - public company
|
711
|
+
- publieke maatskappy
|
712
|
+
- - - vereniging sonder winsoogmerk
|
713
|
+
- section 21 company
|
714
|
+
- artikel 21-maatskappy
|
715
|
+
- - - vereniging sonder winsoogmerk
|
716
|
+
- section 21 company
|
717
|
+
- artikel 21-maatskappy
|
718
|
+
- - - private company
|
719
|
+
- privaat maatskappy
|
720
|
+
- - section 53
|
721
|
+
- b company
|
722
|
+
- unlimited liability company
|
723
|
+
- - public company
|
724
|
+
- publieke maatskappy
|
725
|
+
- - - private company
|
726
|
+
- privaat maatskappy
|
727
|
+
- - section 53
|
728
|
+
- b company
|
729
|
+
- unlimited liability company
|
730
|
+
- - - section 53
|
731
|
+
- b company
|
732
|
+
- unlimited liability company
|
733
|
+
- - - public company
|
734
|
+
- publieke maatskappy
|
735
|
+
- - - s.a.
|
736
|
+
- sociedad anónima
|
737
|
+
- - - s.l.
|
738
|
+
- sociedad limitada
|
739
|
+
- - - ab
|
740
|
+
- aktiebolag
|
741
|
+
- - - ab
|
742
|
+
- publ
|
743
|
+
- publikt aktiebolag
|
744
|
+
- - - hb
|
745
|
+
- handelsbolag
|
746
|
+
- - - kb
|
747
|
+
- kommanditbolag
|
748
|
+
- - - stiftung
|
749
|
+
- fondation
|
750
|
+
- fondazione
|
751
|
+
- - - investmentgesellschaft mit festem kapital
|
752
|
+
- sicaf
|
753
|
+
- société d'investissement à capital fixe
|
754
|
+
- sicaf
|
755
|
+
- società di investimento a capitale fisso
|
756
|
+
- - investmentgesellschaft mit variablem kapital
|
757
|
+
- sicav
|
758
|
+
- société d'investissement à capital variable
|
759
|
+
- sicav
|
760
|
+
- società di investimento a capitale variabile
|
761
|
+
- - - investmentgesellschaft mit festem kapital
|
762
|
+
- sicaf
|
763
|
+
- société d'investissement à capital fixe
|
764
|
+
- sicaf
|
765
|
+
- società di investimento a capitale fisso
|
766
|
+
- - - investmentgesellschaft mit variablem kapital
|
767
|
+
- sicav
|
768
|
+
- société d'investissement à capital variable
|
769
|
+
- sicav
|
770
|
+
- società di investimento a capitale variabile
|
771
|
+
- - - verein
|
772
|
+
- association
|
773
|
+
- associazione
|
774
|
+
- - - wig
|
775
|
+
- wirtschaftliche interessengemeinschaft
|
776
|
+
- gie
|
777
|
+
- groupement d'intérêt économique
|
778
|
+
- gruppo di interesse economico
|
779
|
+
- - - einzelunternehmen
|
780
|
+
- ri
|
781
|
+
- raison individuelle
|
782
|
+
- ditta indivduale
|
783
|
+
- - - eg
|
784
|
+
- einfache gesellschaft
|
785
|
+
- société simple
|
786
|
+
- società semplice
|
787
|
+
- - kolg
|
788
|
+
- kollektivgesellschaft
|
789
|
+
- snc
|
790
|
+
- société en nom collectif
|
791
|
+
- società in nome collettivo
|
792
|
+
- - kg
|
793
|
+
- kommanditgesellschaft
|
794
|
+
- sc
|
795
|
+
- société en commandite
|
796
|
+
- società in accomandita
|
797
|
+
- - komag
|
798
|
+
- kommanditaktiengesellschaft
|
799
|
+
- sca
|
800
|
+
- société en commandite par actions
|
801
|
+
- società in accomandita per azioni
|
802
|
+
- - gmbh
|
803
|
+
- gesellschaft mit beschränkter haftung
|
804
|
+
- sàrl
|
805
|
+
- société à responsabilité limitée
|
806
|
+
- sagl
|
807
|
+
- società a garanzia limitata
|
808
|
+
- - ag
|
809
|
+
- aktiengesellschaft
|
810
|
+
- sa
|
811
|
+
- société anonyme
|
812
|
+
- sa
|
813
|
+
- società anonima
|
814
|
+
- - - eg
|
815
|
+
- einfache gesellschaft
|
816
|
+
- société simple
|
817
|
+
- società semplice
|
818
|
+
- - kolg
|
819
|
+
- kollektivgesellschaft
|
820
|
+
- snc
|
821
|
+
- société en nom collectif
|
822
|
+
- società in nome collettivo
|
823
|
+
- - kg
|
824
|
+
- kommanditgesellschaft
|
825
|
+
- sc
|
826
|
+
- société en commandite
|
827
|
+
- società in accomandita
|
828
|
+
- - - eg
|
829
|
+
- einfache gesellschaft
|
830
|
+
- société simple
|
831
|
+
- società semplice
|
832
|
+
- - - kolg
|
833
|
+
- kollektivgesellschaft
|
834
|
+
- snc
|
835
|
+
- société en nom collectif
|
836
|
+
- società in nome collettivo
|
837
|
+
- - - kg
|
838
|
+
- kommanditgesellschaft
|
839
|
+
- sc
|
840
|
+
- société en commandite
|
841
|
+
- società in accomandita
|
842
|
+
- - - komag
|
843
|
+
- kommanditaktiengesellschaft
|
844
|
+
- sca
|
845
|
+
- société en commandite par actions
|
846
|
+
- società in accomandita per azioni
|
847
|
+
- - gmbh
|
848
|
+
- gesellschaft mit beschränkter haftung
|
849
|
+
- sàrl
|
850
|
+
- société à responsabilité limitée
|
851
|
+
- sagl
|
852
|
+
- società a garanzia limitata
|
853
|
+
- - ag
|
854
|
+
- aktiengesellschaft
|
855
|
+
- sa
|
856
|
+
- société anonyme
|
857
|
+
- sa
|
858
|
+
- società anonima
|
859
|
+
- - - komag
|
860
|
+
- kommanditaktiengesellschaft
|
861
|
+
- sca
|
862
|
+
- société en commandite par actions
|
863
|
+
- società in accomandita per azioni
|
864
|
+
- - - gmbh
|
865
|
+
- gesellschaft mit beschränkter haftung
|
866
|
+
- sàrl
|
867
|
+
- société à responsabilité limitée
|
868
|
+
- sagl
|
869
|
+
- società a garanzia limitata
|
870
|
+
- - - ag
|
871
|
+
- aktiengesellschaft
|
872
|
+
- sa
|
873
|
+
- société anonyme
|
874
|
+
- sa
|
875
|
+
- società anonima
|
876
|
+
- - - genossenschaft
|
877
|
+
- scoop
|
878
|
+
- société coopérative
|
879
|
+
- società cooperativa
|
880
|
+
- - - zweigniederlassung
|
881
|
+
- succursale
|
882
|
+
- succursale
|
883
|
+
- - - บริษัทมหาชนจำกัด
|
884
|
+
- บริษัท [corporation name] จำกัด
|
885
|
+
- มหาชน
|
886
|
+
- - - บริษัทเอกชนจำกัด
|
887
|
+
- บริษัท [corporation name] จำกัด
|
888
|
+
- - - "ห้างหุ้นส่วนจำกัด"
|
889
|
+
- ห้างหุ้นส่วน [corporation name] จำกัด
|
890
|
+
- - - ห้างหุ้นส่วนสามัญนิติบุคคล
|
891
|
+
- ห้างหุ้นส่วน [corporation name]
|
892
|
+
- - - adi Şirket
|
893
|
+
- - - koll. Şti.
|
894
|
+
- kolektif şirket
|
895
|
+
- - - a.Ş.
|
896
|
+
- a.o.
|
897
|
+
- anonim Şirket
|
898
|
+
- anonim ortaklık
|
899
|
+
- irtibat bürosu
|
900
|
+
- - - Şahıs firması
|
901
|
+
- - - Şb.
|
902
|
+
- Şube
|
903
|
+
- - - dat
|
904
|
+
- ДАТ
|
905
|
+
- Державне акціонерне товариство derzhavne aktsionerne tovaristvo
|
906
|
+
- - - kt
|
907
|
+
- Командитне товариство comanditne tovaristvo
|
908
|
+
- - - pt
|
909
|
+
- Пt
|
910
|
+
- "Повне товариство povne tovaristvo"
|
911
|
+
- - - tov
|
912
|
+
- tob
|
913
|
+
- "Товариство з обмеженою відповідальністю tovaristvo z obmezhenoyu vidpovividalnistyu"
|
914
|
+
- - - pp
|
915
|
+
- ПП
|
916
|
+
- "Приватне підприємство privatne pidpriemstvo"
|
917
|
+
- - - vat
|
918
|
+
- ВАТ
|
919
|
+
- Вiдкрите акцiонерне товариство vidkrite aktsionerne tovaristvo
|
920
|
+
- pat
|
921
|
+
- ПАТ
|
922
|
+
- "Публічне акціонерне товариство publisne aktsionerne tovaristvo"
|
923
|
+
- - - zat
|
924
|
+
- ЗАТ
|
925
|
+
- "Закрите акцiонерне товариство zakrite aktsionerne tovaristvoor prat
|
926
|
+
- ПрАТ"
|
927
|
+
- "Приватне акціонерне товариство pritvatne aktsionerne tovaristvo"
|
928
|
+
- - - aТ
|
929
|
+
- aТ
|
930
|
+
- "Акціонерне товариство aktsionerne tovaristvo"
|