name_tamer 0.6.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f4cec196a889452445f937bcebe32026091d7e39
4
+ data.tar.gz: 458fb4f8fad553bb4633302ad640772a0182b2f3
5
+ SHA512:
6
+ metadata.gz: 15cf43c55b31ca59761a17c1779d0fa556f16e0e52c2c7fcefebd531883a12bf5395b63aa0f551a9c0a50392942f75d463a0ef694c7220457e03d6fc2e90b5ab
7
+ data.tar.gz: afe13378d864b4e7c06eccf6aae5969f5626d2d629987b218f33a4db0f0f781df5be047980c5fff49994ca40da9fb220dc9ccee729b8c24d5c79d541071ad6d3
data/.codeclimate.yml ADDED
@@ -0,0 +1,18 @@
1
+ ---
2
+ engines:
3
+ duplication:
4
+ enabled: true
5
+ config:
6
+ languages:
7
+ - ruby
8
+ fixme:
9
+ enabled: true
10
+ rubocop:
11
+ enabled: true
12
+ ratings:
13
+ paths:
14
+ - "**.rb"
15
+ exclude_paths:
16
+ - script/
17
+ - spec/
18
+ - doc/
data/.env ADDED
@@ -0,0 +1 @@
1
+ PATH=/home/build/.rvm/gems/ruby-2.1.1/bin:/home/build/.rvm/gems/ruby-2.1.1@global/bin:/home/build/.rvm/rubies/ruby-2.1.1/bin:/home/build/.rvm/bin:/usr/local/heroku/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/build/.rvm/gems/ruby-2.1.1@global/bin/bundle
data/.gitignore ADDED
@@ -0,0 +1,26 @@
1
+ *.gem
2
+
3
+ *.rbc
4
+ capybara-*.html
5
+ /log
6
+ /tmp
7
+ /db/*.sqlite3
8
+ /public/system
9
+ /coverage/
10
+ /spec/tmp
11
+ **.orig
12
+ rerun.txt
13
+ pickle-email-*.html
14
+ config/initializers/secret_token.rb
15
+ config/secrets.yml
16
+
17
+ ## Environment normalisation:
18
+ /.bundle
19
+ /vendor/bundle
20
+
21
+ .ruby-version
22
+ .ruby-gemset
23
+ Gemfile.lock
24
+
25
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
26
+ .rvmrc
data/.hound.yml ADDED
@@ -0,0 +1,6 @@
1
+ ---
2
+ ruby:
3
+ enabled: true
4
+ config_file: .rubocop.yml
5
+ coffee_script:
6
+ enabled: true
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,63 @@
1
+ ---
2
+ AllCops:
3
+ TargetRubyVersion: 2.0
4
+ DisplayCopNames: true
5
+ Exclude:
6
+ - 'tmp/**/*'
7
+ - '**/*.rake'
8
+
9
+ Metrics/BlockLength:
10
+ CountComments: false # count full line comments?
11
+ Exclude:
12
+ - '**/*_spec.rb'
13
+
14
+ LineLength:
15
+ Description: 'Limit lines to 120 characters.'
16
+ Max: 120
17
+ Enabled: true
18
+
19
+ MethodLength:
20
+ Description: 'Avoid methods longer than 10 lines of code.'
21
+ Max: 23
22
+ Enabled: true
23
+
24
+ Documentation:
25
+ Description: 'Document classes and non-namespace modules.'
26
+ Enabled: false
27
+
28
+ FileName:
29
+ Description: 'Use snake_case for source file names.'
30
+ Enabled: false
31
+
32
+ DotPosition:
33
+ Description: 'Checks the position of the dot in multi-line method calls.'
34
+ EnforcedStyle: leading
35
+ # EnforcedStyle: trailing
36
+ Enabled: true
37
+
38
+ StringLiterals:
39
+ EnforcedStyle: single_quotes
40
+ Enabled: true
41
+
42
+ CyclomaticComplexity:
43
+ Description: 'Avoid complex methods.'
44
+ Max: 8
45
+
46
+ ClassLength:
47
+ Description: 'Avoid classes longer than 100 lines of code.'
48
+ CountComments: false # count full line comments?
49
+ Max: 334
50
+
51
+ ExtraSpacing:
52
+ Enabled: true
53
+
54
+ Style/PercentLiteralDelimiters:
55
+ # Hound and CodeClimate are currently using an old version of Rubocop with
56
+ # different defaults, so we set them explicitly here.
57
+ PreferredDelimiters:
58
+ default: ()
59
+ '%i': '[]'
60
+ '%I': '[]'
61
+ '%r': '{}'
62
+ '%w': '[]'
63
+ '%W': '[]'
data/.travis.yml ADDED
@@ -0,0 +1,13 @@
1
+ ---
2
+ language: ruby
3
+ dist: trusty
4
+ rvm:
5
+ - 2.4.0
6
+ - 2.3
7
+ - 2.2
8
+ - 2.1
9
+ - 2.0
10
+ before_install:
11
+ - gem update bundler
12
+ script: bundle exec rspec
13
+ after_success: bundle exec codeclimate-test-reporter
data/Gemfile ADDED
@@ -0,0 +1,20 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
3
+ ruby RUBY_VERSION
4
+
5
+ group :development do
6
+ gem 'bundler'
7
+ gem 'gem-release'
8
+ gem 'guard'
9
+ gem 'guard-rspec'
10
+ gem 'guard-rubocop'
11
+ end
12
+
13
+ group :test do
14
+ gem 'codeclimate-test-reporter'
15
+ gem 'coveralls'
16
+ gem 'fuubar'
17
+ gem 'rspec'
18
+ gem 'rspec_junit_formatter'
19
+ gem 'simplecov', '~> 0.13'
20
+ end
data/Guardfile ADDED
@@ -0,0 +1,16 @@
1
+ guard :rubocop do
2
+ watch(/.+\.rb$/)
3
+ watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
4
+ end
5
+
6
+ guard(
7
+ :rspec,
8
+ all_after_pass: true,
9
+ all_on_start: true,
10
+ cmd: 'bundle exec rspec --fail-fast --format documentation'
11
+ ) do
12
+ watch(%r{^spec/.+_spec\.rb$})
13
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
14
+ watch('spec/spec_helper.rb') { 'spec' }
15
+ watch(%r{^spec/support/.+\.rb$}) { 'spec' }
16
+ end
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Dominic Sayers
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,82 @@
1
+ ## NameTamer
2
+
3
+ [![Gem version](https://badge.fury.io/rb/name_tamer.svg)](https://rubygems.org/gems/name_tamer)
4
+ [![Gem downloads](https://img.shields.io/gem/dt/name_tamer.svg)](https://rubygems.org/gems/name_tamer)
5
+ [![Build Status](https://travis-ci.org/dominicsayers/name_tamer.svg?branch=master)](https://travis-ci.org/dominicsayers/name_tamer)
6
+ [![Code Climate](https://codeclimate.com/github/dominicsayers/name_tamer/badges/gpa.svg)](https://codeclimate.com/github/dominicsayers/name_tamer)
7
+ [![Test Coverage](https://codeclimate.com/github/dominicsayers/name_tamer/badges/coverage.svg)](https://codeclimate.com/github/dominicsayers/name_tamer/coverage)
8
+ [![Dependency Status](https://gemnasium.com/badges/github.com/dominicsayers/name_tamer.svg)](https://gemnasium.com/github.com/dominicsayers/name_tamer)
9
+ [![Security](https://hakiri.io/github/dominicsayers/name_tamer/master.svg)](https://hakiri.io/github/dominicsayers/name_tamer/master)
10
+
11
+ NameTamer: making sense of names
12
+
13
+ ## Installation
14
+
15
+ Add this line to your application's Gemfile:
16
+
17
+ gem 'name_tamer'
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install name_tamer
26
+
27
+ ## Usage
28
+
29
+ Examples:
30
+
31
+ ```ruby
32
+ NameTamer['Mr. John Q. Smith III, MD'].simple_name # => John Smith
33
+ ```
34
+
35
+ Or you can create an instance if you need several versions of the name
36
+
37
+ ```ruby
38
+ name_tamer = NameTamer::Name.new 'Mr. John Q. Smith III, MD'
39
+ name_tamer.slug # => john-smith
40
+ name_tamer.simple_name # => John Smith
41
+ name_tamer.nice_name # => John Q. Smith
42
+ name_tamer.contact_type # => :person
43
+ ```
44
+
45
+ NameTamer will make an intelligent guess at the type of the name but it's not infallible. NameTamer likes it if you tell it whether the name is a person or an organization:
46
+
47
+ ```ruby
48
+ name_tamer = NameTamer::Name.new 'Di Doo Doo d.o.o.', contact_type: :organization
49
+ name_tamer.simple_name # => Di Doo Doo
50
+ ```
51
+
52
+ ## Contributing
53
+
54
+ There must be lots of name suffixes and prefixes that I haven't catered for, so please get in touch if `name_tamer` doesn't recognise one that you've found.
55
+
56
+ If there are any other common two-word family names that I've missed then please let me know. `name_tamer` tries to make sure Helena Bonham Carter gets slugified to `helena-bonham-carter` and not `helena-carter`, but I'm sure there are loads of two-word family names I don't know about.
57
+
58
+ Please read all the following articles before contributing:
59
+
60
+ * [Personal names around the world](https://www.w3.org/International/questions/qa-personal-names)
61
+ * [Falsehoods Programmers Believe About Names](https://www.kalzumeus.com/2010/06/17/falsehoods-programmers-believe-about-names/)
62
+ * [Last Name First](http://www.solidether.net/article/last-name-first/)
63
+ * [Namae (名前)](https://github.com/berkmancenter/namae)
64
+ * [Matts Name Parser](https://github.com/mericson/people)
65
+ * [Types of business entity](http://en.wikipedia.org/wiki/Types_of_business_entity)
66
+ * [List of professional designations in the United States](http://en.wikipedia.org/wiki/List_of_post-nominal_letters_(USA))
67
+ * [List of post-nominal letters (United Kingdom)](http://en.wikipedia.org/wiki/List_of_post-nominal_letters_(United_Kingdom))
68
+ * [Nobiliary particle](http://en.wikipedia.org/wiki/Nobiliary_particle)
69
+ * [Spanish naming customs](http://en.wikipedia.org/wiki/Spanish_naming_customs)
70
+ * [Unified style sheet for linguistics](http://linguistlist.org/pubs/tocs/JournalUnifiedStyleSheet2007.pdf) [PDF]
71
+
72
+ ### How to contribute
73
+
74
+ 1. Fork it
75
+ 1. Create your feature branch (`git checkout -b my-new-feature`)
76
+ 1. Commit your changes (`git commit -am 'Add some feature'`)
77
+ 1. Push to the branch (`git push origin my-new-feature`)
78
+ 1. Create new Pull Request
79
+
80
+ ## Acknowledgements
81
+
82
+ 1. Thanks to Ryan Bigg for the guide to making your first gem https://github.com/radar/guides/blob/master/gem-development.md
data/Rakefile ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env rake
2
+ require 'bundler/gem_tasks'
3
+
4
+ begin
5
+ require 'rspec/core/rake_task'
6
+
7
+ RSpec::Core::RakeTask.new(:spec)
8
+
9
+ task default: :spec
10
+ rescue LoadError
11
+ puts 'rspec is not available'
12
+ end
13
+
14
+ Dir.glob('doc/*.rake').each { |r| load r }
@@ -0,0 +1,76 @@
1
+ # encoding: utf-8
2
+ lib = File.expand_path('../../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ require 'csv'
6
+ require 'name_tamer'
7
+
8
+ desc 'Build prefixes and suffixes'
9
+ task :adfixes do
10
+ pp = []
11
+ po = []
12
+ sp = []
13
+ so = []
14
+
15
+ CSV.foreach("#{File.dirname(__FILE__)}/prefixes.csv", headers: true) do |row|
16
+ if row[2] == 'person'
17
+ pp << row[0]
18
+ else
19
+ po << row[0]
20
+ end
21
+ end
22
+
23
+ CSV.foreach("#{File.dirname(__FILE__)}/suffixes.csv", headers: true) do |row|
24
+ if row[2] == 'person'
25
+ sp << row[0]
26
+ else
27
+ so << row[0]
28
+ end
29
+ end
30
+
31
+ puts "'" + pp.join("', '") + "'"
32
+ puts "'" + po.join("', '") + "'"
33
+ puts "'" + sp.join("', '") + "'"
34
+ puts "'" + so.join("', '") + "'"
35
+ end
36
+
37
+ task :check_existing do
38
+ [
39
+ 'Chartered F.C.S.I.',
40
+ 'C.I.S.S.P.', 'T.M.I.E.T.', 'A.C.C.A.', 'C.I.T.P.', 'F.B.C.S.', 'F.C.C.A.', 'F.C.M.I.', 'F.I.E.T.', 'F.I.R.P.',
41
+ 'M.I.E.T.', 'B.Tech.',
42
+ 'Cantab.', 'D.Phil.', 'I.T.I.L. v3', 'B.Eng.', 'C.Eng.', 'M.Jur.', 'C.F.A.', 'D.B.E.', 'C.L.P.',
43
+ 'D.D.S.', 'D.V.M.', 'Eng.D.', 'A.C.A.', 'C.T.A.', 'E.R.P.', 'F.C.A.', 'F.P.C.', 'F.R.M.', 'M.B.A.', 'M.B.E.',
44
+ 'M.E.P.', 'M.Eng.', 'M.Jur.', 'M.S.P.', 'O.B.E.', 'P.M.C.', 'P.M.P.', 'P.S.P.', 'V.M.D.', 'B.Ed.', 'B.Sc.',
45
+ 'Ed.D.', 'Hons.', 'LL.B.',
46
+ 'LL.D.', 'LL.M.', 'M.Ed.', 'M.Sc.', 'Oxon.', 'Ph.D.', 'B.A.', 'Esq.', 'J.D.', 'K.C.', 'M.A.', 'M.D.', 'M.P.',
47
+ 'O.K.', 'P.A.', 'Q.C.', 'III', 'Jr.', 'Sr.', 'II', 'IV', 'V'
48
+ ].each do |suffix|
49
+ raise suffix unless NameTamer::ADFIXES[:suffix][:person].include? suffix
50
+ end
51
+
52
+ [
53
+ 'S. de R.L. de C.V.', 'S.A.P.I. de C.V.', 'y. Cía. S. en C.', 'Private Limited', 'S.M. Pte. Ltd.', 'Cía. S. C. A.',
54
+ 'y. Cía. S. C.', 'S.A. de C.V.', 'spol. s.r.o.', '(Pty.) Ltd.', '(Pvt.) Ltd.', 'A.D.S.I.Tz.', 'S.p. z.o.o.',
55
+ '(Pvt.)Ltd.', 'akc. spol.', 'Cía. Ltda.', 'E.B.V.B.A.', 'P. Limited', 'S. de R.L.', 'S.I.C.A.V.', 'S.P.R.L.U.',
56
+ 'А.Д.С.И.Ц.', '(P.) Ltd.', 'C. por A.', 'Comm.V.A.', 'Ltd. Şti.', 'Plc. Ltd.', 'Pte. Ltd.', 'Pty. Ltd.',
57
+ 'Pvt. Ltd.', 'Soc. Col.', 'A.M.B.A.', 'A.S.B.L.', 'A.V.E.E.', 'B.V.B.A.', 'B.V.I.O.', 'C.V.B.A.', 'C.V.O.A.',
58
+ 'E.E.I.G.', 'E.I.R.L.', 'E.O.O.D.', 'E.U.R.L.', 'F.M.B.A.', 'G.m.b.H.', 'Ges.b.R.', 'K.G.a.A.', 'L.L.L.P.',
59
+ 'Ltd. Co.', 'Ltd. Co.', 'M.E.P.E.', 'n.y.r.t.', 'O.V.E.E.', 'P.E.E.C.', 'P.L.L.C.', 'P.L.L.C.', 'S. en C.',
60
+ 'S.a.p.a.', 'S.A.R.L.', 'S.à.R.L.', 'S.A.S.U.', 'S.C.e.I.', 'S.C.O.P.', 'S.C.p.A.', 'S.C.R.I.', 'S.C.R.L.',
61
+ 'S.M.B.A.', 'S.P.R.L.', 'Е.О.О.Д.', '&. Cie.', 'and Co.', 'Comm.V.', 'Limited', 'P. Ltd.', 'Part.G.', 'Sh.p.k.',
62
+ '&. Co.', 'C.X.A.', 'd.n.o.', 'd.o.o.', 'E.A.D.', 'e.h.f.', 'E.P.E.', 'E.S.V.', 'F.C.P.', 'F.I.E.', 'G.b.R.',
63
+ 'G.I.E.', 'G.M.K.', 'G.S.K.', 'H.U.F.', 'K.D.A.', 'k.f.t.', 'k.h.t.', 'k.k.t.', 'L.L.C.', 'L.L.P.', 'o.h.f.',
64
+ 'O.H.G.', 'O.O.D.', 'O.y.j.', 'p.l.c.', 'P.S.U.', 'S.A.E.', 'S.A.S.', 'S.C.A.', 'S.C.E.', 'S.C.S.', 'S.E.M.',
65
+ 'S.E.P.', 's.e.s.', 'S.G.R.', 'S.N.C.', 'S.p.A.', 'S.P.E.', 'S.R.L.', 's.r.o.', 'Unltd.', 'V.O.F.', 'V.o.G.',
66
+ 'v.o.s.', 'V.Z.W.', 'z.r.t.', 'А.А.Т.', 'Е.А.Д.', 'З.А.Т.', 'К.Д.А.', 'О.О.Д.', 'Т.А.А.', '股份有限公司', 'Ap.S.',
67
+ 'Corp.', 'ltda.', 'Sh.A.', 'st.G.', 'Ultd.', 'a.b.', 'A.D.', 'A.E.', 'A.G.', 'A.S.', 'A.Ş.', 'A.y.', 'B.M.', 'b.t.',
68
+ 'B.V.', 'C.A.', 'C.V.', 'd.d.', 'e.c.', 'E.E.', 'e.G.', 'E.I.', 'E.P.', 'E.T.', 'E.U.', 'e.v.', 'G.K.', 'G.P.',
69
+ 'h.f.', 'Inc.', 'K.D.', 'K.G.', 'K.K.', 'k.s.', 'k.v.', 'K.y.', 'L.C.', 'L.P.', 'Ltd.', 'N.K.', 'N.L.', 'N.V.',
70
+ 'O.E.', 'O.G.', 'O.Ü.', 'O.y.', 'P.C.', 'p.l.', 'Pty.', 'PUP.', 'Pvt.', 'r.t.', 'S.A.', 'S.D.', 'S.E.', 's.f.',
71
+ 'S.L.', 'S.P.', 'S.s.', 'T.K.', 'T.Ü.', 'U.Ü.', 'Y.K.', 'А.Д.', 'І.П.', 'К.Д.', 'ПУП.', 'С.Д.', 'בע"מ', '任意組合',
72
+ '匿名組合', '合同会社', '合名会社', '合資会社', '有限会社', '有限公司', '株式会社', 'A/S', 'G/S', 'I/S', 'K/S', 'P/S', 'S/A'
73
+ ].each do |suffix|
74
+ raise suffix unless NameTamer::ADFIXES[:suffix][:organization].include? suffix
75
+ end
76
+ end
data/doc/prefixes.csv ADDED
@@ -0,0 +1,49 @@
1
+ prefix,canonical_prefix,type_diagnosis,type_diagnosis_probability,full_prefix
2
+ Baroness,,person,80,
3
+ Capt.,,person,100,Captain
4
+ Captain,Capt.,person,40,
5
+ Col.,,person,100,Colonel
6
+ Colonel,Col.,person,60,
7
+ Dame,,person,80,
8
+ Doctor,Dr.,person,20,
9
+ Dr.,,person,80,
10
+ Fa.,,organization,100,Firma
11
+ Judge,,person,40,
12
+ Justice,,person,40,
13
+ Lady,,person,20,
14
+ Lieut.,,person,100,Lieutenant
15
+ Lieutenant,Lieut.,person,60,
16
+ Lord,,person,40,
17
+ Madame,Mme.,person,20,
18
+ Major,,person,20,
19
+ Master,,person,20,
20
+ Matron,,person,40,
21
+ Messrs.,,person,20,
22
+ Mgr.,,person,100,Monsignor
23
+ Miss,,person,80,
24
+ Mister,Mr.,person,40,
25
+ Mlle.,,person,100,Mademoiselle
26
+ Mme.,,person,100,Madame
27
+ Mons.,Mgr.,person,20,Monsignor
28
+ Mr.,,person,80,
29
+ Mr. & Mrs.,,person,100,
30
+ Mr. and Mrs.,Mr. & Mrs.,person,100,
31
+ Mrs.,,person,100,
32
+ Ms.,,person,100,
33
+ Msgr.,Mgr.,person,100,Monsignor
34
+ Prof.,,person,100,Professor
35
+ Professor,Prof.,person,100,
36
+ P.T.,,organization,100,Perseroan Terbatas
37
+ P.T. Tbk.,,organization,100,Perseroan Terbatas Terbuka
38
+ Rev.,,person,100,Reverend
39
+ Reverend,Rev.,person,100,
40
+ Sir,,person,80,
41
+ Sister,,person,20,
42
+ The Hon.,,person,100,The Honourable
43
+ The Lady.,,person,40,
44
+ The Lord,,person,40,
45
+ The Rt. Hon.,,person,100,The Right Honourable
46
+ U.D.,,organization,100,Usaha Dagang
47
+ Doktor,Dr.,person,80,
48
+ Herr,,person,100,
49
+ Frau,,person,100,
data/doc/suffixes.csv ADDED
@@ -0,0 +1,345 @@
1
+ suffix,description,type_diagnosis,type_diagnosis_probability,jurisdiction,length
2
+ S. de R.L. de C.V.,,organization,100,,18
3
+ S.A.P.I. de C.V.,,organization,100,,16
4
+ y. Cía. S. en C.,Sociedad en Comandita Simple,organization,100,Guatemala,16
5
+ Private Limited,Limited Company,organization,100,,15
6
+ S.M. Pte. Ltd.,Single Member Private Limited Company,organization,100,Cambodia,14
7
+ Cía. S. C. A.,Sociedad en Comandita por Acciones,organization,100,Guatemala,13
8
+ y. Cía. S. C.,Sociedad Colectiva,organization,100,Guatemala,13
9
+ S.A. de C.V.,,organization,100,Mexico,12
10
+ spol. s.r.o.,Společnost s ručením omezeným,organization,100,Czech Republic,12
11
+ (Pty.) Ltd.,,organization,100,,11
12
+ (Pvt.) Ltd.,Private Limited Company,organization,100,India,11
13
+ A.D.S.I.Tz.,aktsionerno druzhestvo sus spetsialna investitsionna tsel,organization,100,Bulgaria,11
14
+ S.p. z.o.o.,spółka z ograniczoną odpowiedzialnością,organization,100,Poland,11
15
+ (Pvt.)Ltd.,Private Limited Company,organization,100,India,10
16
+ akc. spol.,Akciová společnost,organization,100,Czech Republic,10
17
+ Cía. Ltda.,Compañía Limitada,organization,100,Ecuador,10
18
+ E.B.V.B.A.,eenpersoons besloten vennootschap met beperkte aansprakelijkheid,organization,100,Belgium,10
19
+ P. Limited,Private Limited Company,organization,100,,10
20
+ S. de R.L.,,organization,100,,10
21
+ S.I.C.A.V.,Société d'investissement à capital variable,organization,100,France,10
22
+ S.P.R.L.U.,société privée à responsabilité limitée unipersonnelle,organization,100,Belgium,10
23
+ А.Д.С.И.Ц.,aktsionerno druzhestvo sus spetsialna investitsionna tsel,organization,100,Bulgaria,10
24
+ (P.) Ltd.,Private Limited Company,organization,100,India,9
25
+ C. por A.,Compañía por Acciones,organization,100,Dominican Republic,9
26
+ Comm.V.A.,commanditaire vennootschap op aandelen,organization,100,Belgium,9
27
+ Ltd. Şti.,,organization,100,Turkey,9
28
+ Plc. Ltd.,Public Limited Company,organization,100,Cambodia,9
29
+ Pte. Ltd.,Private Limited Company,organization,100,Cambodia,9
30
+ Pty. Ltd.,Proprietary Limited Company,organization,100,Australia,9
31
+ Pvt. Ltd.,Private Limited Company,organization,100,India,9
32
+ Soc. Col.,Sociedad Colectiva,organization,100,Argentina,9
33
+ A.M.B.A.,Andelsselskab med begrænset ansvar,organization,100,Denmark,8
34
+ A.S.B.L.,association sans but lucratif,organization,100,Belgium,8
35
+ A.V.E.E.,Anónimi Viomihanikí Emborikí Etería,organization,100,Greece,8
36
+ B.V.B.A.,besloten vennootschap met beperkte aansprakelijkheid,organization,100,Belgium,8
37
+ B.V.I.O.,,organization,100,,8
38
+ C.V.B.A.,coöperatieve vennootschap met beperkte aansprakelijkheid ,organization,100,Belgium,8
39
+ C.V.O.A.,coöperatieve vennootschap met onbeperkte aansprakelijkheid,organization,100,Belgium,8
40
+ E.E.I.G.,European Economic Interest Grouping,organization,100,European Economic Area,8
41
+ E.I.R.L.,Empresa Individual de Responsabilidad Limitada,organization,100,,8
42
+ E.O.O.D.,ednolichno druzhestvo s ogranichena otgovornost,organization,100,Bulgaria,8
43
+ E.U.R.L.,Entreprise unipersonnelle à responsabilité limitée,organization,100,France,8
44
+ F.M.B.A.,Forening med begrænset ansvar,organization,100,Denmark,8
45
+ G.m.b.H.,Gesellschaft mit beschränkter Haftung,organization,100,,8
46
+ Ges.b.R.,Gesellschaft des bürgerlichen Rechts,organization,100,Austria,8
47
+ K.G.a.A.,Kommanditgesellschaft auf Aktien,organization,100,Germany,8
48
+ L.L.L.P.,Limited Liability Limited Partnership,organization,100,United States,8
49
+ Ltd. Co.,Limited Company,organization,100,United States,8
50
+ Ltd. Co.,Limited,organization,100,,8
51
+ M.E.P.E.,Monoprósopi Etería Periorisménis Efthínis,organization,100,Greece,8
52
+ n.y.r.t.,nyilvánosan működő részvénytársaság,organization,100,Hungary,8
53
+ O.V.E.E.,Omórithmi Viomihanikí Emborikí Etería,organization,100,Greece,8
54
+ P.E.E.C.,Public Establishment with Economic characteristics,organization,100,Cambodia,8
55
+ P.L.L.C.,Sociedade simples,organization,100,Brazil,8
56
+ P.L.L.C.,Professional Limited Liability Company,organization,100,United States,8
57
+ S. en C.,Comandita simple,organization,100,Colombia,8
58
+ S.a.p.a.,Società in accomandita per azioni,organization,100,Italy,8
59
+ S.A.R.L.,Société à responsabilité limitée,organization,100,France,8
60
+ S.à.R.L.,Société à responsabilité limitée,organization,100,France,8
61
+ S.A.S.U.,Entreprise unipersonnelle,organization,100,France,8
62
+ S.C.e.I.,Sociedad de Capital e Industria,organization,100,Argentina,8
63
+ S.C.O.P.,Société coopérative de production,organization,100,France,8
64
+ S.C.p.A.,Sociedad en Comandita por Acciones,organization,100,Argentina,8
65
+ S.C.R.I.,société coopérative à responsabilité illimitée,organization,100,Belgium,8
66
+ S.C.R.L.,,organization,100,,8
67
+ S.M.B.A.,Selskab med begrænset ansvar,organization,100,Denmark,8
68
+ S.P.R.L.,société privée à responsabilité limitée,organization,100,Belgium,8
69
+ Е.О.О.Д.,ednolichno druzhestvo s ogranichena otgovornost,organization,100,Bulgaria,8
70
+ &. Cie.,,organization,100,,7
71
+ and Co.,,organization,100,,7
72
+ Comm.V.,gewone commanditaire vennootschap,organization,100,Belgium,7
73
+ Limited,Limited,organization,100,,7
74
+ P. Ltd.,Private Limited Company,organization,100,,7
75
+ Part.G.,Partnerschaftsgesellschaft,organization,100,Germany,7
76
+ Sh.p.k.,Shoqeri me pergjegjesi te kufizuar,organization,100,Albania,7
77
+ &. Co.,,organization,100,,6
78
+ C.X.A.,Compañía por Acciones,organization,100,Dominican Republic,6
79
+ d.n.o.,društvo s neograničenom solidarnom odgovornošću,organization,100,Bosnia & Herzegovina,6
80
+ d.o.o.,društvo s ograničenom odgovornošću,organization,100,Bosnia & Herzegovina,6
81
+ E.A.D.,ednolichno aktsionerno druzhestvo,organization,100,Bulgaria,6
82
+ e.h.f.,einkahlutafélag,organization,100,Iceland,6
83
+ E.P.E.,Etería Periorisménis Efthínis,organization,100,Greece,6
84
+ E.S.V.,economisch samenwerkingsverband,organization,100,Belgium,6
85
+ F.C.P.,Fond commun de placement,organization,100,France,6
86
+ F.I.E.,Füüsilisest isikust ettevõtja,organization,100,Estonia,6
87
+ G.b.R.,Gesellschaft bürgerlichen Rechts,organization,100,Germany,6
88
+ G.I.E.,groupement d'intérêt économique,organization,100,,6
89
+ G.M.K.,gōmei-kaisha,organization,100,Japan,6
90
+ G.S.K.,gōshi-kaisha,organization,100,Japan,6
91
+ H.U.F.,Hindu Undivided Family,organization,100,India,6
92
+ K.D.A.,komanditno druzhestvo s aktzii,organization,100,Bulgaria,6
93
+ k.f.t.,korlátolt felelősségű társaság,organization,100,Hungary,6
94
+ k.h.t.,közhasznú társaság,organization,100,Hungary,6
95
+ k.k.t.,közkereseti társaság,organization,100,Hungary,6
96
+ L.L.C.,Limited Liability Company,organization,100,,6
97
+ L.L.P.,Limited Liability Partnership,organization,100,,6
98
+ o.h.f.,opinbert hlutafélag,organization,100,Iceland,6
99
+ O.H.G.,offene Handelsgesellschaft,organization,100,Germany,6
100
+ O.O.D.,drujestvo s ogranichena otgovornost,organization,100,Bulgaria,6
101
+ O.y.j.,julkinen osakeyhtiö,organization,100,Finland,6
102
+ p.l.c.,public limited company,organization,100,United Kingdom,6
103
+ P.S.U.,Public Sector Unit,organization,100,India,6
104
+ S.A.E.,Sharikat al-Mossahamah,organization,100,Egypt,6
105
+ S.A.S.,,organization,100,,6
106
+ S.C.A.,,organization,100,,6
107
+ S.C.E.,Societas Cooperativa Europaea,organization,100,European Economic Area,6
108
+ S.C.S.,,organization,100,,6
109
+ S.E.M.,Société d'économie mixte,organization,100,France,6
110
+ S.E.P.,société en participation,organization,100,,6
111
+ s.e.s.,sjálfseignarstofnun,organization,100,Iceland,6
112
+ S.G.R.,Sociedad de Garantía Reciproca,organization,100,,6
113
+ S.N.C.,,organization,100,,6
114
+ S.p.A.,,organization,100,,6
115
+ S.P.E.,Societas Privata Europaea,organization,100,European Economic Area,6
116
+ S.R.L.,,organization,100,,6
117
+ s.r.o.,Společnost s ručením omezeným,organization,100,Czech Republic,6
118
+ Unltd.,Unlimited company,organization,100,Hong Kong,6
119
+ V.O.F.,vennootschap onder firma,organization,100,,6
120
+ V.o.G.,Vereinigung ohne Gewinnerzielungsabsicht,organization,100,Belgium,6
121
+ v.o.s.,veřejná obchodní společnost,organization,100,Czech Republic,6
122
+ V.Z.W.,vereniging zonder winstoogmerk,organization,100,Belgium,6
123
+ z.r.t.,zártkörűen működő részvénytársaság,organization,100,Hungary,6
124
+ А.А.Т.,Adkritae Aktsiyanernae Tavaristva,organization,100,Belarus,6
125
+ Е.А.Д.,ednolichno aktsionerno druzhestvo,organization,100,Bulgaria,6
126
+ З.А.Т.,Zakritae Aktsiyanernae Tavaristva,organization,100,Belarus,6
127
+ К.Д.А.,komanditno druzhestvo s aktzii,organization,100,Bulgaria,6
128
+ О.О.Д.,drujestvo s ogranichena otgovornost,organization,100,Bulgaria,6
129
+ Т.А.А.,Tabaristva z Abmezabanaj Adkaznastsu,organization,100,Belarus,6
130
+ 股份有限公司,Public Limited Company,organization,100,China,6
131
+ Ap.S.,Anpartsselskab,organization,100,Denmark,5
132
+ Corp.,Corporation,organization,100,,5
133
+ ltda.,,organization,100,,5
134
+ Sh.A.,Shoqeri Aksionere,organization,100,Albania,5
135
+ st.G.,stille Gesellschaft,organization,100,Austria,5
136
+ Ultd.,Unlimited company,organization,100,Hong Kong,5
137
+ a.b.,,organization,100,,4
138
+ A.D.,,organization,100,,4
139
+ A.E.,Anónimi Etería,organization,100,Greece,4
140
+ A.G.,Aktiengesellschaft,organization,100,,4
141
+ A.S.,,organization,60,,4
142
+ A.Ş.,,organization,100,Turkey,4
143
+ A.y.,avoin yhtiö,organization,80,Finland,4
144
+ B.M.,Be'eravon Mugbal,organization,100,Israel,4
145
+ b.t.,betéti társaság,organization,100,Hungary,4
146
+ B.V.,Besloten vennootschap,organization,100,Netherlands,4
147
+ C.A.,Compañía Anónima,organization,50,Ecuador,4
148
+ C.V.,Commanditaire vennootschap,organization,100,Netherlands,4
149
+ d.d.,dioničko društvo,organization,100,Bosnia & Herzegovina,4
150
+ e.c.,egyéni cég,organization,100,Hungary,4
151
+ E.E.,Eterórithmos Etería,organization,100,Greece,4
152
+ e.G.,eingetragene Genossenschaft,organization,100,Germany,4
153
+ E.I.,Entreprise individuelle,organization,100,France,4
154
+ E.P.,Empresa Pública,organization,100,Ecuador,4
155
+ E.T.,ednolichen turgovetz,organization,100,Bulgaria,4
156
+ E.U.,Empresa unipersonal,organization,100,Colombia,4
157
+ e.v.,,organization,100,,4
158
+ G.K.,gōdō-kaisha,organization,100,Japan,4
159
+ G.P.,General Partnership,organization,100,,4
160
+ h.f.,hlutafélag,organization,100,Iceland,4
161
+ Inc.,Incorporated,organization,100,,4
162
+ K.D.,,organization,100,,4
163
+ K.G.,Kommanditgesellschaft,organization,100,,4
164
+ K.K.,kabushiki-kaisha,organization,100,Japan,4
165
+ k.s.,komanditní společnost,organization,100,Czech Republic,4
166
+ k.v.,közös vállalat,organization,100,Hungary,4
167
+ K.y.,kommandiittiyhtiö,organization,100,Finland,4
168
+ L.C.,Limited Company,organization,100,United States,4
169
+ L.P.,Limited Partnership,organization,100,,4
170
+ Ltd.,Limited Company,organization,100,,4
171
+ N.K.,nin'i kumiai,organization,100,Japan,4
172
+ N.L.,No Liability,organization,100,Australia,4
173
+ N.V.,naamloze vennootschap,organization,100,,4
174
+ O.E.,Omórithmos Etería,organization,100,Greece,4
175
+ O.G.,offene Gesellschaft,organization,100,Austria,4
176
+ O.Ü.,Osaühing,organization,100,Estonia,4
177
+ O.y.,osakeyhtiö,organization,80,Finland,4
178
+ P.C.,,organization,75,,4
179
+ p.l.,,organization,100,,4
180
+ Pty.,Unlimited Proprietary,organization,100,Australia,4
181
+ PUP.,Privatnae Unitarnae Pradpriemotva,organization,100,Belarus,4
182
+ Pvt.,,organization,100,,4
183
+ r.t.,részvénytársaság,organization,100,Hungary,4
184
+ S.A.,Société anonyme,organization,100,,4
185
+ S.D.,subiratelno druzhestvo,organization,100,Bulgaria,4
186
+ S.E.,,organization,100,,4
187
+ s.f.,sameignarfélag,organization,100,Iceland,4
188
+ S.L.,,organization,100,,4
189
+ S.P.,,organization,100,,4
190
+ S.s.,Società semplice,organization,100,Italy,4
191
+ T.K.,tokumei kumiai,organization,100,Japan,4
192
+ T.Ü.,Täisühing,organization,100,Estonia,4
193
+ U.Ü.,Usaldusühing,organization,100,Estonia,4
194
+ Y.K.,yūgen-kaisha,organization,100,Japan,4
195
+ А.Д.,aktsionerno drujestvo,organization,100,Bulgaria,4
196
+ І.П.,Individualni Pradprimalnik,organization,100,Belarus,4
197
+ К.Д.,komanditno druzhestvo,organization,100,Bulgaria,4
198
+ ПУП.,Privatnae Unitarnae Pradpriemotva,organization,100,Belarus,4
199
+ С.Д.,subiratelno druzhestvo,organization,100,Bulgaria,4
200
+ "בע""מ",Be'eravon Mugbal,organization,100,Israel,4
201
+ 任意組合,nin'i kumiai,organization,100,Japan,4
202
+ 匿名組合,tokumei kumiai,organization,100,Japan,4
203
+ 合同会社,gōdō-kaisha,organization,100,Japan,4
204
+ 合名会社,gōmei-kaisha,organization,100,Japan,4
205
+ 合資会社,gōshi-kaisha,organization,100,Japan,4
206
+ 有限会社,yūgen-kaisha,organization,100,Japan,4
207
+ 有限公司,Limited Company,organization,100,China,4
208
+ 株式会社,kabushiki-kaisha,organization,100,Japan,4
209
+ A/S,Aktieselskab,organization,100,Denmark,3
210
+ G/S,Gensidigt selskab,organization,100,Denmark,3
211
+ I/S,Interessentskab,organization,100,Denmark,3
212
+ K/S,Kommanditselskab,organization,100,Denmark,3
213
+ P/S,Partnerselskab ,organization,100,Denmark,3
214
+ S/A,,organization,100,,3
215
+ Chartered F.C.S.I.,,person,100,,18
216
+ Chartered M.C.S.I.,,person,100,,18
217
+ I.F.R.S. Certified,,person,100,,18
218
+ F.Inst.L.M.,,person,100,,11
219
+ C.I.S.S.P.,,person,100,,10
220
+ F.C.I.P.S.,,person,100,,10
221
+ M.R.I.C.S.,,person,100,,10
222
+ T.M.I.E.T.,Member of the Institution of Engineering and Technology,person,100,,10
223
+ Dip. D.M.,,person,100,,9
224
+ A.A.M.S.,,person,100,,8
225
+ A.C.C.A.,Association of Chartered Certified Accountants,person,100,,8
226
+ A.C.M.A.,,person,100,,8
227
+ A.I.F.A.,,person,100,,8
228
+ A.W.M.A.,,person,100,,8
229
+ C.A.I.A.,,person,100,,8
230
+ C.A.P.M.,,person,100,,8
231
+ C.C.I.M.,,person,100,,8
232
+ C.D.F.A.,,person,100,,8
233
+ C.E.P.P.,,person,100,,8
234
+ C.F.B.S.,,person,100,,8
235
+ C.G.M.A.,,person,100,,8
236
+ C.I.T.P.,,person,100,,8
237
+ C.L.T.C.,,person,100,,8
238
+ C.P.C.C.,,person,100,,8
239
+ C.R.P.C.,,person,100,,8
240
+ C.R.P.S.,,person,100,,8
241
+ C.S.O.X.,,person,100,,8
242
+ C.S.S.D.,,person,100,,8
243
+ F.B.C.S.,,person,100,,8
244
+ F.C.C.A.,Fellow of the Association of Chartered Certified Accountants,person,100,,8
245
+ F.C.M.I.,Fellow of the Chartered Management Institute,person,100,United Kingdom,8
246
+ F.C.S.I.,,person,100,,8
247
+ F.I.E.T.,Fellow of the Institution of Engineering and Technology,person,100,,8
248
+ F.I.R.P.,,person,100,,8
249
+ M.I.E.T.,Member of the Institution of Engineering and Technology,person,100,,8
250
+ M.S.F.S.,,person,100,,8
251
+ M.Sc. D.,,person,100,,8
252
+ O.R.S.C.,,person,100,,8
253
+ R.I.C.P.,,person,100,,8
254
+ B.Tech.,Bachelor of Technology,person,100,,7
255
+ Cantab.,,person,100,,7
256
+ Ch.F.C.,,person,100,,7
257
+ D.Phil.,Doctor of Philosophy,person,100,,7
258
+ I.T.I.L. v3,,person,100,,7
259
+ M.Io.D.,,person,100,,7
260
+ S.C.M.P,,person,100,,7
261
+ A.C.A.,Associate of the Institute of Chartered Accountants in England and Wales,person,100,United Kingdom,6
262
+ A.C.C.,,person,100,,6
263
+ A.E.P.,,person,100,,6
264
+ A.I.F.,,person,100,,6
265
+ A.S.A.,,person,100,,6
266
+ B.Eng.,Bachelor of Engineering,person,100,,6
267
+ C.B.V.,,person,100,,6
268
+ C.E.M.,,person,100,,6
269
+ C.Eng.,,person,100,,6
270
+ C.F.A.,,person,100,,6
271
+ C.F.F.,,person,100,,6
272
+ C.F.P.,,person,100,,6
273
+ C.F.S.,,person,100,,6
274
+ C.G.A.,,person,100,,6
275
+ C.G.B.,,person,100,,6
276
+ C.G.P.,,person,100,,6
277
+ C.I.M.,,person,100,,6
278
+ C.L.P.,,person,100,,6
279
+ C.L.U.,,person,100,,6
280
+ C.M.A.,,person,100,,6
281
+ C.M.T.,,person,100,,6
282
+ C.P.A.,,person,100,,6
283
+ C.T.A.,Chartered Tax Adviser,person,100,,6
284
+ C.W.S.,,person,100,,6
285
+ D.B.E.,Dame of the British Empire,person,100,,6
286
+ D.D.S.,Doctor of Dental Surgery,person,100,,6
287
+ D.V.M.,Doctor of Veterinary Medecine,person,100,,6
288
+ E.R.P.,Energy Risk Professional,person,100,,6
289
+ Eng.D.,Doctor of Engineering,person,100,,6
290
+ F.C.A.,Fellow of the Institute of Chartered Accountants in England and Wales,person,100,United Kingdom,6
291
+ F.P.C.,,person,100,,6
292
+ F.R.M.,,person,100,,6
293
+ F.R.M.,,person,100,,6
294
+ G.S.P.,,person,100,,6
295
+ L.P.S.,,person,100,,6
296
+ M.B.A.,Master of Business Administration,person,100,,6
297
+ M.B.E.,Member of the Order of the British Empire,person,100,,6
298
+ M.E.P.,Member of the European Parliament,person,100,,6
299
+ M.Eng.,Master of Engineering,person,100,,6
300
+ M.Jur.,Master of Jurisprudence,person,100,United Kingdom,6
301
+ M.P.A.,,person,100,,6
302
+ M.S.F.,,person,100,,6
303
+ M.S.P.,Member of the Scottish Parliament,person,100,,6
304
+ O.B.E.,Order of the British Empire,person,100,,6
305
+ P.C.C.,,person,100,,6
306
+ P.F.S.,,person,100,,6
307
+ P.H.R.,,person,100,,6
308
+ P.M.C.,,person,100,,6
309
+ P.M.P.,,person,100,,6
310
+ P.M.P.,,person,100,,6
311
+ P.S.P.,,person,100,,6
312
+ R.F.C.,,person,100,,6
313
+ V.M.D.,Doctor of Veterinary Medecine,person,100,,6
314
+ B.Ed.,Bachelor of Education,person,20,,5
315
+ B.Sc.,Bachelor of Science,person,100,,5
316
+ Ed.D.,Doctor of Education,person,100,,5
317
+ Ed.M.,,person,100,,5
318
+ Hons.,,person,100,,5
319
+ LL.B.,Bachelor of Laws,person,100,,5
320
+ LL.D.,Doctor of Laws,person,100,,5
321
+ LL.M.,Master of Laws,person,100,,5
322
+ M.Ed.,Master of Education,person,100,,5
323
+ M.Sc.,Master of Science,person,100,,5
324
+ Oxon.,,person,100,,5
325
+ Ph.D.,Doctor of Philosophy,person,100,,5
326
+ B.A.,Bachelor of Arts,person,100,,4
327
+ C.A.,,person,50,,4
328
+ E.A.,,person,100,,4
329
+ Esq.,Esquire,person,100,,4
330
+ J.D.,Juris Doctor,person,100,,4
331
+ K.C.,King's Counsel,person,100,,4
332
+ M.A.,Master of Arts,person,100,,4
333
+ M.D.,Doctor of Medicine,person,100,,4
334
+ M.P.,Member of Parliament,person,100,,4
335
+ M.S.,,person,100,,4
336
+ O.K.,"(unknown personal suffix, poss. Oklahoma-related)",person,20,,4
337
+ P.A.,Physician Assistant,person,100,,4
338
+ Q.C.,Queen's Counsel,person,100,,4
339
+ R.D.,,person,100,,4
340
+ III,The Third,person,100,,3
341
+ Jr.,Junior,person,100,,3
342
+ Sr.,Senior,person,100,,3
343
+ II,The Second,person,100,,2
344
+ IV,The Fourth,person,100,,2
345
+ V,The Fifth,person,20,,1