In [1]:
import pandas as pd
import requests
import gdelt
gd = gdelt.gdelt(version=2)
events = gd.Search(date=['2017 28 May','2017 29 May'],table='events',coverage=True,output='gpd',normcols=True)
/Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages/gdelt/parallel.py:66: UserWarning: GDELT does not have a url for date time 20170529004500
warnings.warn(message)
/Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages/gdelt/parallel.py:99: UserWarning: GDELT did not return data for date time 20170529004500
warnings.warn(message)
/Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages/gdelt/parallel.py:66: UserWarning: GDELT does not have a url for date time 20170529023000
warnings.warn(message)
/Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages/gdelt/parallel.py:99: UserWarning: GDELT did not return data for date time 20170529023000
warnings.warn(message)
/Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages/gdelt/parallel.py:66: UserWarning: GDELT does not have a url for date time 20170529030000
warnings.warn(message)
/Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages/gdelt/parallel.py:99: UserWarning: GDELT did not return data for date time 20170529030000
warnings.warn(message)
/Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages/gdelt/parallel.py:66: UserWarning: GDELT does not have a url for date time 20170529214500
warnings.warn(message)
/Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages/gdelt/parallel.py:99: UserWarning: GDELT did not return data for date time 20170529214500
warnings.warn(message)
/Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages/gdelt/parallel.py:66: UserWarning: GDELT does not have a url for date time 20170529224500
warnings.warn(message)
/Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages/gdelt/parallel.py:99: UserWarning: GDELT did not return data for date time 20170529224500
warnings.warn(message)
In [16]:
events.columns
Out[16]:
Index(['globaleventid', 'sqldate', 'monthyear', 'year', 'fractiondate',
'actor1code', 'actor1name', 'actor1countrycode', 'actor1knowngroupcode',
'actor1ethniccode', 'actor1religion1code', 'actor1religion2code',
'actor1type1code', 'actor1type2code', 'actor1type3code', 'actor2code',
'actor2name', 'actor2countrycode', 'actor2knowngroupcode',
'actor2ethniccode', 'actor2religion1code', 'actor2religion2code',
'actor2type1code', 'actor2type2code', 'actor2type3code', 'isrootevent',
'eventcode', 'cameocodedescription', 'eventbasecode', 'eventrootcode',
'quadclass', 'goldsteinscale', 'nummentions', 'numsources',
'numarticles', 'avgtone', 'actor1geotype', 'actor1geofullname',
'actor1geocountrycode', 'actor1geoadm1code', 'actor1geoadm2code',
'actor1geolat', 'actor1geolong', 'actor1geofeatureid', 'actor2geotype',
'actor2geofullname', 'actor2geocountrycode', 'actor2geoadm1code',
'actor2geoadm2code', 'actor2geolat', 'actor2geolong',
'actor2geofeatureid', 'actiongeotype', 'actiongeofullname',
'actiongeocountrycode', 'actiongeoadm1code', 'actiongeoadm2code',
'actiongeolat', 'actiongeolong', 'actiongeofeatureid', 'dateadded',
'sourceurl', 'geometry'],
dtype='object')
In [109]:
# %load /Users/linwood/projects/Blogs/drafts/geolocated_social_transcends_political_barriers/notebook/utilities.py
# Author: Linwood Creekmore III
# email: valinvescap@gmail.com
# Custom functions for Twitter Geospatial Analysis Blog
#################################
# Imports
#################################
import matplotlib.pyplot as plt
import io, json, re, itertools
from functools import partial
from tzwhere import tzwhere
import geoplot.crs as gcrs
import geopandas as gpd
import geoplot as gplt
import pandas as pd
import numpy as np
import requests
import shapely
import fiona
import gdal
import fiona
import uuid
import pytz
import os
try:
from shapely.geometry import Point
tz1 = tzwhere.tzwhere(shapely=True,forceTZ=True)
except:
tz2 = tzwhere.tzwhere()
try:
import datashader as ds
from datashader.utils import export_image
from datashader import transfer_functions as tf
except:
print('You do not have datashader installed. You will not be able to plot large data sets.')
#shameless copy paste from json/decoder.py
FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
WHITESPACE = re.compile(r'[ \t\n\r]*', FLAGS)
class ConcatJSONDecoder(json.JSONDecoder):
def decode(self, s, _w=WHITESPACE.match):
s_len = len(s)
objs = []
end = 0
while end != s_len:
obj, end = self.raw_decode(s, idx=_w(s, end).end())
end = _w(s, end).end()
objs.append(obj)
return objs
#################################
# Converts tweet json into tidy data
#################################
def reader(filename,anonymize=True):
"""Transform tweet json data into tidy format.
This function transforms tweets into tidy format.
This has been tested and workds on Assumes you are retrieving
tweets from the Twitter API. *Requires pandas library.*
Parameters
----------
filename : str
string representing path to twitter data in json format.
Returns
-------
dataframe
Pandas dataframe in tidy format.
"""
try:
df = pd.read_json(filename, convert_dates=True) # try to read in normally
"contributers" in df.columns # look for column
except:
# trying to read in jsons with "trailing data"
with open(filename,'rb') as f:
g=io.StringIO(f.read().decode('utf-8'))
h = json.load(g,cls=ConcatJSONDecoder)
if len(h)>1 and len(h)<1000:
try:
df = pd.DataFrame(list(itertools.chain(*h)))
df = df.assign(created_at=pd.to_datetime(df.created_at))
except:
df = pd.DataFrame(h)
df = df.assign(created_at=pd.to_datetime(df.created_at))
else:
# trying to read in jsons that return as two lists of dicts
df = pd.read_json(io.StringIO(json.dumps(h)),convert_dates=True)
try:
# reading another dirty version
df = df.apply(lambda x: pd.Series(json.loads(x[0])),axis=1)
except:
# return to original if nothing workds
df = df
df.dropna(subset=['coordinates', 'created_at'], how='all',inplace=True) # drop rows with NA
df.reset_index(inplace=True,drop=True) # reset the index
df.set_index('created_at', drop=True,inplace=True)
dfsmall = df[[u'coordinates', u'lang', u'text']].assign(
screenname = df.apply(
lambda x: x['user']['screen_name'], axis=1),
urls=df.apply(
lambda x: x['entities']['urls'][0]['expanded_url'] \
if len(x['entities']['urls']) != 0 else None,
axis=1),
tweetid = df.apply(lambda x: x['id'], axis=1),
latitude = df.apply(
lambda x: (x['coordinates']['coordinates'][1]\
if isinstance(x['coordinates'], dict) == True else None),
axis=1),
longitude = df.apply(
lambda x: (x['coordinates']['coordinates'][0]\
if isinstance(x['coordinates'], dict) == True else None),
axis=1),
type=df.apply(
lambda x: (x['coordinates']['type']\
if isinstance(x['coordinates'], dict) == True else None),
axis=1)).drop(
labels='coordinates', axis=1)
del df
if anonymize:
dfsmall.drop(['screenname','text','tweetid','urls'],axis=1,inplace=True)
return dfsmall
#################################
# Highlights dataframe values
#################################
def highlight_max(s):
'''
highlight the maximum in a Series yellow.
'''
top10=['China','United States','India','Russia','Indonesia','Japan','China','Brazil','United Kingdom','Mexico','Russia','Phillipines','Spain']
is_max = s == s.max()
return ['background-color: yellow' if v else '' for v in is_max]
from collections import OrderedDict
#################################
# Identifies primary language
# using custom rules/stats
#################################
def languageweighter(row):
"""Normalizes languages to identify true primary langauge.
Weighting function to identify the true primary language
of a region. Uses rule to identify a count of occurences
per country. If the highest proportional language is
English and a second langauge contributes 10% or more, this
function weights the second language as the primary, and reverses
the proportion to a 25/75 split, where the second language will
account for a larger proportion.
Parameters
----------
row : pandas row
performs weighting on pandas row in vectorized operations
Returns
-------
row
row with weighted/transformed language proportions.
"""
ratio = row.sort_values(ascending=False)/\
row.sort_values(ascending=False).sum()
old0,old1,old2 = ratio[0],ratio[1],ratio[2]
try:
if ratio.index[0]=='en' and ratio[1]>=0.10:
ratio[0]=((old0+old1)*.25)
ratio[1]=((old0+old1)*.75)
elif ratio.index[0]=='en' & ratio[1]>0.10 and ratio[2]>0.03:
ratio[0]=((old0+old1)*.05)
ratio[1]=((old0+old1)*.65)
ratio[2]=((old0+old1)*.25)
except:
ratio=ratio
return ratio
#################################
# Creates shapely points
#################################
def shaper(row):
"""
Parallel function to create shapely points
from latitude/longitude pair in dataframe
Parameters
----------
row : pandas or dask dataframe row
Row containing latitude and longitude variables and data
Returns
-------
shapely point
Shapely spatial object for geoprocessing in Python.
"""
geometry=Point(row['longitude'],row['latitude'])
return geometry
def show_function(function):
"""
Utility function to load function into
jupyter notebook for review.
Parameters
----------
function : function that is active/imported
Function must be imported to work
Returns
-------
function string
Loads full function logic into ipython cell.
"""
import inspect
get_ipython().set_next_input("".join(inspect.getsourcelines(function)[0]))
def timenormalize(frame,date_column='created_at'):
"""
Function to take column of dataframe dates and
normalize to local time
Parameters
----------
frame : pandas, geopandas or dask dataframe
Frame with a datetime column
date_column : string
String name of the column with the datetime objects
Returns
-------
Series
Series/column with normalized datetime objects at
local time
"""
# convert to datetime object with UTC time tag
now_aware = pytz.utc.localize(frame[date_column].to_pydatetime())
# get the timezone string representation using lat/lon pair
try:
timezone_str=tz1.tzNameAt(frame['latitude'],frame['longitude'],forceTZ=True)
except:
try:
timezone_str=tz2.tzNameAt(frame['latitude'],frame['longitude'],forceTZ=True)
except Exception as e:
raise('You need to install the pytzwhere module. {0}'.format(e))
# get the time offset
timezone = pytz.timezone(timezone_str)
# convert UTC to calculated local time
aware = now_aware.astimezone(timezone)
return aware
def call_apply_fn(df,function=None):
"""Small utility function to apply parallel functions to dataframe
"""
if function:
return df.apply(function, axis=1)
else:
raise('You need to enter a function to vectorize')
def shapefilereader(target):
"""Function to convert zipped shapefiles from the web or on disk into geopandas dataframes
Parameters
----------
target : str
string representing path to file on disk or url to download the zipped shapefile.
Returns
-------
Geopandas dataframe
Pandas dataframe with geospatial features and operations.
"""
# Detect whether we are using a web-based shapefile or local disk
r = re.compile('^(http|https)://',re.I)
if r.search(target):
download = True
request = requests.get(target)
target = '/vsimem/{}.zip'.format(uuid.uuid4().hex) #gdal/ogr requires a .zip extension
gdal.FileFromMemBuffer(target,bytes(request.content))
else:
download = False
with fiona.Collection(target,vsi='zip') as f:
return gpd.GeoDataFrame.from_features(f,crs=f.crs)
def coordgetter(row):
"""Converts latitude and longitude"""
geometry= Point(row['longitude'],row['latitude'])
try:
name = row['NAME']
except:
name = row['name']
b = pd. Series({'lang':row['lang'],'name':name,
'created_at':row['created_at'],'geometry':geometry,})
return b
def pointgetter(row):
longitude=row['geometry'].x
latitude=row['geometry'].y
b = pd.Series({'latitude':latitude,'longitude':longitude})
return b
def gpdmaker(frame):
return gpd.GeoDataFrame(frame,crs={'init':'epsg:4326'}).to_crs({'init':'epsg:3857'})
def continentlabs(row):
shape = row['geometry'].centroid
x,y = shape.x,shape.y
return (x,y,row['name'])
def datshadeit(frame,col_key=None,method='log',exportit=False,column=None, path=None):
"""Takes Dataframe with web mercator projection columns of "latitude" and "longitude"
and plots using datashader. Can handle millions or billions of points
Parameters
----------
frame : geopandas or pandas dataframe
Dataframe containing the longitude and latitude columns. Must be web mercator
projection.
col_key : dictonary
Dictionary holding key/value store of categories and colors. If you want to
plot different categories, this is required. Number of colors must match
the number of categories.
method : string, Default = 'log' , Optional = 'cbrt','linear','eq_hist'
Datashader interpolization options. Choose from options listed above.
exportit: Boolean
Decide whether to export the image to disk.
column : string
The categorical column to count and color on. Requires color key.
path : string
Path where the image will be stored if you decide to export.
"""
background='black'
export = partial(export_image, export_path="export", background=background)
bound = 20026376.39
bounds = dict(x_range = (-bound, bound), y_range = (int(-bound*0.4), int(bound*0.6)))
plot_width = 1000
plot_height = int(plot_width*0.5)
x_range = (-bound, bound)
y_range = (int(-bound*0.4), int(bound*0.6))
cvs = ds.Canvas(plot_width=1050, plot_height=650, x_range=x_range, y_range=y_range)
if column:
agg = cvs.points(frame, 'longitude', 'latitude',ds.count_cat(column))
else:
agg = cvs.points(frame, 'longitude', 'latitude')
tf.warnings.filterwarnings('ignore')
img = tf.shade(agg,color_key=col_key ,how=method)
if not path:
path = os.getcwd()
if exportit:
return export_image(img,path,background='black')
return img
def kernelde(datframe,polyframe,samplenum=500,path=None):
samp = datframe.sample(samplenum)
ax = gplt.polyplot(polyframe,projection=gcrs.PlateCarree(),figsize=(20,12))
gplt.kdeplot(samp,ax=ax,shade=True,shade_lowest=False,projection=gcrs.TransverseMercator())
if not path:
path = os.getcwd()
plt.savefig(path)
plt.show()
/Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages/odo/backends/pandas.py:94: FutureWarning: pandas.tslib is deprecated and will be removed in a future version.
You can access NaTType as type(pandas.NaT)
@convert.register((pd.Timestamp, pd.Timedelta), (pd.tslib.NaTType, type(None)))
You do not have datashader installed. You will not be able to plot large data sets.
/Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages/dask/dataframe/hashing.py:8: FutureWarning: The pandas.lib module is deprecated and will be removed in a future version. These are private functions and can be accessed from pandas._libs.lib instead
from pandas.lib import is_bool_array
In [110]:
world = shapefilereader('http://thematicmapping.org/downloads/TM_WORLD_BORDERS-0.3.zip')
In [ ]:
In [121]:
(events[(events.actiongeotype==3)| (events.actiongeotype==4)]\
.groupby(['actiongeofeatureid','eventcode','actiongeofullname','actiongeocountrycode'])\
.size().sort_values(ascending=False).reset_index())\
.rename(columns={0:"reportcount"})
Out[121]:
actiongeofeatureid
eventcode
actiongeofullname
actiongeocountrycode
reportcount
0
531871
042
Washington, District of Columbia, United States
US
421
1
531871
040
Washington, District of Columbia, United States
US
400
2
531871
043
Washington, District of Columbia, United States
US
385
3
531871
040
White House, District of Columbia, United States
US
355
4
531871
010
Washington, District of Columbia, United States
US
336
5
-2960561
040
Moscow, Moskva, Russia
RS
328
6
-1746443
036
Berlin, Berlin, Germany
GM
324
7
531871
042
White House, District of Columbia, United States
US
319
8
-2438515
190
Marawi, Marawi, Philippines
RP
309
9
531871
010
White House, District of Columbia, United States
US
300
10
531871
190
Washington, District of Columbia, United States
US
267
11
531871
051
Washington, District of Columbia, United States
US
258
12
-1746443
042
Berlin, Berlin, Germany
GM
256
13
531871
020
Washington, District of Columbia, United States
US
253
14
-2960561
010
Moscow, Moskva, Russia
RS
249
15
-1456928
040
Paris, France (general), France
FR
243
16
-2960561
042
Moscow, Moskva, Russia
RS
242
17
-1746443
043
Berlin, Berlin, Germany
GM
241
18
-1456928
030
Paris, France (general), France
FR
238
19
531871
043
White House, District of Columbia, United States
US
238
20
-1955538
040
Brussels, Bruxelles-Capitale, Belgium
BE
238
21
-1456928
051
Paris, France (general), France
FR
235
22
-2602512
042
Manchester, Manchester, United Kingdom
UK
229
23
-2602512
010
Manchester, Manchester, United Kingdom
UK
219
24
531871
020
White House, District of Columbia, United States
US
218
25
-1456928
010
Paris, France (general), France
FR
216
26
-2602512
190
Manchester, Manchester, United Kingdom
UK
211
27
-1456928
042
Paris, France (general), France
FR
207
28
-2601889
042
London, London, City of, United Kingdom
UK
206
29
-2960561
043
Moscow, Moskva, Russia
RS
206
...
...
...
...
...
...
46326
-567397
090
Kluane Lake, Yukon, Canada
CA
1
46327
-567367
042
Kiyuk Lake, Nunavut, Canada
CA
1
46328
-566690
010
Island Lake, Manitoba, Canada
CA
1
46329
-567354
020
Kitimat, British Columbia, Canada
CA
1
46330
-566707
010
Mud Lake, Manitoba, Canada
CA
1
46331
-566788
0312
Jasper National Park, Alberta, Canada
CA
1
46332
-566964
020
Kalamalka Lake, British Columbia, Canada
CA
1
46333
-566964
042
Kalamalka Lake, British Columbia, Canada
CA
1
46334
-566988
010
Kanata, Ontario, Canada
CA
1
46335
-567092
017
Keg River, Alberta, Canada
CA
1
46336
-567092
020
Keg River, Alberta, Canada
CA
1
46337
-567125
010
Kelowna, British Columbia, Canada
CA
1
46338
-567125
023
Kelowna, British Columbia, Canada
CA
1
46339
-567125
042
Kelowna, British Columbia, Canada
CA
1
46340
-567125
043
Kelowna, British Columbia, Canada
CA
1
46341
-567125
060
Kelowna, British Columbia, Canada
CA
1
46342
-567125
100
Kelowna, British Columbia, Canada
CA
1
46343
-567180
042
Kentville, Nova Scotia, Canada
CA
1
46344
-567180
070
Kentville, Nova Scotia, Canada
CA
1
46345
-567180
091
Kentville, Nova Scotia, Canada
CA
1
46346
-567180
112
Kentville, Nova Scotia, Canada
CA
1
46347
-567180
172
Kentville, Nova Scotia, Canada
CA
1
46348
-567202
040
Chaudiere, Ontario, Canada
CA
1
46349
-567239
0231
Kildonan, British Columbia, Canada
CA
1
46350
-567298
020
Kings County, New Brunswick, Canada
CA
1
46351
-567298
051
Kings County, New Brunswick, Canada
CA
1
46352
-567301
071
Kings Point, Newfoundland, Canada
CA
1
46353
-567330
010
Kirkland Lake, Ontario, Canada
CA
1
46354
-567330
071
Kirkland Lake, Ontario, Canada
CA
1
46355
-1001267
010
Pastos Grandes, Salta, Argentina
AR
1
46356 rows × 5 columns
In [68]:
from pandas.io import gbq
q="""
SELECT SQLDATE,SOURCEURL,GLOBALEVENTID,DATEADDED,EventCode,Actor1Code,Actor1Name,Actor2Code,Actor2Name,ActionGeo_Long,ActionGeo_Lat,GoldsteinScale,ActionGeo_FeatureID
FROM [gdelt-bq:full.events]
WHERE (EventCode = '1831' AND ActionGeo_FeatureID='-2602512');
"""
# run the query
df4 = gbq.read_gbq(q, project_id='drivepython-150614')
Requesting query... ok.
Query running...
Query done.
Processed: 61.3 GB
Retrieving results...
Got 567 rows.
Total time taken 2.78 s.
Finished at 2017-05-31 07:57:36.
In [80]:
import datetime
from dateutil.parser import parse
# pd.to_datetime(df4.apply(lambda x: datetime.datetime(x,)))
df5 = df4.set_index(df4.DATEADDED.apply(lambda x: parse(str(x)))).sort_index()
In [106]:
df5.shape
Out[106]:
(567, 13)
In [102]:
%matplotlib inline
import matplotlib.pyplot as plt
import pandas as pd
fig,ax=plt.subplots()
df2 = df2.assign(normed=df2.c_up/df2.c,dates=df2.SQLDATE.apply(lambda x: datetime.datetime.strptime(str(x),"%Y%m%d")))
df2.plot(ax=ax,figsize=(15,9),y='normed',x='dates')
ax.set_xlim(pd.Timestamp('1979-01-01'), pd.Timestamp('2018-05-31'))
Out[102]:
(722450.0, 736845.0)
In [26]:
!/Users/linwood/anaconda3/envs/myenv/bin/pip install pandas-gbq
Collecting pandas-gbq
Downloading pandas_gbq-0.1.6-py2.py3-none-any.whl
Requirement already satisfied: oauth2client in /Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages (from pandas-gbq)
Requirement already satisfied: google-api-python-client in /Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages (from pandas-gbq)
Requirement already satisfied: httplib2 in /Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages (from pandas-gbq)
Requirement already satisfied: pandas in /Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages (from pandas-gbq)
Requirement already satisfied: rsa>=3.1.4 in /Users/linwood/.local/lib/python3.5/site-packages (from oauth2client->pandas-gbq)
Requirement already satisfied: pyasn1>=0.1.7 in /Users/linwood/.local/lib/python3.5/site-packages (from oauth2client->pandas-gbq)
Requirement already satisfied: six>=1.6.1 in /Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages (from oauth2client->pandas-gbq)
Requirement already satisfied: pyasn1-modules>=0.0.5 in /Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages (from oauth2client->pandas-gbq)
Requirement already satisfied: uritemplate<4dev,>=3.0.0 in /Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages (from google-api-python-client->pandas-gbq)
Requirement already satisfied: numpy>=1.7.0 in /Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages (from pandas->pandas-gbq)
Requirement already satisfied: pytz>=2011k in /Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages (from pandas->pandas-gbq)
Requirement already satisfied: python-dateutil>=2 in /Users/linwood/anaconda3/envs/myenv/lib/python3.5/site-packages (from pandas->pandas-gbq)
Installing collected packages: pandas-gbq
Successfully installed pandas-gbq-0.1.6
In [4]:
%reset
Once deleted, variables cannot be recovered. Proceed (y/[n])? y
In [ ]:
ethnic='https://raw.githubusercontent.com/openeventdata/Dictionaries/master/CAMEO.EthnicGroups.actors.txt'
religious = 'https://raw.githubusercontent.com/openeventdata/Dictionaries/master/CAMEO.ReligiousGroups.actors.txt'
nonstateactors='https://raw.githubusercontent.com/openeventdata/Dictionaries/master/Phoenix.MilNonState.actors.txt'
governments='https://github.com/openeventdata/Dictionaries/blob/master/Phoenix.Countries.actors.txt?raw=true'
internationalactors='https://raw.githubusercontent.com/openeventdata/petrarch/master/petrarch/data/dictionaries/Phoenix.International.actors.txt'
import pandas as pd
table = internationalactors
if table==governments:
skipper=43
elif table == ethnic:
skipper=11
elif table == nonstateactors:
skipper=14
elif table == religious:
skipper=10
elif table == internationalactors:
skipper=19
test = pd.read_table(table,skiprows=skipper,names=['codes'])
test
In [1]:
import csv
In [22]:
import re
p = re.compile('^(#+)')
n = re.compile('^[A-Za-z]')
r = re.compile('^(\++)')
s = re.compile('^\[')
In [46]:
import string
count = 0
lens = []
name = None
alternates = None
code = None
with open('international.csv') as f:
reader = csv.reader(f, delimiter='\t', quoting=csv.QUOTE_NONE)
for row in reader:
if len(row)==0 or p.search(row[0]):
pass
elif len(row)==1:
if n.search(row[0]):
name = row[0]
# print(f"The name is {name}")
elif r.search(row[0]):
if alternates:
alt = row[0]
alternates+=f"; {alt}"
else:
alternates=row[0]
# print(f"The alternate is {alternates}")
elif len(row)>=2:
trans_table = str.maketrans({'[': '', ']': ''})
code = row[1].split(" ")[0].translate(trans_table)
if code and name:
print(f"The code is {code}; the name is {name}; and the other names are {alternates}")
code,name,alternates=None,None,None
# else:
# if len(row)==1:
# if p.search(row[0]):
# pass
# elif n.search(row[0]):
# name=row[0]
# if len(val)>0:
# if len(values)==0:
# values+=val
# else:
# values+=f";{val}"
# elif len(row)>=2:
# if s.search(row[1]):
# trans_table = str.maketrans({'[': '', ']': ''})
# code=(row[1].translate(trans_table)).split(';')
# # print (row)
# print(name)
# values=""
# code=""
# name=""
# if count >=1000:
# break
# else:
# # print(" ".join(row).split('\t'))
# print (len(row))
# # print (row,len(row))
# count += 1
# # if r.search(row):
# # pass
# # else:
# # print (row)
# # count += 1
The code is IGOUNO; the name is U.N._; and the other names are None
The code is IGOUNO; the name is UN_SECRETARY_GENERAL; and the other names are +SECRETARY_GENERAL_OF_THE_UNITED_NATIONS_; +SECRETARY_GENERAL_OF_THE_UN; +UN_Secy_Gen; +U.N._SECRETARY_GENERAL; +UN_SEC._GEN; +UNITED_NATIONS_CHIEF; +UNSG
The code is IGOUNO; the name is SECRETARY-GENERAL_BAN_KI-MOON; and the other names are +UN_SECRETARY-GENERAL_BAN_KI-MOON; +UNITED_NATIONS_SECRETARY_GENERAL_BAN_KI-MOON; +UNITED_NATIONS_SECRETARY-GENERAL_BAN_KI-MOON; +BAN_KI-MOON
The code is ELI;; the name is BOUTROS_BOUTROS_GHALI_; and the other names are +SECRETARY-GENERAL_KOFI_ANNAN; +UNITED_NATIONS_SECRETARY_GENERAL_KOFI_ANNAN; +SECRETARY-GENERAL_KOFI_ANNAN; +K._ANNAN_; +K_ANNAN_; +KOFI_ATTA_ANNAN_
The code is ELI;; the name is ABRAHAM_ABRAHAM_; and the other names are +BOUTROS_BOUTROS-GHALI_; +SECRETARY-GENERAL_BOUTROS-GHALI_; +UNITED_NATIONS_SECRETARY_GENERAL_BOUTROS-GHALI_; +SECRETARY-GENERAL_BOUTROS-GHALI_
The code is IGOUNOREFHCR; the name is JAVIER_DE_CUELLAR_; and the other names are None
The code is IGOUNO; the name is JEAN_MARIE_GUEHENNO_; and the other names are None
The code is IGOUNO; the name is ANN_VENEMAN_; and the other names are None
The code is IGOUNOKID; the name is B._LYNN_PASCOE_; and the other names are None
The code is IGOUNO; the name is BARBER_CONABLE_; and the other names are None
The code is IGOUNODEVWBK; the name is CARLOS SANTOS_CRUZ_; and the other names are None
The code is IGOUNO; the name is EC/UNFPA_INITIATIVE_FOR_REPRODUCTIVE_HEALTH_IN_ASIA_; and the other names are None
The code is IGOUNOASAHLH;; the name is ECONOMIC_AND_SOCIAL_COMMISSION_FOR_ASIA_AND_THE_PACIFIC_; and the other names are None
The code is IGOUNODEV; the name is EJEVIOME_ELOH_OTOBO_; and the other names are None
The code is IGOUNO; the name is GILLIAN_MELLSOP_; and the other names are None
The code is IGOUNOKID; the name is GLADWYN_JEBB_; and the other names are None
The code is IGOUNO; the name is GRAEME_WHEELER_; and the other names are None
The code is IGOUNOWBK; the name is HAMMARSKJOLD_; and the other names are None
The code is IGOUNO; the name is IAEA_; and the other names are None
The code is IGOUNOIAE;; the name is ICJ_; and the other names are None
The code is IGOUNOJUDICJ;; the name is INDIAN_UN_PEACEKEEPER_; and the other names are None
The code is IGOUNO; the name is INTERGOVERNMENTAL_PANEL_ON_CLIMATE_CHANGE_; and the other names are None
The code is IGOUNOENV; the name is INTERNATIONAL_ATOMIC_ENERGY_AGENCY_; and the other names are None
The code is IGOUNOIAE;; the name is INTERNATIONAL_COURT_OF_JUSTICE_; and the other names are None
The code is IGOUNOJUDICJ;; the name is INTERNATIONAL_ENERGY_AGENCY_; and the other names are None
The code is IGOUNOAIE; the name is INTERNATIONAL_LABOR_ORGANIZATION_; and the other names are None
The code is IGOUNOLABILO;; the name is INTERNATIONAL_WAR_CRIMES_TRIBUNAL_; and the other names are None
The code is IGOUNOENV; the name is JAN_ERIK_WILHELMSEN_; and the other names are +IPCC
The code is IGOUNO; the name is LENA_SUNDH_; and the other names are None
The code is IGOUNO; the name is LOUISE_ARBOUR_; and the other names are None
The code is IGOUNOHRIHCH; the name is MANFRED_NOWAK_; and the other names are None
The code is IGOUNOHRI; the name is MATTHEW_KAHANE_; and the other names are None
The code is IGOUNO; the name is MICHELE_MONTAS_; and the other names are None
The code is HTIOPPMED; the name is MONUC INDIAN_CONTINGENT_; and the other names are None
The code is IGOUNO; the name is MONUC_; and the other names are None
The code is IGOUNO; the name is OHCHR_; and the other names are None
The code is IGOUNOHRIHCH; the name is OHCHR_NEPAL_; and the other names are None
The code is IGOUNOHRIHCH; the name is OPIA_MENSAH_KUMAH_; and the other names are None
The code is IGOUNODEV; the name is PETER_CORDINGLEY_; and the other names are None
The code is IGOUNOHLHWHOMED; the name is PHILIP_ALSTON_; and the other names are None
The code is IGOUNO; the name is R.K._PACHAURI_; and the other names are None
The code is IGOUNOENV; the name is RALPH_FIENNES_; and the other names are None
The code is IGOUNOKID; the name is RICHARD_RAGAN_; and the other names are None
The code is IGOUNOWFP; the name is R_K_PACHAURI_; and the other names are None
The code is IGOUNOENV; the name is SAMLEE_PLIANBANGCHANG_; and the other names are None
The code is IGOUNOHLHWHO; the name is SECRETARIAT_OF_THE_UN_; and the other names are None
The code is IGOUNO;; the name is SECRETARIAT_OF_THE_UNITED_NATIONS_; and the other names are None
The code is IGOUNO;; the name is SPECIAL_RAPPORTEUR_OF_THE_UNITED_NATIONS_HUMAN_RIGHTS_COUNCIL_; and the other names are None
The code is IGOUNO; the name is SPECIAL_REPRESENTATIVE_FOR_CHILDREN AND CONFLICT SRI_LANKA_; and the other names are None
The code is IGOUNOLKAHRI; the name is THE_SECURITY_COUNCIL_; and the other names are None
The code is IGOUNO; the name is THE_UN_; and the other names are None
The code is IGOUNO; the name is TRYGVE_LIE_; and the other names are None
The code is IGOUNO; the name is U.N._MONITOR_; and the other names are None
The code is IGOUNO; the name is UN DEPARTMENT_OF_PEACEKEEPING_OPERATIONS_; and the other names are None
The code is IGOUNO; the name is UNDP_; and the other names are None
The code is IGOUNODEV; the name is UNESCAP_; and the other names are None
The code is IGOUNODEV; the name is UNHCR_; and the other names are None
The code is IGOUNOREFHCR;; the name is UNICEF_; and the other names are None
The code is IGOUNOKID;; the name is UNIFEM_; and the other names are None
The code is IGOUNODEV;; the name is UNITED_NATIONS_; and the other names are None
The code is IGOUNO;; the name is UNITED_NATIONS_CHILDREN'S_FUND_; and the other names are None
The code is IGOUNOKID;; the name is UNITED_NATIONS_COMMISSION_FOR_HUMAN_RIGHTS_; and the other names are None
The code is IGOUNOHRIHCH;; the name is UNITED_NATIONS_COMMISSION_FOR_REFUGEES_; and the other names are None
The code is IGOUNOREFHCR;; the name is UNITED_NATIONS_DEVELOPMENT_FUND_FOR_WOMEN_; and the other names are None
The code is IGOUNODEV;; the name is UNITED_NATIONS_FOOD_AND_AGRICULTURE_ORGANIZATION_; and the other names are None
The code is IGOUNOAGRFAO;; the name is UNITED_NATIONS_MONITOR_; and the other names are None
The code is IGOUNO; the name is UNITED_NATIONS_SECRETARIAT_; and the other names are None
The code is IGOUNO;; the name is UNMIN_; and the other names are None
The code is IGOUNO; the name is UNOCAL_; and the other names are None
The code is MNC;; the name is UN_BODIES_; and the other names are None
The code is IGOUNO; the name is UN_ENVOY_; and the other names are None
The code is IGOUNO; the name is UN_GENERAL_ASSEMBLY_; and the other names are None
The code is IGOUNO; the name is UN_HIGH_COMMISSION_FOR_HUMAN_RIGHTS_; and the other names are None
The code is IGOUNOHRIHCH;; the name is UN_HIGH_COMMISSION_FOR_REFUGEES_; and the other names are None
The code is IGOUNOREFHCR;; the name is UN_MILLENNIUM_PROJECT_; and the other names are None
The code is IGOUNODEV;; the name is UN_MISSION_; and the other names are None
The code is IGOUNO; the name is UN_MISSION_IN_SUDAN_; and the other names are None
The code is IGOUNO; the name is UN_RESIDENT_; and the other names are None
The code is IGOUNO; the name is UN_SECRETARIAT_; and the other names are None
The code is IGOUNO; the name is UN_SPECIAL_ENVOY_FOR_BURMA_; and the other names are +SECURITY_COUNCIL; +UNSC
The code is IGOUNO; the name is U_THANT_; and the other names are None
The code is IGOUNOWFP; the name is WORLD_HEALTH_ASSEMBLY_; and the other names are +WFP_; +WORLD_FOOD_PROGRAMME
The code is IGOUNOHLHWHO; the name is WORLD_HEALTH_ORGANIZATION_; and the other names are None
The code is IGOUNOHLHWHO;; the name is ALI_TRIKI_; and the other names are None
The code is IGOUNO; the name is ANDERS_NORDSTROM_; and the other names are None
The code is IGOUNOHLHWHO; the name is ANTONIO_ENRIQUEZ_SAVIGNAC_; and the other names are None
The code is IGOUNOBUS; the name is ASSAD_KOTAITE_; and the other names are None
The code is IGOUNOBUS; the name is BERTRAND_RAMCHARAN_; and the other names are None
The code is IGOUNO; the name is CAROL_BELLAMY_; and the other names are None
The code is IGOUNOKID; the name is DIDIER_OPERTTI_BADAN_; and the other names are None
The code is IGOUNO; the name is DPKO_; and the other names are None
The code is IGOUNO; the name is FRANCESCO_FRANGIALLI_; and the other names are None
The code is ELI;; the name is HANS_BLIX_; and the other names are None
The code is IGOUNOIAE; the name is HAYA_RASHED_AL_KHALIFAH_; and the other names are None
The code is IGOUNO; the name is HIROSHI_NAKAJIMA_; and the other names are None
The code is IGOUNOHLHWHO; the name is INTERNATIONAL_CIVIL_AVIATION_ORGANIZATION_; and the other names are None
The code is IGOUNOBUS; the name is INTERNATIONAL_LABOUR_ORGANIZATION_; and the other names are None
The code is IGOUNOLABILO;; the name is JAMES_GRANT_; and the other names are None
The code is IGOUNOKID; the name is JOSE_AYALA_LASSO_; and the other names are None
The code is IGOUNO; the name is JOSEPH_NANVEN_GARBA_; and the other names are None
The code is IGOUNO; the name is JUAN_SOMAVIA_; and the other names are None
The code is IGOUNOLABILO; the name is KYUNG-WHA_KANG_; and the other names are None
The code is IGOUNO; the name is LEE_JONG_WOOK_; and the other names are None
The code is IGOUNOHLHWHO; the name is MARGARET_CHAN_; and the other names are None
The code is IGOUNOHLHWHO; the name is MICHEL_HANSENNE_; and the other names are None
The code is IGOUNOLABILO; the name is MIGUEL_D'ESCOTO_BROCKMANN_; and the other names are None
The code is IGOUNO; the name is MONUC_INDIAN_CONTINGENT_; and the other names are None
The code is IGOUNO; the name is MUHAMMAD_AL-BARADEI_; and the other names are None
The code is EGYOPP; the name is NAVANETHEM_PILLAY_; and the other names are None
The code is IGOUNO; the name is PHILIPPE_ROCHAT_; and the other names are None
The code is IGOUNOBUS; the name is RALPH_ZACKLIN_; and the other names are None
The code is IGOUNO; the name is RAYMOND_BENJAMIN_; and the other names are None
The code is IGOUNOBUS; the name is RAZALI_ISMAIL_; and the other names are None
The code is IGOUNO; the name is RENATO_CLAUDIO_COSTA_PEREIRA_; and the other names are None
The code is IGOUNOBUS; the name is RICHARD_FRANK_; and the other names are None
The code is IGOUNODEVWBK; the name is ROBERTO_KOBEH_GONZALEZ_; and the other names are None
The code is IGOUNOBUS; the name is SADAKO_OGATA_; and the other names are None
The code is IGOUNO; the name is SAMIR_S._SHIHABI_; and the other names are None
The code is IGOUNO; the name is SAMUEL_R._INSANALLY_; and the other names are None
The code is IGOUNO; the name is SHIVINDER_SINGH_SIDHU_; and the other names are None
The code is IGOUNOBUS; the name is TAIEB_CHERIF_; and the other names are None
The code is IGOUNOBUS; the name is UNESCO_; and the other names are None
The code is IGOUNODEV; the name is UNITED_NATIONS COMMISSION_FOR_HUMAN_RIGHTS_; and the other names are None
The code is IGOUNOHRIHCH;; the name is UNITED_NATIONS COMMISSION_FOR_REFUGEES_; and the other names are None
The code is IGOUNOREFHCR;; the name is UNITED_NATIONS_EDUCATIONAL,_SCIENTIFIC_AND_CULTURAL_ORGANIZATION_; and the other names are None
The code is IGOUNODEV; the name is WENDY_CHAMBERLIN_; and the other names are None
The code is IGOUNO; the name is WORLD_TOURISM_ORGANIZATION_; and the other names are None
The code is IGOUNOBUS; the name is YUKIYA_AMANO_; and the other names are None
The code is IGOUNOIAE; the name is INTERNATIONAL_TELECOMMUNICATIONS_UNION_; and the other names are None
The code is IGOUNOMED; the name is NATO_; and the other names are None
The code is IGOWSTNAT;; the name is JAVIER_SOLANA_; and the other names are None
The code is IGOWSTNAT; the name is ALBERICO_CASARDI_; and the other names are None
The code is IGOWSTNAT; the name is ALESSANDRO_MINUTO_RIZZO_; and the other names are None
The code is IGOWSTNAT; the name is DIRK_STIKKER_; and the other names are None
The code is IGOWSTNAT; the name is AMEDEO_DE_FRANCHIS_; and the other names are None
The code is IGOWSTNAT; the name is BARON_ADOLPH_BENTINCK_; and the other names are None
The code is IGOWSTNAT; the name is CLAUDIO_BISOGNIERO_; and the other names are None
The code is IGOWSTNAT; the name is ERIC_DA_RIN_; and the other names are None
The code is IGOWSTNAT; the name is GENERAL_LORD_ISMAY_; and the other names are None
The code is IGOWSTNAT; the name is GUIDO_COLONNA_DI_PALIANO_; and the other names are None
The code is IGOWSTNAT; the name is JAMES_A._ROBERTS_; and the other names are None
The code is IGOWSTNAT; the name is JONKHEER_VAN_VREDENBURCH_; and the other names are None
The code is IGOWSTNAT; the name is JOSEPH_LUNS_; and the other names are None
The code is IGOWSTNAT; the name is LORD_CARRINGTON_; and the other names are None
The code is IGOWSTNAT; the name is LORD_ROBERTSON_OF_PORT_ELLEN_; and the other names are None
The code is IGOWSTNAT; the name is MANFRED_WÖRNER_; and the other names are None
The code is IGOWSTNAT; the name is MANLIO_BROSIO_; and the other names are None
The code is IGOWSTNAT; the name is MARCELLO_GUIDI_; and the other names are None
The code is IGOWSTNAT; the name is PAOLO_PANSA_CEDRONIO_; and the other names are None
The code is IGOWSTNAT; the name is RINALDO_PETRIGNANI_; and the other names are None
The code is IGOWSTNAT; the name is SERGIO_BALANZINO_; and the other names are None
The code is IGOWSTNAT; the name is WILLY_CLAES_; and the other names are None
The code is IGOWSTNAT; the name is BANTZ_J._CRADDOCK_; and the other names are None
The code is IGOWSTNAT; the name is BARON_ROBERTSON_; and the other names are None
The code is IGOWSTNAT; the name is GEORGE_A._JOULWAN_; and the other names are None
The code is IGOWSTNAT; the name is GEORGE_ROBERTSON_; and the other names are None
The code is IGOWSTNAT; the name is JAMES_G._STAVRIDIS_; and the other names are None
The code is IGOWSTNAT; the name is JOHN_GALVIN_; and the other names are None
The code is IGOWSTNAT; the name is JOSEPH_W._RALSTON_; and the other names are None
The code is IGOWSTNAT; the name is MANFRED_WERNER_; and the other names are None
The code is IGOWSTNAT; the name is MANFRED_WORNER_; and the other names are None
The code is IGOWSTNAT; the name is OSMAN_OLCAY_; and the other names are None
The code is IGOWSTNAT; the name is OSMAN_OLCAY_TURKEY_; and the other names are None
The code is IGOWSTNAT; the name is WESLEY_K._CLARK_; and the other names are None
The code is IGOUNODEVWBK; the name is WORLD_BANK_FAMILY_NETWORK_BOOK_PROJECT_; and the other names are +THE_WB_; +WORLD_BANK_GROUP; +WORLD_BANK_PRESIDENT
The code is IGOUNODEVWBKEDU;; the name is JAMES_WOLFENSOHN_; and the other names are None
The code is IGOUNODEVWBK; the name is JAMES_D._WOLFENSOHN_; and the other names are None
The code is IGOUNODEVWBK; the name is ROBERT_MCNAMARA_; and the other names are None
The code is IGOUNODEVWBK; the name is ROBERT_ZOELLICK_; and the other names are None
The code is IGOUNODEVWBK; the name is EUGENE_BLACK_; and the other names are None
The code is IGOUNODEVWBK; the name is EUGENE_MEYER_; and the other names are None
The code is IGOUNODEVWBK; the name is EUGENE_R._BLACK_; and the other names are None
The code is IGOUNODEVWBK; the name is GEORGE_WOODS_; and the other names are None
The code is IGOUNODEVWBK; the name is JOHN_J MCCLOY_; and the other names are None
The code is IGOUNODEVWBK; the name is LEWIS_PRESTON_; and the other names are None
The code is IGOUNODEVWBK; the name is PAUL_WOLFOWITZ_; and the other names are +LEWIS_T._PRESTON_
The code is IGOUNODEVWBK; the name is BARBER_B._CONABLE_; and the other names are None
The code is IGOUNODEVWBK; the name is JOHANNES_WITTEVEEN_; and the other names are +ALDEN_W._CLAUSEN_; +ALDEN_W_CLAUSEN_
The code is IGOBUSIMF; the name is PIERRE_PAUL_SCHWEITZER_; and the other names are None
The code is IGOBUSIMF; the name is THE_EUROPEAN_UNION_; and the other names are None
The code is IGOEUREEC; the name is EU_HIGH_REPRESENTATIVE; and the other names are +EUROPEAN_UNION; +THE_EUROPEAN_UNION
The code is IGOEUREEC; the name is AMINTORE_FANFANI_; and the other names are None
The code is IGOEUREEC; the name is ATTILIO_RUFFINI_; and the other names are None
The code is IGOEUREEC; the name is CATHERINE_ASHTON; and the other names are None
The code is IGOEUREEC; the name is CHARLES_WHITELEY_; and the other names are +LADY_ASHTON; +LADY_CATHERINE_ASHTON; +BARONESS_ASHTON; +BARONESS_CATHERINE_ASHTON
The code is IGOEUREEC; the name is JAVIER_SOLANA_; and the other names are None
The code is IGOWSTNAT; the name is JEAN_FRANCOIS_PONCET_; and the other names are None
The code is IGOEUREEC; the name is JEAN_SAUVAGNARGUES_; and the other names are None
The code is IGOEUREEC; the name is JOAO_DE_DEUS_PINHEIRO_; and the other names are None
The code is IGOEUREEC; the name is JOHANNESE_SCHAEHINGER_; and the other names are None
The code is IGOEUREEC; the name is ALDO_MORO_; and the other names are None
The code is IGOEUREEC; the name is ANTHONY_CROSLAND, THEN DAVID OWEN_; and the other names are None
The code is IGOEUREEC; the name is CHRIS_VAN_DER_KLAAUW_; and the other names are None
The code is IGOEUREEC; the name is COLETTE_FLESCH_; and the other names are None
The code is IGOEUREEC; the name is DAVID_OWEN_; and the other names are None
The code is IGOEUREEC; the name is DICK_SPRING_; and the other names are None
The code is IGOEUREEC; the name is DIMITRIJ_RUPEL_; and the other names are None
The code is IGOEUREEC; the name is DOUGLAS_HURD_; and the other names are None
The code is IGOEUREEC; the name is EMILIO_COLOMBO_; and the other names are None
The code is IGOEUREEC; the name is EUGENE_SCHAUS_; and the other names are None
The code is IGOEUREEC; the name is EUROPEAN_COMMISSION_; and the other names are None
The code is IGOEUREEC; the name is EUROPEAN_COMMISSION_TO_THE_PHILIPPINES_; and the other names are None
The code is IGOEUREEC; the name is EUROPEAN_PARLIAMENT_; and the other names are None
The code is IGOEUREEC; the name is FRANCISCO_FERNANDEZ_ORDONEZ_; and the other names are None
The code is IGOEUREEC; the name is GARRET_FITZGERALD_; and the other names are None
The code is IGOEUREEC; the name is GEOFFREY_HOWE_; and the other names are None
The code is IGOEUREEC; the name is GEORGE_PAPANDREOU_; and the other names are None
The code is IGOEUREEC; the name is GERRY_COLLINS_; and the other names are None
The code is IGOEUREEC; the name is GIANNI_DE_MICHELIS_; and the other names are None
The code is IGOEUREEC; the name is GIUSEPPE_MEDICI_; and the other names are None
The code is IGOEUREEC; the name is GIUSEPPE_PELLA_; and the other names are None
The code is IGOEUREEC; the name is GRIGORIS_VARFIS_; and the other names are None
The code is IGOEUREEC; the name is HANS_DIETRICH GENSCHER_; and the other names are None
The code is IGOEUREEC; the name is HANS_VAN_DEN_BROEK_; and the other names are None
The code is IGOEUREEC; the name is HANS_VAN_MIERLO_; and the other names are None
The code is IGOEUREEC; the name is HELEN_CAMPBELL_; and the other names are None
The code is IGOEUREEC; the name is HENDRIK_FAYAT_; and the other names are None
The code is IGOEUREEC; the name is HENRI_SIMONET_; and the other names are None
The code is IGOEUREEC; the name is HUBERT_VEDRINE_; and the other names are None
The code is IGOEUREEC; the name is IVAR_NORGAARD_; and the other names are None
The code is IGOEUREEC; the name is JACK_STRAW_DOUGLAS_ALEXANDER_; and the other names are None
The code is IGOEUREEC; the name is JACQUES_POOS_; and the other names are None
The code is IGOEUREEC; the name is JAIME_GAMA_; and the other names are None
The code is IGOEUREEC; the name is JOSEPH_LUNS_; and the other names are None
The code is IGOWSTNAT; the name is JOSEP_PIQUE_I_CAMPS_; and the other names are None
The code is IGOEUREEC; the name is KLAUS_KINKEL_; and the other names are None
The code is IGOEUREEC; the name is KNUD_BORGE_ANDERSEN_; and the other names are None
The code is IGOEUREEC; the name is LAMBERTO_DINI, THEN ROMANO PRODI_; and the other names are None
The code is IGOEUREEC; the name is LEO_TINDEMANS_; and the other names are None
The code is IGOEUREEC; the name is MARIANO_RUMOR_; and the other names are None
The code is IGOEUREEC; the name is MAURICE_COUVE_DE_MURVILLE_; and the other names are None
The code is IGOEUREEC; the name is MAURICE_SCHUMANN_; and the other names are None
The code is IGOEUREEC; the name is MAX_VAN_DER_STOEL_; and the other names are None
The code is IGOEUREEC; the name is MICHAEL_O'KENNEDY_; and the other names are None
The code is IGOEUREEC; the name is NICHOLAS_COSTELLO_; and the other names are None
The code is IGOEUREEC; the name is NORBERT_SCHMELZER_; and the other names are None
The code is IGOEUREEC; the name is PAUL_HENRI_SPAAK_; and the other names are None
The code is IGOEUREEC; the name is PETER_BARRY_; and the other names are None
The code is IGOEUREEC; the name is PETER_CARRINGTON_; and the other names are None
The code is IGOEUREEC; the name is PIERRE_GREGOIRE_; and the other names are None
The code is IGOEUREEC; the name is PIERRE_HARMEL_; and the other names are None
The code is IGOEUREEC; the name is RENAAT_VAN_ELSLANDE_; and the other names are None
The code is IGOEUREEC; the name is ROLAND_DUMAS_; and the other names are None
The code is IGOEUREEC; the name is SIEGFRIED_BALKE_; and the other names are None
The code is IGOEUREEC; the name is STEFAN_FROWEIN_; and the other names are None
The code is IGOEUREEC; the name is UFFE_ELLEMANN_JENSEN_; and the other names are None
The code is IGOEUREEC; the name is VICTOR_LAROCK_; and the other names are None
The code is IGOEUREEC; the name is WILLY_CLAES_; and the other names are None
The code is IGOWSTNAT; the name is ALEXANDRE_LAMFALUSSY_; and the other names are None
The code is IGOEUREEC; the name is ANTHONY_CROSLAND_; and the other names are None
The code is IGOEUREEC; the name is ANTHONY_CROSLAND,_THEN_DAVID_OWEN_; and the other names are None
The code is IGOEUREEC; the name is ARNAUD_JACOMET_; and the other names are None
The code is IGOEUREEC; the name is CATHERINE_LALUMIERE_; and the other names are None
The code is IGOEUREEC; the name is DANIEL_TARSCHYS_; and the other names are None
The code is IGOEUREEC; the name is EGON_KLEPSCH_; and the other names are None
The code is IGOEUREEC; the name is ENRIQUE_BARON_CRESPO_; and the other names are None
The code is IGOEUREEC; the name is HANS_DIETRICH_GENSCHER_; and the other names are None
The code is IGOEUREEC; the name is HANS-GERT_POTTERING_; and the other names are None
The code is IGOEUREEC; the name is JACQUES_DELORS_; and the other names are None
The code is IGOEUREEC; the name is JOSE_CUTILEIRO_; and the other names are None
The code is IGOEUREEC; the name is JOSE_MARIA_GIL-ROBLES_; and the other names are None
The code is IGOEUREEC; the name is JOSEP_BORRELL_; and the other names are None
The code is IGOEUREEC; the name is KLAUS_HANSCH_; and the other names are None
The code is IGOEUREEC; the name is LAMBERTO_DINI; and the other names are None
The code is IGOEUREEC; the name is MAUD_DE_BOER-BUQUICCHIO_; and the other names are None
The code is IGOEUREEC; the name is PAT_COX_; and the other names are None
The code is IGOEUREEC; the name is WALTER_SCHWIMMER_; and the other names are None
The code is IGOEUREEC; the name is WESTERN_EUROPEAN_UNION_; and the other names are None
The code is IGOEUREEC; the name is WIM_DUISENBERG_; and the other names are None
The code is IGOEUREEC; the name is WIM_VAN_EEKELEN_; and the other names are None
The code is IGOEUREEC; the name is ALEXANDRE_LAMFALUSSY_; and the other names are None
The code is IGOEUREEC; the name is REUTERS; and the other names are None
The code is MED; the name is THE_GUARDIAN; and the other names are None
The code is MED; the name is NEW_YORK_TIMES; and the other names are None
The code is MED; the name is WASHINGTON_POST; and the other names are None
The code is MED; the name is ASSOCIATED_PRESS; and the other names are None
The code is MED; the name is AL-JAZEERA; and the other names are None
The code is MED; the name is XINHUA; and the other names are +QATAR-BASED_BROADCASTER_AL-JAZEERA; +QATAR-BASED_AL-JAZEERA
The code is MED; the name is WALL_STREET_JOURNAL; and the other names are None
The code is MED; the name is GLENN_GREENWALD; and the other names are None
The code is MED; the name is BUZZFEED; and the other names are None
The code is MED; the name is DC_JOURNALIST; and the other names are None
The code is MED; the name is HAARETZ; and the other names are +DC_REPORTER
The code is ISRMED; the name is DUBAI-BASED_BROADCASTER_AL-ARABIYA; and the other names are None
The code is MED; the name is AL-MONITOR; and the other names are None
The code is MED; the name is AL_JAZEERA; and the other names are +AL_MONITOR
The code is MED; the name is BBC; and the other names are +AL-JAZEERA; +ALJAZEERA
The code is MED; the name is CNN; and the other names are +BRITISH_BROADCASTING_SERVICE; +BBC_WORLD_SERVICE
The code is MED; the name is XINHUA; and the other names are None
The code is MED; the name is AFP; and the other names are +XINHUA_NEWS_AGENCY
The code is MED; the name is MCCLATCHY; and the other names are +AGENCE_FRANCE-PRESSE; +AGENCE_FRANCE_PRESSE
The code is MED; the name is DER_SPIEGEL; and the other names are None
The code is MED; the name is ORGANIZATION_FOR_THE_PROHIBITION_OF_CHEMICAL_WEAPONS; and the other names are None
The code is IGO; the name is ARAB_MAGHREB_UNION_; and the other names are +OPCW; +ORGANISATION_FOR_THE_PROHIBITION_OF_CHEMICAL_WEAPONS; +HAGUE-BASED_ORGANIZATION_FOR_THE_PROHIBITION_OF_CHEMICAL_WEAPONS; +HAGUE-BASED_ORGANISATION_FOR_THE_PROHIBITION_OF_CHEMICAL_WEAPONS
The code is IGOMEAAMU;; the name is ARAB_MONETARY_FUND_FOR_ECONOMIC_AND_SOCIAL_DEVELOPMENT_; and the other names are None
The code is IGOMEAAMF;; the name is ARAB_COOPERATION_COUNCIL_; and the other names are None
The code is IGOMEAACC;; the name is ARAB_ECONOMIC_UNITY_COUNCIL_; and the other names are None
The code is IGOMEAAEU;; the name is ARAB_LEAGUE_; and the other names are None
The code is IGOMEAARL;; the name is AUPSC_; and the other names are None
The code is IGOAFRAFU; the name is CEN_SAD_; and the other names are None
The code is IGOAFRBUS; the name is ASEAN_; and the other names are None
The code is IGOSEAASN;; the name is ASEAN_COUNTRIES_; and the other names are None
The code is IGOSEAASN; the name is ASEAN_DEFENSE_MINISTERS_; and the other names are None
The code is IGOAEAASN; the name is ASIA_PACIFIC_PARTNERSHIP_ON_CLEAN_DEVELOPMENT_; and the other names are None
The code is IGOENV; the name is ASSOCIATION_OF_COFFEE_PRODUCING_COUNTRIES_; and the other names are None
The code is IGOAGRCPC;; the name is ASSOCIATION_OF_SOUTHEAST_ASIAN_NATIONS_; and the other names are None
The code is IGOSEAASN;; the name is ASSOCIATION_OF_SOUTHEAST_ASIA_NATIONS_; and the other names are None
The code is IGOSEAASN; the name is ASSOCIATION_OF_SOUTH_EAST_ASIAN_NATIONS_; and the other names are None
The code is IGOSEAASN; the name is BANK_FOR_INTERNATIONAL_SETTLEMENTS_; and the other names are None
The code is IGOBUSBIS;; the name is BRIAN_MURGATROYD_; and the other names are None
The code is IGOJUDICC; the name is CAMILLE_GUTT_; and the other names are None
The code is IGOBUSIMF; the name is COALITION_AGAINST_WILDLIFE_TRAFFICKING_; and the other names are None
The code is IGOENV; the name is COMMONWEALTH_OF_INDEPENDENT_STATES_; and the other names are None
The code is IGOCASCIS;; the name is COMMONWEALTH_OF_NATIONS_; and the other names are None
The code is IGOCWN;; the name is COMMUNITY_OF_SAHARAN_STATES_; and the other names are None
The code is IGONAFCSS;; the name is COMMUNITY_OF_SAHEL_STATES_; and the other names are None
The code is IGONAFCSS;; the name is COUNCIL_OF_EUROPE_; and the other names are None
The code is IGOEURCOE;; the name is COUNCIL_OF_SECURITY_AND_COOPERATION_IN_EUROPE_; and the other names are None
The code is IGOEURSCE;; the name is EASTERN_AND_SOUTHERN_AFRICAN_TRADE_AND_DEVELOPMENT_BANK_; and the other names are None
The code is IGOAFRDEVATD;; the name is ECONOMIC_COMMUNITY_OF_CENTRAL_AFRICAN_STATES_; and the other names are None
The code is IGOCAFECA;; the name is ECONOMIC_COMMUNITY_OF_WEST_AFRICAN_STATES_; and the other names are None
The code is IGOWAFWAS;; the name is ECOWAS_; and the other names are None
The code is IGOWAFBUSWAS;; the name is EUROPARC_FEDERATION_; and the other names are None
The code is IGOEURENV;; the name is EUROPEAN_BANK_FOR_RECONSTRUCTION_AND_DEVELOPMENT_; and the other names are None
The code is IGOEURDEVEBR;; the name is EUROPEAN_COMMISSION_; and the other names are None
The code is IGOEUREEC; the name is EUROPEAN_COMMISSION_TO_THE_PHILIPPINES_; and the other names are None
The code is IGOEUREEC; the name is EUROPEAN_FREE_TRADE_ASSOCIATION_; and the other names are None
The code is IGOEURBUSEFT;; the name is GROUP_OF_EIGHT_; and the other names are None
The code is IGOGOE; the name is GROUP_OF_SEVEN_; and the other names are None
The code is IGOGOS;; the name is GROUP_OF_SEVENTY_SEVEN_; and the other names are None
The code is IGOBUSGSS;; the name is IAEA_; and the other names are None
The code is IGOUNOIAE;; the name is ICCO_; and the other names are None
The code is IGOAGRICO;; the name is ICC_; and the other names are None
The code is IGOJUDICC; the name is ICJ_; and the other names are None
The code is IGOUNOJUDICJ;; the name is IGAD_; and the other names are None
The code is IGODEVIAD;; the name is IMF_; and the other names are None
The code is IGOBUSIMF;; the name is INDIAN_OCEAN_COMMISSION_; and the other names are +INTERNATIONAL_MONETARY_FUND
The code is IGOAFR; the name is INDIAN_UN_PEACEKEEPER_; and the other names are None
The code is IGOUNO; the name is INDO_BANGLADESH_JOINT_RIVERS_COMMISSION_; and the other names are None
The code is IGOSASDEV;; the name is INDO_BANGLA_JOINT_RIVER_COMMISSION_; and the other names are None
The code is IGOSASDEV;; the name is INTERGOVERNMENTAL_AUTHORITY_ON_DEVELOPMENT_; and the other names are None
The code is IGOEAFDEVIAD;; the name is INTERNATIONAL_TRUCE_MONITORING_GROUP_; and the other names are None
The code is IGO; the name is INTERNATIONAL_WAR_CRIMES_TRIBUNAL_; and the other names are None
The code is IGOUNOJUDWCT;; the name is INTERPOL_; and the other names are None
The code is IGOCOPITP;; the name is INTER_AFRICAN_COFFEE_ORGANIZATION_; and the other names are None
The code is IGOAFRAGRIAC;; the name is INTER_PARLIAMENTARY_UNION_; and the other names are None
The code is IGOLEGIPU;; the name is IPU_; and the other names are None
The code is IGOIPU; the name is ISLAMIC_DEVELOPMENT_BANK_; and the other names are None
The code is IGOMOSDEVIDB;; the name is LYONPO_CHENKYAB_DORJI_; and the other names are None
The code is IGOSASSAA; the name is MEKONG_RIVER_COMMISSION_; and the other names are None
The code is IGOSEA; the name is MONETARY_AND_ECONOMIC_COMMUNITY_OF_CENTRAL_AFRICA_; and the other names are None
The code is IGOCAFCEM;; the name is NABILA_A._GOLDI_MZALI_; and the other names are None
The code is IGOMEAARL; the name is NEW_ECONOMIC_PARTNERSHIP_FOR_AFRICA'S_DEVELOPMENT_; and the other names are None
The code is IGOAFRDEVNEP;; the name is NUCLEAR_SUPPLIERS_GROUP_; and the other names are None
The code is IGOBUS; the name is OAPEC_; and the other names are None
The code is IGOARBBUSAPE;; the name is OAU_; and the other names are None
The code is IGOAFROAU;; the name is OFID_; and the other names are None
The code is IGOBUSOPCDEV; the name is OIC_; and the other names are None
The code is IGOMOSOIC;; the name is ONG_KENG_YONG_; and the other names are None
The code is IGOSEAASN; the name is OPIA_MENSAH_KUMAH_; and the other names are None
The code is IGOUNODEV; the name is ORGANIZATION_OF_AFRICAN_UNITY_; and the other names are None
The code is IGOOAS;; the name is ORGANIZATION_OF_ISLAMIC_CONFERENCES_; and the other names are None
The code is IGOMOSOIC;; the name is ORGANIZATION_OF_NON_ALIGNED_COUNTRIES_; and the other names are None
The code is IGOOPC;; the name is ORGANIZATION_OF_THE_ISLAMIC_CONFERENCE_; and the other names are +OPEC
The code is IGOMOS;; the name is PSCAU_; and the other names are None
The code is IGOAFRAFU; the name is SAARC_; and the other names are None
The code is IGOSASSAA; the name is SADC_; and the other names are None
The code is IGOSAFSAD; the name is SAFERWORLD_; and the other names are None
The code is IGODEV; the name is SAFTA_; and the other names are None
The code is IGOSASBUS; the name is SAHEL_SAHARAN_STATES_; and the other names are None
The code is IGOAFRBUS; the name is SEATO_; and the other names are None
The code is IGOSEABUSSOT;; the name is SLMM_; and the other names are None
The code is IGOLKA;; the name is SOUTHEAST_ASIAN_NATIONS_; and the other names are None
The code is IGOSEAASN; the name is SOUTHEAST_ASIA_COLLECTIVE_DEFENSE_TREATY_; and the other names are None
The code is IGOSEASOT;; the name is SOUTHERN_AFRICAN_DEVELOPMENT_COMMUNITY_; and the other names are None
The code is IGOSAFDEVSAD;; the name is SOUTH_ASIAN_ASSOCIATION_ [IGOSASSAA] ;MleH 15 Jul 2009; NGO_Actors; and the other names are None
The code is IGOSASBUS; the name is SOUTH_ASIAN_FREE_TRADE_AREA_; and the other names are None
The code is IGOLKA;; the name is SRI_LANKA_MONITORING_MISSION_; and the other names are None
The code is IGOWAFWAD;; the name is WEST_AFRICAN_DEVELOPMENT_BANK_; and the other names are None
The code is IGOWAFWAD;; the name is WEST_AFRICA_DEVELOPMENT_BANK_; and the other names are None
The code is IGOWAFDEVWAM;; the name is WEST_AFRICA_MONETARY_AND_ECONOMIC_UNION_; and the other names are None
The code is IGOASABUS; the name is A._GAVAHI_; and the other names are None
The code is IGOASABUS; the name is A_GAVAHI_; and the other names are None
The code is IGOBUSOPC; the name is ABDALLAH_SALEM_EL-BADRI_; and the other names are None
The code is IGOBUSOPC; the name is ABDELOUAHED_BELKEZIZ_; and the other names are None
The code is IGOMOS; the name is ABDIRAHIN_HAITHAR_ABDI_; and the other names are None
The code is IGOEAFEAC; the name is ABDOLRAHIM_GAVAHI_; and the other names are None
The code is IGOASABUS; the name is ABDUL_RAHMAN_IBN_HAMAD_AL-ATTIYAH_; and the other names are None
The code is IGOPGSGCC; the name is ABDULRAHMAN_KINANA_; and the other names are None
The code is IGOEAFEAC; the name is ADALID_CONTRERAS_BASPINEIRO_; and the other names are None
The code is IGOSAM; the name is ADNAN_SHIHAB-ELDIN_; and the other names are None
The code is IGOBUSOPC; the name is ADWALDO_CARDOSO_BOTTO_DE_BARROS_; and the other names are None
The code is IGO; the name is AFRICAN_CARIBBEAN_AND_PACIFIC_GROUP_OF_STATES_; and the other names are None
The code is IGO; the name is AFRICAN_DEVELOPMENT_BANK_; and the other names are None
The code is IGOAFRDEVAFB; the name is ALFREDO_FUENTES_HERNANDEZ_; and the other names are None
The code is IGOSAM; the name is ALI_RODRIGUEZ_ARAQUE_; and the other names are None
The code is IGOBUSOPC; the name is ANDEAN_COMMUNITY_; and the other names are None
The code is IGOSAM; the name is ANKER_JORGENSEN_; and the other names are None
The code is IGOSCN; the name is ALVARO_SILVA_CALDERON_; and the other names are None
The code is IGOBUSOPC; the name is AMARA_ESSY_; and the other names are None
The code is IGOAFRAFU; the name is AMERICAN_CORRECTIONAL_ASSOCIATION_; and the other names are None
The code is IGOUSACOP; the name is AMR_MOUSSA_; and the other names are None
The code is EGYGOV; the name is ANTARCTIC_TREATY_; and the other names are None
The code is IGO; the name is ARAB_BANK_FOR_ECONOMIC_DEVELOMENT_IN_AFRICA_; and the other names are None
The code is IGOARBDEVABD; the name is ARAB_TOWNS_ORGANIZATION_; and the other names are None
The code is IGOARB; the name is ARTURO_HERRERA_VERDUGO_; and the other names are None
The code is IGOCOPITP; the name is ASSEMBLEE_PARLEMENTAIRE_DE_LA_FRANCOPHONIE_; and the other names are None
The code is IGOLEG; the name is ASSOCIATION_MONDIALE_DES_AMIS_DE_L'ENFANCE_; and the other names are None
The code is IGOHRI; the name is ATANRAOI_BAITEKE_; and the other names are None
The code is IGO; the name is ATI_GEORGE_SOKOMANU_; and the other names are None
The code is IGO; the name is AUGUSTO_VELA_MENA_; and the other names are None
The code is IGOLAM; the name is BANK_OF_CENTRAL_AFRICAN_STATES_; and the other names are None
The code is IGOAFRBCA; the name is BEAC_; and the other names are None
The code is IGOAFRBCA; the name is BERIT_BRORBY_LARSEN_; and the other names are None
The code is IGOSCN; the name is BOLAT_NURGALIYEV_; and the other names are None
The code is IGOCAS; the name is CARIBBEAN_COMMUNITY_; and the other names are None
The code is IGOCRB; the name is CEMAC_; and the other names are None
The code is IGOCAFCEM; the name is CENTRAL_AMERICAN_PARLIAMENT_; and the other names are None
The code is IGOLAM; the name is CHARLES_FRANK_; and the other names are None
The code is IGOEURDEVEBR; the name is CHRISTIAN_CATHOLIC_; and the other names are None
The code is IGOCHR; the name is CHRISTOPHER_R._THOMAS_; and the other names are None
The code is IGOOAS; the name is CIRO_CRUZ_ZEPEDA_; and the other names are None
The code is IGOLAM; the name is COCOA_PRODUCERS'_ALLIANCE_; and the other names are None
The code is IGOAGRCPA;; the name is COMMUNITY_OF_SAHEL_SAHARAN_STATES_; and the other names are None
The code is IGONAFCSS; the name is DATUK_AJIT_SINGH_; and the other names are None
The code is IGOSEAASN; the name is DEVELOPING_EIGHT_COUNTRIES_; and the other names are None
The code is IGODEVDVE; the name is DORINDO_CORTEZ_; and the other names are None
The code is IGOLAM; the name is EAST_AFRICAN_COMMUNITY_; and the other names are None
The code is IGOEAFEAC; the name is ECONOMIC_COOPERATION_ORGANIZATION_; and the other names are None
The code is IGOASABUS; the name is EDOUARD_DAYAN_; and the other names are None
The code is IGO; the name is EDOUARD_SAOUMA_; and the other names are None
The code is IGOAGR; the name is EDWIN_W._CARRINGTON_; and the other names are None
The code is IGOCRB; the name is EFTHIMIOS_E._MITROPOULOS_; and the other names are None
The code is IGO; the name is EMEKA_ANYAOKU_; and the other names are None
The code is IGOCWN; the name is ERNESTO_LIMA_MENA_; and the other names are None
The code is IGOLAM; the name is ESMAT_ABDEL_MEGUID_; and the other names are None
The code is IGOMEAARL; the name is FABIO_GADEA_MANTILLA_; and the other names are None
The code is IGOLAM; the name is FOOD_AND_AGRICULTURE_ORGANIZATION_; and the other names are None
The code is IGOAGR; the name is FRANCESCO_FRANGIALLI_; and the other names are None
The code is IGOUNOBUS; the name is FRANCIS_MUTHAURA_; and the other names are None
The code is IGOEAFEAC; the name is FRANCISCO_MERINO_; and the other names are None
The code is IGOLAM; the name is GABRIEL_ROMANUS_; and the other names are None
The code is IGOSCN; the name is GEORG_REISCH_; and the other names are None
The code is IGOEURBUSEFT; the name is GERTRUDE_IBENGWE_MONGELLA_; and the other names are None
The code is IGOAFRAFU; the name is GLORIA_GUADALUPE_OQUELI_; and the other names are None
The code is IGOLAM; the name is GUILLERMO_FERNANDEZ_DE_SOTO_; and the other names are None
The code is IGOSAM; the name is HABIB_BOULARES_; and the other names are None
The code is IGOMEAAMU; the name is HAMADOUN_TOURE_; and the other names are None
The code is IGOMED; the name is ARUHIKO_KURODA_; and the other names are None
The code is IGOASADEVADB; the name is HELGI_HJORVAR_; and the other names are None
The code is IGOSCN; the name is HENRIK_DAM_KRISTENSEN_; and the other names are None
The code is IGOSCN; the name is HIROSHI_NAKAJIMA_; and the other names are None
The code is IGOUNOHLHWHO; the name is HISASHI_OWADA_; and the other names are None
The code is IGO; the name is HUGO_GUIRAUD_GARGANO_; and the other names are None
The code is IGOLAM; the name is IDRISS_NDELE_MOUSSA_; and the other names are None
The code is IGOAFRAFU; the name is ILSA_DIAZ_ZELAYA_; and the other names are None
The code is IGOLAM; the name is INGE_LONNING_; and the other names are None
The code is IGOSCN; the name is INTER_AMERICAN_DEVELOPMENT_BANK_; and the other names are None
The code is IGONAMDEV; the name is INTERNATIONAL_CIVIL_AVIATION_ORGANIZATION_; and the other names are None
The code is IGOCOPITP; the name is INTERNATIONAL_GOVERNMENT_ORGANISATION_; and the other names are +INTERPOL
The code is IGO; the name is INTERNATIONAL_GOVERNMENT_ORGANIZATION_; and the other names are None
The code is IGO; the name is INTERNATIONAL_LABOUR_ORGANIZATION_; and the other names are None
The code is IGOUNOLABILO;; the name is INTERNATIONAL_MARITIME_ORGANIZATION_; and the other names are None
The code is IGO; the name is ISLAMIC_CHAMBER_OF_COMMERCE_AND_INDUSTRY_; and the other names are None
The code is IGOMOSOICBUS; the name is IVAN_KOROTCHENYA_; and the other names are None
The code is IGOCASCIS; the name is JACINTO_SUAREZ_; and the other names are None
The code is IGOLAM; the name is JACKIE_SELEBI_; and the other names are None
The code is IGOCOPITP; the name is JACQUES_ATTALI_; and the other names are None
The code is IGOEURDEVEBR; the name is JESUS_ESPIGARES_MIRA_; and the other names are None
The code is IGO; the name is JIMMIE_RODGERS_; and the other names are None
The code is IGO; the name is JIRI_DIENSTBIER_; and the other names are None
The code is IGOEUR; the name is JOAO_BAENA_SOARES_; and the other names are None
The code is IGOOAS; the name is JOHN_GALVIN_; and the other names are None
The code is IGOWSTNAT; the name is JOHN_SHALIKASHVILI_; and the other names are None
The code is IGOWSTNAT; the name is JOSE_ANGEL_GURRIA_TREVINO_; and the other names are None
The code is IGOWSTBUS; the name is JOSE_AYALA_LASSO_; and the other names are None
The code is IGOUNO; the name is JOSE_CUTILEIRO_; and the other names are None
The code is IGOEUREEC; the name is JOSE_MARIA_GIL-ROBLES_; and the other names are None
The code is IGOEUREEC; the name is JOSE_MARIA_RUDA_; and the other names are None
The code is IGO; the name is JOSEP_BORRELL_; and the other names are None
The code is IGOEUREEC; the name is JOSEPH_NANVEN_GARBA_; and the other names are None
The code is IGOUNO; the name is JOSEPH_W._RALSTON_; and the other names are None
The code is IGOWSTNAT; the name is JUAN_SOMAVIA_; and the other names are None
The code is IGOUNOLABILO; the name is JULIO_GUILLERMO_GONZALEZ_GAMARRA_; and the other names are None
The code is IGOLAM; the name is JULIO_PALACIOS_; and the other names are None
The code is IGOLAM; the name is JUMA_VOLTER_MWAPACHU_; and the other names are None
The code is IGOEAFEAC; the name is K._ANNAN_; and the other names are None
The code is IGOUNO; the name is K_ANNAN_; and the other names are None
The code is IGOUNO; the name is KAIRE_MBUENDE_; and the other names are None
The code is IGOSAFDEVSAD; the name is KAMALESH_SHARMA_; and the other names are None
The code is IGOCWN; the name is KANT_KISHORE_BHARGAVA_; and the other names are None
The code is IGOSASSAA; the name is KARE_BRYN_; and the other names are None
The code is IGOEURBUSEFT; the name is KHOO_BOON_HUI_; and the other names are None
The code is IGO; the name is KIMIMASA_TARUMIZU_; and the other names are None
The code is IGOASADEVADB; the name is KJARTAN_JOHANNSSON_; and the other names are None
The code is IGOEURBUSEFT; the name is KLAUS_HANSCH_; and the other names are None
The code is IGOEUREEC; the name is KOFI_ATTA_ANNAN_; and the other names are None
The code is IGOUNO; the name is KOICHIRO_MATSUURA_; and the other names are None
The code is IGO; the name is KYUNG-WHA_KANG_; and the other names are None
The code is IGOUNO; the name is LA_FRANCOPHONIE_; and the other names are None
The code is IGO; the name is LAMBERTO_DINI,_THEN_ROMANO_PRODI_; and the other names are None
The code is IGOEUREEC; the name is LEE_JONG_WOOK_; and the other names are None
The code is IGOUNOHLHWHO; the name is LEN_ISHMAEL_; and the other names are None
The code is IGOCRB; the name is LOLITA_APPLEWHAITE_; and the other names are None
The code is IGOCRB; the name is LOURDES_PANGELINAN_; and the other names are None
The code is IGO; the name is LUIGI_R._EINAUDI_; and the other names are None
The code is IGOOAS; the name is LUIS_ALBERTO_MORENO_; and the other names are None
The code is IGONAMDEV; the name is MANFRED_REINKE_; and the other names are None
The code is IGO; the name is MANFRED_WERNER_; and the other names are None
The code is IGOWSTNAT; the name is MANFRED_WORNER_; and the other names are None
The code is IGOWSTNAT; the name is MARC_PERRIN_DE_BRICHAMBAUT_; and the other names are None
The code is IGOEUR; the name is MARCO_ANTONIO_SOLARES_PEREZ_; and the other names are None
The code is IGOLAM; the name is MARGARET_CHAN_; and the other names are None
The code is IGOUNOHLHWHO; the name is MARIO_FACUSSE_HANDAL_; and the other names are None
The code is IGOLAM; the name is MAUD_DE_BOER-BUQUICCHIO_; and the other names are None
The code is IGOEUREEC; the name is MAYORS_FOR_PEACE_; and the other names are None
The code is IGO; the name is MICHEL_HANSENNE_; and the other names are None
The code is IGOUNOLABILO; the name is MIGUEL_D'ESCOTO_BROCKMANN_; and the other names are None
The code is IGOUNO; the name is MITSUO_SATO_; and the other names are None
The code is IGOASADEVADB; the name is MOHAMED_AMAMOU_; and the other names are None
The code is IGOMEAAMU; the name is MOHAMED_IBN_CHAMBAS_; and the other names are None
The code is IGOWAFWAS; the name is MOHAMMED_S._BARKINDO_; and the other names are None
The code is IGOBUSOPC; the name is MONUC_INDIAN_CONTINGENT_; and the other names are None
The code is IGOUNO; the name is MUHAMMAD_AL-BARADEI_; and the other names are None
The code is EGYOPP; the name is MURATBEK_IMANALIYEV_; and the other names are None
The code is KGZGOV; the name is NAEEM_U._HASAN_; and the other names are None
The code is IGOSASSAA; the name is NAVANETHEM_PILLAY_; and the other names are None
The code is IGOUNO; the name is NG'ANDU_MAGANDE_; and the other names are None
The code is IGO; the name is NIHAL_RODRIGO_; and the other names are None
The code is IGOSASSAA; the name is NORDIC_COUNCIL_; and the other names are None
The code is IGOSCN; the name is NUWE_AMANYA_MUSHEGA_; and the other names are None
The code is IGOEAFEAC; the name is OLE_STAVAD_; and the other names are None
The code is IGOSCN; the name is OLOF_SALMEN_; and the other names are None
The code is IGOSCN; the name is OMAR_KABBAJ_; and the other names are None
The code is IGOAFRDEVAFB; the name is ORA_INTERNATIONAL_; and the other names are None
The code is IGOCHR; the name is ORGANISATION_FOR_ECONOMIC_COOPERATION_AND_DEVELOPMENT_; and the other names are None
The code is IGOWSTBUS; the name is ORGANISATION_FOR_SECURITY_AND_COOPERATION_IN_EUROPE_; and the other names are None
The code is IGO; the name is ORGANISATION_FOR_SECURITY_AND_CO-OPERATION_IN_EUROPE_; and the other names are None
The code is IGO; the name is ORGANISATION_OF_EASTERN_CARIBBEAN_STATES_; and the other names are None
The code is IGOCRB; the name is ORGANIZATION_FOR_ECONOMIC_COOPERATION_AND_DEVELOPMENT_; and the other names are None
The code is IGOWSTBUS; the name is ORGANIZATION_FOR_SECURITY_AND_COOPERATION_IN_EUROPE_; and the other names are None
The code is IGO; the name is ORGANIZATION_FOR_SECURITY_AND_CO-OPERATION_IN_EUROPE_; and the other names are None
The code is IGO; the name is ORGANIZATION_OF_EASTERN_CARIBBEAN_STATES_; and the other names are None
The code is IGOCRB; the name is ORGANIZATION_OF_WORLD_HERITAGE_CITIES_; and the other names are None
The code is IGO; the name is OSMAN_OLCAY_; and the other names are None
The code is IGOWSTNAT; the name is OSMAN_OLCAY_TURKEY_; and the other names are None
The code is IGOWSTNAT; the name is OUTI_OJALA_; and the other names are None
The code is IGOSCN; the name is PACIFIC_COMMUNITY_; and the other names are None
The code is IGO; the name is PALL_PETURSSON_; and the other names are None
The code is IGOSCN; the name is PARLACEN_; and the other names are None
The code is IGOLAM; the name is PARLIAMENTARIANS_FOR_GLOBAL_ACTION_; and the other names are None
The code is IGOLEG; the name is PAT_COX_; and the other names are None
The code is IGOEUREEC; the name is PEKKA_TARJANNE_; and the other names are None
The code is IGOMED; the name is PETER_SUTHERLAND_; and the other names are None
The code is IGOBUSWTO; the name is PHILIPPE_KIRSCH_; and the other names are None
The code is IGOJUDICC; the name is PHILIPPE_ROCHAT_; and the other names are None
The code is IGOUNOBUS; the name is PREGA_RAMSAMY_; and the other names are None
The code is IGOSAFDEVSAD; the name is Q.A.M.A._RAHIM_; and the other names are None
The code is IGOSASSAA; the name is RALPH_ZACKLIN_; and the other names are None
The code is IGOUNO; the name is RANNVEIG_GUDMUNDSDOTTIR_; and the other names are None
The code is IGOSCN; the name is RAUL_ZALDIVAR_GUZMAN_; and the other names are None
The code is IGOLAM; the name is RAYMOND_BENJAMIN_; and the other names are None
The code is IGOUNOBUS; the name is RAZALI_ISMAIL_; and the other names are None
The code is IGOUNO; the name is RENATO_CLAUDIO_COSTA_PEREIRA_; and the other names are None
The code is IGOUNOBUS; the name is RICHARD_FRANK_; and the other names are None
The code is IGOUNODEVWBK; the name is ROBERT_B._DUN_; and the other names are None
The code is IGO; the name is ROBERTO_CARPIO_NICOLLE_; and the other names are None
The code is IGOLAM; the name is ROBERTO_KOBEH_GONZALEZ_; and the other names are None
The code is IGOUNOBUS; the name is RODOLFO_C._SEVERINO_; and the other names are None
The code is IGOSEAASN; the name is RODRIGO_SAMAYOA_RIVAS_; and the other names are None
The code is IGOLAM; the name is ROLAND_VALENZUELA_OYUELA_; and the other names are None
The code is IGOLAM; the name is RON_FREEMAN_; and the other names are None
The code is IGOEURDEVEBR; the name is RONALD_K._NOBLE_; and the other names are None
The code is IGO; the name is RUSLI_NOOR_; and the other names are None
The code is IGOSEAASN; the name is SADAKO_OGATA_; and the other names are None
The code is IGOUNO; the name is SALIM_AHMED_SALIM_; and the other names are None
The code is IGOAFRAFU; the name is SAMIR_S._SHIHABI_; and the other names are None
The code is IGOUNO; the name is SAMUEL_R._INSANALLY_; and the other names are None
The code is IGOUNO; the name is SANG-HYUN_SONG_; and the other names are None
The code is IGOJUDICC; the name is SEBASTIAN_ALEGRETT_; and the other names are None
The code is IGOSAM; the name is SHANGHAI_COOPERATION_ORGANIZATION_; and the other names are None
The code is IGOCAS; the name is SHEEL_KANTA_SHARMA_; and the other names are None
The code is IGOSASSAA; the name is SHEIKH_AHMAD_FAHAD_AL_AHMAD_AL_; and the other names are None
The code is IGOBUSOPC; the name is SHI_JIUYONG_; and the other names are None
The code is IGO; the name is SHIVINDER_SINGH_SIDHU_; and the other names are None
The code is IGOUNOBUS; the name is SIGRIDUR_ANNA_THORDARDOTTIR_; and the other names are None
The code is IGOSCN; the name is SINIKKA_BOHLIN_; and the other names are None
The code is IGOSCN; the name is SIR_JOHN_KAPUTIN_; and the other names are None
The code is IGO; the name is SIR_SHRIDATH_RAMPHAL_; and the other names are None
The code is IGOCWN; the name is STAFFAN_SOHLMAN_; and the other names are None
The code is IGOWSTBUS; the name is STEPHEN_M._SCHWEBEL_; and the other names are None
The code is IGO; the name is SUBROTO_; and the other names are None
The code is IGOBUSOPC; the name is SUPACHAI_PANITCHPAKDI_; and the other names are None
The code is IGOBUSWTO; the name is TADAO_CHINO_; and the other names are None
The code is IGOASADEVADB; the name is TAIEB_CHERIF_; and the other names are None
The code is IGOUNOBUS; the name is THOMAS_E._LEAVEY_; and the other names are None
The code is IGO; the name is THOMAS_MIROW_; and the other names are None
The code is IGOEURDEVEBR; the name is TOMAZ_SALOMAO_; and the other names are None
The code is IGOSAFDEVSAD; the name is UNESCO_; and the other names are None
The code is IGOUNODEV; the name is UNION_OF_SOUTH_AMERICAN_NATIONS_; and the other names are None
The code is IGOSAM; the name is UNITED_CITIES_AND_LOCAL_GOVERNMENTS_; and the other names are None
The code is IGO; the name is UNITED_NATIONS COMMISSION_FOR_HUMAN_RIGHTS_; and the other names are None
The code is IGOUNOHRIHCH;; the name is UNITED_NATIONS COMMISSION_FOR_REFUGEES_; and the other names are None
The code is IGOUNOREFHCR;; the name is UNITED_NATIONS_EDUCATIONAL,_SCIENTIFIC_AND_CULTURAL_ORGANIZATION_; and the other names are None
The code is IGOUNODEV; the name is UNIVERSAL_POSTAL_UNION_; and the other names are None
The code is IGO; the name is VICTOR_GBEHO_; and the other names are None
The code is IGOWAFWAS; the name is WALTER_SCHWIMMER_; and the other names are None
The code is IGOEUREEC; the name is WARSAW_TREATY_ORGANIZATION_; and the other names are None
The code is IGOEEU; the name is WENDY_CHAMBERLIN_; and the other names are None
The code is IGOUNO; the name is WESLEY_K._CLARK_; and the other names are None
The code is IGOWSTNAT; the name is WESTERN_EUROPEAN_UNION_; and the other names are None
The code is IGOEUREEC; the name is WILHELM_HOYNCK_; and the other names are None
The code is IGOEUR; the name is WILLIAM_A._O'NEIL_; and the other names are None
The code is IGO; the name is WILLIAM_ROSSIER_; and the other names are None
The code is IGOEURBUSEFT; the name is WIM_DUISENBERG_; and the other names are None
The code is IGOEUREEC; the name is WIM_VAN_EEKELEN_; and the other names are None
The code is IGOEUREEC; the name is WORLD_FAMILY_ORGANIZATION_; and the other names are None
The code is IGODEV; the name is WORLD_TOURISM_ORGANIZATION_; and the other names are None
The code is IGOUNOBUS; the name is YADAV_KANT_SILWAL_; and the other names are None
The code is IGOSASSAA; the name is YAHYA_MAROOFI_; and the other names are None
The code is IGOASABUS; the name is YOSHIO_UTSUMI_; and the other names are None
The code is IGOMED; the name is YUKIYA_AMANO_; and the other names are None
The code is IGOUNOIAE; the name is ZHANG_DEGUANG_; and the other names are None
The code is IGOASADEVADB; the name is BIMSTEC_; and the other names are None
The code is IGOASABUS; the name is CENSAD_; and the other names are None
The code is IGONAFBUSCSS;; the name is COMMON_MARKET_FOR_EASTERN_AND_SOUTHERN_AFRICA_; and the other names are None
The code is IGOAFRBUSCES;; the name is INTERNATIONAL_GRAINS_COUNCIL_; and the other names are None
The code is IGOAGRIGC;; the name is INTERNATIONAL_TELECOMMUNICATIONS_UNION_; and the other names are None
The code is IGOUNOMED; the name is ORGANIZATION_OF_ARAB_PETROLEUM_EXPORTING_COUNTRIES_; and the other names are None
The code is IGOARBBUSAPE;; the name is ARNAUD_JACOMET_; and the other names are None
The code is IGOEUREEC; the name is ARTHUR_DUNKEL_; and the other names are None
The code is IGOBUSWTO; the name is ASSAD_KOTAITE_; and the other names are None
The code is IGOUNOBUS; the name is BERTRAND_RAMCHARAN_; and the other names are None
The code is IGOUNO; the name is CAROL_BELLAMY_; and the other names are None
The code is IGOUNOKID; the name is CATHERINE_LALUMIERE_; and the other names are None
The code is IGOEUREEC; the name is DAME_ROSALYN_HIGGINS_; and the other names are None
The code is IGO; the name is DANIEL_TARSCHYS_; and the other names are None
The code is IGOEUREEC; the name is DIDIER_OPERTTI_BADAN_; and the other names are None
The code is IGOUNO; the name is DONALD_J._JOHNSTON_; and the other names are None
The code is IGOWSTBUS; the name is BANTZ_J._CRADDOCK_; and the other names are None
The code is IGOWSTNAT; the name is BARBER_B._CONABLE_; and the other names are None
The code is IGOUNODEVWBK; the name is BARON_ROBERTSON_; and the other names are None
The code is IGOWSTNAT; the name is ANNE_KRUEGER_; and the other names are None
The code is IGOBUSIMF; the name is ANTHONY_CROSLAND_; and the other names are None
The code is IGOEUREEC; the name is ANTHONY_CROSLAND,_THEN_DAVID_OWEN_; and the other names are None
The code is IGOEUREEC; the name is ANTONIO_ENRIQUEZ_SAVIGNAC_; and the other names are None
The code is IGOUNOBUS; the name is ALI_TRIKI_; and the other names are None
The code is IGOUNO; the name is EGON_KLEPSCH_; and the other names are None
The code is IGOEUREEC; the name is ENRIQUE_BARON_CRESPO_; and the other names are None
The code is IGOEUREEC; the name is ENRIQUE_IGLESIAS_; and the other names are None
The code is IGONAMDEV; the name is FEDERICO_MAYOR_; and the other names are None
The code is IGO; the name is GEORGE_A._JOULWAN_; and the other names are None
The code is IGOWSTNAT; the name is GEORGE_GOODWIN_; and the other names are None
The code is IGOCRB; the name is GEORGE_ROBERTSON_; and the other names are None
The code is IGOWSTNAT; the name is GIANCARLO_ARAGONA_; and the other names are None
The code is IGOEUR; the name is GILBERT_GUILLAUME_; and the other names are None
The code is IGOUNO; the name is HANS_BLIX_; and the other names are None
The code is IGOUNOIAE; the name is HANS_DIETRICH_GENSCHER_; and the other names are None
The code is IGOEUREEC; the name is HANS-GERT_POTTERING_; and the other names are None
The code is IGOEUREEC; the name is HAYA_RASHED_AL_KHALIFAH_; and the other names are None
The code is IGOUNO; the name is JAMES_D._WOLFENSOHN_; and the other names are None
The code is IGOUNODEVWBK; the name is JAMES_G._STAVRIDIS_; and the other names are None
The code is IGOWSTNAT; the name is JAMES_GRANT_; and the other names are None
The code is IGOUNOKID; the name is JAN_HUBER_; and the other names are None
The code is IGO; the name is JEAN_LEMIERRE_; and the other names are None
The code is IGOEURDEVEBR; the name is JACQUES_DELORS_; and the other names are None
The code is IGOEUREEC; the name is AAPSO_; and the other names are None
The code is NGOHRI; the name is ABANTU_FOR_DEVELOPMENT_; and the other names are None
The code is NGOEURDEV; the name is ACADEMIC_COUNCIL_ON_THE_UNITED_NATIONS_SYSTEM_; and the other names are None
The code is NGO; the name is ACADEMY_FOR_FUTURE_SCIENCE_; and the other names are None
The code is NGOUSA; the name is ACADEMY_OF_BREASTFEEDING_MEDICINE_; and the other names are None
The code is NGOUSAHLH; the name is ACADEMY_OF_CRIMINAL_JUSTICE_SCIENCE_; and the other names are None
The code is NGOUSAJUD; the name is ACCION_CONTRA_EL_HAMBRE_; and the other names are None
The code is NGOHLH; the name is ACDF_; and the other names are None
The code is NGOAFRDEV; the name is ACEEEO_; and the other names are None
The code is NGOEEUDEV; the name is ACHARYA_G_KISHORE_; and the other names are None
The code is NGOHIN; the name is ACJS_; and the other names are None
The code is NGOUSAJUD; the name is ACRONYM_INSTITUTE_FOR_DISARMAMENT_DIPLOMACY_; and the other names are None
The code is NGO; the name is ACT_ALLIANCE_; and the other names are None
The code is NGOCHR; the name is ACTION_CONTRE_LA_FAIM_; and the other names are None
The code is NGOHLH; the name is ACTION_INTERNATIONALE_CONTRE_LA_FAIM_; and the other names are None
The code is NGO; the name is ACTION_MEDEOR_; and the other names are None
The code is NGODEUHLH; the name is ACUNS_; and the other names are None
The code is NGO; the name is ADVENTIST_DEVELOPMENT_AND_RELIEF_AGENCY_; and the other names are None
The code is NGOCHRPRODEV;; the name is AEGEE_; and the other names are None
The code is NGOEUREDU; the name is AEGIS_TRUST_; and the other names are None
The code is NGOGBRHRI; the name is AFGHANAID_; and the other names are None
The code is NGOAFGDEV; the name is AFRICA_AMERICA_INSTITUTE_; and the other names are None
The code is NGOUSAEDU; the name is AFRICA_HUMANITARIAN_ACTION_; and the other names are None
The code is NGOAFRHLH; the name is AFRICA_MUSLIM_AGENCY_; and the other names are None
The code is NGOKWT; the name is AFRICA_MUSLIMS_AGENCY_; and the other names are None
The code is NGOKWT; the name is AFRICAN_ACTION_ON_AIDS_; and the other names are None
The code is NGOAFRHLH; the name is AFRICAN_BRAILLE_CENTER_; and the other names are None
The code is NGOAFR; the name is AFRICAN_CITIZENS_DEVELOPMENT_FOUNDATION_; and the other names are None
The code is NGOAFRDEV;; the name is AFRO_ASIAN_PEOPLES_SOLIDARITY_ORGANIZATION_; and the other names are None
The code is NGOHRI; the name is AFRO_ASIAN_PEOPLE'S_SOLIDARITY_ORGANIZATION_; and the other names are None
The code is NGOHRI; the name is AFRO_ASIAN_PEOPLES'_SOLIDARITY_ORGANIZATION_; and the other names are None
The code is NGOHRI; the name is AFUSA_INC_; and the other names are None
The code is NGOUSADEV; the name is AFXB_; and the other names are None
The code is NGODEV; the name is AGA_KHAN_FOUNDATION_; and the other names are None
The code is NGOMOSSHI; the name is AGENCE_D'AIDE_A_LA_COOPERATION_TECHNIQUE_ET_AU_DEVELOPPEMENT_; and the other names are None
The code is NGODEV; the name is AGENCE_INTERNATIONALE_POUR_LE_DEVELOPPEMENT_; and the other names are None
The code is NGOEURDEV; the name is AGENCY_FOR_TECHNICAL_COOPERATION_AND_DEVELOPMENT_; and the other names are None
The code is NGOCHRDEVAGR; the name is AICF_; and the other names are None
The code is NGO; the name is AIDE_MEDICALE_INTERNATIONALE_; and the other names are None
The code is NGOFRAHLH; the name is AIESEC_; and the other names are None
The code is NGOEDU; the name is AIHRA_; and the other names are None
The code is NGOINDHRI; the name is AIPET_INTERNACIONAL_; and the other names are None
The code is NGOLAMMED; the name is AIPPI_; and the other names are None
The code is NGOBUS; the name is AIR_SERV_INTERNATIONAL_; and the other names are None
The code is NGOUSA; the name is AIRLINE_AMBASSADORS_; and the other names are None
The code is NGOUSADEV; the name is AJJDC_; and the other names are None
The code is NGOUSAJEW; the name is AKTION_DEUTSCHLAND_HILFT_; and the other names are None
The code is NGODEU; the name is ALBERT_SCHWEITZER_FELLOWSHIP_; and the other names are None
The code is NGOUSAEDU; the name is ALBERT_SCHWEITZER_INSTITUTE_FOR_THE_HUMANITIES_; and the other names are None
The code is NGOUSAEDU; the name is ALDHU_; and the other names are None
The code is NGOLAMHRI; the name is ALFABETIZACAO_SOLIDARIA_; and the other names are None
The code is NGOBRAEDU; the name is ALFASOL_; and the other names are None
The code is NGOBRAEDU; the name is ALL_INDIA_HUMAN_RIGHTS_ASSOCIATION_; and the other names are None
The code is NGOINDHRI; the name is ALLIANCE_INTERNATIONALE_DE_TOURISME_; and the other names are None
The code is NGOBUS; the name is ALLIANCE_TOWARDS_HARNESSING_GLOBAL_OPPORTUNITIES_; and the other names are None
The code is NGOUSA; the name is ALPHA_KAPPA_ALPHA_; and the other names are None
The code is NGOUSAEDU; the name is ALTRUSA_; and the other names are None
The code is NGOUSA; the name is AMERICAN_COMMITTEE_ON_AFRICA_; and the other names are None
The code is NGOUSAHRI; the name is AMERICAN_COUNCIL_OF_YOUNG_POLITICAL_LEADERS_; and the other names are None
The code is NGOUSAEDU; the name is AMERICAN_FOREIGN_LAW_ASSOCIATION_; and the other names are None
The code is NGOUSAJUD; the name is AMERICAN_GEOGRAPHICAL_SOCIETY_; and the other names are None
The code is NGOUSA; the name is AMERICAN_JEWISH_JOINT_DISTRIBUTION_COMMITTEE_; and the other names are None
The code is NGOUSAJEW; the name is AMERICAN_JEWISH_WORLD_SERVICE_; and the other names are None
The code is NGOUSAJEWDEV; the name is AMERICAN_SOCIETY_OF_INTERNATIONAL_LAW_; and the other names are None
The code is NGOUSAJUD; the name is AMERICAN_SOCIETY_OF_MEDIA_PHOTOGRAPHERS_; and the other names are None
The code is NGOUSAMED; the name is AMERICAN_WATER_WORKS_ASSOCIATION_; and the other names are None
The code is NGOUSADEV; the name is AMERICARES_; and the other names are None
The code is NGOUSAHLH; the name is AMIT_; and the other names are None
The code is NGOUSAJEW; the name is AMREF_; and the other names are None
The code is NGOAFRHLH; the name is AMURT_; and the other names are None
The code is NGODEV; the name is ANANDA_MARGA_UNIVERSAL_RELIEF_TEAM_; and the other names are None
The code is NGOHINDEN211DEV; the name is ANDHRA_PRADESH_CIVIL_LIBERTIES_; and the other names are None
The code is NGOHRI; the name is ANTI_DEFAMATION_LEAGUE_; and the other names are None
The code is NGOUSAJEW; the name is ANUVIBHA_; and the other names are None
The code is NGOINDHIN; the name is ANUVRAT_GLOBAL_ORGANIZATION_; and the other names are None
The code is NGOINDHIN; the name is APIMONDIA_; and the other names are None
The code is NGOAGR; the name is ARAB_CENTER_FOR_STRATEGIC_STUDIES_; and the other names are None
The code is NGOARB; the name is ARAB_INSTITUTE_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOARBHRI; the name is ARAB_INTERNATIONAL_ASSOCIATION_FOR_TOURISM_AND_AUTOMOBILE_CLUBS_; and the other names are None
The code is NGOARBBUS; the name is ARAB_NGO_NETWORK_FOR_DEVELOPMENT_; and the other names are None
The code is NGOARBDEV; the name is ARAB_SOCIETY_FOR_CERTIFIED_ACCOUNTANTS_; and the other names are None
The code is NGOARBBUS; the name is ARAB_SOCIETY_FOR_INTELLECTUAL_PROPERTY_; and the other names are None
The code is NGOARBBUS; the name is ARAB_SOCIETY_OF_CERTIFIED_ACCOUNTANTS_; and the other names are None
The code is NGOARBBUS; the name is ARBEITER_SAMARITER_BUND_; and the other names are None
The code is NGODEU; the name is ARCHITECTS_DESIGNERS_PLANNERS_FOR_SOCIAL_RESPONSIBILITY_; and the other names are None
The code is NGOUSA; the name is AREG_SCIENTIFIC_CULTURAL_YOUTH_ASSOCIATION_; and the other names are None
The code is NGOARM; the name is ARIYANAYAGAM_CHANDRA_NEHRU_; and the other names are None
The code is NGOTAM; the name is ARMENIA_FUND_USA_; and the other names are None
The code is NGOUSADEV; the name is ARMENIAN_ASSEMBLY_OF_AMERICA_; and the other names are None
The code is NGOUSA; the name is ARMENIAN_GENERAL_BENEVOLENT_UNION_; and the other names are None
The code is NGO; the name is ARMENIAN_RELIEF_SOCIETY_; and the other names are None
The code is NGO; the name is ART_FOR_THE_WORLD_; and the other names are None
The code is NGOMED; the name is ASIAN_DISASTER_PREPAREDNESS CENTER_; and the other names are None
The code is NGOTHA; the name is ASIAN_PACIFIC_YOUTH_FORUM_; and the other names are None
The code is NGOASA; the name is ASIAN_YOUTH_COUNCIL_; and the other names are None
The code is NGOASAHRI; the name is ASOCIACION_IBEROAMERICANA_DE_PERIODISTAS_ESPECIALIZADOS_Y_TECNICOS_; and the other names are None
The code is NGOLAMMED; the name is ASOCIACION_LATINOAMERICANA_DE_INSTITUCIONES_FINANCIERAS_DE_DESARROLLO_; and the other names are None
The code is NGOLAMBUS; the name is ASOCIACION_LATINOAMERICANA_PARA_LOS_DERECHOS_HUMANOS_; and the other names are None
The code is NGOLAMHRI; the name is ASSISTENCIA_MEDICA_INTERNACIONAL_; and the other names are None
The code is NGOPRT; the name is ASSOCIATION_DES_ETATS_GENERAUX_DES_ETUDIANTS_DE_L'EUROPE_; and the other names are None
The code is NGOEUREDU; the name is ASSOCIATION_DES_ETUDES_INTERNATIONALES_; and the other names are None
The code is NGOEDU; the name is ASSOCIATION_FOR_AID_AND_RELIEF_; and the other names are None
The code is NGOJPNHLH; the name is ASSOCIATION_FOR_CHILDHOOD_EDUCATION_; and the other names are None
The code is NGOEDU; the name is ASSOCIATION_FOR_WOMEN_IN_PSYCHOLOGY_; and the other names are None
The code is NGOUSAEDU; the name is ASSOCIATION_FOR_WOMEN'S_RIGHTS_IN_DEVELOPMENT_; and the other names are None
The code is NGOCANHRI; the name is ASSOCIATION_FRANCOIS_XAVIER_BAGNOUD_; and the other names are None
The code is NGODEV; the name is ASSOCIATION_FRANCOPHONE_D'AMITIE_ET_DE_LIAISON_; and the other names are None
The code is NGO; the name is ASSOCIATION_INTERNATIONALE_DE_LA_SAVONNERIE,_DE_LA_DETERGENCE_ET_DES_PRODUITS_D'ENTRETIEN_; and the other names are None
The code is NGOEURBUS; the name is ASSOCIATION_INTERNATIONALE_DES_JEUNES_AVOCAT_; and the other names are None
The code is NGOJUD; the name is ASSOCIATION_INTERNATIONALE_POUR_LA_DEFENSE_DE_LA_LIBERTE_RELIGIEUSE_; and the other names are None
The code is NGOEURHRI; the name is ASSOCIATION_INTERNATIONALE_POUR_LA_PROTECTION_DE_LA_PROPRIETE_INTELLECTUELLE_; and the other names are None
The code is NGOBUS; the name is ASSOCIATION_MONDIALE_POUR_L'ECOLE_INSTRUMENT_DE_PAIX_; and the other names are None
The code is NGO; the name is ASSOCIATION_MONTESSORI_INTERNATIONALE_; and the other names are None
The code is NGOEDU; the name is ASSOCIATION_OF_CENTRAL_AND_EASTERN_EUROPEAN_ELECTION_OFFICIALS_; and the other names are None
The code is NGOEEUDEV; the name is ASSOCIATION_OF_FORMER_INTERNATIONAL_CIVIL_SERVANTS_; and the other names are None
The code is NGO; the name is ASSOCIATION_OF_INTERNATIONAL_EDUCATORS_; and the other names are None
The code is NGOUSAEDU; the name is ASSOCIATION_OF_JUNIOR_LEAGUES_; and the other names are None
The code is NGONMR; the name is ASSOCIATION_OF_MEDICAL_DOCTORS_OF_ASIA_; and the other names are None
The code is NGOASAHLH; the name is ASSOCIATION_OF_NETWORK_FOR_COMMUNITY_EMPOWERMENT_; and the other names are None
The code is NGOPAKHRI; the name is ASSOCIATION_TUNISIENNE_DES_MERES_; and the other names are None
The code is NGOTUN; the name is ASSOCIAZIONE_CULTURALE_DEI_TRIANGOLI_E_DELLA_BUONA_VOLONTA'_MONDIALE_; and the other names are None
The code is NGOITAMED; the name is ASSOCIAZIONE_VOLONTARI_PER_IL_SERVIZIO_INTERNATIONALE_; and the other names are None
The code is NGOITA; the name is ATHGO_; and the other names are None
The code is NGOUSA; the name is AUSTCARE_; and the other names are None
The code is NGOAUSDEV; the name is AUTISM_SPEAKS_; and the other names are None
The code is NGOHLH; the name is AVIATIONS_SANS_FRONTIERES_; and the other names are None
The code is NGOEUR; the name is AVSI_; and the other names are None
The code is NGOCHRCTHDEV; the name is BALM_IN_GILEAD_INC_; and the other names are None
The code is NGOUSACHRPROHLH; the name is BAPTIST_WORLD_AID_; and the other names are None
The code is NGOCHRPRODEV; the name is BARKA_FOUNDATION_; and the other names are None
The code is NGOAFRDEV; the name is BATEY_RELIEF_ALLIANCE_; and the other names are None
The code is NGOUSAHLH; the name is BPW_INTERNATIONAL_; and the other names are None
The code is NGOBUS; the name is BPW_USA_; and the other names are None
The code is NGOUSABUS; the name is BRAC_; and the other names are None
The code is NGOBGDDEV; the name is BUILDING_AND_SOCIAL_HOUSING_FOUNDATION_; and the other names are None
The code is NGOGBRDEV; the name is BUSINESS_AND_PROFESSIONAL_WOMEN_USA_; and the other names are None
The code is NGOUSABUS; the name is BUSINESS_COUNCIL_FOR_INTERNATIONAL_UNDERSTANDING_; and the other names are None
The code is NGOUSA; the name is C_SAFE_; and the other names are None
The code is NGOSAF; the name is CADEF_; and the other names are None
The code is NGOCMRDEV; the name is CAFOD_; and the other names are None
The code is NGOGBRCHRCTHDEV; the name is CAMPAIGN_FOR_THE_EARTH_FOUNDATION_; and the other names are None
The code is NGOENV; the name is CANADIAN_LUTHERAN_WORLD_RELIEF_; and the other names are None
The code is NGOCANCHRPRODEV; the name is CAPAJ_; and the other names are None
The code is NGOLAMHRI; the name is CATHOLIC_AGENCY_FOR_OVERSEAS_DEVELOPMENT_; and the other names are None
The code is NGOGBRCHRCTHDEV; the name is CATHOLIC_CENTER_OF_CONCERN_; and the other names are None
The code is NGOCHR; the name is CATHOLIC_INTERNATIONAL_EDUCATION_OFFICE_; and the other names are None
The code is NGOCHRCTHEDU; the name is CATHOLIC_MEDICAL_MISSION_BOARD_; and the other names are None
The code is NGOUSACHRCTHHLH; the name is CBM_INTERNATIONAL_; and the other names are None
The code is NGOCHRHLH; the name is CCOMPOSA_; and the other names are None
The code is NGOSAS; the name is CEAIE_; and the other names are None
The code is NGOCHNEDU; the name is CEDPA_; and the other names are None
The code is NGOUSA; the name is CEFIC_; and the other names are None
The code is NGOEURBUS; the name is CENTER_FOR_DEMOCRACY_AND_RECONCILIATION_IN_SOUTHEAST_EUROPE_; and the other names are None
The code is NGOEEU; the name is CENTER_FOR_DEVELOPMENT_AND_POPULATION_ACTIVITIES_; and the other names are None
The code is NGOUSA; the name is CENTER_FOR_HUMANITARIAN_PSYCHOLOGY_; and the other names are None
The code is NGOCHEHLH; the name is CENTER_FOR_INTERNATIONAL_HEALTH_AND_COOPERATION_; and the other names are None
The code is NGO; the name is CENTRE_DE_RECHERCHES_ET_DE_PROMOTION_POUR_LA_SAUVEGARDE_DES_SITES_ET_MONUMENTS_HISTORIQUES_EN_AFRIQUE_; and the other names are None
The code is NGOAFREDU; the name is CENTRE_EUROPE_TIERS_MONDE_; and the other names are None
The code is NGODEV; the name is CENTRE_FOR_INTERNATIONAL_PEACEBUILDING_; and the other names are None
The code is NGO; the name is CENTRE_FOR_PEACE_INITIATIVES_IN_AFRICA_; and the other names are None
The code is NGOZWE; the name is CENTRO_DE_INVESTIGACION_PARA_LA_PAZ_; and the other names are None
The code is NGOITAEDU; the name is CESVI_; and the other names are None
The code is NGOITADEV; the name is CFMSA_; and the other names are None
The code is NGOUSACHRCTH; the name is CHERNOBYL_CHILDREN'S_PROJECT_; and the other names are None
The code is NGOEEUHLH; the name is CHILD_FOUNDATION_; and the other names are None
The code is NGOEDU; the name is CHILDFUND_; and the other names are None
The code is NGO; the name is CHILDREN_INTERNATIONAL_; and the other names are None
The code is NGODEV; the name is CHILDREN'S_FUND_FOR_SOUTHERN_AFRICA_; and the other names are None
The code is NGOSAF; the name is CHINA_EDUCATION_ASSOCIATION_FOR_INTERNATIONAL_EXCHANGE_; and the other names are None
The code is NGOCHNEDU; the name is CHINA_NGO_NETWORK_FOR_INTERNATIONAL_EXCHANGES_; and the other names are None
The code is NGOCHN; the name is CHINA_YOUTH_DEVELOPMENT_FOUNDATION_; and the other names are None
The code is NGOCHNEDU; the name is CHRISTIAN_CHILDREN'S_FUND_; and the other names are None
The code is NGO; the name is CHRISTIAN_MISSION_FOR_THE_UNITED_NATIONS_COMMUNITY_; and the other names are None
The code is NGOCHR; the name is CHRISTIAN_RELIEF_AND_DEVELOPMENT_ASSOCATION_; and the other names are None
The code is NGOETHCHRDEV; the name is CHRISTIANS_ASSOCIATED_FOR_RELATIONSHIPS_WITH_EASTERN_EUROPE_; and the other names are None
The code is NGOEEUCHR; the name is CHURCH_WORLD_SERVICE_; and the other names are None
The code is NGOUSACHR; the name is CIDSE_; and the other names are None
The code is NGOCHRCTHDEV; the name is CITIZENS_FOUNDATION,_THE_; and the other names are None
The code is NGOPAKEDU; the name is CLEAN_UP_THE_WORLD_; and the other names are None
The code is NGOAUSENV; the name is CLEAR_PATH_INTERNATIONAL_; and the other names are None
The code is NGOHLH; the name is CMMB_; and the other names are None
The code is NGOUSACHRCTHHLH; the name is CNIE_; and the other names are None
The code is NGOCHN; the name is COALITION_AGAINST_TRAFFICKING_IN_WOMEN_; and the other names are None
The code is NGO; the name is COALITION_FOR_PEACE_ACTION_; and the other names are None
The code is NGOUSA; the name is CODEHUCA_; and the other names are None
The code is NGOLAMHRI; the name is COLAC_; and the other names are None
The code is NGOLAMBUS; the name is COMISION_JURIDICA_PARA_EL_AUTODESARROLLO_DE_LOS_PUEBLOS_ORIGINARIOS_ANDINOS_; and the other names are None
The code is NGOLAMHRI; the name is COMITATO_COLLABORAZIONE_MEDICA_; and the other names are None
The code is NGOITAHLH; the name is COMITE_EUROPEEN_DU_THE_; and the other names are None
The code is NGOEURAGR; the name is COMITE_INTERNACIONAL_DE_LA_BANDERA_DE_LA_PAZ_; and the other names are None
The code is NGO; the name is COMITE_NATIONAL_D'ACTION_POUR_LES_DROITS_DE_L'ENFANT_ET_DE_LA_FEMME_; and the other names are None
The code is NGOCMRDEV; the name is COMMISSION_FOR_THE_DEFENSE_OF_HUMAN_RIGHTS_IN_CENTRAL_AMERICA_; and the other names are None
The code is NGOLAMHRI; the name is COMMISSION_INTERNATIONALE_DE_L'ECLAIRAGE_; and the other names are None
The code is NGOMED; the name is COMPANY_OF_THE_DAUGHTERS_OF_CHARITY_OF_ST._VINCENT_DE_PAUL_; and the other names are None
The code is NGOCHRCTHDEV; the name is COMPUTERAID_; and the other names are None
The code is NGODEV; the name is CONFEDERACION_LATINOAMERICANA_DE_COOPERATIVAS_DE_AHORRO_Y_CREDITO_; and the other names are None
The code is NGOLAMBUS; the name is CONFERENCE_OF_NON_GOVERNMENTAL_ORGANIZATIONS_IN_CONSULTATIVE_RELATIONSHIP_WITH_THE_UNITED_NATIONS_; and the other names are None
The code is NGO; the name is CONGRESS_OF_RACIAL_EQUALITY_; and the other names are None
The code is NGOUSA; the name is CONSEJO_INDIO_DE_SUDAMERICA_; and the other names are None
The code is NGOSAMHRI; the name is CONSORTIUM_FOR_THE_SOUTHERN_AFRICA_FOOD_SECURITY_EMERGENCY_; and the other names are None
The code is NGOSAF; the name is COOPERATION_INTERNATIONALE_POUR_LE_DEVELOPMENT_ET_LA_SOLIDARITE_; and the other names are None
The code is NGOCHRCTHDEV; the name is COOPERAZIONE_INTERNATIONALE_; and the other names are None
The code is NGOITADEV; the name is COOPI_; and the other names are None
The code is NGOITADEV; the name is COORDINATING_BOARD_OF_JEWISH_ORGANIZATIONS_; and the other names are None
The code is NGOJEW; the name is COORDINATION_COMMITTEE_OF_MAOIST_PARTIES_AND_ORGANISATIONS_IN_SOUTH_ASIA_; and the other names are None
The code is NGOSAS;; the name is CORDAID_; and the other names are None
The code is NGONLD; the name is CORNELIO_SOMMARUGA_; and the other names are None
The code is NGOHLHIRC; the name is COUSTEAU_SOCIETY_; and the other names are None
The code is NGOENV; the name is CROATIAN_CLUB_FOR_INTERNATIONAL_COOPERATION_; and the other names are None
The code is NGOHRV; the name is CROIX_ROUGE_; and the other names are None
The code is NGOHLHIRC; the name is CRUZ_ROJA_; and the other names are None
The code is NGOLAMHRI; the name is CYDF_; and the other names are +CULTURAL_SURVIVAL_INC.
The code is NGOCHNEDU; the name is DANCHURCHAID_; and the other names are None
The code is NGODNKCHRPRO; the name is DANIEL_PEARL_FOUNDATION_; and the other names are None
The code is NGOUSAMED; the name is DANISH_AFGHAN_COMMITTEE_; and the other names are None
The code is NGODNKHLH; the name is DANISH_REFUGEE_COUNCIL_; and the other names are None
The code is NGODNKREF; the name is DAVID_MCANTONY_GIBSON_FOUNDATION_; and the other names are None
The code is NGOCANHLH; the name is DELTA_KAPPA_GAMMA_; and the other names are None
The code is NGOUSAEDU; the name is DELTA_SIGMA_THETA_; and the other names are None
The code is NGOUSAEDU; the name is DEMOCRACY_COALITION_PROJECT_; and the other names are None
The code is NGODEV; the name is DEUTSCHE_WELTHUNGERHILFE_; and the other names are None
The code is NGODEUAGR; the name is DEVELOPING_COUNTRIES_FARM_RADIO_NETWORK_; and the other names are None
The code is NGOCANMEDAGR; the name is DEVELOPMENT_ALTERNATIVES_WITH_WOMEN_FOR_A_NEW_ERA_; and the other names are None
The code is NGODEV; the name is DEVELOPMENT_STUDIES_ASSOCIATION_; and the other names are None
The code is NGOGBREDUDEV; the name is DEVNET_ASSOCIATION_; and the other names are None
The code is NGOROMBUS; the name is DHAKA_AHSANIA_MISSION_; and the other names are None
The code is NGOSASMOSDEV; the name is DIAKONIE_KATASTROPHENHILFE_; and the other names are None
The code is NGODEU; the name is DISASTER_PSYCHIATRY_OUTREACH_; and the other names are None
The code is NGOUSAHLH; the name is DISASTERS_EMERGENCY_COMMITTEE_; and the other names are None
The code is NGOGBR; the name is DOCTORS_OF_THE_WORLD_USA_; and the other names are None
The code is NGOUSAHLH; the name is DORCAS_AID_; and the other names are None
The code is NGOCHRDEV; the name is DROITS_A_L'ENERGIE_SOS_FUTURE_; and the other names are None
The code is NGOFRAENV; the name is DVV_INTERNATIONAL_; and the other names are None
The code is NGODEUEDU; the name is EARTH_CHILD_INSTITUTE_; and the other names are None
The code is NGO; the name is EARTHJUSTICE_; and the other names are None
The code is NGOUSAENV; the name is EARTHTRUST_; and the other names are None
The code is NGOENV; the name is EASTERN_REGIONAL_ORGANIZATION_FOR_PUBLIC_ADMINISTRATION_; and the other names are None
The code is NGOASADEV; the name is ECCP_; and the other names are None
The code is NGOEUR; the name is ECONEWS_AFRICA_; and the other names are None
The code is NGOAFRENV; the name is ECONOMISTS_FOR_PEACE_AND_SECURITY_; and the other names are None
The code is NGO; the name is ECOWAS_YOUTH_AND_CITIZENS_LEAGUE_; and the other names are None
The code is NGOWAFBUSWAS; the name is ECPAT_; and the other names are None
The code is NGOHRI; the name is EDUCATION_DEVELOPMENT_CENTER_; and the other names are None
The code is NGOUSAEDU; the name is ELIZABETH_HAUB_FOUNDATION_; and the other names are None
The code is NGOENV; the name is EMERGENCY_LIFE_SUPPORT_FOR_CIVILIAN_WAR_VICTIMS_; and the other names are None
The code is NGOITAHLH; the name is ENGLISH_INTERNATIONAL_ASSOCIATION_OF_LUND_; and the other names are None
The code is NGOSWELAB; the name is ENVIRONMENTAL_DEVELOPMENT_ACTION_IN_THE_THIRD_WORLD_; and the other names are None
The code is NGOSENDEV; the name is ENVIRONMENTAL_LAW_INSTITUTE_; and the other names are None
The code is NGOUSAENV; the name is EQUIPE_COUSTEAU_; and the other names are None
The code is NGOFRAENV; the name is ESTONIAN_AMERICAN_FUND_FOR_ECONOMIC_EDUCATION_; and the other names are None
The code is NGOESTDEV;; the name is EUROPEAN_ACADEMY_OF_ARTS,_SCIENCES_AND_HUMANITIES_; and the other names are None
The code is NGOEUREDU; the name is EUROPEAN_CENTRE_FOR_CONFLICT_PREVENTION_; and the other names are None
The code is NGOEUR; the name is EUROPEAN_CHEMICAL_INDUSTRY_COUNCIL_; and the other names are None
The code is NGOEURBUS; the name is EUROPEAN_STUDENTS_FORUM_; and the other names are None
The code is NGOEUREDU; the name is EUROPEAN_WIND_ENERGY_ASSOCIATION_; and the other names are None
The code is NGOEURBUSENV; the name is EVERYCHILD_; and the other names are None
The code is NGODEV; the name is EXPLORERS_CLUB_; and the other names are None
The code is NGOUSAEDU; the name is FAWCO_; and the other names are None
The code is NGOUSA; the name is FDI_WORLD_DENTAL_FEDERATION_; and the other names are None
The code is NGOHLH; the name is FEDERACION_DE_MUJERES_PROGRESISTAS_; and the other names are None
The code is NGOESPHRI; the name is FEDERATION_FOR_PEACE_AND_CONCILIATION_; and the other names are None
The code is NGORUS; the name is FEDERATION_INTERNATIONALE_DES_CORPS_ET_ASSOCIATIONS_CONSULAIRES_; and the other names are None
The code is NGO; the name is FEDERATION_INTERNATIONALE_DES_DROITS_DE_L'HOMME_; and the other names are None
The code is NGOHRI; the name is FEDERATION_INTERNATIONALE_DES_FEMMES_DES_CARRIERES_JURIDIQUES_; and the other names are None
The code is NGOJUDHRI; the name is FEDERATION_INTERNATIONALE_DES_ORGANISATIONS_DE_CORRESPONDANCE_ET_D'ECHANGES_SCOLAIRES_; and the other names are None
The code is NGOEDU; the name is FEDERATION_OF_ASSOCIATIONS_OF_FORMER_INTERNATIONAL_CIVIL_SERVANTS_; and the other names are None
The code is NGO; the name is FEDERATION_OF_EUROPEAN_TWINE_AND_ROPE_INDUSTRIES_; and the other names are None
The code is NGOEURBUS; the name is FEDERATION_OF_JEWISH_MEN'S_CLUBS_; and the other names are None
The code is NGONMRJEW; the name is FEDERATION_OF_WORLD_VOLUNTEER_FIREFIGHTERS_ASSOCIATIONS_; and the other names are None
The code is NGO; the name is FEMMES_AFRIQUE_SOLIDARITE_; and the other names are None
The code is NGOAFR; the name is FEREMA_; and the other names are None
The code is NGOHNDEDU; the name is FH_ASSOCIATION_; and the other names are None
The code is NGOCHRPRO; the name is FHEDA_; and the other names are None
The code is NGOPHLHLH; the name is FIABCI_; and the other names are None
The code is NGOBUS; the name is FIANAKAVIANA_SAMBRATRA_; and the other names are None
The code is NGOMDGHLH; the name is FIMITIC_; and the other names are None
The code is NGOEURHRI; the name is FINN_CHURCH_AID_; and the other names are None
The code is NGOFINCHR; the name is FINNCHURCHAID_; and the other names are None
The code is NGOFINCHR; the name is FIRST_WEEK_FOUNDATION_; and the other names are None
The code is NGONOR; the name is FONDATION_HIRONDELLE_; and the other names are None
The code is NGOMED; the name is FOOD_FOR_THE_HUNGRY_ASSOCIATION_; and the other names are None
The code is NGOCHRPRO; the name is FOOD_FOR_THE_HUNGRY_INTERNATIONAL_; and the other names are None
The code is NGOCHRPRO; the name is FORD_FOUNDATION_; and the other names are None
The code is NGOUSA; the name is FOREIGNAID_500_; and the other names are None
The code is NGODEV;; the name is FOREST_TREES_AND_PEOPLE_PROGRAM_; and the other names are None
The code is NGOENV;; the name is FORMERLY_UNITED_CHURCH_BOARD_FOR_WORLD_MINISTRIES_; and the other names are None
The code is NGOCHRPRO; the name is FORUM_FOR_AFRICAN_WOMEN_EDUCATIONALISTS_; and the other names are None
The code is NGOAFREDU; the name is FORUM_ON_EARLY_WARNING_AND_EARLY_RESPONSE_; and the other names are None
The code is NGO; the name is FOUNDATION_ECOLOGY_AND_LIFE_; and the other names are None
The code is NGOENV; the name is FOUNDATION_FOR_AMITY_AND_NATIONAL_SOLIDARITY_; and the other names are None
The code is NGOIND; the name is FOUNDATION_FOR_HEALTH_EDUCATION_AND_DRUG_AWARENESS_; and the other names are None
The code is NGOPHLHLH; the name is FOUNDATION_FOR_POST_CONFLICT_DEVELOPMENT_; and the other names are None
The code is NGOUSADEV; the name is FOUNDATION_FOR_SUBJECTIVE_EXPERIENCE_AND_RESEARCH_; and the other names are None
The code is NGODEUREL; the name is FOUNDATION_FOR_THE_RIGHTS_OF_THE_FAMILY_; and the other names are None
The code is NGOESP; the name is FRIENDSHIP_AMBASSADORS_FOUNDATION_; and the other names are None
The code is NGOMED; the name is FULBRIGHT_ASSOCIATION_; and the other names are None
The code is NGOUSAEDU; the name is FUNDACAO_DE_ASSISTENCIA_MEDICA_INTERNACIONAL_; and the other names are None
The code is NGOPRT; the name is FUNDACION_CULTURAL_BAUR_; and the other names are None
The code is NGODEV; the name is FUNDACION_GLOBAL_DEMOCRACIA_Y_DESARROLLO_; and the other names are None
The code is NGODOM; the name is FUNDACION_NUEVO_MILENIO_; and the other names are None
The code is NGOARG; the name is FUNDACION_PARA_LA_EDUCACION_RICARDO_ERNESTO_MADURO_ANDREU_; and the other names are None
The code is NGOHNDEDU; the name is FUNDACION_SALVEMOS_EL_AGUA_; and the other names are None
The code is NGOMEXENV; the name is FUNGLODE_; and the other names are None
The code is NGODOM; the name is FUSEN_HEISHI_NO_KAI_; and the other names are None
The code is NGOVNM; the name is GADDAFI_INTERNATIONAL_CHARITY_AND_DEVELOPMENT_FOUNDATION_; and the other names are None
The code is NGOLBY; the name is GENDER_WATCHERS_; and the other names are None
The code is NGO; the name is GENERAL_CONFEDERATION_OF_TRADE_UNIONS_; and the other names are None
The code is NGOCASLAB; the name is GIRLS_LEARN_INTERNATIONAL_; and the other names are None
The code is NGOUSAEDU; the name is GLOBAL_ACTION_ON_AGEING_; and the other names are None
The code is NGO; the name is GLOBAL_ACTION_ON_AGING_; and the other names are None
The code is NGO; the name is GLOBAL_ALLIANCE_FOR_PUBLIC_RELATIONS_AND_COMMUNICATION_MANAGEMENT_; and the other names are None
The code is NGOBUSMED; the name is GLOBAL_EDUCATION_MOTIVATORS_; and the other names are None
The code is NGOEDU; the name is GLOBAL_FAMILY_FOR_LOVE_AND_PEACE_; and the other names are None
The code is NGOTAO; the name is GLOBAL_FOUNDATION_FOR_DEMOCRACY_AND_DEVELOPMENT_; and the other names are None
The code is NGODOM; the name is GLOBAL_FUND_FOR_HIV_AIDS_; and the other names are None
The code is NGOHLH; the name is GLOBAL_HEALTH_ACTION_; and the other names are None
The code is NGOEURHLH; the name is GLOBAL_INFORMATION_NETWORK_; and the other names are None
The code is NGOAFRMED; the name is GLOBAL_KIDS,_INC_; and the other names are None
The code is NGOUSA; the name is GLOBAL_KIDS_INC_; and the other names are None
The code is NGOUSA; the name is GLOBAL_NETWORK_AGAINST_WEAPONS_AND_NUCLEAR_POWER_IN_SPACE_; and the other names are None
The code is NGOUSA; the name is GLOBAL_SECURITY_INSTITUTE_; and the other names are None
The code is NGOUSA; the name is GLOBAL_VISION_FOR_PEACE_; and the other names are None
The code is NGOUSAMED; the name is GLOBAL_YOUTH_ACTION_NETWORK_; and the other names are None
The code is NGO; the name is GLOBETREE_; and the other names are None
The code is NGO; the name is GOOD_NEIGHBOURS_INTERNATIONAL_; and the other names are None
The code is NGODEV; the name is GOOD_NEWS_AGENCY_; and the other names are None
The code is NGOITAMED; the name is GRASSROOTS_ORGANIZATIONS_OPERATING_TOGETHER_IN_SISTERHOOD_; and the other names are None
The code is NGO; the name is GROOTS_INTERNATIONAL_; and the other names are None
The code is NGO; the name is HABITAT_FOR_HUMANITY_; and the other names are None
The code is NGOCHR; the name is HABITAT_POUR_L'HUMANITE_; and the other names are None
The code is NGOCHR; the name is HAGUE_APPEAL_FOR_PEACE_; and the other names are None
The code is NGO; the name is HAGUE_INTERNATIONAL_MODEL_UNITED_NATIONS_; and the other names are None
The code is NGOEDU; the name is HAP_INTERNATIONAL_; and the other names are None
The code is NGO; the name is HARVARD_HUMAN_RIGHTS_INTERNET_; and the other names are None
The code is NGOUSAHRI; the name is HATOF_FOUNDATION_; and the other names are None
The code is NGOGHADEV; the name is HEADINGTON_INSTITUTE_; and the other names are None
The code is NGOUSAHLH; the name is HEALTH_CARE_ORGANIZATION_FOR_AFRICA_; and the other names are None
The code is NGOAFRHLH; the name is HEALTH_PARTNERS_INTERNATIONAL_; and the other names are None
The code is NGOHLH; the name is HEALTH_POVERTY_ACTION_; and the other names are None
The code is NGOGBRHLH; the name is HEALTHNET_TPO_; and the other names are None
The code is NGONLDHLH; the name is HEALTHRIGHT_; and the other names are None
The code is NGOHRIHLH; the name is HEARTLAND_ALLIANCE_FOR_HUMAN_NEEDS_AND_HUMAN_RIGHTS_; and the other names are None
The code is NGOUSAHRI; the name is HELEN_KELLER_INTERNATIONAL_; and the other names are None
The code is NGOHLH; the name is HELFEN_WIR_; and the other names are None
The code is NGOAUTDEV; the name is HELPAGE_INTERNATIONAL_; and the other names are None
The code is NGOHRI; the name is HEPCA_; and the other names are None
The code is NGOMDEENV; the name is HILFE_ZUR_SELBSTHILFE_; and the other names are None
The code is NGODEU; the name is HOPE_'87_; and the other names are None
The code is NGOAUT; the name is HORN_RELIEF_; and the other names are None
The code is NGOUSAHRI; the name is HUMANISTIC_INSTITUTE_FOR_CO_OPERATION_WITH_DEVELOPING_COUNTRIES_; and the other names are None
The code is NGONLDDEV; the name is HUMANITARIAN_ACCOUNTABILITY_PARTNERSHIP_; and the other names are None
The code is NGO; the name is HUMEDICA_; and the other names are None
The code is NGODEU; the name is HUMPTY_DUMPTY_INSTITUTE_; and the other names are None
The code is NGOUSA; the name is HUNGARIAN_INTERCHURCH_AID_; and the other names are None
The code is NGOHUNCHR; the name is HURGHADA_ENVIRONMENTAL_PROTECTION_AND_CONSERVATION_ORGANIZATION_; and the other names are None
The code is NGOMDEENV; the name is I.D.E.A.L._SOCIETY_; and the other names are None
The code is NGOCANEDU; the name is IAAP_; and the other names are None
The code is NGOEDU; the name is IABSE_; and the other names are None
The code is NGOBUS; the name is IAJ_UIM_; and the other names are None
The code is NGOJUD; the name is IAMANEH_; and the other names are None
The code is NGOHLH; the name is IANSA_; and the other names are None
The code is NGO; the name is ICAI_; and the other names are None
The code is NGODEV; the name is ICDDR,B_; and the other names are None
The code is NGOBGDHLH; the name is ICDDRB_; and the other names are None
The code is NGOBGDHLH; the name is ICMEC_; and the other names are None
The code is NGOUSA; the name is ICMICA_IMCS_; and the other names are None
The code is NGOCHRCTHEDU; the name is ICOMP_; and the other names are None
The code is NGODEV; the name is ICTUR_; and the other names are None
The code is NGOLABHRI; the name is ICVOLUNTEERS_; and the other names are None
The code is NGOMED; the name is IFFAMPAC_; and the other names are None
The code is NGO; the name is IFLRY_; and the other names are None
The code is NGOPTY; the name is IFMBE_; and the other names are None
The code is NGOHLH; the name is IHEAS_; and the other names are None
The code is NGORUSEDU; the name is IMAMIA_MEDICS_INTERNATIONAL_; and the other names are None
The code is NGOMOSHLH; the name is INDIAN_COUNCIL_OF_SOUTH_AMERICA_; and the other names are None
The code is NGOSAMHRI; the name is INDIAN_LAW_RESOURCE_CENTER_; and the other names are None
The code is NGOUSA; the name is INFORMATION_TECHNOLOGIES_FOR_DEVELOPMENT_; and the other names are None
The code is NGODEVMED; the name is INFOTERM_; and the other names are None
The code is NGO; the name is INITIATIVES_OF_CHANGE_INTERNATIONAL_; and the other names are None
The code is NGO; the name is INPEA_; and the other names are None
The code is NGOHRI; the name is INSTITUT_INTERNATIONAL_DES_SCIENCES_HUMAIN_INTEGRALES_; and the other names are None
The code is NGOREL; the name is INSTITUTE_FOR_INTERRELIGIOUS_DIALOGUE_; and the other names are None
The code is NGOIRNREL; the name is INSTITUTE_FOR_THE_DEVELOPMENT_OF_EDUCATION_ARTS_AND_LEISURE_; and the other names are None
The code is NGOCANEDU; the name is INSTITUTE_OF_CULTURAL_AFFAIRS_INTERNATIONAL_; and the other names are None
The code is NGODEV; the name is INSTITUTE_OF_GENERAL_SEMANTICS_; and the other names are None
The code is NGOUSAEDU; the name is INSTITUTE_OF_INTERNAL_AUDITORS_; and the other names are None
The code is NGOBUS; the name is INSTITUTE_OF_INTERNATIONAL_EDUCATION_; and the other names are None
The code is NGOEDU; the name is INSTITUTO_DE_ESTUDOS_PARA_O_DESENVOLVIMENTO_; and the other names are None
The code is NGOPRTDEV; the name is INSTITUTO_GRISELDA_ALVAREZ_; and the other names are None
The code is NGOMEXDEV; the name is INSTITUTO_IBEROAMERICANO_DE_DERECHO_AERONAUTICO_Y_DEL_ESPACIO_Y_DE_LA_AVIACION_COMERCIAL_; and the other names are None
The code is NGOLAMBUS; the name is INSULA_; and the other names are None
The code is NGODEV; the name is INTER_AMERICAN_HOUSING_UNION_; and the other names are None
The code is NGOLAMDEV; the name is INTER_AMERICAN_PRESS_ASSOCIATION_; and the other names are None
The code is NGOWSTMED; the name is INTER_PRESS_SERVICE_; and the other names are None
The code is NGOMED; the name is INTERACTION:_AMERICAN_COUNCIL_FOR_VOLUNTARY_INTERNATIONAL_ACTION_; and the other names are None
The code is NGOUSA; the name is INTERFAITH_CENTER_ON_CORPORATE_RESPONSIBILITY_; and the other names are None
The code is NGOUSACHRBUS; the name is INTERFAITH_CENTRE_OF_NEW_YORK_; and the other names are None
The code is NGOUSAREL; the name is INTERMON_; and the other names are None
The code is NGOXFM; the name is INTERNATIONAL_ABOLITIONIST_FEDERATION_; and the other names are None
The code is NGOHRI; the name is INTERNATIONAL_ACTION_NETWORK_ON_SMALL_ARMS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_ADVERTISING_ASSOCIATION_; and the other names are None
The code is NGOBUSMED; the name is INTERNATIONAL_AGENCY_FOR_THE_PREVENTION_OF_BLINDNESS_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_ASSOCIATION_AGAINST_DRUG_TRAFFICKING_AND_DRUG_ABUSE_; and the other names are None
The code is NGORUSHLH; the name is INTERNATIONAL_ASSOCIATION_AGAINST_NOISE_; and the other names are None
The code is NGOEURENV; the name is INTERNATIONAL_ASSOCIATION_AGAINST_PAINFUL_EXPERIMENTS_ON_ANIMALS_; and the other names are None
The code is NGOENV; the name is INTERNATIONAL_ASSOCIATION_FOR_BRIDGE_AND_STRUCTURAL_ENGINEERING_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_ASSOCIATION_FOR_COMMUNITY_DEVELOPMENT_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_ASSOCIATION_FOR_HOUSING_SCIENCE_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_FOR_MATERNAL_AND_NEONATAL_HEALTH_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_ASSOCIATION_FOR_RESEARCH_IN_INCOME_AND_WEALTH_; and the other names are None
The code is NGOEDUBUS; the name is INTERNATIONAL_ASSOCIATION_FOR_THE_EXCHANGE_OF_STUDENTS_FOR_TECHNICAL_EXPERIENCE_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_FOR_VOLUNTEER_EFFORT_; and the other names are None
The code is NGO; the name is INTERNATIONAL_ASSOCIATION_FOR_WATER_LAW_; and the other names are None
The code is NGOENV; the name is INTERNATIONAL_ASSOCIATION_OF_APPLIED_PSYCHOLOGY_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_OF_CRAFTS_AND_SMALL_AND_MEDIUM_SIZED_ENTERPRISES_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_ASSOCIATION_OF_DEMOCRATIC_LAWYERS_; and the other names are None
The code is NGOJUD; the name is INTERNATIONAL_ASSOCIATION_OF_DRILLING_CONTRACTORS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_ASSOCIATION_OF_GERONTOLOGY_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_OF_INDEPENDENT_TANKER_OWNERS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_ASSOCIATION_OF_JEWISH_LAWYERS_AND_JURISTS_; and the other names are None
The code is NGOJEWJUDHRI; the name is INTERNATIONAL_ASSOCIATION_OF_JUDGES_; and the other names are None
The code is NGOJUD; the name is INTERNATIONAL_ASSOCIATION_OF_LAWYERS_AGAINST_NUCLEAR_ARMS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_ASSOCIATION_OF_LIONS_CLUBS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_ASSOCIATION_OF_LOGOPEDICS_AND_PHONIATRICS_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_OF_OIL_AND_GAS_PRODUCERS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_ASSOCIATION_OF_PEACE_FOUNDATIONS_; and the other names are None
The code is NGOCAS; the name is INTERNATIONAL_ASSOCIATION_OF_PORTS_AND_HARBORS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_ASSOCIATION_OF_SCHOOLS_OF_SOCIAL_WORK_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_OF_UNIVERSITY_PRESIDENTS_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_OF_WOMEN_IN_RADIO_AND_TELEVISION_; and the other names are None
The code is NGOMED; the name is INTERNATIONAL_ASSOCIATION_OF_WOMEN_JUDGES_; and the other names are None
The code is NGOJUD; the name is INTERNATIONAL_ASSOCIATION_OF_YOUNG_LAWYERS_; and the other names are None
The code is NGOJUD; the name is INTERNATIONAL_ASTRONAUTICAL_FEDERATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_BAR_ASSOCIATION_; and the other names are None
The code is NGOJUDHRI; the name is INTERNATIONAL_BLUE_CRESCENT_; and the other names are None
The code is NGOTURDEV; the name is INTERNATIONAL_BOARD_ON_BOOKS_FOR_YOUNG_PEOPLE_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_BOOK_BANK_; and the other names are None
The code is NGOEDU;; the name is INTERNATIONAL_BOOK_PROJECT,_INC.; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_CARTOGRAPHIC_ASSOCIATION_; and the other names are +INTERNATIONAL_BOOK_PROJECT_
The code is NGOEDU; the name is INTERNATIONAL_CATHOLIC_CHILD_BUREAU_; and the other names are None
The code is NGOCHRCTHHRI; the name is INTERNATIONAL_CATHOLIC_UNION_OF_THE_PRESS_; and the other names are None
The code is NGOCHRCTHMED; the name is INTERNATIONAL_CENTRE_FOR_MISSING_AND_EXPLOITED_CHILDREN_; and the other names are None
The code is NGOUSA; the name is INTERNATIONAL_CENTRE_FOR_TRADE_UNION_RIGHTS_; and the other names are None
The code is NGOLABHRI; the name is INTERNATIONAL_CENTRE_OF_ROERICHS_; and the other names are None
The code is NGORUS; the name is INTERNATIONAL_CO_OPERATIVE_ALLIANCE_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_COMMISSION_ON_IRRIGATION_AND_DRAINAGE_; and the other names are None
The code is NGOAGR; the name is INTERNATIONAL_COMMISSION_ON_OCCUPATIONAL_HEALTH_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_COMMUNICATION_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_CONFEDERATION_OF_MIDWIVES_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_CONFERENCE_OF_LABOUR_HISTORIANS_; and the other names are None
The code is NGOEDULAB; the name is INTERNATIONAL_COOPERATIVE_ALLIANCE_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_COUNCIL_FOR_ADULT_EDUCATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_COUNCIL_FOR_CARING_COMMUNITIES_; and the other names are None
The code is NGO; the name is INTERNATIONAL_COUNCIL_FOR_COMMERCIAL_ARBITRATION_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_COUNCIL_FOR_SCIENCE_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_COUNCIL_OF_MUSEUMS_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_COUNCIL_OF_NURSES_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_COUNCIL_OF_PSYCHOLOGISTS_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_COUNCIL_OF_WOMEN_; and the other names are None
The code is NGO; the name is INTERNATIONAL_COUNCIL_ON_ALCOHOL_AND_ADDICTIONS_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_COUNCIL_ON_EDUCATION_FOR_TEACHING_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_COUNCIL_ON_MANAGEMENT_OF_POPULATION_PROGRAMMES_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_COUNCIL_ON_SOCIAL_WELFARE_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_DESALINATION_ASSOCIATION_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_DIABETES_FEDERATION_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_ELECTROTECHNICAL_COMMITTEE_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_FOR_EAST_TIMOR_; and the other names are None
The code is NGOTMP; the name is INTERNATIONAL_FEDERATION_FOR_HOME_ECONOMICS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_FEDERATION_FOR_HOUSING_AND_PLANNING_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_FOR_MEDICAL_AND_BIOLOGICAL_ENGINEERING_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_FEDERATION_OF_AGRICULTURAL_PRODUCERS_; and the other names are None
The code is NGOAGR; the name is INTERNATIONAL_FEDERATION_OF_ASSOCIATIONS_OF_THE_ELDERLY_; and the other names are None
The code is NGO; the name is INTERNATIONAL_FEDERATION_OF_AUTOMATIC_CONTROL_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_OF_BEEKEEPERS'_ASSOCIATIONS_; and the other names are None
The code is NGOAGR; the name is INTERNATIONAL_FEDERATION_OF_BUSINESS_AND_PROFESSIONAL_WOMEN_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_OF_CATHOLIC_UNIVERSITIES_; and the other names are None
The code is NGOCHRCTHEDU; the name is INTERNATIONAL_FEDERATION_OF_CLINICAL_CHEMISTRY_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_FEDERATION_OF_EMPLOYEES_IN_PUBLIC_SERVICES_; and the other names are None
The code is NGOLAB; the name is INTERNATIONAL_FEDERATION_OF_FAMILY_ASSOCIATIONS_OF_MISSING_PERSONS_FROM_ARMED_CONFLICTS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_FEDERATION_OF_FREIGHT_FORWARDERS_ASSOCIATIONS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_OF_LIBERAL_YOUTH_; and the other names are None
The code is NGOPTY; the name is INTERNATIONAL_FEDERATION_OF_MEDICAL_AND_BIOLOGICAL_ENGINEERING_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_FEDERATION_OF_MEDICAL_STUDENTS'_ASSOCIATIONS_; and the other names are None
The code is NGOEDUHLH; the name is INTERNATIONAL_FEDERATION_OF_PERSONS_WITH_PHYSICAL_DISABILITY_; and the other names are None
The code is NGOEURHRI; the name is INTERNATIONAL_FEDERATION_OF_PHARMACEUTICAL_MANUFACTURERS_ASSOCIATIONS_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_FEDERATION_OF_SETTLEMENTS_AND_NEIGHBOURHOOD_CENTRES_; and the other names are None
The code is NGO; the name is INTERNATIONAL_FEDERATION_OF_SOCIAL_WORKERS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_OF_SURGICAL_COLLEGES_; and the other names are None
The code is NGOEDUHLH; the name is INTERNATIONAL_FEDERATION_OF_SURVEYORS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_OF_TRAINING_AND_DEVELOPMENT_ORGANIZATIONS_; and the other names are None
The code is NGOEDUDEV; the name is INTERNATIONAL_FEDERATION_OF_WOMEN_IN_LEGAL_CAREERS_; and the other names are None
The code is NGOJUDHRI; the name is INTERNATIONAL_FEDERATION_OF_WOMEN_LAWYERS_; and the other names are None
The code is NGOJUD; the name is INTERNATIONAL_FEDERATION_OF_WORKERS'_EDUCATIONAL_ASSOCIATIONS_; and the other names are None
The code is NGOZAFEDU; the name is INTERNATIONAL_FEDERATION_ON_AGEING_; and the other names are None
The code is NGO; the name is INTERNATIONAL_FELLOWSHIP_OF_RECONCILIATION_; and the other names are None
The code is NGOCHRPRO; the name is INTERNATIONAL_FILM_AND_TELEVISION_EXCHANGE_; and the other names are None
The code is NGOUSAMED; the name is INTERNATIONAL_FORUM_FOR_CHILD_WELFARE_; and the other names are None
The code is NGO; the name is INTERNATIONAL_GENDER_ORGANIZATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_HEALTH_AWARENESS_NETWORK_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_HIGHER_EDUCATION_ACADEMY_OF_SCIENCES_; and the other names are None
The code is NGORUSEDU; the name is INTERNATIONAL_HIV_AIDS_ALLIANCE_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_INFORMATION_CENTER_FOR_TERMINOLOGY_; and the other names are None
The code is NGO; the name is INTERNATIONAL_INFORMATIZATION_ACADEMY_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_INNER_WHEEL_; and the other names are None
The code is NGO; the name is INTERNATIONAL_INSTITUTE_FOR_APPLIED_SYSTEMS_ANALYSIS_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_INSTITUTE_FOR_NON_ALIGNED_STUDIES_; and the other names are None
The code is NGO; the name is INTERNATIONAL_INSTITUTE_OF_ADMINISTRATIVE_SCIENCES_; and the other names are None
The code is NGOEDUBUS; the name is INTERNATIONAL_INSTITUTE_OF_HIGHER_STUDIES_IN_CRIMINAL_SCIENCES_; and the other names are None
The code is NGOITAHRI; the name is INTERNATIONAL_INSTITUTE_OF_HUMANITARIAN_LAW_; and the other names are None
The code is NGOEURHRI; the name is INTERNATIONAL_INSTITUTE_OF_INTEGRAL_HUMAN_SCIENCES_; and the other names are None
The code is NGOREL; the name is INTERNATIONAL_INSTITUTE_OF_RURAL_RECONSTRUCTION_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_INSTITUTE_ON_PEACE_EDUCATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_KOLPING_SOCIETY_; and the other names are None
The code is NGOCHRCTHDEV; the name is INTERNATIONAL_LEAGUE_FOR_THE_RIGHTS_AND_LIBERATION_OF_PEOPLES_; and the other names are None
The code is NGOHRI; the name is INTERNATIONAL_LEAGUE_OF_SOCIETIES_FOR_PERSONS_WITH_MENTAL_HANDICAPS_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_MEDICAL_CORPS_; and the other names are None
The code is NGOUSAHLH; the name is INTERNATIONAL_MEDICAL_CORPS_UK_; and the other names are None
The code is NGOGBRHLH; the name is INTERNATIONAL_MISSION_ASSOCIATION_; and the other names are None
The code is NGOKORCHRHLH; the name is INTERNATIONAL_MODEL_UNITED_NATIONS_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_MOVEMENT_A.T.D._FOURTH_WORLD_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_MOVEMENT_ATD_FOURTH_WORLD_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_MOVEMENT_FOR_FRATERNAL_UNION_AMONG_RACES_AND_PEOPLES_; and the other names are None
The code is NGO; the name is INTERNATIONAL_NETWORK_FOR_THE_PREVENTION_OF_ELDER_ABUSE_; and the other names are None
The code is NGOHRI; the name is INTERNATIONAL_NETWORK_OF_PEACE_MUSEUMS_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_OCEAN_INSTITUTE_; and the other names are None
The code is NGOENV; the name is INTERNATIONAL_ORGANIZATION_FOR_STANDARDIZATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_ORGANIZATION_FOR_THE_ELIMINATION_OF_ALL_FORMS_OF_RACIAL_DISCRIMINATION_; and the other names are None
The code is NGOHRI; the name is INTERNATIONAL_ORGANIZATION_OF_EMPLOYERS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_PEACE_BUREAU_; and the other names are None
The code is NGO; the name is INTERNATIONAL_PEACE_RESEARCH_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_PHOTOGRAPHIC_COUNCIL_; and the other names are None
The code is NGOMED; the name is INTERNATIONAL_PHYSICIANS_FOR_THE_PREVENTION_OF_NUCLEAR_WAR_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_POLITICAL_SCIENCE_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_PRESS_INSTITUTE_; and the other names are None
The code is NGOMED; the name is INTERNATIONAL_PROGRESS_ORGANIZATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_PUBLIC_POLICY_INSTITUTE_; and the other names are None
The code is NGO; the name is INTERNATIONAL_PUBLIC_RELATIONS_ASSOCIATION_; and the other names are None
The code is NGOBUSMED; the name is INTERNATIONAL_PUBLISHERS_ASSOCIATION_; and the other names are None
The code is NGOMED; the name is INTERNATIONAL_REAL_ESTATE_FEDERATION_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_REHABILITATION_COUNCIL_FOR_TORTURE_VICTIMS_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_RELIEF_FRIENDSHIP_FOUNDATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_RESEARCH_CENTRE_FOR_ENVIRONMENTAL_STRUCTURES_PIO_MANZU_; and the other names are None
The code is NGOITAENV; the name is INTERNATIONAL_ROAD_FEDERATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_ROMANI_UNION_; and the other names are None
The code is NGOEUR; the name is INTERNATIONAL_SAVE_THE_CHILDREN_ALLIANCE_; and the other names are None
The code is NGO; the name is INTERNATIONAL_SCHOOLS_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_SCIENTIFIC_COUNCIL_FOR_ISLAND_DEVELOPMENT_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_SOCIAL_SCIENCE_COUNCIL_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_SOCIAL_SECURITY_ASSOCIATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_SOCIAL_SERVICE_; and the other names are None
The code is NGO; the name is INTERNATIONAL_SOCIETY_FOR_MANGROVE_ECOSYSTEMS_; and the other names are None
The code is NGOJPNENV; the name is INTERNATIONAL_SOCIETY_FOR_PHOTOGRAMMETRY_AND_REMOTE_SENSING_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_SOCIETY_FOR_TRAUMATIC_STRESS_STUDIES_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_SOCIETY_OF_CITY_AND_REGIONAL_PLANNERS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_SOCIETY_OF_NURSING_IN_CANCER_CARE_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_SOCIETY_OF_RADIOGRAPHERS_AND_RADIOLOGICAL_TECHNICIANS_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_SOCIOLOGICAL_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_STATISTICAL_INSTITUTE_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_STUDIES_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_TELECOMMUNICATION_ACADEMY_; and the other names are None
The code is NGOMED; the name is INTERNATIONAL_TRADE_UNION_CONFEDERATION_; and the other names are None
The code is NGOLAB; the name is INTERNATIONAL_TUNNELLING_AND_UNDERGROUND_SPACE_ASSOCIATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_UNION_FOR_CONSERVATION_OF_NATURE_; and the other names are None
The code is NGOENV; the name is INTERNATIONAL_UNION_FOR_HEALTH_PROMOTION_AND_EDUCATION_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_UNION_FOR_LAND_VALUE_TAXATION_AND_FREE_TRADE_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_UNION_OF_ARCHITECTS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_UNION_OF_BIOLOGICAL_SCIENCES_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_UNION_OF_BUILDING_CENTRES_; and the other names are None
The code is NGOEURBUS; the name is INTERNATIONAL_UNION_OF_ECONOMISTS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_UNION_OF_NUTRITIONAL_SCIENCES_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_UNION_OF_PSYCHOLOGICAL_SCIENCE_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_UNION_OF_SOCIALIST_YOUTH_; and the other names are None
The code is NGOPTY; the name is INTERNATIONAL_UNION_OF_TECHNICAL_ASSOCIATIONS_AND_ORGANIZATIONS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_UNION_OF_TENANTS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_WILDLIFE_COALITION_TRUST_; and the other names are None
The code is NGOPHLENV; the name is INTERNATIONAL_WOMEN_JUDGES_FOUNDATION_; and the other names are None
The code is NGOJUD; the name is INTERNATIONAL_YOUTH_AND_STUDENT_MOVEMENT_FOR_THE_UNITED_NATIONS_; and the other names are None
The code is NGO; the name is INTERNATIONALE_DE_L'EDUCATION_; and the other names are None
The code is NGOLABEDU; the name is INTERSOS_; and the other names are None
The code is NGOITA; the name is INTERTANKO_; and the other names are None
The code is NGOBUS; the name is INTERVIDA_WORLD_ALLIANCE_; and the other names are None
The code is NGOESPDEV; the name is INTRAHEALTH_INTERNATIONAL_; and the other names are None
The code is NGOHLH;; the name is ISLAMIC/AFRICAN_RELIEF_AGENCY_; and the other names are None
The code is NGOSDNMOS; the name is ISLAMIC_RELIEF_; and the other names are None
The code is NGOMOSDEV; the name is ISMUN_; and the other names are None
The code is NGO; the name is ITA_AITES_; and the other names are None
The code is NGO; the name is ITFD_INTERNATIONAL_; and the other names are None
The code is NGODEVMED; the name is IUHPE_; and the other names are None
The code is NGOHLH; the name is IUPSYS_; and the other names are None
The code is NGOEDU; the name is JAKOB_KELLENBERGER_; and the other names are None
The code is NGOHLHIRC; the name is JANE_GOODALL_INSTITUTE_; and the other names are None
The code is NGOENV; the name is JAPAN_CENTER_FOR_CONFLICT_PREVENTION_; and the other names are None
The code is NGOJPN; the name is JAPAN_PEACE_BOAT_; and the other names are None
The code is NGOJPN; the name is JAPAN_WELL_AGING_ASSOCIATION_; and the other names are None
The code is NGOJPNHLH; the name is JEUNES_MEDECINS_SANS_FRONTIERES_TUNISIE_; and the other names are None
The code is NGOTUNHLH; the name is JEWISH_NATIONAL_FUND_; and the other names are None
The code is NGOISRJEW; the name is JEWISH_WOMEN_INTERNATIONAL_; and the other names are None
The code is NGOCANJEW; the name is JOHANNITER_INTERNATIONAL_ALLIANCE_; and the other names are None
The code is NGODEUHLH; the name is JOSEPH_PARARAJASINGHAM_; and the other names are None
The code is NGOTAM; the name is JOVENEX_EN_MOVIMIENTO_; and the other names are None
The code is NGOREF; the name is JUAN_MANUEL_SUAREZ_DEL_TORO_RIVERO_; and the other names are None
The code is NGOHLHIRC; the name is JUDGES_WITHOUT_BORDERS_; and the other names are None
The code is NGOJUD; the name is JUNIOR_CHAMBER_INTERNATIONAL_; and the other names are None
The code is NGOREL; the name is KAPPA_DELTA_PI_; and the other names are None
The code is NGONMREDU; the name is KARAMAH_; and the other names are None
The code is NGOMOSJUDHRI; the name is KARP_KOREAN_ASSOCIATION_OF_RETIRED_PERSONS_; and the other names are None
The code is NGOKOR; the name is KEGME_; and the other names are None
The code is NGOEEU; the name is KERKINACTIE_; and the other names are None
The code is NGONLDCHRPRO360; the name is KIDS_WITH_A_CAUSE_; and the other names are None
The code is NGODEV; the name is KINDERDORF_INTERNATIONAL_; and the other names are None
The code is NGODEU; the name is KIWANIS_INTERNATIONAL_; and the other names are None
The code is NGO; the name is KOREA_INTERNATIONAL_VOLUNTEER_ORGANIZATION_; and the other names are None
The code is NGOKOR; the name is LA_LECHE_LEAGUE_; and the other names are None
The code is NGOHLH; the name is LANDMINE_ACTION_; and the other names are None
The code is NGOGBR; the name is LAO_NEW_GENERATION_DEMOCRACY_MOVEMENT_; and the other names are None
The code is NGOHRI; the name is LAWYERS_WITHOUT_BORDERS_; and the other names are None
The code is NGOJUD; the name is LEGACY_INTERNATIONAL_; and the other names are None
The code is NGOUSA; the name is LEGIAO_DA_BOA_VONTADE_; and the other names are None
The code is NGOLAM; the name is LEGION_OF_GOOD_WILL_; and the other names are None
The code is NGOLAM; the name is LEITNER_CENTER_FOR_INTERNATIIONAL_LAW_AND_JUSTICE_; and the other names are None
The code is NGOUSAHRI; the name is LIBERAL_INTERNATIONAL_; and the other names are None
The code is NGOPTY; the name is LIFE_AND_PEACE_INSTITUTE_; and the other names are None
The code is NGOCHECHR; the name is LIFE_FOR_RELIEF_AND_DEVELOPMENT_; and the other names are None
The code is NGOUSAARBMOS; the name is LIGHT_MILLENNIUM_; and the other names are None
The code is NGOUSA; the name is LIONS_CLUBS_INTERNATIONAL_; and the other names are +LINKS_INC.
The code is NGO; the name is LOOMBA_TRUST_; and the other names are None
The code is NGO; the name is LORETTO_COMMUNITY_; and the other names are None
The code is NGOUSACHRCTH; the name is LUTHERAN_IMMIGRATION_AND_REFUGEE_SERVICE_; and the other names are None
The code is NGOUSAREF; the name is LUTHERAN_WORLD_FEDERATION_DEPARTMENT_FOR_WORLD_SERVICE_; and the other names are None
The code is NGOCHRPRO214; the name is LUTHERAN_WORLD_FUND_TANZANIA_; and the other names are None
The code is NGOTZACHRPRO214; the name is LUTHERAN_WORLD_RELIEF_; and the other names are None
The code is NGOUSACHRPRODEV; the name is MAKE_A_WISH_FOUNDATION_; and the other names are None
The code is NGOUSA; the name is MALTESER_INTERNATIONAL_; and the other names are None
The code is NGOCHRCTH603; the name is MANAGEMENT_ACCOUNTING_FOR_NON_GOVERNMENTAL_ORGANISATIONS_; and the other names are None
The code is NGOGBR; the name is MANDAT_INTERNATIONAL_; and the other names are None
The code is NGOCHE; the name is MANOS_UNIDAS_; and the other names are None
The code is NGOESPDEV; the name is MAPACTION_; and the other names are None
The code is NGOMED; the name is MARIE_STOPES_; and the other names are None
The code is NGOHLH;; the name is MARTHA_WAYNE_FOUNDATION_ ; and the other names are None
The code is NGOUSA; the name is MARYKNOLL_FATHERS_AND_BROTHERS_; and the other names are None
The code is NGOUSACHRCTH; the name is MATA_AMRITANANDAMAYI_MATH_; and the other names are None
The code is NGOIND; the name is MATERCARE_INTERNATIONAL_; and the other names are None
The code is NGOCHRCTHHLH; the name is MEDAIR_; and the other names are None
The code is NGOCHR; the name is MEDECINS_DU_MONDE_; and the other names are None
The code is NGOHLH; the name is MEDICAL_ASSISTANCE_PROGRAMS_INTERNATIONAL_; and the other names are None
The code is NGOUSACHRHLH; the name is MEDICAL_KNOWLEDGE_INSTITUTE_; and the other names are None
The code is NGOHLH; the name is MEDICAL_MISSION_SISTERS_; and the other names are None
The code is NGOCHRCTHHLH; the name is MEDICAL_TEAMS_INTERNATIONAL_; and the other names are None
The code is NGOUSACHRHLH; the name is MEDICAL_WOMEN'S_INTERNATIONAL_ASSOCIATION_; and the other names are None
The code is NGOHLH; the name is MEDITERRANEAN_WOMEN'S_STUDIES_CENTRE_; and the other names are None
The code is NGOEEU; the name is MEGA_CITIES_PROJECT_; and the other names are None
The code is NGODEV; the name is MERCYEMEN_; and the other names are None
The code is NGOYEM; the name is METHODIST_RELIEF_AND_DEVELOPMENT_FUND_; and the other names are None
The code is NGOGBRCHRPRO230; the name is MINBYUN_LAWYERS_FOR_A_DEMOCRATIC_SOCIETY_; and the other names are None
The code is NGODEV; the name is MINES_ADVISORY_GROUP_; and the other names are None
The code is NGO; the name is MONTREAL_SOCIAL_JUSTICE_COMMITTEE_; and the other names are None
The code is NGOHRI; the name is MOUVEMENT_DU_NID_; and the other names are None
The code is NGOHRI; the name is MOUVEMENT_MONDIAL_DES_MERES_; and the other names are None
The code is NGO; the name is MOVIMIENTO_POR_LA_PAZ_EL_DESARME_Y_LA_LIBERTAD_; and the other names are None
The code is NGOARBHRI; the name is MOVIMONDO_; and the other names are None
The code is NGOITA; the name is MUSLIM_AID_; and the other names are None
The code is NGOGBRMOS; the name is MUSLIM_WOMEN_LAWYERS_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOMOSJUDHRI; the name is NATIONAL_COUNCIL_ON_FAMILY_RELATIONS_; and the other names are None
The code is NGONMR; the name is NATIONAL_FOREIGN_TRADE_COUNCIL_; and the other names are None
The code is NGOBUS; the name is NATIONAL_SERVICE_CONFERENCE_OF_THE_AMERICAN_ETHICAL_UNION_; and the other names are None
The code is NGOUSA; the name is NATIONAL_SPACE_SOCIETY_; and the other names are None
The code is NGO; the name is NATURAL_RESOURCES_DEFENCE_COUNCIL_; and the other names are None
The code is NGOUSAENV; the name is NCFR_; and the other names are None
The code is NGONMR; the name is NEAR_EAST_FOUNDATION_; and the other names are None
The code is NGOUSADEV; the name is NESOHR_; and the other names are None
The code is NGOHRI; the name is NETWORK_EARTH_VILLAGE_; and the other names are None
The code is NGOJPNENV; the name is NEW_HUMAN_RIGHTS_; and the other names are None
The code is NGOHRI; the name is NEW_ZEALAND_CAMPAIGN_AGAINST_LANDMINES_; and the other names are None
The code is NGONZL; the name is NEXUS_INTERNATIONAL_BROADCASTING_ASSOCIATION_; and the other names are None
The code is NGOMED; the name is NGARMSUK_RATTANASATHIEN_; and the other names are None
The code is NGOHRI; the name is NGO_HEALTH_COMMITTEE_; and the other names are None
The code is NGOHLH; the name is NICK_CHEESMAN_; and the other names are None
The code is NGOHRI; the name is NIGHTINGALE_INITIATIVE_FOR_GLOBAL_HEALTH_; and the other names are None
The code is NGOHLH; the name is NORD_SUD_XXI_; and the other names are None
The code is NGO; the name is NORTHEAST_SECRETARIAT_OF_HUMAN_RIGHTS_; and the other names are None
The code is NGOTAM; the name is NORTHEAST_SECRETARIAT_ON_HUMAN_RIGHTS_; and the other names are None
The code is NGOTAM; the name is NORTHERN_FORUM_; and the other names are None
The code is NGO; the name is NORWEGIAN_CHURCH_AID_; and the other names are None
The code is NGONORCHRPRO; the name is NORWEGIAN_PEOPLE'S_AID_; and the other names are None
The code is NGONOR; the name is NOUVEAUX_DROITS_DE_L'HOMME_; and the other names are None
The code is NGOHRI; the name is OATUU_; and the other names are None
The code is NGOAFRLAB; the name is OBSERVATORY_FOR_CULTURAL_AND_AUDIOVISUAL_COMMUNICATION_; and the other names are None
The code is NGOITAMED; the name is OCKENDEN_INTERNATIONAL_; and the other names are None
The code is NGOGBRREF; the name is OFADEC_; and the other names are None
The code is NGOAFRDEV; the name is OFFICE_AFRICAIN_POUR_LE_DEVELOPPEMENT_ET_LA_COOPERATION_; and the other names are None
The code is NGOAFRDEV; the name is OIEC_; and the other names are None
The code is NGOCHRCTHEDU; the name is OIKOS_COOPERACAO_E_DESENVOLVIMENTO_; and the other names are None
The code is NGOPRTDEV; the name is OIPA_; and the other names are None
The code is NGOENV; the name is OLOF_PALME_PEACE_FOUNDATION_; and the other names are None
The code is NGOSWE; the name is OPERATION_MERCY_; and the other names are None
The code is NGODEV; the name is OPERATION_PEACE_THROUGH_UNITY_; and the other names are None
The code is NGO; the name is OPERATION_USA_; and the other names are None
The code is NGOUSA; the name is ORGANISATION_DEVELOPMENT_AND_TRAINING_; and the other names are None
The code is NGODEV; the name is ORGANISATION_INTERNATIONALE_POUR_LA_PROTECTION_DES_ANIMAUX_; and the other names are None
The code is NGOENV; the name is ORGANIZATION_OF_AFRICAN_TRADE_UNION_UNITY_; and the other names are None
The code is NGOAFRLAB; the name is ORGANIZATION_OF_ISLAMIC_CAPITALS_AND_CITIES_; and the other names are None
The code is NGOMOS; the name is ORPHANS_INTERNATIONAL_; and the other names are None
The code is NGO; the name is ORT_AMERICA_; and the other names are None
The code is NGOUSAJEWEDU; the name is OSAKA_JUNIOR_CHAMBER_; and the other names are None
The code is NGO; the name is OSMTH_; and the other names are None
The code is NGOISRCHR; the name is OTTAWA_HUMAN_RIGHTS_INTERNET_; and the other names are None
The code is NGOHRI; the name is OVERSEAS_PRESS_CLUB_OF_AMERICA_; and the other names are None
The code is NGOUSAMED; the name is PACIFIC_CONCERNS_RESOURCE_CENTRE_; and the other names are None
The code is NGOFJI; the name is PAN_AFRICAN_INSTITUTE_FOR_DEVELOPMENT_; and the other names are None
The code is NGOAFRDEV; the name is PAN_AMERICAN_DEVELOPMENT_FOUNDATION_; and the other names are None
The code is NGOLAMDEV; the name is PAN_PACIFIC_AND_SOUTHEAST_ASIA_WOMEN'S_ASSOCIATION_; and the other names are None
The code is NGOSEADEV; the name is PARTNERSHIP_FOR_GLOBAL_JUSTICE_; and the other names are None
The code is NGOUSACHR; the name is PARTNERSHIP_FOR_INDIGENOUS_PEOPLES_ENVIRONMENT_; and the other names are None
The code is NGOENV; the name is PATHWAYS_TO_PEACE_; and the other names are None
The code is NGO; the name is PAX_CHRISTI_INTERNATIONAL_; and the other names are None
The code is NGOCHRCTH; the name is PAZ_Y_COOPERACION_; and the other names are None
The code is NGO; the name is PEACE_ACTION_; and the other names are None
The code is NGOUSA; the name is PEACE_BOAT_; and the other names are None
The code is NGOJPN; the name is PEACE_CHILD_INTERNATIONAL_; and the other names are None
The code is NGOGBRDEV; the name is PEACE_EDUCATION_FOUNDATION_; and the other names are None
The code is NGOEDU; the name is PEACE_PARTNERSHIP_INTERNATIONAL_; and the other names are None
The code is NGOCAS; the name is PEACE_WINDS_JAPAN_; and the other names are None
The code is NGOJPN; the name is PEACEMAKER_CORPS_ASSOCIATION_; and the other names are None
The code is NGOUSA; the name is PEACEWORKERS/NONVIOLENT_PEACEFORCE_; and the other names are None
The code is NGO; the name is PEARL_S._BUCK_INTERNATIONAL_; and the other names are None
The code is NGOUSAEDU; the name is PHYSICIANS_FOR_PEACE_; and the other names are None
The code is NGOHLH; the name is PLAN_INTERNATIONAL_; and the other names are None
The code is NGODEV; the name is PLANETAFILLIA_; and the other names are None
The code is NGOMEX; the name is PLANNED_PARENTHOOD_FEDERATION_; and the other names are None
The code is NGOUSAHLH; the name is POPULATION_COUNCIL_; and the other names are None
The code is NGODEV; the name is POPULATION_INSTITUTE_; and the other names are None
The code is NGOUSA; the name is PPSEAWA_; and the other names are None
The code is NGOSEADEV; the name is PREMIERE_URGENCE_; and the other names are None
The code is NGOFRA; the name is PRISON_FELLOWSHIP_INTERNATIONAL_; and the other names are None
The code is NGOCHR; the name is PRODEFA_; and the other names are None
The code is NGOESP; the name is PROGRAM_FOR_APPROPRIATE_TECHNOLOGY_IN_HEALTH_; and the other names are None
The code is NGOHLH; the name is PROJECT_PLOUGHSHARES_; and the other names are None
The code is NGOCANCHR; the name is PROMOTING_ENDURING_PEACE_; and the other names are None
The code is NGOUSA; the name is PUBLIC_PRIVATE_ALLIANCE_FOUNDATION_; and the other names are None
The code is NGODEV; the name is PUBLIC_RELATIONS_SOCIETY_OF_AMERICA_; and the other names are None
The code is NGOMED; the name is PUGWASH_CONFERENCES_ON_SCIENCE_AND_WORLD_AFFAIRS_; and the other names are None
The code is NGO; the name is QUAKER_EARTHCARE_WITNESS_; and the other names are None
The code is NGOCHRPROENV; the name is QUICK_RELIEF_FOUNDATION_; and the other names are None
The code is NGOHUN; the name is QUOTA_INTERNATIONAL_; and the other names are None
The code is NGO; the name is RADDA_BARNEN_; and the other names are None
The code is NGOSWEDEV; the name is RAINFOREST_FOUNDATION_INTERNATIONAL_; and the other names are None
The code is NGOENV; the name is RDRS_BANGLADESH_; and the other names are None
The code is NGOBGDCHRPRO214; the name is REACH_OUT_REFUGEE_PROTECTION_TRAINING_PROJECT_; and the other names are None
The code is NGOREF; the name is RED_CROSS_EU_OFFICE_; and the other names are None
The code is NGOHLHIRC; the name is RED_DE_SALUD_DE_LAS_MUJERES_LATINOAMERICANAS_Y_DEL_CARIBE_; and the other names are None
The code is NGOLAM; the name is REDR_; and the other names are None
The code is NGO; the name is RELIEF_INTERNATIONAL_; and the other names are None
The code is NGOUSA; the name is RENE_DUBOS_CENTER_FOR_HUMAN_ENVIRONMENTS_; and the other names are None
The code is NGOUSAENV; the name is RESEARCH_ACTION_AND_INFORMATION_NETWORK_FOR_BODILY_INTEGRITY_OF_WOMEN_; and the other names are None
The code is NGOHLH; the name is REVIVAL_OF_ISLAMIC_HERITAGE_SOCIETY_; and the other names are None
The code is NGOMOS; the name is RIBBON_INTERNATIONAL_; and the other names are None
The code is NGO; the name is RIHS_; and the other names are None
The code is NGOMOS; the name is ROBERT_F._KENNEDY_MEMORIAL_CENTER_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOUSAHRI; the name is ROCKEFELLER_FOUNDATION_; and the other names are None
The code is NGOUSA; the name is ROOTS_OF_PEACE_; and the other names are None
The code is NGOAGR; the name is ROTES_KREUZ_; and the other names are None
The code is NGOHLHRCI; the name is ROYAL_ACADEMY_OF_SCIENCE_INTERNATIONAL_TRUST_; and the other names are None
The code is NGO; the name is S.O.S._ATTENTATS_; and the other names are None
The code is NGOFRA; the name is SADOCC_; and the other names are None
The code is NGOAFREDU; the name is SAINT_JOAN'S_INTERNATIONAL_ALLIANCE_; and the other names are None
The code is NGOCHRCTH; the name is SARATOGA_FOUNDATION_FOR_WOMEN_WORLDWIDE_; and the other names are None
The code is NGOUSA; the name is SAVE_THE_CHILDREN_FUND_; and the other names are None
The code is NGODEV; the name is SAVE_THE_CHILDREN_SWEDEN_; and the other names are None
The code is NGOSWEDEV; the name is SCIENCE_FOR_PEACE_; and the other names are None
The code is NGOCANEDU; the name is SECOURISTES_SANS_FRONTIERES_; and the other names are None
The code is NGOFRA; the name is SEEDS_OF_PEACE,_INC. ;MleH 01 Jul 2010; and the other names are None
The code is NGOUSA; the name is SERPAJ_AL_; and the other names are None
The code is NGOLAM; the name is SERVAS_INTERNATIONAL_; and the other names are None
The code is NGO; the name is SERVAS_OPEN_DOORS_; and the other names are None
The code is NGO; the name is SERVICE_FOR_PEACE_; and the other names are None
The code is NGO; the name is SERVICIO_PAZ_Y_JUSTICIA_EN_AMERICA_LATINA_; and the other names are None
The code is NGOLAM; the name is SHARED_INTEREST_; and the other names are None
The code is NGOBUS; the name is SIERRA_CLUB_; and the other names are None
The code is NGOUSAENV; the name is SIGHTSAVERS_; and the other names are None
The code is NGOHLH; the name is SIGMA_GAMMA_RHO_; and the other names are None
The code is NGOEDU; the name is SIGMA_THETA_TAU_; and the other names are None
The code is NGOHLHEDU; the name is SIMON_WIESENTHAL_CENTER_; and the other names are None
The code is NGOJEW; the name is SISTER_TO_SISTER_INTERNATIONAL_; and the other names are None
The code is NGO; the name is SISTERS_OF_LORETTO_; and the other names are None
The code is NGOUSACHRCTH; the name is SMALL_KINDNESS_; and the other names are None
The code is NGO; the name is SOCIAL_JUSTICE_COMMITTEE_MONTREAL_; and the other names are None
The code is NGOHRI; the name is SOCIALIST_INTERNATIONAL_; and the other names are None
The code is NGOPTY; the name is SOCIETY_FOR_INTERNATIONAL_DEVELOPMENT_; and the other names are None
The code is NGODEV; the name is SOCIETY_FOR_PUBLIC_HEALTH_EDUCATION_; and the other names are None
The code is NGOHLH; the name is SOCIETY_OF_CATHOLIC_MEDICAL_MISSIONARIES_; and the other names are None
The code is NGOCHRCTHHLH; the name is SOCIETY_OF_THE_REVIVAL_OF_ISLAMIC_HERITAGE_; and the other names are None
The code is NGOMOS; the name is SOCIOLOGISTS_FOR_WOMEN_IN_SOCIETY_; and the other names are None
The code is NGOEDUDEV; the name is SOROPTIMIST_INTERNATIONAL_; and the other names are None
The code is NGODEV; the name is SOS_CHILREN_; and the other names are None
The code is NGO; the name is SOS_KINDERDORF_; and the other names are None
The code is NGO; the name is SOUTHERN_AFRICA_COMMITTEE_; and the other names are None
The code is NGOSAFHRI; the name is SOUTHERN_AFRICA_DOCUMENTATION_AND_CO_OPERATION_CENTRE_; and the other names are None
The code is NGOAFREDU; the name is SOVEREIGN_MILITARY_ORDER_OF_THE_TEMPLE_OF_JERUSALEM_; and the other names are None
The code is NGOISRCHR; the name is SPECIAL_OLYMPICS_; and the other names are None
The code is NGO; the name is SPHERE_INDIA_; and the other names are None
The code is NGOIND; the name is SPSSI_; and the other names are None
The code is NGOUSAEDU; the name is STAFFORDSHIRE_AMBULANCE_STAFF_HUMANITARIAN_AID_; and the other names are None
The code is NGOGBRHLH; the name is STAKEHOLDER_FORUM_FOR_FUTURE_; and the other names are None
The code is NGOENV; the name is STUDENT_WORLD_ASSEMBLY_; and the other names are None
The code is NGOHRI; the name is SUDAN_HUMAN_RIGHTS_ORGANISATION_; and the other names are None
The code is NGOSDNHRI;; the name is SUNSAT_ENERGY_COUNCIL_; and the other names are None
The code is NGOENV; the name is SUSIE_REIZOD_FOUNDATION_; and the other names are None
The code is NGOUSADEV; the name is SUSILA_DHARMA_INTERNATIONAL_ASSOCIATION_; and the other names are None
The code is NGO; the name is SUSTAINABLE_ENVIRONMENT_AND_ECOLOGICAL_DEVELOPMENT_SOCIETY_; and the other names are None
The code is NGOIND; the name is SWISS_FOUNDATION_FOR_MINE_ACTION_; and the other names are None
The code is NGOCHE; the name is SYMPHONY_FOR_UNITED_NATIONS_; and the other names are None
The code is NGOUSAMED; the name is SYNERGOS_INSTITUTE_; and the other names are None
The code is NGODEV; the name is TAKINGITGLOBAL_; and the other names are None
The code is NGOCAN; the name is TANGANYIKA_CHRISTIAN_REFUGEE_SERVICE_; and the other names are None
The code is NGOTZACHRPRO214; the name is TEACHERS_OF_ENGLISH_TO_SPEAKERS_OF_OTHER_LANGUAGES_; and the other names are None
The code is NGOEDU; the name is TEARFUND_; and the other names are None
The code is NGOCHRPRO; the name is TELECOMS_SANS_FRONTIERES_; and the other names are None
The code is NGOMED; the name is TEMPLE_OF_UNDERSTANDING_; and the other names are None
The code is NGOREL; the name is TERRE_DES_HOMMES_; and the other names are None
The code is NGO; the name is TESOL_; and the other names are None
The code is NGOEDU; the name is THE_ASIA_SOCIETY_; and the other names are None
The code is NGOASA; the name is THE_CATHOLIC_AGENCY_FOR_WORLD_DEVELOPMENT_; and the other names are None
The code is NGOIRLCHRCTHDEV; the name is THE_FRIENDSHIP_FORCE_; and the other names are None
The code is NGOUSA; the name is THE_IU_; and the other names are None
The code is NGOBUS; the name is THE_JOHANNITER_; and the other names are None
The code is NGODEUHLH; the name is THE_SPHERE_PROJECT_; and the other names are None
The code is NGO; the name is THIMUN_FOUNDATION_; and the other names are None
The code is NGOEDU; the name is THIRD_WORLD_MOVEMENT_AGAINST_THE_EXPLOITATION_OF_WOMEN_; and the other names are None
The code is NGOSEAHRI; the name is TOKYO_JUNIOR_CHAMBER_; and the other names are None
The code is NGOJPN; the name is TORCHWOOD_INSTITUTE_ [NGOGBR]; and the other names are None
The code is NGOHRI;; the name is TORTURE_ABOLITION_AND_SURVIVORS_SUPPORT_COALITION_; and the other names are None
The code is NGODEV; the name is TRACE_INTERNATIONAL_; and the other names are None
The code is NGOUSAHRI; the name is TRANSNATIONAL_IMMIGRATION_AND_REFUGEE_GROUP_; and the other names are None
The code is NGO; the name is TRIANGLE_GENERATION_HUMANITAIRE_; and the other names are None
The code is NGO; the name is TRIBAL_LINK_FOUNDATION_; and the other names are None
The code is NGODEV; the name is TRICKLE_UP_PROGRAM_; and the other names are None
The code is NGOIRLCHRCTHDEV; the name is TROCAIRE_; and the other names are None
The code is NGOUSAUIG; the name is UIGHUR_AMERICAN_ASSOCIATION_; and the other names are None
The code is NGOGBR; the name is UK_NETWORK_FOR_CIVIL_SOCIETY_LINK_WITH_UN_GENERAL_ASSEMBLY_; and the other names are None
The code is NGOGBR; the name is UNGA_LINK_UK_; and the other names are None
The code is NGOLAMDEV; the name is UNIAPRAVI_; and the other names are None
The code is NGOBUS; the name is UNION_DES_FOIRES_INTERNATIONALES_; and the other names are None
The code is NGOLAMJUD; the name is UNION_IBEROAMERICANA_DE_COLEGIOS_Y_AGRUPACIONES_DE_ABOGADOS_; and the other names are None
The code is NGOBUS; the name is UNION_INTERNATIONALE_DE_L'INDUSTRIE_DU_GAZ_; and the other names are None
The code is NGOARBBUS; the name is UNION_OF_ARAB_BANKS_; and the other names are None
The code is NGO; the name is UNION_OF_INTERNATIONAL_ASSOCIATIONS_; and the other names are None
The code is NGOFRABUS; the name is UNION_PROFESSIONNELLE_DES_EXPERTS_MARITIMES_; and the other names are None
The code is NGOITA; the name is UNIPAX_UNIONE_MONDIALE_PER_LA_PACE_ED_I_DIRITTI_FONDAMENTALI_DELL'UOMO_E_DEI_POPOLI_; and the other names are None
The code is NGOUSAHLH; the name is UNITE_FOR_SIGHT_; and the other names are None
The code is NGOCHRPRO; the name is UNITED_CHURCH_OF_CHRIST_COMMISSION_FOR_RACIAL_JUSTICE_; and the other names are None
The code is NGOCHRPRO; the name is UNITED_CHURCH_OF_CHRIST_JUSTICE_AND_WITNESS_MINISTRIES_; and the other names are None
The code is NGOCHRPRO; the name is UNITED_CHURCH_OF_CHRIST_WIDER_CHURCH_MINISTRIES_; and the other names are None
The code is NGOCHRPRO; the name is UNITED_METHODIST_CHURCH_GENERAL_BOARD_OF_GLOBAL_MINISTRIES_; and the other names are None
The code is NGOCHRPRO230; the name is UNITED_METHODIST_COMMITTEE_ON_RELIEF_; and the other names are None
The code is NGO; the name is UNITED_NATIONS_WATCH_; and the other names are None
The code is NGOREL; the name is UNITED_RELIGIONS_INITIATIVE_; and the other names are None
The code is NGOSIKDEV; the name is UNITED_SIKHS_; and the other names are None
The code is NGO; the name is UNIVERSAL_ESPERANTO_ASSOCIATION_; and the other names are None
The code is NGOBUS; the name is UNIVERSAL_FEDERATION_OF_TRAVEL_AGENTS_ASSOCIATIONS_; and the other names are None
The code is NGOUSAHRI; the name is UNIVERSAL_HUMAN_RIGHTS_NETWORK_; and the other names are None
The code is NGOUSA; the name is US_ASIA_INSTITUTE_; and the other names are None
The code is NGO; the name is VERIFICATION_RESEARCH_TRAINING_AND_INFORMATION_CENTRE_; and the other names are None
The code is NGOUSADEV; the name is VIRGINIA_GILDERSLEEVE_INTERNATIONAL_FUND_; and the other names are None
The code is NGOUSA; the name is VITAL_VOICES_GLOBAL_PARTNERSHIP_; and the other names are None
The code is NGOBRADEV; the name is VIVA_RIO_; and the other names are None
The code is NGOEUR; the name is VOLUNTARY_ORGANISATIONS_IN_COOPERATION_IN_EMERGENCIES_; and the other names are None
The code is NGOUSACHRPRO; the name is VOLUNTEERS_OF_AMERICA_; and the other names are None
The code is NGOEDU; the name is WAGGGS_; and the other names are None
The code is NGO; the name is WAR_AND_PEACE_FOUNDATION_; and the other names are None
The code is NGOCASCVL; the name is WAR_VETERANS_COMMITTEE_; and the other names are None
The code is NGOUSADEV; the name is WATER_FOR_PEOPLE_; and the other names are None
The code is NGO; the name is WFUNA_; and the other names are None
The code is NGORELENV; the name is WITTENBERG_CENTER_FOR_ALTERNATIVE_RESOURCES_; and the other names are None
The code is NGOISRJEW; the name is WIZO_; and the other names are None
The code is NGO; the name is WLFD_; and the other names are None
The code is NGO; the name is WOMEN_FOR_INTERNATIONAL_PEACE_AND_ARBITRATION_; and the other names are None
The code is NGOJEW; the name is WOMEN_OF_REFORM_JUDAISM_; and the other names are None
The code is NGOUSADEV; the name is WOMEN_OF_VISION_; and the other names are None
The code is NGO; the name is WOMEN_WAGING_PEACE_; and the other names are None
The code is NGOREF; the name is WOMEN'S_COMMISSION_FOR_REFUGEE_WOMEN_AND_CHILDREN_; and the other names are None
The code is NGOUSAHLH; the name is WOMEN'S_HEALTH_AND_EDUCATION_CENTER_; and the other names are None
The code is NGOUSAHRI; the name is WOMEN'S_INSTITUTE_FOR_FREEDOM_OF_THE_PRESS_; and the other names are None
The code is NGODEV; the name is WOMEN'S_INTERNATIONAL_LEAGUE_FOR_PEACE_AND_FREEDOM_; and the other names are None
The code is NGOEDU; the name is WOMEN'S_NATIONAL_BOOK_ASSOCIATION_; and the other names are None
The code is NGOUSAMIL; the name is WOMEN'S_OVERSEAS_SERVICE_LEAGUE_; and the other names are None
The code is NGOUSAREF; the name is WOMEN'S_REFUGEE_COMMISSION_; and the other names are None
The code is NGODEV; the name is WOMEN'S_WORLD_BANKING_; and the other names are None
The code is NGOUSAJEW; the name is WOMEN'S_ZIONIST_ORGANIZATION_OF_AMERICA_; and the other names are None
The code is NGOEDU; the name is WORLD_ACADEMY_OF_ART_AND_SCIENCE_; and the other names are None
The code is NGOHLH; the name is WORLD_ADDICTION_FOUNDATION_; and the other names are None
The code is NGOHLH; the name is WORLD_ALLIANCE_FOR_BREASTFEEDING_ACTION_; and the other names are None
The code is NGO; the name is WORLD_ALLIANCE_FOR_CITIZEN_PARTICIPATION_; and the other names are None
The code is NGOCHR; the name is WORLD_ALLIANCE_OF_YOUNG_MEN'S_CHRISTIAN_ASSOCIATIONS_; and the other names are None
The code is NGOMOSEDU; the name is WORLD_ASSEMBLY_OF_MUSLIM_YOUTH_; and the other names are None
The code is NGO; the name is WORLD_ASSEMBLY_OF_YOUTH_; and the other names are None
The code is NGOHLH; the name is WORLD_ASSOCIATION_FOR_PSYCHOSOCIAL_REHABILITATION_; and the other names are None
The code is NGOMCO; the name is WORLD_ASSOCIATION_OF_CHILDREN'S_FRIENDS_; and the other names are None
The code is NGOEDU; the name is WORLD_ASSOCIATION_OF_EARLY_CHILDHOOD_EDUCATORS_; and the other names are None
The code is NGOEDU; the name is WORLD_ASSOCIATION_OF_GIRL_GUIDES_AND_GIRL_SCOUTS_; and the other names are None
The code is NGOMEDHRI; the name is WORLD_ASSOCIATION_OF_NEWSPAPERS_; and the other names are None
The code is NGOHRI; the name is WORLD_BLIND_UNION_; and the other names are None
The code is NGOUSADEV; the name is WORLD_CARES_CENTER_; and the other names are None
The code is NGOHLH; the name is WORLD_CHIROPRACTIC_ALLIANCE_; and the other names are None
The code is NGOBUS; the name is WORLD_COAL_INSTITUTE_; and the other names are None
The code is NGOEURLAB; the name is WORLD_CONFEDERATION_OF_LABOUR_; and the other names are None
The code is NGOBUS; the name is WORLD_CONFEDERATION_OF_PRODUCTIVITY_SCIENCE_; and the other names are None
The code is NGOEDU; the name is WORLD_COUNCIL_FOR_CURRICULUM_AND_INSTRUCTION_; and the other names are None
The code is NGOMOS; the name is WORLD_COUNCIL_OF_MUSLIM_COMMUNITIES_; and the other names are None
The code is NGOEDU; the name is WORLD_EDUCATION_FELLOWSHIP_; and the other names are None
The code is NGOENV; the name is WORLD_ENERGY_COUNCIL_; and the other names are None
The code is NGO; the name is WORLD_FEDERALIST_MOVEMENT_; and the other names are None
The code is NGO; the name is WORLD_FEDERATION_OF_CONSULS_; and the other names are None
The code is NGOCHRPRO; the name is WORLD_FEDERATION_OF_METHODIST_AND_UNITING_CHURCH_WOMEN_; and the other names are None
The code is NGOHLH; the name is WORLD_FEDERATION_OF_OCCUPATIONAL_THERAPISTS_; and the other names are None
The code is NGODEV; the name is WORLD_FEDERATION_OF_THE_DEAF_; and the other names are None
The code is NGODEV; the name is WORLD_FEDERATION_OF_UKRAINIAN_WOMEN'S_ORGANIZATIONS_; and the other names are None
The code is NGO; the name is WORLD_FEDERATION_OF_UNESCO_CLUBS_CENTRES_AND_ASSOCIATIONS_; and the other names are None
The code is NGO; the name is WORLD_FORUM_OF_CIVIL_SOCIETY_NETWORKS_; and the other names are None
The code is NGODEV; the name is WORLD_HUNGER_YEAR_; and the other names are None
The code is NGOMOS; the name is WORLD_ISLAMIC_CALL_SOCIETY_; and the other names are None
The code is NGOJEW; the name is WORLD_JEWISH_CONGRESS_; and the other names are None
The code is NGOJUD; the name is WORLD_JURIST_ASSOCIATION_OF_THE_WORLD_PEACE_THROUGH_LAW_CENTER_; and the other names are None
The code is NGO; the name is WORLD_LEAGUE_FOR_FREEDOM_AND_DEMOCRACY_; and the other names are None
The code is NGOLBN; the name is WORLD_LEBANESE_CULTURAL_UNION_; and the other names are None
The code is NGOBUS; the name is WORLD_LP_GAS_ASSOCIATION_; and the other names are None
The code is NGO; the name is WORLD_MOVEMENT_OF_MOTHERS_; and the other names are None
The code is NGOMOS; the name is WORLD_MUSLIM_CONGRESS_; and the other names are None
The code is NGODEV;; the name is WORLD_NEIGHBOURS_; and the other names are None
The code is NGOBUS; the name is WORLD_ORGANISATION_OF_BUILDING_OFFICIALS_; and the other names are None
The code is NGODEV; the name is WORLD_ORGANIZATION_FOR_EARLY_CHILDHOOD_EDUCATION_; and the other names are None
The code is NGOJEWREF; the name is WORLD_ORGANIZATION_OF_JEWS_FROM_ARAB_COUNTRIES_; and the other names are None
The code is NGOEDU; the name is WORLD_ORGANIZATION_OF_THE_SCOUT_MOVEMENT_; and the other names are None
The code is NGOJEWEDU; the name is WORLD_ORT_; and the other names are None
The code is NGOHLH; the name is WORLD_PSYCHIATRIC_ASSOCIATION_; and the other names are None
The code is NGOUSAMED; the name is WORLD_SECURITY_INSTITUTE_; and the other names are None
The code is NGOENV; the name is WORLD_SOCIETY_FOR_THE_PROTECTION_OF_ANIMALS_; and the other names are None
The code is NGOJUD; the name is WORLD_SOCIETY_OF_VICTIMOLOGY_; and the other names are None
The code is NGOCHRCTHHRI; the name is WORLD_UNION_OF_CATHOLIC_WOMEN'S_ORGANIZATIONS_; and the other names are None
The code is NGOUIG; the name is WORLD_UYGHUR_CONGRESS_; and the other names are None
The code is NGOCVL; the name is WORLD_VETERANS_FEDERATION_; and the other names are None
The code is NGO; the name is WORLD_WINTER_CITIES_ASSOCIATION_FOR_MAYORS_; and the other names are None
The code is NGOUSACHR; the name is WORLD_WOMAN'S_CHRISTIAN_TEMPERANCE_UNION_; and the other names are None
The code is NGOENV; the name is WSPA_; and the other names are None
The code is NGODEV; the name is WWSF_; and the other names are None
The code is NGOUSAJEW; the name is WZOA_; and the other names are None
The code is NGOPER;; the name is YACHAY_WASI_; and the other names are None
The code is NGOJPNHRI; the name is YOKOHAMA_INTERNATIONAL_HUMAN_RIGHTS_CENTER_; and the other names are None
The code is NGONGACHR; the name is YOUNG_WOMEN'S_CHRISTIAN_ASSOCIATION_; and the other names are None
The code is NGONGACHR; the name is YOUNG_WOMEN'S_CHRISTIAN_ASSOCIATION_OF_NIGERIA_; and the other names are None
The code is NGONGACHR; the name is YOUNG_WOMEN'S_CHRISTIAN_ASSOCIATION_OF_THE_UNITED_STATES_OF_AMERICA_; and the other names are None
The code is NGO; the name is YOUTH_FOR_UNITY_AND_VOLUNTARY_ACTION_; and the other names are None
The code is NGOISRHLH; the name is ZAKA_RESCUE_AND_RECOVERY_; and the other names are None
The code is NGOUSAEDU; the name is ZETA_PHI_BETA_SORORITY_; and the other names are None
The code is NGORUS; the name is ZNANIE_; and the other names are None
The code is NGODEV;; the name is ZONTA_; and the other names are None
The code is BAH;; the name is BAHA'I_INTERNATIONAL_COMMITTEE_; and the other names are None
The code is IGOASADEVADB; the name is BIMSTEC_; and the other names are None
The code is IGOASABUS; the name is CENSAD_; and the other names are None
The code is IGONAFBUSCSS;; the name is COCOA_PRODUCER'S_ALLIANCE_; and the other names are None
The code is IGOAGRCPA;; the name is COMMON_MARKET_FOR_EASTERN_AND_SOUTHERN_AFRICA_; and the other names are None
The code is IGOAFRBUSCES;; the name is HUMAN_RIGHTS_ORGANIZATION_; and the other names are None
The code is NGOHRI; the name is INTERNATIONAL_GRAINS_COUNCIL_; and the other names are None
The code is IGOAGRIGC;; the name is INTERNATIONAL_HUMAN_RIGHTS_GROUP_; and the other names are None
The code is NGOHRI; the name is INTERNATIONAL_TELECOMMUNICATIONS_UNION_; and the other names are None
The code is IGOUNOMED; the name is ORGANIZATION_OF_ARAB_PETROLEUM_EXPORTING_COUNTRIES_; and the other names are None
The code is IGOARBBUSAPE;; the name is EARL_SLACK_; and the other names are None
The code is MNCUSA;; the name is EXXON_; and the other names are None
The code is MNCUSA;; the name is OCCIDENTAL_LTD_; and the other names are None
The code is MNCUSA;; the name is AFRICAN_AMERICAN_ISLAMIC_INSTITUTE_; and the other names are None
The code is NGOWAFMOS; the name is AFRICAN_MEDICAL_AND_RESEARCH_FOUNDATION_; and the other names are None
The code is NGOAFRHLH; the name is AFS_INTERCULTURAL_; and the other names are None
The code is NGOEDU; the name is AL_KHOEI_FOUNDATION_; and the other names are None
The code is NGOMDEMOSSHI; the name is AMERICAN_ASSOCIATION_FOR_THE_ADVANCEMENT_OF_SCIENCE_; and the other names are None
The code is NGOUSAEDU; the name is ASIA_CRIME_PREVENTION_FOUNDATION_; and the other names are None
The code is NGOBGDCOP; the name is ASSOCIATION_FOR_SUSTAINABLE_HUMAN_DEVELOPMENT_; and the other names are None
The code is NGOEEURENV; the name is BILL_AND_MELINDA_GATES_FOUNDATION_; and the other names are None
The code is NGODEVUSA;; the name is CATHOLIC_RELIEF_SERVICES_; and the other names are None
The code is NGOUSACHRCTH; the name is COUNCIL_OF_ACADEMIES_OF_ENGINEERING_AND_TECHNOLOGICAL_SCIENCES_; and the other names are None
The code is NGOUSAEDU;; the name is COVENANT_HOUSE_; and the other names are None
The code is NGOUSACHRCTH; the name is DESERT_RESEARCH_FOUNDATION_OF_NAMIBIA_; and the other names are None
The code is NGONMRENV;; the name is EVANGELICAL_LUTHERAN_CHURCH_IN_AMERICA_DIVISION_FOR_GLOBAL_MISSION_; and the other names are None
The code is NGOUSACHRPRO214;; the name is EXPERIMENT_IN_INTERNATIONAL_LIVING_; and the other names are None
The code is NGOUSAEDU; the name is FOCUS_ON_THE_GLOBAL_SOUTH_; and the other names are None
The code is NGOASADEV;; the name is FRIENDS_OF_THE_UNITED_NATIONS_; and the other names are None
The code is NGOMED;; the name is GLOBAL_EDUCATION_ASSOCIATES_; and the other names are None
The code is NGOEDU; the name is GLOBAL_HEALTH_COUNCIL_; and the other names are None
The code is NGOHLH; the name is GLOBAL_POLICY_FORUM_; and the other names are None
The code is NGOUSA; the name is HUMAN_RIGHTS_INTERNET HARVARD_; and the other names are None
The code is NGOCANHRI;; the name is HUMAN_RIGHTS_INTERNET OTTAWA_; and the other names are None
The code is NGOCANHRI;; the name is HUMANE_SOCIETY_OF_THE_UNITED_STATES_; and the other names are None
The code is NGOUSAENV;; the name is INSTITUTO_SOCIAL_Y_POLITICO_DE_LA_MUJER_; and the other names are None
The code is NGOARGHRI; the name is INTERNATIONAL_ASSOCIATION_FOR_RELIGIOUS_FREEDOM_; and the other names are None
The code is NGOGBRRELHRI; the name is INTERNATIONAL_CENTER_FOR_RESEARCH_ON_WOMEN_; and the other names are None
The code is NGOUSADEV; the name is INTERNATIONAL_RESCUE_COMMITTEE_; and the other names are None
The code is NGOUSA; the name is INTERNATIONAL_SOCIETY_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGODEUHRI; the name is INTERNATIONAL_UYGHUR_YOUTHS_LEAGUE_; and the other names are None
The code is NGOUIG; the name is INTERNATIONAL_UYGHUR_YOUTH'S_LEAGUE_; and the other names are None
The code is NGOUIG; the name is INTERNATIONAL_WOMEN'S_TRIBUNE_CENTRE_; and the other names are None
The code is NGO; the name is INTERNS_FOR_PEACE_; and the other names are None
The code is NGOISR; the name is IRC_INTERNATIONAL_WATER_AND_SANITATION_CENTRE_; and the other names are None
The code is NGOHLHIRCDEV;; the name is LEGAL_ASSISTANCE_CENTRE_NAMIBIA_; and the other names are None
The code is NGONMRHRI;; the name is MENNONITE_CENTRAL_COMMITTEE_; and the other names are None
The code is NGONMRCHRPRO; the name is NAMIBIA_DEVELOPMENT_GATEWAY_; and the other names are None
The code is NGONMRDEV;; the name is NAMIBIA_INSTITUTE_FOR_DEMOCRACY_; and the other names are None
The code is NGONMRDEV;; the name is NAMIBIA_NATURE_FOUNDATION_; and the other names are None
The code is NGONMRENV;; the name is NAMIBIAN_ECONOMIC_POLICY_RESEARCH_UNIT_; and the other names are None
The code is NGONMRDEV;; the name is PEARL_S._BUCK_FOUNDATION_; and the other names are None
The code is NGOUSAEDU;; the name is PROJECT_CONCERN_INTERNATIONAL_; and the other names are None
The code is NGODEV; the name is SOCIETY_FOR_THE_PSYCHOLOGICAL_STUDY_OF_SOCIAL_ISSUES_; and the other names are None
The code is NGOCHNTIBHRI; the name is UNANIMA_INTERNATIONAL_; and the other names are None
The code is NGOCHRCTHDEV; the name is VIVAT_INTERNATIONAL_; and the other names are None
The code is NGOCHRCTHDEV; the name is WATER_ENVIRONMENT_FEDERATION_; and the other names are None
The code is NGODEV; the name is WOMEN'S_ENVIRONMENT_AND_DEVELOPMENT_ORGANIZATION_; and the other names are None
The code is NGOUSADEV; the name is WOMEN'S_FEDERATION_FOR_WORLD_PEACE_; and the other names are None
The code is NGOCHRMAY280; the name is WOMEN'S_INTERNATIONAL_DEMOCRATIC_FEDERATION_; and the other names are None
The code is NGOLAM; the name is WOMEN'S_INTERNATIONAL_ZIONIST_ORGANIZATION_; and the other names are None
The code is NGOISRJEW; the name is WORLD_SAFETY_ORGANIZATION_; and the other names are None
The code is NGOBUS; the name is WORLDWATCH_INSTITUTE_; and the other names are None
The code is NGOUSAENV; the name is HAMID_AL_GABID_; and the other names are None
The code is MOS;; the name is KAUSHAL_KISHOR_; and the other names are None
The code is HINRAD;; the name is MANOHARPURI_; and the other names are None
The code is HINRAD;; the name is MOROPANT_PINGLE_; and the other names are None
The code is HINRAD;; the name is N._P._RIJAL_; and the other names are None
The code is HINRAD;; the name is N.P._RIJAL_; and the other names are None
The code is HINRAD;; the name is N_P_RIJAL_; and the other names are None
The code is HINRAD;; the name is NAGENDA_P RIJAL_; and the other names are None
The code is HINRAD;; the name is NP_RIJAL_; and the other names are None
The code is HINRAD;; the name is S._RITAMBHARA_; and the other names are None
The code is HINRAD;; the name is S_RITAMBHARA_; and the other names are None
The code is HINRAD;; the name is SADHVI_RITAMBHARA_; and the other names are None
The code is HINRAD;; the name is SURYA_KRISHNA_; and the other names are None
The code is HINRAD;; the name is U._S._BHARATI_; and the other names are None
The code is HINRAD;; the name is U.S._BHARATI_; and the other names are None
The code is HINRAD;; the name is U_S_BHARATI_; and the other names are None
The code is HINRAD;; the name is UMA_S BHARATI_; and the other names are None
The code is HINRAD;; the name is US_BHARATI_; and the other names are None
The code is HINRAD;; the name is V.H._DALMIYA_; and the other names are None
The code is HINRAD;; the name is VH_DALMIYA_; and the other names are None
The code is HINRAD;; the name is VISHNU_DALMIYA_; and the other names are None
The code is HINRAD;; the name is VISHNU_H DALMIYA_; and the other names are None
The code is HINRAD;; the name is VISHWA_HINDU_PARISHAD_; and the other names are None
The code is HINRAD;; the name is A.G._KISHORE_; and the other names are None
The code is NGOHINRAD;; the name is A._G._KISHORE_; and the other names are None
The code is NGOHINRAD;; the name is ACADEMY_FOR_EDUCATIONAL_DEVELOPMENT_; and the other names are None
The code is NGOEDU;; the name is ACHARYA_G KISHORE_; and the other names are None
The code is NGOHINRAD;; the name is ACHARYA_KISHORE_; and the other names are None
The code is NGOHINRAD;; the name is ACTIONAID_; and the other names are None
The code is NGODEV; the name is ACTION_AGAINST_HUNGER_; and the other names are None
The code is NGOHLH;; the name is ACTION_CANADA_FOR_POPULATION_AND_DEVELOPMENT_; and the other names are None
The code is NGOCANHLH;; the name is ACTION_FOR_AGRICULTURAL_RENEWAL_IN_MAHARASHTRA_; and the other names are None
The code is NGOINDAGR;; the name is ACTION_FOR_SOUTHERN_AFRICA_; and the other names are None
The code is NGOSAFDEV;; the name is ACTION_WITHOUT_BORDERS_; and the other names are None
The code is NGOUSA;; the name is ADDAMEER_; and the other names are None
The code is NGOPALHRI;; the name is ADVENTIST_DEVELOPMENT_AND_RELIEF_AGENCY_INTERNATIONAL_; and the other names are None
The code is NGOCHRPRODEV;; the name is ADVISORY_COMMITTEE_ON_PROTECTION_OF_THE_SEA_; and the other names are None
The code is NGOGBRENV;; the name is AED_SATELLIFE_CENTER_FOR_HEALTH_INFORMATION_AND_TECHNOLOGY_; and the other names are None
The code is NGOHLH;; the name is AFRICAN_ACADEMY_OF_SCIENCES_; and the other names are None
The code is NGOAFREDU;; the name is AFRICAN_COMMUNITY_REFUGEE_CENTER_; and the other names are None
The code is NGOUSAREF;; the name is AFRICAN_DEVELOPMENT_INSTITUTE_INC_; and the other names are None
The code is NGOAFRDEV;; the name is AFRICAN_ECONOMIC_RESEARCH_CONSORTIUM_; and the other names are None
The code is NGOAFRDEV;; the name is AFRICAN_GENDER_INSTITUTE_; and the other names are None
The code is NGOAFRHRI;; the name is AFRICARE_; and the other names are None
The code is NGOAFRDEV;; the name is AFRICA_ACTION_; and the other names are None
The code is NGOAFRDEV;; the name is AFRICA_PROGRESS_PANEL_; and the other names are None
The code is NGOAFRDEV; the name is AGUA_BOLIVIA_; and the other names are None
The code is NGOBOLENV;; the name is AG_KISHORE_; and the other names are None
The code is NGOHINRAD;; the name is AID_GROUP_; and the other names are None
The code is NGO; the name is AKINA_MAMA_WA_AFRIKA_; and the other names are None
The code is NGOAFR;; the name is ALAN_GUTTMACHER_INSTITUTE_; and the other names are None
The code is NGOHLH;; the name is ALL_INDIA_D_KOTNIS_MEMORIAL_COMMITTEE_; and the other names are None
The code is NGOINDHLH;; the name is ALL_INDIA_WOMEN'S_EDUCATION_FUND_ASSOCIATION_; and the other names are None
The code is NGOIND;; the name is ALOHA_MEDICAL_MISSION_; and the other names are None
The code is NGOUSAHLH; the name is ALTERNATIVE_INFORMATION_AND_DEVELOPMENT_CENTRE_; and the other names are None
The code is NGOSAFHRI;; the name is ALUKA_; and the other names are None
The code is NGOUSAEDU;; the name is AL_HAQ_; and the other names are None
The code is NGOPALHRI;; the name is AL_MEZAN_; and the other names are None
The code is NGOPALHRI;; the name is AMAZON_WATCH_; and the other names are None
The code is NGOSAMENV;; the name is AMERICAN_ASSOCIATION_OF_FAMILY_AND_CONSUMER_SCIENCES_; and the other names are None
The code is NGOUSAEDU;; the name is AMERICAN_ASSOCIATION_OF_JURISTS_; and the other names are None
The code is NGO;; the name is AMERICAN CIVIL LIBERTIES UNION; and the other names are None
The code is NGOUSAHRI; the name is AMERICAN_EDUCATIONAL_RESEARCH_ASSOCIATION_; and the other names are +ACLU
The code is NGOUSAEDU;; the name is AMERICAN_FRIENDS_SERVICE_COMMITTEE_; and the other names are None
The code is NGOCHRHRI;; the name is AMERICAN_GEOPHYSICAL_UNION_; and the other names are None
The code is NGOEDU;; the name is AMERICAN_INTERNATIONAL_HEALTH_ALLIANCE_; and the other names are None
The code is NGOUSAHLH;; the name is AMERICAN_MEDICAL_WOMEN'S_ASSOCIATION_; and the other names are None
The code is NGOUSAHLH;; the name is AMERICAN_NEAR_EAST_REFUGEE_AID_; and the other names are None
The code is NGOPALREF;; the name is AMERICAN_PHYSICAL_SOCIETY_; and the other names are None
The code is NGOUSAEDU;; the name is AMERICAN_REFUGEE_COMMITTEE_; and the other names are None
The code is NGOUSAREF;; the name is AMERICAN_TASK_FORCE_ON_PALESTINE_; and the other names are None
The code is NGOPAL;; the name is AMERICA_NEPAL_MEDICAL_FOUNDATION_; and the other names are None
The code is NGONPLHLH;; the name is AMIGOS_DE_LA_TIERRA_; and the other names are None
The code is NGOESPENV;; the name is AMNESTY_INTERNATIONAL_; and the other names are None
The code is NGOHRIAMN;; the name is ANERA_; and the other names are None
The code is NGOPALREF;; the name is ANTI_RACISM_INFORMATION_SERVICES_; and the other names are None
The code is NGOHRI;; the name is ANTI_SLAVERY_INTERNATIONAL_; and the other names are None
The code is NGOGBRHRI;; the name is ARAB_ASSOCIATION_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOPALHRI;; the name is ARAB_ORGANIZATION_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOARBHRI;; the name is ARAB_PROGRAM_FOR_HUMAN_RIGHTS_ACTIVISTS_; and the other names are None
The code is NGOARBHRI;; the name is ARAB_WOMEN'S_SOLIDARITY_ASSOCIATION_; and the other names are None
The code is NGOARBHRI;; the name is ARCHAEOLOGISTS_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGODEUHRI;; the name is ARMENIAN_INTERNATIONAL_WOMEN'S_ASSOCIATION_; and the other names are None
The code is NGOARM;; the name is ART_IN_DEFENSE_OF_HUMANISM_; and the other names are None
The code is NGODNK;; the name is ART_OF_LIVING_FOUNDATION_; and the other names are None
The code is NGOINDTAMRELHLH;; the name is ASDHVI_RITAMBHARA_; and the other names are None
The code is NGOHINRAD;; the name is ASHOK_SINGHAL_; and the other names are None
The code is NGOHINRAD;; the name is ASIAN_FEDERATION_AGAINST_INVOLUNTARY_DISAPPEARANCES_; and the other names are None
The code is NGOASAHRI;; the name is ASIAN_HUMAN_RIGHTS_COMMISSION_; and the other names are None
The code is NGOASAHRI;; the name is ASIAN_LEGAL_RESOURCE_CENTRE_; and the other names are None
The code is NGOASAHRI;; the name is ASOCIACION_ANAI_; and the other names are None
The code is NGOCRIENV;; the name is ASOCIACION_GUATEMALTECA_PARA_LA_CONSERVACION_NATURAL_; and the other names are None
The code is NGOGTMENV;; the name is ASSOCIATED_COUNTRY_WOMEN_OF_THE_WORLD_; and the other names are None
The code is NGODEV;; the name is ASSOCIATES_FOR_GLOBAL_CHANGE_; and the other names are None
The code is NGOAFRDEV;; the name is ASSOCIATION_FOR_PROGRESSIVE_COMMUNICATIONS_; and the other names are None
The code is NGOMED;; the name is ASSOCIATION_FOR_STIMULATING_KNOW_HOW_; and the other names are None
The code is NGOINDDEV;; the name is ASSOCIATION_FOR_SUPERVISION_AND_CURRICULUM_DEVELOPMENT_; and the other names are None
The code is NGOUSAEDU;; the name is ASSOCIATION_FOR_THE_PREVENTION_OF_TORTURE_; and the other names are None
The code is NGOHRI;; the name is ASSOCIATION_FOR_THE_PROTECTION_OF_THE_ENVIRONMENT_; and the other names are None
The code is NGOEGYDEV;; the name is ASSOCIATION_FOR_WOMEN_IN_DEVELOPMENT_; and the other names are None
The code is NGODEV;; the name is ASSOCIATION_FOR_WORLD_EDUCATION_; and the other names are None
The code is NGOEDU;; the name is ASSOCIATION_OF_JUNIOR_LEAGUES_INTERNATIONAL,_INC_; and the other names are None
The code is NGODEV;; the name is ASSOCIATION_OF_SOCIAL_ENGINEERING,_RESEARCH_AND_TRAINING_; and the other names are None
The code is NGOINDDEV;; the name is ASSOCIATION_OF_WORLD_CITIZENS_; and the other names are None
The code is NGO;; the name is ATCNET_; and the other names are None
The code is NGOAFRBUSDEV;; the name is ATHLETES_UNITED_FOR_PEACE_; and the other names are None
The code is NGOUSA;; the name is AUSTRALIAN_COALITION_FOR_DEMOCRACY_IN_BURMA_; and the other names are None
The code is NGOMMRHRI; the name is AVOCATS_SANS_FRONTIERES_; and the other names are None
The code is NGOHRI;; the name is A_G_KISHORE_; and the other names are None
The code is NGOHINRAD;; the name is A_ROCHA_INTERNATIONAL_; and the other names are None
The code is NGOCHRENV;; the name is BANGLADESH_HUMAN_RIGHTS_NETWORK_; and the other names are None
The code is NGOBGDHRI;; the name is BANK_INFORMATION_CENTER_; and the other names are None
The code is NGOBUS;; the name is BHOPAL_GAS_HIT_WOMEN'S_FRONT_; and the other names are None
The code is NGOIND;; the name is BHOPAL_GROUP_FOR_INFORMATION_AND_ACTION_; and the other names are None
The code is NGOIND;; the name is BHUTAN_WOMEN_AND_CHILDREN_ORGANISATION_; and the other names are None
The code is NGOBTNHRI;; the name is BHUTAN_WOMEN_AND_CHILDREN_ORGANIZATION_; and the other names are None
The code is NGOBTNHRI;; the name is BOOKS_FOR_AFRICA_; and the other names are None
The code is NGOAFREDU;; the name is BOOKS_FOR_THE_BARRIOS_; and the other names are None
The code is NGOUSAEDU;; the name is BREAD_FOR_THE_WORLD_INSTITUTE_; and the other names are None
The code is NGOUSACHR;; the name is BRETTON_WOODS_PROJECT_; and the other names are None
The code is NGODEV;; the name is BRITISH_COUNCIL_OF_DISABLED_PEOPLE_; and the other names are None
The code is NGOGBRHRI;; the name is BRITISH_OVERSEAS_NGOS_FOR_DEVELOPMENT_; and the other names are None
The code is NGOGBRDEV;; the name is BUREAU_OF_INTERNATIONAL_RECYCLING_; and the other names are None
The code is NGOENV;; the name is BURMA_CAMPAIGN_UK_; and the other names are None
The code is NGOMMRHRI; the name is BURMA_CENTRUM_NEDERLAND_; and the other names are None
The code is NGOMMRHRI;; the name is BURMA_HERALD_; and the other names are None
The code is NGOMMRMED; the name is BURMA_LABOUR_SOLIDARITY_; and the other names are None
The code is NGOMMRLAB; the name is CAF_INDIA_; and the other names are None
The code is NGOIND;; the name is CAF_INTERNATIONAL_; and the other names are None
The code is NGO;; the name is CANADIAN_COUNCIL_FOR_REFUGEES_; and the other names are None
The code is NGOCANREF;; the name is CANADIAN_INSTITUTE_FOR_ENVIRONMENTAL_LAW_AND_POLICY_; and the other names are None
The code is NGOCANENV;; the name is CANADIAN_LAWYERS_FOR_INTERNATIONAL_HUMAN_RIGHTS_; and the other names are None
The code is NGOCANHRI;; the name is CANADIAN_NATURE_FEDERATION_; and the other names are None
The code is NGOCANENV;; the name is CANADIAN_RESEARCH_INSTITUTE_FOR_THE_ADVANCEMENT_OF_WOMEN_; and the other names are None
The code is NGOCANHRI;; the name is CARE_INTERNATIONAL_; and the other names are None
The code is NGODEV;; the name is CARIBBEAN_CONSERVATION_ASSOCIATION_; and the other names are None
The code is NGOCRBENV;; the name is CARITAS_; and the other names are None
The code is NGOCHRCTH; the name is CARITAS_INTERNATIONALIS_; and the other names are None
The code is NGOCHRCTH;; the name is CARNEGIE_ENDOWMENT_FOR_INTERNATIONAL_PEACE_; and the other names are None
The code is NGOUSA;; the name is CARTER_CENTER_; and the other names are None
The code is NGOUSAHRI; the name is CASA_ALIANZA_; and the other names are None
The code is NGOLAM;; the name is CATHOLIC CENTER_OF_CONCERN_; and the other names are None
The code is NGOCHRCTHHRI;; the name is CATHOLIC_CHARITIES_USA_; and the other names are None
The code is NGOCHRCTH;; the name is CATHOLIC_INSTITUTE_FOR_INTERNATIONAL_RELATIONS_; and the other names are None
The code is NGOCHRCTH;; the name is CENTER_FOR_ECONOMIC_AND_SOCIAL_RIGHTS_; and the other names are None
The code is NGOHRI;; the name is CENTER_FOR_ENVIRONMENT_AND_DEVELOPMENT_FOR_THE_ARAB_REGION_AND_EUROPE_; and the other names are None
The code is NGOENV;; the name is CENTER_FOR_HUMAN_RIGHTS_AND_DEMOCRATIC_STUDIES_; and the other names are None
The code is NGONPLHRI;; the name is CENTER_FOR_INTERNATIONAL_CLIMATE_AND_ENVIRONMENTAL_RESEARCH_; and the other names are None
The code is NGONORENV;; the name is CENTER_FOR_INTERNATIONAL_EARTH_SCIENCE_INFORMATION_NETWORK_; and the other names are None
The code is NGOUSAENV;; the name is CENTER_FOR_INTERNATIONAL_ENVIRONMENTAL_LAW_; and the other names are None
The code is NGOENV;; the name is CENTER_FOR_INTERNATIONAL_HEALTH_INFORMATION_; and the other names are None
The code is NGOHLH;; the name is CENTER_FOR_JUSTICE_AND_INTERNATIONAL_LAW_; and the other names are None
The code is NGOLAMHRI;; the name is CENTER_FOR_REPRODUCTIVE_AND_FAMILY_HEALTH_; and the other names are None
The code is NGOHLH;; the name is CENTER_FOR_REPRODUCTIVE_LAW_AND_POLICY_; and the other names are None
The code is NGOUSAHLH;; the name is CENTER_FOR_REPRODUCTIVE_RIGHTS_; and the other names are None
The code is NGOUSAHLH;; the name is CENTER_FOR_RESPECT_OF_LIFE_AND_ENVIRONMENT_; and the other names are None
The code is NGOUSACHRENV;; the name is CENTER_FOR_SUSTAINABLE_DEVELOPMENT_; and the other names are None
The code is NGOENVDEV;; the name is CENTER_FOR_SUSTAINABLE_HUMAN_RIGHTS_ACTION_; and the other names are None
The code is NGOUSAHRI;; the name is CENTER_FOR_WOMEN'S_GLOBAL_LEADERSHIP_; and the other names are None
The code is NGOHRI;; the name is CENTER_OF_CONCERN_ORGANIZATION_; and the other names are None
The code is NGOCHRCTHHRI;; the name is CENTRAL_AMERICAN_REFUGEE_CENTER_; and the other names are None
The code is NGOLAMREF;; the name is CENTRAL_COMMITTEE_OF_CONSCIENTIOUS_OBJECTORS_; and the other names are None
The code is NGOUSA;; the name is CENTRE_FOR_AFRICAN_DEVELOPMENT_; and the other names are None
The code is NGOAFRDEV;; the name is CENTRE_FOR_DEMOCRACY_AND_DEVELOPMENT_; and the other names are None
The code is NGOWAFDEV;; the name is CENTRE_FOR_DEVELOPMENT_AND_ENTERPRISE_; and the other names are None
The code is NGOZAFDEV;; the name is CENTRE_FOR_DEVELOPMENT_AND_POPULATION_ACTIVITIES_; and the other names are None
The code is NGODEV;; the name is CENTRE_FOR_MEDIA_FREEDOM_MIDDLE_EAST_AND_NORTH_AFRICA_; and the other names are None
The code is NGOMEAHRIMED;; the name is CENTRE_ON_HOUSING_RIGHTS_AND_EVICTIONS_; and the other names are None
The code is NGOHRI;; the name is CENTRO_DE_DERECHO_AMBIENTAL_Y_DE_LOS_RECURSOS_NATURALES_; and the other names are None
The code is NGOCRIENV;; the name is CENTRO_DE_ESTUDIOS_AGRARIOS_Y_AMBIENTALES_; and the other names are None
The code is NGOCHLAGR;; the name is CENTRO_ECUATORIANO_DE_DERECHO_AMBIENTAL_; and the other names are None
The code is NGOECUENV;; the name is CENTRO_MEXICANO_DE_DERECHO_AMBIENTAL_; and the other names are None
The code is NGOMEXENV;; the name is CHILDREN'S_HOME_SOCIETY_AND_FAMILY_SERVICE_; and the other names are None
The code is NGOUSA;; the name is CHILDREN'S_HOME_SOCIETY_OF_MINNESOTA_; and the other names are None
The code is NGOUSA;; the name is CHILDREN_FIRST_INTERNATIONAL_; and the other names are None
The code is NGOHRI;; the name is CHILDREN_FIRST_NOW_; and the other names are None
The code is NGOSWEHRI;; the name is CHILDREN_SURGICAL_AID_INTERNATIONAL_; and the other names are None
The code is NGOEEUHLH;; the name is CHILDWATCH_INTERNATIONAL_RESEARCH_NETWORK_; and the other names are None
The code is NGOHRI;; the name is CHILD_LABOR_COALITION_; and the other names are None
The code is NGOUSAHRI;; the name is CHILD_LABOUR_COALITION_; and the other names are None
The code is NGOUSAHRI;; the name is CHINA_AID_ASSOCIATION_; and the other names are None
The code is NGOCHNCHRHRI; the name is CHINA_DISABLED_PERSONS'_FEDERATION_; and the other names are None
The code is NGOCHNHRI;; the name is CHINA_HUMAN_RIGHTS_ORGANIZATION_; and the other names are None
The code is NGOCHNHRI;; the name is CHRISTIANS_AGAINST_TORTURE_; and the other names are None
The code is NGOCHRHRI;; the name is CHRISTIAN_SOLIDARITY_WORLDWIDE_; and the other names are None
The code is NGOCHRHRI; the name is CITIZENS_FOR_GLOBAL_SOLUTIONS_; and the other names are None
The code is NGOUSA;; the name is CITIZENS_NETWORK_FOR_SUSTAINABLE_DEVELOPMENT_; and the other names are None
The code is NGOUSAENV;; the name is CITIZENS_NETWORK_ON_ESSENTIAL_SERVICES_; and the other names are None
The code is NGOUSADEV;; the name is CIVICUS_; and the other names are None
The code is NGOCVL;; the name is CIVIC_SPACE:_NGOS_UKRAINE_; and the other names are None
The code is NGOUKR;; the name is CLOUD_FOREST_ALIVE_; and the other names are None
The code is NGOCRIENV;; the name is CLUBUL_ECOLOGIC_; and the other names are None
The code is NGOROMENV;; the name is COALITION_AGAINST_SLAVERY_IN_MAURITANIA_AND_SUDAN_; and the other names are None
The code is NGOAFRHRI;; the name is COALITION_TO_STOP_THE_USE_OF_CHILD_SOLDIERS_; and the other names are None
The code is NGOHRI;; the name is COMMITTEE_FOR_INTERNATIONAL_COOPERATION_IN_NATIONAL_RESEARCH_ON_DEMOGRAPHY_; and the other names are None
The code is NGO;; the name is COMMITTEE_OF_CONCERNED_SCIENTISTS_; and the other names are None
The code is NGOHRI;; the name is COMMITTEE_ON_THE_ADMINISTRATION_OF_JUSTICE_; and the other names are None
The code is NGOGBRHRI;; the name is COMMITTEE_TO_PROTECT_JOURNALISTS_; and the other names are None
The code is NGOHRIMED;; the name is COMMUNITY_SYSTEMS_FOUNDATION_; and the other names are None
The code is NGO;; the name is CONCERN_AMERICA_; and the other names are None
The code is NGOUSAREF;; the name is CONSEJO_IBERICO_PARA_LA_DEFENSA_DE_LA_NATURALEZA_; and the other names are None
The code is NGOESPENV;; the name is CONSEJO_LATINOAMERICANO_DE_CIENCIAS_SOCIALES_; and the other names are None
The code is NGOLAMEDU;; the name is CONSERVATION_INTERNATIONAL_; and the other names are None
The code is NGOENV;; the name is CONSORTIUM_FOR_STREET_CHILDREN_; and the other names are None
The code is NGOHRI;; the name is CONSTITUTIONAL_RIGHTS_PROJECT_; and the other names are None
The code is NGONGAHRI;; the name is CONSULTATIVE_GROUP_ON_INTERNATIONAL_AGRICULTURAL_RESEARCH_; and the other names are None
The code is NGOAGR;; the name is CONSUMERS_INTERNATIONAL_; and the other names are None
The code is NGOBUS;; the name is CONTRACEPTIVE_RESEARCH_AND_DEVELOPMENT_PROGRAM_; and the other names are None
The code is NGOHLH;; the name is COOPERATIVE_STATE_RESEARCH,_EDUCATION,_AND_EXTENSION_SERVICE_; and the other names are None
The code is NGOSEA;; the name is CORPORATE_WATCH_; and the other names are None
The code is NGOBUS;; the name is COUNTERPART_INTERNATIONAL_; and the other names are None
The code is NGODEV;; the name is CULTURAL_CENTER_DEMOS_; and the other names are None
The code is NGOSWEHRI;; the name is CULTURAL_SURVIVAL,_INC_; and the other names are None
The code is NGOLAMHRI;; the name is DARIEN_BOOK_AID_PLAN_; and the other names are None
The code is NGOEDU;; the name is DAVID_MATHIESON_; and the other names are None
The code is NGOHRIHRW; the name is DEBBIE_STOTHARD_; and the other names are None
The code is NGOMMRHRI; the name is DEFENCE_FOR_CHILDREN_INTERNATIONAL_; and the other names are None
The code is NGOHRI;; the name is DEMOCRATIC_VOICE_OF_BURMA_; and the other names are None
The code is NGOMMRMED; the name is DEMOGRAPHIC_AND_HEALTH_SURVEYS_; and the other names are None
The code is NGOUSAHLH;; the name is DERECHOS_HUMAN_RIGHTS_; and the other names are None
The code is NGOLAMHRI;; the name is DEVELOPMENT_AGENC_; and the other names are None
The code is NGODEV;; the name is DEVELOPMENT_GATEWAY_FOUNDATION_; and the other names are None
The code is NGODEV;; the name is DEVELOPMENT_GROUP_FOR_ALTERNATIVE_POLICIES_; and the other names are None
The code is NGODEV;; the name is DIGITALLIANCE_; and the other names are None
The code is NGODEV;; the name is DIGITAL_FREEDOM_NETWORK_; and the other names are None
The code is NGOHRI;; the name is DILXAT_RAXIT_; and the other names are None
The code is NGOCHNUIGHRI;; the name is DIRECTORY_OF_DEVELOPMENT_ORGANIZATIONS_; and the other names are None
The code is NGODEV;; the name is DIRECT_RELIEF_INTERNATIONAL_; and the other names are None
The code is NGOHLH;; the name is DISABILITY_AWARENESS_IN_ACTION_; and the other names are None
The code is NGOHRI;; the name is DISABLED_PEOPLES'_INTERNATIONAL_; and the other names are None
The code is NGOHRI;; the name is DOCTORS_WITHOUT_BORDERS_; and the other names are None
The code is NGOHLHMSF;; the name is DOLQUN_ISA_; and the other names are None
The code is NGOCHNUIGHRI;; the name is EARTHACTION_; and the other names are None
The code is NGO;; the name is EARTHSCAN_; and the other names are None
The code is NGOGBRENV;; the name is EARTHWATCH_INSTITUTE_; and the other names are None
The code is NGOENV;; the name is EARTH_ACTION_NETWORK_; and the other names are None
The code is NGO;; the name is EARTH_CHARTER_INITIATIVE_; and the other names are None
The code is NGOENV;; the name is EARTH_COUNCIL_; and the other names are None
The code is NGOENV;; the name is EARTH_ISLAND_INSTITUTE_; and the other names are None
The code is NGOENV;; the name is EARTH_RIGHTS_INTERNATIONAL_; and the other names are None
The code is NGOENVHRI;; the name is EARTH_SOCIETY_FOUNDATION_; and the other names are None
The code is NGOUSAENV;; the name is EARTH_SUMMIT_WATCH_; and the other names are None
The code is NGOEVN;; the name is EARTH_TIMES_FOUNDATION_; and the other names are None
The code is NGOUSAENV;; the name is EARTH_TRUST_; and the other names are None
The code is NGOENV;; the name is ECOLOGISTAS_; and the other names are None
The code is NGOESPENV;; the name is ECPAT_INTERNATIONAL_; and the other names are None
The code is NGOTHAHRI;; the name is EDUCATIONAL_CONCERNS_FOR_HUNGER_ORGANIZATION_; and the other names are None
The code is NGOCHRAGR;; the name is EDUCATION_INTERNATIONAL_; and the other names are None
The code is NGOLABEDU;; the name is EDUCATION_IN_HUMAN_RIGHTS_NETWORK_; and the other names are None
The code is NGOUSAHRI;; the name is EDUCATION_WITH_ENTERPRISE_TRUST_; and the other names are None
The code is NGOSAFDEV;; the name is EGYPTIAN_ORGANIZATION_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOEGYHRI;; the name is EMPOWERMENT_FOR_AFRICAN_SUSTAINABLE_DEVELOPMENT_; and the other names are None
The code is NGOAFRENV;; the name is ENGENDERHEALTH_; and the other names are None
The code is NGOHLH;; the name is ENTERPRISE_DEVELOPMENT_INTERNATIONAL_; and the other names are None
The code is NGOCHRDEV;; the name is ENVIRONMENT_LIAISON_CENTER_INTERNATIONAL_; and the other names are None
The code is NGOENV;; the name is EQUALITY_NOW_; and the other names are None
The code is NGOHRI;; the name is EQUIPO_NIZKOR_; and the other names are None
The code is NGOLAMHRI;; the name is ESTONIAN_AMERICAN_FUND_FOR_ECONOMIC_EDUCATION,_INC_; and the other names are None
The code is NGOESTDEV;; the name is EURASIA_FOUNDATION_; and the other names are None
The code is NGOCAUDEV;; the name is EURONGOS_; and the other names are None
The code is NGOEURHLH;; the name is EUROPEAN_BAR_HUMAN_RIGHTS_INSTITUTE_; and the other names are None
The code is NGOEURHRI;; the name is EUROPEAN_CENTRE_FOR_NATURE_CONSERVATION_; and the other names are None
The code is NGOEURENV;; the name is EUROPEAN_COUNCIL_ON_REFUGEES_AND_EXILES_; and the other names are None
The code is NGOEURREF;; the name is EUROPEAN_ENVIRONMENTAL_BUREAU_; and the other names are None
The code is NGOEURENV;; the name is EUROPEAN_PUBLIC_LAW_CENTER_; and the other names are None
The code is NGOEURJUD;; the name is FAMILY_CARE_INTERNATIONAL_; and the other names are None
The code is NGOHLH;; the name is FAMILY_HEALTH_INTERNATIONAL_; and the other names are None
The code is NGOHLH;; the name is FAUNA_AND_FLORA_INTERNATIONAL_; and the other names are None
The code is NGOENV;; the name is FEDERATION_OF_AMERICAN_WOMEN'S_CLUBS_OVERSEAS_; and the other names are None
The code is NGOUSA;; the name is FEED_THE_CHILDREN_; and the other names are None
The code is NGOCHRHLH;; the name is FIDH_; and the other names are None
The code is NGOHRIFID;; the name is FONDO_DE_LAS_AMERICAS_; and the other names are None
The code is NGOPERENV;; the name is FOODFIRST_INFORMATION_AND_ACTION_NETWORK_; and the other names are None
The code is NGOHRI;; the name is FOOD_FIRST_INFORMATION_AND_ACTION_NETWORK_; and the other names are None
The code is NGODEV;; the name is FOREST,_TREES_AND_PEOPLE_PROGRAM_; and the other names are None
The code is NGOENV;; the name is FORUM_FOR_THE_FUTURE_; and the other names are None
The code is NGOGBRENVDEV;; the name is FOUNDATION_FOR_EDUCATION_FOR_DEMOCRACY_; and the other names are None
The code is NGOPOLDEV;; the name is FOUNDATION_FOR_INTERNATIONAL_ENVIRONMENTAL_LAW_AND_DEVELOPMENT_; and the other names are None
The code is NGOGBRENV;; the name is FOUNDATION_FOR_THE_PEOPLES_OF_ASIA_AND_THE_PACIFIC_; and the other names are None
The code is NGOAUSDEV;; the name is FOUNDATION_FOR_THE_PEOPLES_OF_THE_SOUTH_PACIFIC_; and the other names are None
The code is NGOAUSDEV;; the name is FREEDOM_HOUSE_; and the other names are None
The code is NGOUSAHRI;; the name is FREE_BURMA_COALITION_; and the other names are None
The code is NGOMMRHRI;; the name is FRIENDS_OF_THE_EARTH_; and the other names are None
The code is NGOFSM;; the name is FUNDACION_DESARROLLO_SOSTENIDO_; and the other names are None
The code is NGOESPDEV;; the name is FUTURES_GROUP_INTERNATIONAL_; and the other names are None
The code is NGOHLH;; the name is GATES_FOUNDATION_; and the other names are None
The code is NGOUSA; the name is GCS_INTERNATIONAL_; and the other names are None
The code is NGOKOR;; the name is GCS_MOVEMENT_; and the other names are None
The code is NGOKOR;; the name is GENERAL_FEDERATION_OF_WOMEN'S_CLUBS_; and the other names are None
The code is NGOUSA;; the name is GLOBAL_AIDS_COLLABORATIVE_FOR_CARE,_TREATMENT_AND_SUPPORT_; and the other names are None
The code is NGOHLH;; the name is GLOBAL_ALLIANCE_FOR_WOMEN'S_HEALTH_; and the other names are None
The code is NGOHLH;; the name is GLOBAL_DEVELOPMENT_NETWORK_; and the other names are None
The code is NGODEV;; the name is GLOBAL_FUND_FOR_HIV AIDS_; and the other names are None
The code is NGOSWZHLH; the name is GLOBAL_FUND_FOR_WOMEN_; and the other names are None
The code is NGOHRI;; the name is GLOBAL_LAWYERS_AND_PHYSICIANS_; and the other names are None
The code is NGOHLHHRI;; the name is GLOBAL_LEAD_NETWORK_; and the other names are None
The code is NGOHLH;; the name is GLOBAL_VISION_INTERNATIONAL_; and the other names are None
The code is NGOGBR;; the name is GLOBAL_WITNESS_; and the other names are None
The code is NGOENVHRI;; the name is GOOD_NEIGHBORS_INTERNATIONAL_; and the other names are None
The code is NGODEV;; the name is GRASSROOTS_INTERNATIONAL_; and the other names are None
The code is NGOHRI;; the name is GREENPEACE_; and the other names are None
The code is NGOENV;; the name is GREENPEACE_HONG_KONG_; and the other names are None
The code is NGOHKGENV;; the name is GREEN_CROSS_INTERNATIONAL_; and the other names are None
The code is NGOENV;; the name is GREEN_EARTH_ORGANIZATION_; and the other names are None
The code is NGOGHAENV;; the name is GREEN_FRONT_OF_IRAN_; and the other names are None
The code is NGOIRNENV;; the name is GUIDE_TO_NGOS_IN_PAKISTAN_; and the other names are None
The code is NGOPAK;; the name is GUTTMACHER_INSTITUTE_; and the other names are None
The code is NGOUSAHLH;; the name is HABITAT_INTERNATIONAL_COALITION_; and the other names are None
The code is NGOHRI;; the name is HAITIAN_MOVEMENT_FOR_RURAL_DEVELOPMENT_; and the other names are None
The code is NGOHTIDEV;; the name is HARVARD HUMAN_RIGHTS_INTERNET_; and the other names are None
The code is NGOHRI;; the name is HEALTHWRIGHTS_; and the other names are None
The code is NGOHRIHLH;; the name is HEALTH_OPPORTUNITIES_FOR_PEOPLE_EVERYWHERE_; and the other names are None
The code is NGOUSAHLH;; the name is HEALTH_VOLUNTEERS_OVERSEAS_; and the other names are None
The code is NGOHLH;; the name is HEIFER_INTERNATIONAL_; and the other names are None
The code is NGODEVAGR;; the name is HELSINKI_FOUNDATION_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOHRI;; the name is HESPERIAN_FOUNDATION_; and the other names are None
The code is NGOHLHEDU;; the name is HIJRA_INTERNATIONAL_; and the other names are None
The code is NGOMOSHRI;; the name is HINDU_WORLD_COUNCIL_; and the other names are None
The code is NGOHINRAD;; the name is HUMAN_RIGHTS_ACTION_CENTER_; and the other names are None
The code is NGOMMRHRI; the name is HUMAN_RIGHTS_CENTER_OF_AZERBAIJAN_; and the other names are None
The code is NGOAZEHRI;; the name is HUMAN_RIGHTS_CONGRESS_FOR_BANGLADESH_MINORITIES_; and the other names are None
The code is NGOBGDHRI;; the name is HUMAN_RIGHTS_FIRST_; and the other names are None
The code is NGOUSAHRI;; the name is HUMAN_RIGHTS_FOUNDATION_OF_TURKEY_; and the other names are None
The code is NGOHRI; the name is HUMAN_SCIENCES_RESEARCH_COUNCIL_; and the other names are None
The code is NGOZAFDEV;; the name is HUMAN_STRATEGIES_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOHRI;; the name is ICRC_; and the other names are None
The code is NGOHLHIRC;; the name is IEARN_USA_; and the other names are None
The code is NGOUSAEDU;; the name is IFCO/PASTORS_FOR_PEACE_; and the other names are None
The code is NGOCHRHRI;; the name is IGC_INTERNET_; and the other names are None
The code is NGOMED;; the name is INSTITUTE_FOR_DEVELOPMENT_ANTHROPOLOGY_; and the other names are None
The code is NGOEDUDEV;; the name is INSTITUTE_FOR_DEVELOPMENT_RESEARCH_AMSTERDAM_; and the other names are None
The code is NGONLDEDUDEV;; the name is INSTITUTE_FOR_GLOBAL_COMMUNICATIONS_; and the other names are None
The code is NGOMED;; the name is INSTITUTE_FOR_HUMAN_RIGHTS_AND_DEVELOPMENT_IN_AFRICA_; and the other names are None
The code is NGOAFRHRIDEV;; the name is INSTITUTE_FOR_INTERNATIONAL_COOPERATION_AND_DEVELOPMENT_; and the other names are None
The code is NGODEV;; the name is INSTITUTE_FOR_MULTI_TRACK_DIPLOMACY_; and the other names are None
The code is NGOUSA;; the name is INSTITUTE_FOR_SCIENCE_AND_INTERNATIONAL_SECURITY_; and the other names are None
The code is NGOUSA; the name is INSTITUTE_OF_INTERNATIONAL_FINANCE_; and the other names are None
The code is NGOBUS; the name is INSTITUTO_DE_DERECHO_Y_ECONOMIA_AMBIENTAL_; and the other names are None
The code is NGOPRYENV;; the name is INSTITUTO_DE_DESARROLLO_Y_MEDIO_AMBIENTE_; and the other names are None
The code is NGOPERDEV;; the name is INTERCHURCH_MEDICAL_ASSISTANCE_INC_; and the other names are None
The code is NGOCHRPROHLH;; the name is INTERIGHTS_; and the other names are None
The code is NGOHRIJUD;; the name is INTERMEDIATE_TECHNOLOGY_DEVELOPMENT_GROUP_; and the other names are None
The code is NGOGBRDEV;; the name is INTERNATIONAL_ACADEMY_OF_ARCHITECTURE_; and the other names are None
The code is NGOUER;; the name is INTERNATIONAL_ADVOCATES_FOR_CHILDREN_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_AGENCY_FOR_ECONOMIC_DEVELOPMENT_; and the other names are None
The code is NGODEV;; the name is INTERNATIONAL_ALERT_; and the other names are None
The code is NGODEV;; the name is INTERNATIONAL_ALLIANCE_OF_WOMEN_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_ASSOCIATION_FOR_NATURAL_GAS_VEHICLES_; and the other names are None
The code is NGOBUS;; the name is INTERNATIONAL_ASSOCIATION_OF_AGRICULTURAL_INFORMATION_SPECIALISTS_; and the other names are None
The code is NGOAGREDU;; the name is INTERNATIONAL_ASSOCIATION_ON_WATER_QUALITY_; and the other names are None
The code is NGOENV;; the name is INTERNATIONAL_BOOK_BANK,_INC_; and the other names are None
The code is NGOEDU;; the name is INTERNATIONAL_BOOK_PROJECT,_INC_; and the other names are None
The code is NGOEDU;; the name is INTERNATIONAL_CAMPAIGN_TO_BAN_LANDMINES_; and the other names are None
The code is NGOHRI; the name is INTERNATIONAL_CENTER_FOR_DIARRHOEAL_DISEASE_RESEARCH_; and the other names are None
The code is NGOBGHHLH;; the name is INTERNATIONAL_CENTRE_FOR_INTEGRATED_MOUNTAIN_DEVELOPMENT_; and the other names are None
The code is NGOASAENV;; the name is INTERNATIONAL_CENTRE_FOR_RESEARCH_IN_AGROFORESTRY_; and the other names are None
The code is NGOAGR;; the name is INTERNATIONAL_CHAMBER_OF_COMMERCE_; and the other names are None
The code is NGOBUS;; the name is INTERNATIONAL_CLINICAL_EPIDEMIOLOGY_NETWORK_; and the other names are None
The code is NGOHLH;; the name is INTERNATIONAL_COMMISSION_OF_JURISTS_; and the other names are None
The code is NGOJUDJUR;; the name is INTERNATIONAL_COMMISSION_OF_MISSING_PERSONS_; and the other names are None
The code is NGOBLK;; the name is INTERNATIONAL_COMMITTEE_OF_SOLIDARITY_FOR_POLITICAL_PRISONERS_IN_TUNISIA_; and the other names are None
The code is NGOTUNHRI;; the name is INTERNATIONAL_COMMITTEE_OF_THE_RED_CROSS_; and the other names are None
The code is NGOHLHIRC;; the name is INTERNATIONAL_COMMUNITY_OF_WOMEN_LIVING_WITH_HIV/AIDS_; and the other names are None
The code is NGOHLH;; the name is INTERNATIONAL_CONFEDERATION_OF_FREE_TRADE_UNIONS_; and the other names are None
The code is NGOLAB;; the name is INTERNATIONAL_COUNCIL_OF_ENVIRONMENTAL_LAW_; and the other names are None
The code is NGOENV;; the name is INTERNATIONAL_COUNCIL_OF_JEWISH_WOMEN_; and the other names are None
The code is NGOJEWHRI;; the name is INTERNATIONAL_COUNCIL_OF_VOLUNTARY_AGENCIES_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_CRISIS_GROUP_; and the other names are None
The code is NGOICG;; the name is INTERNATIONAL_DEVELOPMENT_EXCHANGE_; and the other names are None
The code is NGODEV;; the name is INTERNATIONAL_DEVELOPMENT_RESEARCH_CENTRE_; and the other names are None
The code is NGODEV;; the name is INTERNATIONAL_FED._OF_RED_CROSS_AND_RED_CRESCENT_; and the other names are None
The code is NGOHLHIRC;; the name is INTERNATIONAL_FEDERATION_OF_ACTION_BY_CHRISTIANS_FOR_THE_ABOLITION_OF_TORTURE_; and the other names are None
The code is NGOCHRHRI;; the name is INTERNATIONAL_FEDERATION_OF_HEALTH_AND_HUMAN_RIGHTS_ORGANISATIONS_; and the other names are None
The code is NGOHLH;; the name is INTERNATIONAL_FEDERATION_OF_HUMAN_RIGHTS_; and the other names are None
The code is NGOHRIFID;; the name is INTERNATIONAL_FEDERATION_OF_JOURNALISTS_; and the other names are None
The code is NGOMED; the name is INTERNATIONAL_FEDERATION_OF_RED_CROSS_AND_RED_CRESCENT_; and the other names are None
The code is NGOHLHIRC;; the name is INTERNATIONAL_FEDERATION_OF_UNIVERSITY_WOMEN_; and the other names are None
The code is NGOEDU;; the name is INTERNATIONAL_FOUNDATION_FOR_ELECTORAL_SYSTEMS_; and the other names are None
The code is NGO;; the name is INTERNATIONAL_FREEDOM_OF_EXPRESSION_EXCHANGE_; and the other names are None
The code is NGOMED;; the name is INTERNATIONAL_GAY_AND_LESBIAN_HUMAN_RIGHTS_COMMISSION_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_GEOGRAPHICAL_UNION_; and the other names are None
The code is NGO;; the name is INTERNATIONAL_HELSINKI_FEDERATION_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOHRIIHF;; the name is INTERNATIONAL_HUMAN_RIGHTS_ASSOCIATION_OF_AMERICAN_MINORITIES_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_HUMAN_RIGHTS_INTERNSHIP_PROGRAM_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_HUMAN_RIGHTS_LAW_GROUP_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_INDEPENDENT_GROUP_OF_EMINENT_PERSONS_; and the other names are None
The code is NGOLKAHRI; the name is INTERNATIONAL_INDIAN_TREATY_COUNCIL_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_INSTITUTE_FOR_ENVIRONMENT_AND_DEVELOPMENT_; and the other names are None
The code is NGOGBRENV;; the name is INTERNATIONAL_INSTITUTE_FOR_SUSTAINABLE_DEVELOPMENT_; and the other names are None
The code is NGOCANENV;; the name is INTERNATIONAL_LEAGUE_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_LEAGUE_OF_HUMAN_RIGHTS_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_LESBIAN_AND_GAY_ASSOCIATION_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_MATHEMATICAL_UNION_; and the other names are None
The code is NGOEDU;; the name is INTERNATIONAL_MEDIA_RIGHTS_; and the other names are None
The code is NGOHRI; the name is INTERNATIONAL_NETWORK_FOR_THE_RATIONAL_USE_OF_DRUGS_; and the other names are None
The code is NGOHLH;; the name is INTERNATIONAL_OFFICE_FOR_WATER_; and the other names are None
The code is NGOENV;; the name is INTERNATIONAL_OLIVE_COUNCIL_; and the other names are None
The code is NGOAGR; the name is INTERNATIONAL_PETROLEUM_INDUSTRY_ENVIRONMENTAL_CONSERVATION_; and the other names are None
The code is NGOENV;; the name is INTERNATIONAL_PLANNED_PARENTHOOD_FEDERATION_; and the other names are None
The code is NGOHLH;; the name is INTERNATIONAL_PLATFORM_OF_JURISTS_FOR_EAST_TIMOR_; and the other names are None
The code is NGOTMPHRI;; the name is INTERNATIONAL_RESEARCH_FOUNDATION_FOR_DEVELOPMENT_; and the other names are None
The code is NGODEV;; the name is INTERNATIONAL_RICE_RESEARCH_INSTITUTE_; and the other names are None
The code is NGOAGR; the name is INTERNATIONAL_RIVERS_NETWORK_; and the other names are None
The code is NGOUSAENV;; the name is INTERNATIONAL_SNOW_LEOPARD_TRUST_; and the other names are None
The code is NGOENV;; the name is INTERNATIONAL_SOCIETY_FOR_HEALTH_AND_HUMAN_RIGHTS_; and the other names are None
The code is NGOHRIHLH;; the name is INTERNATIONAL_SOCIETY_OF_TROPICAL_FORESTERS_; and the other names are None
The code is NGOENV;; the name is INTERNATIONAL_SOUTH_GROUP_NETWORK_; and the other names are None
The code is NGODEV;; the name is INTERNATIONAL_TRAINING_CENTRE_ON_HUMAN_RIGHTS_AND_PEACE_TEACHING_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_UNION_FOR_THE_CONSERVATION_OF_NATURE_; and the other names are None
The code is NGOENV;; the name is INTERNATIONAL_UNION_OF_BASIC_AND_CLINICAL_PHARMACOLOGY_; and the other names are None
The code is NGOHLH;; the name is INTERNATIONAL_UNION_OF_GEODESY_AND_GEOPHYSICS_; and the other names are None
The code is NGOEDU;; the name is INTERNATIONAL_UNION_OF_PURE_AND_APPLIED_CHEMISTRY_; and the other names are None
The code is NGOEDU;; the name is INTERNATIONAL_UNION_OF_PURE_AND_APPLIED_PHYSICS_; and the other names are None
The code is NGOEDU;; the name is INTERNATIONAL_UYGHUR_YOUTH_LEAGUE_; and the other names are None
The code is NGOCHNUIGHRI;; the name is INTERNATIONAL_WATER_MANAGEMENT_INSTITUTE_; and the other names are None
The code is NGOAGR;; the name is INTERNATIONAL_WILDLIFE_COALITION_; and the other names are None
The code is NGOENV;; the name is INTERNATIONAL_WOMEN'S_HEALTH_COALITION_; and the other names are None
The code is NGOHLH;; the name is INTERNATIONAL_WOMEN'S_RIGHTS_ACTION_WATCH_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_WORK_GROUP_FOR_INDIGENOUS_AFFAIRS_; and the other names are None
The code is NGOHRI;; the name is INTERNATIONAL_YOUTH_FOUNDATION_; and the other names are None
The code is NGODEV;; the name is INTERNET_SOCIETY_; and the other names are None
The code is NGOMED;; the name is INTERNEWS_; and the other names are None
The code is NGOMED; the name is INTERPROFESSIONAL_FOSTERING_OF_OPHTHALMIC_CARE_FOR_UNDERSERVED_SECTORS_; and the other names are None
The code is NGOHLH;; the name is INTERRELIGIOUS_AND_INTERNATIONAL_FEDERATION_FOR_WORLD_PEACE_; and the other names are None
The code is NGOREL;; the name is INTER_AFRICA_GROUP_; and the other names are None
The code is NGOSAF;; the name is INTER_AMERICAN_INSTITUTE_OF_HUMAN_RIGHTS_; and the other names are None
The code is NGOLAMHRI;; the name is INTRAHEALTH_INTERNATIONAL_INC_; and the other names are None
The code is NGOHLH;; the name is INVENEO_; and the other names are None
The code is NGOMED;; the name is ISAR_; and the other names are None
The code is NGOENV;; the name is ISIS_INTERNATIONAL_MANILA_; and the other names are None
The code is NGOPHLMED;; the name is ISRAELI_INFORMATION_CENTER_FOR_HUMAN_RIGHTS_IN_THE_OCCUPIED_TERRITORIES_; and the other names are None
The code is NGOISRHRI;; the name is ITEM_THE_THIRD_WORLD_INSTITUTE_; and the other names are None
The code is NGOURYDEV;; the name is ITTIPAK_; and the other names are None
The code is NGOCHNUIGHRI;; the name is IWOKRAMA_INTERNATIONAL_CENTRE_FOR_RAIN_FOREST_CONSERVATION_AND_DEVELOPMENT_; and the other names are None
The code is NGOGUYENV;; the name is JAMAICA_CONSERVATION_AND_DEVELOPMENT_TRUST_; and the other names are None
The code is NGOJAMENV;; the name is JAPAN PEACE_BOAT_; and the other names are None
The code is NGOJPN; the name is JEWISH_PEACE_FELLOWSHIP_; and the other names are None
The code is NGOJEW;; the name is JOAN_B._KROC_INSTITUTE_OF_PEACE_AND_JUSTICE_; and the other names are None
The code is NGOCHRCTH;; the name is JSTOR_; and the other names are None
The code is NGOUSAEDU;; the name is JUBILEE_USA_NETWORK_; and the other names are None
The code is NGOCHRDEV;; the name is JUDICIAL_SYSTEM_MONITORING_PROGRAMME_; and the other names are None
The code is NGOTMPHRI;; the name is KAWANUA_USA_; and the other names are None
The code is NGOIDN;; the name is KURDISH_HUMAN_RIGHTS_PROJECT_; and the other names are None
The code is NGOKURHRI;; the name is KYRGYZ_COMMITTEE_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOKGZHRI;; the name is LAO NEW_GENERATION_DEMOCRACY_MOVEMENT_; and the other names are None
The code is NGOLAOHRI;; the name is LAO_HUMAN_RIGHTS_COUNCIL_; and the other names are None
The code is NGOLAOHRI;; the name is LATIN_AMERICAN_FEDERATION_OF_ASSOCIATIONS_FOR_RELATIVES_OF_THE_DETAINED_DISAPPEARED_; and the other names are None
The code is NGOLAMHRI;; the name is LAWYER'S_COMMITTEE_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOUSAHRI;; the name is LAWYERS'_COMMITTEE_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOUSAHRI;; the name is LAWYERS_COMMITTEE_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOUSAHRI;; the name is LEAGUE_OF_WOMEN_VOTERS_; and the other names are None
The code is NGOUSA;; the name is LELIO_BASSO_INTERNATIONAL_FOUNDATION_; and the other names are None
The code is NGOITAHRI;; the name is LIFEBRIDGE_FOUNDATION_; and the other names are None
The code is NGOUSA;; the name is LIGA_DE_DEFENSA_DEL_MEDIO_AMBIENTE_; and the other names are None
The code is NGOBOLENV;; the name is LIONS_CLUB_INTERNATIONAL_; and the other names are None
The code is NGO;; the name is LUKE_SOCIETY_; and the other names are None
The code is NGOCHRHLH;; the name is MAGNUS_HIRSCHFELD_CENTRE_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOHRI;; the name is MAINE_ADOPTION_PLACEMENT_SERVICE_; and the other names are None
The code is NGOUSA;; the name is MALAWI_HANDCART_PROJECT_; and the other names are None
The code is NGOMWIDEV;; the name is MANAGEMENT_SCIENCES_FOR_HEALTH_; and the other names are None
The code is NGOHLH;; the name is MAP_INTERNATIONAL_; and the other names are None
The code is NGOCHRHLH;; the name is MARCH_OF_DIMES_BIRTH_DEFECTS_FOUNDATION_; and the other names are None
The code is NGOHLH;; the name is MARIE_STOPES_INTERNATIONAL_; and the other names are None
The code is NGOHLH;; the name is MARY_WERNTZ_; and the other names are None
The code is NGOHLHIRC; the name is MEDECINS_SANS_FRONTIERES_; and the other names are None
The code is NGOHLHMSF;; the name is MEDICAL_BOOKS_FOR_CHINA_INTERNATIONAL_; and the other names are None
The code is NGOCHNHLH;; the name is MEDISEND_; and the other names are None
The code is NGOHLH;; the name is MEDITERRANEAN_INFORMATION_OFFICE_FOR_ENVIRONMENT,_CULTURE,_AND_SUSTAINABLE_DEVELOPMENT_; and the other names are None
The code is NGOMDTENV;; the name is MENTAL_DISABILITY_RIGHTS_INTERNATIONAL_; and the other names are None
The code is NGOHRI;; the name is MERCY_SHIPS_; and the other names are None
The code is NGOAFRHLH;; the name is MIDDLE_EAST_CHILDREN'S_ALLIANCE_; and the other names are None
The code is NGOMEA;; the name is MINBYUN___LAWYERS_FOR_A_DEMOCRATIC_SOCIETY_; and the other names are None
The code is NGOKORDEV;; the name is MINNESOTA_ADVOCATES_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOUSAHRI;; the name is MINORITY_RIGHTS_GROUP_; and the other names are None
The code is NGOHRI;; the name is MOBILITY_INTERNATIONAL_USA_; and the other names are None
The code is NGOHRI;; the name is MONTREAL SOCIAL_JUSTICE_COMMITTEE_; and the other names are None
The code is NGOCANHRI;; the name is MOSCOW_SCHOOL_OF_HUMAN_RIGHTS_; and the other names are None
The code is NGORUSHRI;; the name is MSF_; and the other names are None
The code is NGOHLHMSF;; the name is MS_NEPAL_; and the other names are None
The code is NGONPLDEV;; the name is NATIONAL_CAMPAIGN_ON_DALIT_HUMAN_RIGHTS_; and the other names are None
The code is NGOSASHRI;; the name is NATIONAL_CENTER_FOR_NONPROFIT_BOARDS_; and the other names are None
The code is NGOUSABUS;; the name is NATIONAL_COALITION_FOR_HAITIAN_RIGHTS_; and the other names are None
The code is NGOHTIHRI;; the name is NATIONAL_COALITION_OF_ANTI_DEPORTATION_CAMPAIGNS_; and the other names are None
The code is NGOGBRREF;; the name is NATIONAL_COOPERATIVE_BUSINESS_ASSOCIATION_; and the other names are None
The code is NGOUSABUS;; the name is NATIONAL_COUNCILS_FOR_SUSTAINABLE_DEVELOPMENT_; and the other names are None
The code is NGOENV;; the name is NATIONAL_COUNCIL_FOR_LIBERTIES_IN_TUNISIA_; and the other names are None
The code is NGOTUNHRI;; the name is NATIONAL_GROUND_WATER_ASSOCIATION_; and the other names are None
The code is NGOUSAENV;; the name is NATIONAL_NETWORK_FOR_IMMIGRANT_AND_REFUGEE_RIGHTS_; and the other names are None
The code is NGOUSAREF;; the name is NATURAL_RESOURCES_DEFENSE_COUNCIL_; and the other names are None
The code is NGOUSAENV;; the name is NAW_SAY_PHAW_; and the other names are None
The code is NGOMMRMED; the name is NEREO_PRESERVADOR_DEL_MEDI_AMBIENTE_; and the other names are None
The code is NGOEURDEV;; the name is NETAID_; and the other names are None
The code is NGODEV;; the name is NETWORK_FOR_EDUCATION_AND_ACADEMIC_RIGHTS_; and the other names are None
The code is NGOGBRHRI;; the name is NETWORK_OF_EAST_WEST_WOMEN_POLAND_; and the other names are None
The code is NGOPOL;; the name is NETWORK_OF_EAST_WEST_WOMEN_POLSKA_; and the other names are None
The code is NGOPOL;; the name is NETWORK_OF_FOUNDATIONS_AND_NONPROFIT_ORGANIZATIONS_; and the other names are None
The code is NGO;; the name is NETWORK_WOMEN_IN_DEVELOPMENT_EUROPE_; and the other names are None
The code is NGOEURDEV;; the name is NGO_; and the other names are None
The code is NGO; the name is NGO_NET_; and the other names are None
The code is NGOAFRMED;; the name is NGO_NETWORK_ON_THE_QUESTION_OF_PALESTINE_; and the other names are None
The code is NGOPAL;; the name is NON_GOVERNMENTAL_ORGANISATION_; and the other names are None
The code is NGO; the name is NON_GOVERNMENTAL_ORGANIZATION_; and the other names are None
The code is NGO; the name is NON_GOVERNMENT_ORGANISATION_; and the other names are None
The code is NGO; the name is NON_GOVERNMENT_ORGANIZATION_; and the other names are None
The code is NGO; the name is NORTHERN_IRELAND_HUMAN_RIGHTS_COMMISSION_; and the other names are None
The code is NGOGBRHRI;; the name is NORWEGIAN_REFUGEE_COUNCIL_; and the other names are None
The code is NGONORREF;; the name is NUCLEAR_AGE_PEACE_FOUNDATION_; and the other names are None
The code is NGOUSA;; the name is NUCLEAR_THREAT_INITIATIVE_; and the other names are None
The code is NGOUSA;; the name is NUEVOS_DERECHOS_DEL_HOMBRE_; and the other names are None
The code is NGOZAFDEV;; the name is ONEWORLD.NET_; and the other names are None
The code is NGOENV;; the name is OPERATION_SMILE_; and the other names are None
The code is NGOUSAHLH;; the name is ORGANISATION_OF_WOMEN'S_FREEDOM_IN_IRAQ_; and the other names are None
The code is NGOIRQHRI;; the name is ORGANIZATION_FOR_DEFENDING_VICTIMS_OF_VIOLENCE_; and the other names are None
The code is NGOIRNHRI;; the name is OTTAWA HUMAN_RIGHTS_INTERNET_; and the other names are None
The code is NGOHRI;; the name is OVERSEAS_DEVELOPMENT_INSTITUTE_; and the other names are None
The code is NGODEV;; the name is OXFAM_; and the other names are None
The code is NGOXFM;; the name is PACIFIC_INSTITUTE_FOR_WOMEN'S_HEALTH_; and the other names are None
The code is NGOHLH;; the name is PALESTINIAN_CENTRE_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOPALHRI;; the name is PALESTINIAN_HUMAN_RIGHTS_MONITORING_GROUP_; and the other names are None
The code is NGOPALHRI;; the name is PANAMERICAN/PANAFRICAN_ASSOCIATION_; and the other names are None
The code is NGO;; the name is PANEL_ON_TAKEOVERS_AND_MERGERS_; and the other names are None
The code is NGOGBRBUS; the name is PANOS_INSTITUTE_; and the other names are None
The code is NGOMED;; the name is PAN_AMERICAN_HEALTH_AND_EDUCATION_FOUNDATION_; and the other names are None
The code is NGOSAMHLH;; the name is PAN_PACIFIC_AND_SOUTHEAST_ASIA_WOMEN'S_ASSOCIATION_INTERNATIONAL_; and the other names are None
The code is NGOSEA;; the name is PARTNERS_FOR_DEMOCRATIC_CHANGE_; and the other names are None
The code is NGODEV;; the name is PBI_GUATEMALA_; and the other names are None
The code is NGOGTMHRI;; the name is PEACE_BRIGADES_INTERNATIONAL_; and the other names are None
The code is NGOHRI;; the name is PEOPLE'S_UNION_FOR_CIVIL_LIBERTIES_; and the other names are None
The code is NGOINDHRI;; the name is PEOPLES_MOVEMENT_FOR_HUMAN_RIGHTS_LEARNING_; and the other names are None
The code is NGOHRI;; the name is PERUVIAN_INSTITUTE_FOR_EDUCATION_IN_HUMAN_RIGHTS_AND_PEACE_; and the other names are None
The code is NGOPERHRI;; the name is PHELIM_KYNE_; and the other names are None
The code is NGOHRIHRW; the name is PHYSICIANS_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOHRIHLH;; the name is PHYSICIANS_FOR_HUMAN_RIGHTS_ISRAEL_; and the other names are None
The code is NGOISRHRIHLH;; the name is PHYSICIANS_FOR_HUMAN_RIGHTS_UNITED_KINGDOM_; and the other names are None
The code is NGOGBRHRIHLH;; the name is PHYSICIANS_FOR_SOCIAL_RESPONSIBILITY_; and the other names are None
The code is NGO;; the name is PLAN_USA_; and the other names are None
The code is NGODEV;; the name is POLARIS_PROJECT_; and the other names are None
The code is NGOHRI;; the name is POPULATION_ACTION_INTERNATIONAL_; and the other names are None
The code is NGOHLH;; the name is POPULATION_COMMUNICATIONS_INTERNATIONAL,_INC._; and the other names are None
The code is NGOMED;; the name is POPULATION_REFERENCE_BUREAU_; and the other names are None
The code is NGO;; the name is POPULATION_SERVICES_INTERNATIONAL_; and the other names are None
The code is NGOHLH;; the name is PRIVACY_INTERNATIONAL_; and the other names are None
The code is NGOGBRHRI;; the name is PROJECT_MERCY_; and the other names are None
The code is NGOETHCHRDEV;; the name is PROPOOR_; and the other names are None
The code is NGOSASDEV;; the name is PROPOOR:_SOUTH_ASIA_; and the other names are None
The code is NGOSASDEV;; the name is PROSHIKA_; and the other names are None
The code is NGODEV;; the name is PUBLIC_COMMITTEE_AGAINST_TORTURE_IN_ISRAEL_; and the other names are None
The code is NGOISRHRI;; the name is PUBLIC_SERVICES_INTERNATIONAL_; and the other names are None
The code is NGOLAB;; the name is RABBIS_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOJEWHRI;; the name is RAINFOREST_ACTION_NETWORK_; and the other names are None
The code is NGOUSAENV;; the name is RAINFOREST_ALLIANCE_; and the other names are None
The code is NGOENV;; the name is RAND_CORPORATION_; and the other names are None
The code is NGOUSA;; the name is RAND_LABOR_AND_POPULATION_; and the other names are None
The code is NGOUSALAB;; the name is RED_CRESCENT_; and the other names are None
The code is NGOHLHIRC;; the name is RED_CROSS_; and the other names are None
The code is NGOHLHIRC;; the name is REFUGEES_INTERNATIONAL_; and the other names are None
The code is NGOREF;; the name is REFUGEE_ADVOCATE_; and the other names are None
The code is NGOHRI; the name is RENE_DUBOS_CENTER_FOR_HUMAN_ENVIRONMENTS,_INC_; and the other names are None
The code is NGOENV;; the name is REPORTERS_SANS_FRONTIERES_; and the other names are None
The code is NGOHRI;; the name is REPORTERS_WITHOUT_BORDERS_; and the other names are None
The code is NGOHRIMED; the name is RESOURCE_AFRICA_; and the other names are None
The code is NGOAFRENV;; the name is RESOURCE_INSTITUTE_FOR_LOW_ENTROPY_SYSTEMS_; and the other names are None
The code is NGOENV;; the name is REVOLUTIONARY_ASSOCIATION_OF_THE_WOMEN_OF_AFGHANISTAN_; and the other names are None
The code is NGOAFGDEV;; the name is RIGHTS_INTERNATIONAL_; and the other names are None
The code is NGOHRI;; the name is RIOS_VIVOS_; and the other names are None
The code is NGOENV;; the name is ROMANIA_DEVELOPMENT_GATEWAY_; and the other names are None
The code is NGOROMDEV;; the name is ROTARY_CLUB_; and the other names are None
The code is NGO; the name is ROTARY_INTERNATIONAL_; and the other names are None
The code is NGO;; the name is S.S._MAITRA_; and the other names are None
The code is NGOINDHLHIRC;; the name is S._S._MAITRA_; and the other names are None
The code is NGOINDHLHIRC;; the name is SAFE_MOTHERHOOD_; and the other names are None
The code is NGOHLH;; the name is SATINATH_SARANGI_; and the other names are None
The code is NGOIND;; the name is SAVE_THE_CHILDREN_INTERNATIONAL_; and the other names are None
The code is NGODEV;; the name is SAVE_THE_CHILDREN_USA_; and the other names are None
The code is NGOUSADEV;; the name is SCHOOL_SISTERS_OF_NOTRE_DAME_; and the other names are None
The code is NGOCHRCTHEDU;; the name is SISTERHOOD_IS_GLOBAL_INSTITUTE_; and the other names are None
The code is NGO;; the name is SISTERS_OF_NOTRE_DAME_DE_NAMUR_; and the other names are None
The code is NGOCHRCTHEDU;; the name is SOCIAL_JUSTICE_COMMITTEE MONTREAL_; and the other names are None
The code is NGOCANHRI;; the name is SOCIAL_WATCH_; and the other names are None
The code is NGODEV;; the name is SOCIEDAD_PERUANA_DE_DERECHO_AMBIENTAL_; and the other names are None
The code is NGOPERENV;; the name is SOCIETAS_INTERNATIONALIS_LIMNOLOGIAE_THEORETICAE_ET_APPLICATAE_; and the other names are None
The code is NGOENV;; the name is SOCIETATEA_ECOLOGICA_BIOTICA_; and the other names are None
The code is NGOMDAENV;; the name is SOLAR_COOKERS_INTERNATIONAL_; and the other names are None
The code is NGO;; the name is SOLIDARIDAD_INTERNACIONAL_; and the other names are None
The code is NGODEV;; the name is SOUTH_AFRICAN_PRISONERS_ORGANISATION_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOZAFHRI;; the name is SOUTH_AND_MESO_AMERICAN_INDIAN_RIGHTS_CENTER_; and the other names are None
The code is NGOLAMHRI;; the name is SOUTH_ASIAN_HUMAN_RIGHTS_DOCUMENTATION_CENTRE_; and the other names are None
The code is NGOSASHRI;; the name is SOUTH_ASIA_MEDIA_MONITOR_; and the other names are None
The code is NGOSASMED; the name is SOVEREIGNTY_INTERNATIONAL_; and the other names are None
The code is NGOENV;; the name is SPANISH_COMMISSION_FOR_REFUGEE_ASSISTANCE_; and the other names are None
The code is NGOESPREF;; the name is SS_MAITRA_; and the other names are None
The code is NGOINDHLHIRC;; the name is STAKEHOLDER_FORUM_FOR FUTURE_; and the other names are None
The code is NGOENV;; the name is STATEWATCH_; and the other names are None
The code is NGOEURMED;; the name is STIFTUNG_EUROPAISCHES_NATURERBE_; and the other names are None
The code is NGODEUENV;; the name is SUDAN_HUMAN_RIGHTS_ASSOCIATION_; and the other names are None
The code is NGOSDNHRI;; the name is SUDAN_HUMAN_RIGHTS_ORGANIZATION_; and the other names are None
The code is NGOSDNHRI;; the name is SUDAN_ORGANIZATION_AGAINST_TORTURE_; and the other names are None
The code is NGOSDNHRI;; the name is SUNS_SOUTH_NORTH_DEVELOPMENT_MONITOR_; and the other names are None
The code is NGOMEDDEV;; the name is SURVIVAL_INTERNATIONAL_; and the other names are None
The code is NGOEURHRI;; the name is SUSTAINABLE_DEVELOPMENT_INFORMATION_SERVICE_; and the other names are None
The code is NGOENV;; the name is SWEATSHOP_WATCH_; and the other names are None
The code is NGOUSALAB;; the name is S_SARANGI_; and the other names are None
The code is NGOIND;; the name is S_S_MAITRA_; and the other names are None
The code is NGOINDHLHIRC;; the name is T4CD_; and the other names are None
The code is NGOENV;; the name is TACDB_; and the other names are None
The code is NGOMMRHRI; the name is TAIGA_RESCUE_NETWORK_; and the other names are None
The code is NGOEURENV;; the name is TAIWAN_ASSOCIATION_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOTWNHRI;; the name is TAMILNET_; and the other names are None
The code is NGOLKATAMMED;; the name is TAMIL_HUMAN_RIGHTS_CENTRE_; and the other names are None
The code is NGOTAMHRI; the name is TANTIWITTAYAPITAK_; and the other names are None
The code is NGOHRIAMN; the name is TAPOL_BULLETIN_; and the other names are None
The code is NGOIDNHRI;; the name is TASMANIAN_GAY_AND_LESBIAN_RIGHTS_GROUP_; and the other names are None
The code is NGOAUSHRI;; the name is TATA_ENERGY_RESEARCH_INSTITUTE_; and the other names are None
The code is NGOENV;; the name is TECHNICAL_CENTRE_FOR_AGRICULTURAL_AND_RURAL_COOPERATION_; and the other names are None
The code is NGODEVAGR;; the name is TECHNOLOGIES_FOR_CONSERVATION_AND_DEVELOPMENT_; and the other names are None
The code is NGOENV;; the name is THAN_DOKE_; and the other names are None
The code is NGOMMRLAB; the name is THE_CARTER_CENTER_; and the other names are None
The code is NGOUSA;; the name is THE_COUSTEAU_SOCIETY_; and the other names are None
The code is NGOENV;; the name is THE_FOREST_MANAGEMENT_TRUST_; and the other names are None
The code is NGOENV;; the name is THE_FOUNDATION_FOR_DEMOCRACY_IN_AFRICA_; and the other names are None
The code is NGOAFRDEV;; the name is THE_HUMAN_RIGHTS_EDUCATION_INSTITUTION_; and the other names are None
The code is NGOMMRHRI;; the name is THE_HUNGER_PROJECT_; and the other names are None
The code is NGODEV;; the name is THE_TEMPLE_OF_UNDERSTANDING_; and the other names are None
The code is NGOREL;; the name is THE_TRUST_FOR_THE_AMERICAS_; and the other names are None
The code is NGO;; the name is THIRD_WORLD_NETWORK_; and the other names are None
The code is NGODEV;; the name is THRC_; and the other names are None
The code is NGOTAMHRI; the name is TOBIN_TAX_INITIATIVE_; and the other names are None
The code is NGOBUS;; the name is TONGA_ONLINE_; and the other names are None
The code is NGOTONMED;; the name is TORTURE_ABOLITION_AND_SURVIVORS_SUPPORT_COALITION_INTERNATIONAL_; and the other names are None
The code is NGOHRI;; the name is TRANSPARENCY_INTERNATIONAL_; and the other names are None
The code is NGODEV;; the name is TROPENBOS_INTERNATIONAL_; and the other names are None
The code is NGOENV;; the name is U.S._AFRICA_LEADERSHIP_INSTITUTE_; and the other names are None
The code is NGOAFRDEV;; the name is U.S._CAMPAIGN_FOR_BURMA_; and the other names are None
The code is NGOMMRHRI; the name is U.S._COMMITTEE_FOR_REFUGEES_; and the other names are None
The code is NGOUSAREF;; the name is UGANDA_NGO_DIRECTORY_; and the other names are None
The code is NGOUGA;; the name is UNED_FORUM_; and the other names are None
The code is NGOENV;; the name is UNION_NATIONALE_DE_LA_FEMME_TUNISIENNE_; and the other names are None
The code is NGOTUNDEV;; the name is UNITED_CHURCH_BOARD_FOR_WORLD_MINISTRIES_; and the other names are None
The code is NGOCHR;; the name is UNITED_STATES_BOOK_EXCHANGE_; and the other names are None
The code is NGOEDU;; the name is UNITED_STATES_COMMITTEE_FOR_UNIFEM_; and the other names are None
The code is NGOUSA;; the name is UNITED_STATES_FUND_FOR_UNICEF_; and the other names are None
The code is NGOUSAHLH;; the name is UNITED_WAY_INTERNATIONAL_; and the other names are None
The code is NGO;; the name is UNIT_FOR_SUSTAINABLE_DEVELOPMENT_AND_ENVIRONMENT_; and the other names are None
The code is NGOENV;; the name is UNOG:_NGO_DATABASE_; and the other names are None
The code is NGO;; the name is UNREPRESENTED_NATIONS_AND_PEOPLES_ORGANISATION_; and the other names are None
The code is NGO;; the name is URBAN_AGRICULTURE_NETWORK_; and the other names are None
The code is NGOAGR;; the name is VELLORE_CHRISTIAN_MEDICAL_COLLEGE_BOARD_; and the other names are None
The code is NGOINDCHRHLH;; the name is VITAL_VOICES_; and the other names are None
The code is NGO;; the name is VOICES_OF_THE_NEXT_GENERATION_; and the other names are None
The code is NGORELEDU;; the name is VOLUNTEERS_IN_TECHNICAL_ASSISTANCE_; and the other names are None
The code is NGOUSAMED;; the name is V_H_DALMIYA_; and the other names are None
The code is NGOHINRAD;; the name is WARIPNET_; and the other names are None
The code is NGOWAFREF;; the name is WAR_CHILD_CANADA_; and the other names are None
The code is NGOCAN;; the name is WAR_CHILD_NETHERLANDS_; and the other names are None
The code is NGONLD;; the name is WAR_CHILD_UK_; and the other names are None
The code is NGOGBR;; the name is WAR_RESISTERS_INTERNATIONAL_; and the other names are None
The code is NGO;; the name is WASHINGTON_BASED_FREEDOM_HOUSE_; and the other names are None
The code is NGOHRI; the name is WASHINGTON_DC_PRINCIPLES_FOR_FREE_ACCESS_TO_SCIENCE_; and the other names are None
The code is NGOIDNTMP;; the name is WATER_SUPPLY_AND_SANITATION_COLLABORATIVE_COUNCIL_; and the other names are None
The code is NGOENV;; the name is WILDLIFE_AND_ENVIRONMENT_SOCIETY_OF_SOUTH_AFRICA_; and the other names are None
The code is NGOZAFENV;; the name is WILDLIFE_TRUST_; and the other names are None
The code is NGOENV;; the name is WOMANKIND_WORLDWIDE_; and the other names are None
The code is NGO;; the name is WOMEN'S_ACTION_FOR_NEW_DIRECTIONS_; and the other names are None
The code is NGOUSA;; the name is WOMEN'S_INTERNATIONAL_COALITION_FOR_ECONOMIC_JUSTICE_; and the other names are None
The code is NGO;; the name is WOMEN'S_LEARNING_PARTNERSHIP_; and the other names are None
The code is NGO;; the name is WOMEN'S_WORLD_SUMMIT_FOUNDATION_; and the other names are None
The code is NGODEV;; the name is WOMEN,_LAW,_AND_DEVELOPMENT_INTERNATIONAL_; and the other names are None
The code is NGODEV;; the name is WOMENACTION_; and the other names are None
The code is NGOMED;; the name is WOMEN_FOR_WOMEN_INTERNATIONAL_; and the other names are None
The code is NGODEV;; the name is WOMEN_IN_LAW_AND_DEVELOPMENT_IN_AFRICA_; and the other names are None
The code is NGOAFRDEV;; the name is WOMEN_IN_SECURITY,_CONFLICT_MANAGEMENT_AND_PEACE_; and the other names are None
The code is NGOSAS;; the name is WORLDWIDE_FUND_FOR_NATURE_; and the other names are None
The code is NGOENV; the name is WORLD_ASSOCIATION_FOR_CHILDREN_AND_PARENTS_; and the other names are None
The code is NGO;; the name is WORLD_ASSOCIATION_FOR_THE_SCHOOL_AS_AN_INSTRUMENT_OF_PEACE_; and the other names are None
The code is NGOHRI;; the name is WORLD_BUSINESS_COUNCIL_FOR_SUSTAINABLE_DEVELOPMENT_; and the other names are None
The code is NGOENV;; the name is WORLD_COMMISSION_ON_DAMS_; and the other names are None
The code is NGOENV;; the name is WORLD_CONFERENCE_OF_RELIGIONS_FOR_PEACE_; and the other names are None
The code is NGOREL;; the name is WORLD_CONSERVATION_UNION_; and the other names are None
The code is NGOENV;; the name is WORLD_ECONOMIC_FORUM_; and the other names are None
The code is NGOBUSWEF;; the name is WORLD_FEDERATION_FOR_MENTAL_HEALTH_; and the other names are None
The code is NGOHLH;; the name is WORLD_FEDERATION_OF_DEMOCRATIC_YOUTH_; and the other names are None
The code is NGO;; the name is WORLD_FEDERATION_OF_TRADE_UNIONS_; and the other names are None
The code is NGOLAB;; the name is WORLD_FEDERATION_OF_UKRANIAN_WOMEN'S_ORGANIZATIONS_; and the other names are None
The code is NGOUKR;; the name is WORLD_FEDERATION_OF_UNITED_NATIONS_ASSOCIATIONS_; and the other names are None
The code is NGO;; the name is WORLD_INFORMATION_TRANSFER_; and the other names are None
The code is NGOENV;; the name is WORLD_LEARNING_ARMENIA_; and the other names are None
The code is NGOARM;; the name is WORLD_LIBRARY_PARTNERSHIP_; and the other names are None
The code is NGOEDU;; the name is WORLD_MARCH_OF_WOMEN_; and the other names are None
The code is NGO;; the name is WORLD_NEIGHBORS_; and the other names are None
The code is NGODEV;; the name is WORLD_ORGANIZATION_AGAINST_TORTURE_; and the other names are None
The code is NGOHRI;; the name is WORLD_ORGANIZATION_FOR_HUMAN_RIGHTS_USA_; and the other names are None
The code is NGOUSAHRI;; the name is WORLD_PEACE_PRAYER_SOCIETY_; and the other names are None
The code is NGOREL;; the name is WORLD_POPULATION_FOUNDATION_; and the other names are None
The code is NGONLDHLH;; the name is WORLD_RAINFOREST_MOVEMENT_; and the other names are None
The code is NGOENV;; the name is WORLD_RESOURCES_INSTITUTE_; and the other names are None
The code is NGOENV;; the name is WORLD_UIGHUR CONGRESS_; and the other names are None
The code is NGOCHNUIGHRI;; the name is WORLD_UIGUR CONGRESS_; and the other names are None
The code is NGOCHNUIGHRI;; the name is WORLD_UYGHUR CONGRESS_; and the other names are None
The code is NGOCHNUIGHRI;; the name is WORLD_UYGHUR_YOUTHS_LEAGUE_; and the other names are None
The code is NGOCHNUIGHRI;; the name is WORLD_UYGUR CONGRESS_; and the other names are None
The code is NGOCHNUIGHRI;; the name is WORLD_VISION_; and the other names are None
The code is NGOCHRDEV;; the name is WORLD_WATER_COUNCIL_; and the other names are None
The code is NGOENV;; the name is WORLD_WIDE_FUND_FOR_NATURE_; and the other names are None
The code is NGOENV;; the name is WORLD_WILDLIFE_FUND_; and the other names are None
The code is NGOENV;; the name is WORLD_YOUNG_WOMEN'S_CHRISTIAN_ASSOCIATION_; and the other names are None
The code is NGOCHR;; the name is WORLD_YOUNG_WOMEN'S_CHRISTIAN_ORGANIZATION_; and the other names are None
The code is NGOCHR;; the name is WUYC_; and the other names are None
The code is NGOCHNUIGHRI;; the name is WWF_; and the other names are None
The code is NGOENV;; the name is WWF_INDIA_; and the other names are None
The code is NGOPER;; the name is YEARBOOK_OF_INTERNATIONAL_COOPERATION_ON_ENVIRONMENT_AND_DEVELOPMENT_; and the other names are None
The code is NGOENV;; the name is YMCA_; and the other names are None
The code is NGOCHR;; the name is YONGE_NAWE_ENVIRONMENTAL_ACTION_GROUP_; and the other names are None
The code is NGOSWZENV;; the name is YOUNG_MEN'S_CHRISTIAN_ASSOCIATION_; and the other names are None
The code is NGOCHR;; the name is YOUTH_ADVOCATE_PROGRAM_INTERNATIONAL_; and the other names are None
The code is NGO;; the name is YWCA_; and the other names are None
The code is NGOCHR;; the name is ZIMBABWE_HUMAN_RIGHTS_NGO_FORUM_; and the other names are None
The code is NGOZWEHRI;; the name is ZONTA_INTERNATIONAL_; and the other names are None
The code is NGODEV;; the name is AAPSO_; and the other names are None
The code is NGOHRI; the name is ABANTU_FOR_DEVELOPMENT_; and the other names are None
The code is NGOEURDEV; the name is ACADEMIC_COUNCIL_ON_THE_UNITED_NATIONS_SYSTEM_; and the other names are None
The code is NGO; the name is ACADEMY_FOR_FUTURE_SCIENCE_; and the other names are None
The code is NGOUSA; the name is ACADEMY_OF_BREASTFEEDING_MEDICINE_; and the other names are None
The code is NGOUSAHLH; the name is ACADEMY_OF_CRIMINAL_JUSTICE_SCIENCE_; and the other names are None
The code is NGOUSAJUD; the name is ACCION_CONTRA_EL_HAMBRE_; and the other names are None
The code is NGOHLH; the name is ACDF_; and the other names are None
The code is NGOAFRDEV; the name is ACEEEO_; and the other names are None
The code is NGOEEUDEV; the name is ACHARYA_G_KISHORE_; and the other names are None
The code is NGOHIN; the name is ACJS_; and the other names are None
The code is NGOUSAJUD; the name is ACRONYM_INSTITUTE_FOR_DISARMAMENT_DIPLOMACY_; and the other names are None
The code is NGO; the name is ACT_ALLIANCE_; and the other names are None
The code is NGOCHR; the name is ACTION_CONTRE_LA_FAIM_; and the other names are None
The code is NGOHLH; the name is ACTION_INTERNATIONALE_CONTRE_LA_FAIM_; and the other names are None
The code is NGO; the name is ACTION_MEDEOR_; and the other names are None
The code is NGODEUHLH; the name is ACUNS_; and the other names are None
The code is NGO; the name is ADVENTIST_DEVELOPMENT_AND_RELIEF_AGENCY_; and the other names are None
The code is NGOCHRPRODEV;; the name is AEGEE_; and the other names are None
The code is NGOEUREDU; the name is AEGIS_TRUST_; and the other names are None
The code is NGOGBRHRI; the name is AFGHANAID_; and the other names are None
The code is NGOAFGDEV; the name is AFRICA_AMERICA_INSTITUTE_; and the other names are None
The code is NGOUSAEDU; the name is AFRICA_HUMANITARIAN_ACTION_; and the other names are None
The code is NGOAFRHLH; the name is AFRICA_MUSLIM_AGENCY_; and the other names are None
The code is NGOKWT; the name is AFRICA_MUSLIMS_AGENCY_; and the other names are None
The code is NGOKWT; the name is AFRICAN_ACTION_ON_AIDS_; and the other names are None
The code is NGOAFRHLH; the name is AFRICAN_BRAILLE_CENTER_; and the other names are None
The code is NGOAFR; the name is AFRICAN_CITIZENS_DEVELOPMENT_FOUNDATION_; and the other names are None
The code is NGOAFRDEV;; the name is AFRO_ASIAN_PEOPLES_SOLIDARITY_ORGANIZATION_; and the other names are None
The code is NGOHRI; the name is AFRO_ASIAN_PEOPLE'S_SOLIDARITY_ORGANIZATION_; and the other names are None
The code is NGOHRI; the name is AFRO_ASIAN_PEOPLES'_SOLIDARITY_ORGANIZATION_; and the other names are None
The code is NGOHRI; the name is AFUSA_INC_; and the other names are None
The code is NGOUSADEV; the name is AFXB_; and the other names are None
The code is NGODEV; the name is AGA_KHAN_FOUNDATION_; and the other names are None
The code is NGOMOSSHI; the name is AGENCE_D'AIDE_A_LA_COOPERATION_TECHNIQUE_ET_AU_DEVELOPPEMENT_; and the other names are None
The code is NGODEV; the name is AGENCE_INTERNATIONALE_POUR_LE_DEVELOPPEMENT_; and the other names are None
The code is NGOEURDEV; the name is AGENCY_FOR_TECHNICAL_COOPERATION_AND_DEVELOPMENT_; and the other names are None
The code is NGOCHRDEVAGR; the name is AICF_; and the other names are None
The code is NGO; the name is AIDE_MEDICALE_INTERNATIONALE_; and the other names are None
The code is NGOFRAHLH; the name is AIESEC_; and the other names are None
The code is NGOEDU; the name is AIHRA_; and the other names are None
The code is NGOINDHRI; the name is AIPET_INTERNACIONAL_; and the other names are None
The code is NGOLAMMED; the name is AIPPI_; and the other names are None
The code is NGOBUS; the name is AIR_SERV_INTERNATIONAL_; and the other names are None
The code is NGOUSA; the name is AIRLINE_AMBASSADORS_; and the other names are None
The code is NGOUSADEV; the name is AJJDC_; and the other names are None
The code is NGOUSAJEW; the name is AKTION_DEUTSCHLAND_HILFT_; and the other names are None
The code is NGODEU; the name is ALBERT_SCHWEITZER_FELLOWSHIP_; and the other names are None
The code is NGOUSAEDU; the name is ALBERT_SCHWEITZER_INSTITUTE_FOR_THE_HUMANITIES_; and the other names are None
The code is NGOUSAEDU; the name is ALDHU_; and the other names are None
The code is NGOLAMHRI; the name is ALFABETIZACAO_SOLIDARIA_; and the other names are None
The code is NGOBRAEDU; the name is ALFASOL_; and the other names are None
The code is NGOBRAEDU; the name is ALL_INDIA_HUMAN_RIGHTS_ASSOCIATION_; and the other names are None
The code is NGOINDHRI; the name is ALLIANCE_INTERNATIONALE_DE_TOURISME_; and the other names are None
The code is NGOBUS; the name is ALLIANCE_TOWARDS_HARNESSING_GLOBAL_OPPORTUNITIES_; and the other names are None
The code is NGOUSA; the name is ALPHA_KAPPA_ALPHA_; and the other names are None
The code is NGOUSAEDU; the name is ALTRUSA_; and the other names are None
The code is NGOUSA; the name is AMERICAN_COMMITTEE_ON_AFRICA_; and the other names are None
The code is NGOUSAHRI; the name is AMERICAN_COUNCIL_OF_YOUNG_POLITICAL_LEADERS_; and the other names are None
The code is NGOUSAEDU; the name is AMERICAN_FOREIGN_LAW_ASSOCIATION_; and the other names are None
The code is NGOUSAJUD; the name is AMERICAN_GEOGRAPHICAL_SOCIETY_; and the other names are None
The code is NGOUSA; the name is AMERICAN_JEWISH_JOINT_DISTRIBUTION_COMMITTEE_; and the other names are None
The code is NGOUSAJEW; the name is AMERICAN_JEWISH_WORLD_SERVICE_; and the other names are None
The code is NGOUSAJEWDEV; the name is AMERICAN_SOCIETY_OF_INTERNATIONAL_LAW_; and the other names are None
The code is NGOUSAJUD; the name is AMERICAN_SOCIETY_OF_MEDIA_PHOTOGRAPHERS_; and the other names are None
The code is NGOUSAMED; the name is AMERICAN_WATER_WORKS_ASSOCIATION_; and the other names are None
The code is NGOUSADEV; the name is AMERICARES_; and the other names are None
The code is NGOUSAHLH; the name is AMIT_; and the other names are None
The code is NGOUSAJEW; the name is AMREF_; and the other names are None
The code is NGOAFRHLH; the name is AMURT_; and the other names are None
The code is NGODEV; the name is ANANDA_MARGA_UNIVERSAL_RELIEF_TEAM_; and the other names are None
The code is NGOHINDEN211DEV; the name is ANDHRA_PRADESH_CIVIL_LIBERTIES_; and the other names are None
The code is NGOHRI; the name is ANTI_DEFAMATION_LEAGUE_; and the other names are None
The code is NGOUSAJEW; the name is ANUVIBHA_; and the other names are None
The code is NGOINDHIN; the name is ANUVRAT_GLOBAL_ORGANIZATION_; and the other names are None
The code is NGOINDHIN; the name is APIMONDIA_; and the other names are None
The code is NGOAGR; the name is ARAB_CENTER_FOR_STRATEGIC_STUDIES_; and the other names are None
The code is NGOARB; the name is ARAB_INSTITUTE_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOARBHRI; the name is ARAB_INTERNATIONAL_ASSOCIATION_FOR_TOURISM_AND_AUTOMOBILE_CLUBS_; and the other names are None
The code is NGOARBBUS; the name is ARAB_NGO_NETWORK_FOR_DEVELOPMENT_; and the other names are None
The code is NGOARBDEV; the name is ARAB_SOCIETY_FOR_CERTIFIED_ACCOUNTANTS_; and the other names are None
The code is NGOARBBUS; the name is ARAB_SOCIETY_FOR_INTELLECTUAL_PROPERTY_; and the other names are None
The code is NGOARBBUS; the name is ARAB_SOCIETY_OF_CERTIFIED_ACCOUNTANTS_; and the other names are None
The code is NGOARBBUS; the name is ARBEITER_SAMARITER_BUND_; and the other names are None
The code is NGODEU; the name is ARCHITECTS_DESIGNERS_PLANNERS_FOR_SOCIAL_RESPONSIBILITY_; and the other names are None
The code is NGOUSA; the name is AREG_SCIENTIFIC_CULTURAL_YOUTH_ASSOCIATION_; and the other names are None
The code is NGOARM; the name is ARIYANAYAGAM_CHANDRA_NEHRU_; and the other names are None
The code is NGOTAM; the name is ARMENIA_FUND_USA_; and the other names are None
The code is NGOUSADEV; the name is ARMENIAN_ASSEMBLY_OF_AMERICA_; and the other names are None
The code is NGOUSA; the name is ARMENIAN_GENERAL_BENEVOLENT_UNION_; and the other names are None
The code is NGO; the name is ARMENIAN_RELIEF_SOCIETY_; and the other names are None
The code is NGO; the name is ART_FOR_THE_WORLD_; and the other names are None
The code is NGOMED; the name is ASIAN_DISASTER_PREPAREDNESS CENTER_; and the other names are None
The code is NGOTHA; the name is ASIAN_PACIFIC_YOUTH_FORUM_; and the other names are None
The code is NGOASA; the name is ASIAN_YOUTH_COUNCIL_; and the other names are None
The code is NGOASAHRI; the name is ASOCIACION_IBEROAMERICANA_DE_PERIODISTAS_ESPECIALIZADOS_Y_TECNICOS_; and the other names are None
The code is NGOLAMMED; the name is ASOCIACION_LATINOAMERICANA_DE_INSTITUCIONES_FINANCIERAS_DE_DESARROLLO_; and the other names are None
The code is NGOLAMBUS; the name is ASOCIACION_LATINOAMERICANA_PARA_LOS_DERECHOS_HUMANOS_; and the other names are None
The code is NGOLAMHRI; the name is ASSISTENCIA_MEDICA_INTERNACIONAL_; and the other names are None
The code is NGOPRT; the name is ASSOCIATION_DES_ETATS_GENERAUX_DES_ETUDIANTS_DE_L'EUROPE_; and the other names are None
The code is NGOEUREDU; the name is ASSOCIATION_DES_ETUDES_INTERNATIONALES_; and the other names are None
The code is NGOEDU; the name is ASSOCIATION_FOR_AID_AND_RELIEF_; and the other names are None
The code is NGOJPNHLH; the name is ASSOCIATION_FOR_CHILDHOOD_EDUCATION_; and the other names are None
The code is NGOEDU; the name is ASSOCIATION_FOR_WOMEN_IN_PSYCHOLOGY_; and the other names are None
The code is NGOUSAEDU; the name is ASSOCIATION_FOR_WOMEN'S_RIGHTS_IN_DEVELOPMENT_; and the other names are None
The code is NGOCANHRI; the name is ASSOCIATION_FRANCOIS_XAVIER_BAGNOUD_; and the other names are None
The code is NGODEV; the name is ASSOCIATION_FRANCOPHONE_D'AMITIE_ET_DE_LIAISON_; and the other names are None
The code is NGO; the name is ASSOCIATION_INTERNATIONALE_DE_LA_SAVONNERIE,_DE_LA_DETERGENCE_ET_DES_PRODUITS_D'ENTRETIEN_; and the other names are None
The code is NGOEURBUS; the name is ASSOCIATION_INTERNATIONALE_DES_JEUNES_AVOCAT_; and the other names are None
The code is NGOJUD; the name is ASSOCIATION_INTERNATIONALE_POUR_LA_DEFENSE_DE_LA_LIBERTE_RELIGIEUSE_; and the other names are None
The code is NGOEURHRI; the name is ASSOCIATION_INTERNATIONALE_POUR_LA_PROTECTION_DE_LA_PROPRIETE_INTELLECTUELLE_; and the other names are None
The code is NGOBUS; the name is ASSOCIATION_MONDIALE_POUR_L'ECOLE_INSTRUMENT_DE_PAIX_; and the other names are None
The code is NGO; the name is ASSOCIATION_MONTESSORI_INTERNATIONALE_; and the other names are None
The code is NGOEDU; the name is ASSOCIATION_OF_CENTRAL_AND_EASTERN_EUROPEAN_ELECTION_OFFICIALS_; and the other names are None
The code is NGOEEUDEV; the name is ASSOCIATION_OF_FORMER_INTERNATIONAL_CIVIL_SERVANTS_; and the other names are None
The code is NGO; the name is ASSOCIATION_OF_INTERNATIONAL_EDUCATORS_; and the other names are None
The code is NGOUSAEDU; the name is ASSOCIATION_OF_JUNIOR_LEAGUES_; and the other names are None
The code is NGONMR; the name is ASSOCIATION_OF_MEDICAL_DOCTORS_OF_ASIA_; and the other names are None
The code is NGOASAHLH; the name is ASSOCIATION_OF_NETWORK_FOR_COMMUNITY_EMPOWERMENT_; and the other names are None
The code is NGOPAKHRI; the name is ASSOCIATION_TUNISIENNE_DES_MERES_; and the other names are None
The code is NGOTUN; the name is ASSOCIAZIONE_CULTURALE_DEI_TRIANGOLI_E_DELLA_BUONA_VOLONTA'_MONDIALE_; and the other names are None
The code is NGOITAMED; the name is ASSOCIAZIONE_VOLONTARI_PER_IL_SERVIZIO_INTERNATIONALE_; and the other names are None
The code is NGOITA; the name is ATHGO_; and the other names are None
The code is NGOUSA; the name is AUSTCARE_; and the other names are None
The code is NGOAUSDEV; the name is AUTISM_SPEAKS_; and the other names are None
The code is NGOHLH; the name is AVIATIONS_SANS_FRONTIERES_; and the other names are None
The code is NGOEUR; the name is AVSI_; and the other names are None
The code is NGOCHRCTHDEV; the name is BALM_IN_GILEAD_INC_; and the other names are None
The code is NGOUSACHRPROHLH; the name is BAPTIST_WORLD_AID_; and the other names are None
The code is NGOCHRPRODEV; the name is BARKA_FOUNDATION_; and the other names are None
The code is NGOAFRDEV; the name is BATEY_RELIEF_ALLIANCE_; and the other names are None
The code is NGOUSAHLH; the name is BPW_INTERNATIONAL_; and the other names are None
The code is NGOBUS; the name is BPW_USA_; and the other names are None
The code is NGOUSABUS; the name is BRAC_; and the other names are None
The code is NGOBGDDEV; the name is BUILDING_AND_SOCIAL_HOUSING_FOUNDATION_; and the other names are None
The code is NGOGBRDEV; the name is BUSINESS_AND_PROFESSIONAL_WOMEN_USA_; and the other names are None
The code is NGOUSABUS; the name is BUSINESS_COUNCIL_FOR_INTERNATIONAL_UNDERSTANDING_; and the other names are None
The code is NGOUSA; the name is C_SAFE_; and the other names are None
The code is NGOSAF; the name is CADEF_; and the other names are None
The code is NGOCMRDEV; the name is CAFOD_; and the other names are None
The code is NGOGBRCHRCTHDEV; the name is CAMPAIGN_FOR_THE_EARTH_FOUNDATION_; and the other names are None
The code is NGOENV; the name is CANADIAN_LUTHERAN_WORLD_RELIEF_; and the other names are None
The code is NGOCANCHRPRODEV; the name is CAPAJ_; and the other names are None
The code is NGOLAMHRI; the name is CATHOLIC_AGENCY_FOR_OVERSEAS_DEVELOPMENT_; and the other names are None
The code is NGOGBRCHRCTHDEV; the name is CATHOLIC_CENTER_OF_CONCERN_; and the other names are None
The code is NGOCHR; the name is CATHOLIC_INTERNATIONAL_EDUCATION_OFFICE_; and the other names are None
The code is NGOCHRCTHEDU; the name is CATHOLIC_MEDICAL_MISSION_BOARD_; and the other names are None
The code is NGOUSACHRCTHHLH; the name is CBM_INTERNATIONAL_; and the other names are None
The code is NGOCHRHLH; the name is CCOMPOSA_; and the other names are None
The code is NGOSAS; the name is CEAIE_; and the other names are None
The code is NGOCHNEDU; the name is CEDPA_; and the other names are None
The code is NGOUSA; the name is CEFIC_; and the other names are None
The code is NGOEURBUS; the name is CENTER_FOR_DEMOCRACY_AND_RECONCILIATION_IN_SOUTHEAST_EUROPE_; and the other names are None
The code is NGOEEU; the name is CENTER_FOR_DEVELOPMENT_AND_POPULATION_ACTIVITIES_; and the other names are None
The code is NGOUSA; the name is CENTER_FOR_HUMANITARIAN_PSYCHOLOGY_; and the other names are None
The code is NGOCHEHLH; the name is CENTER_FOR_INTERNATIONAL_HEALTH_AND_COOPERATION_; and the other names are None
The code is NGO; the name is CENTRE_DE_RECHERCHES_ET_DE_PROMOTION_POUR_LA_SAUVEGARDE_DES_SITES_ET_MONUMENTS_HISTORIQUES_EN_AFRIQUE_; and the other names are None
The code is NGOAFREDU; the name is CENTRE_EUROPE_TIERS_MONDE_; and the other names are None
The code is NGODEV; the name is CENTRE_FOR_INTERNATIONAL_PEACEBUILDING_; and the other names are None
The code is NGO; the name is CENTRE_FOR_PEACE_INITIATIVES_IN_AFRICA_; and the other names are None
The code is NGOZWE; the name is CENTRO_DE_INVESTIGACION_PARA_LA_PAZ_; and the other names are None
The code is NGOITAEDU; the name is CESVI_; and the other names are None
The code is NGOITADEV; the name is CFMSA_; and the other names are None
The code is NGOUSACHRCTH; the name is CHERNOBYL_CHILDREN'S_PROJECT_; and the other names are None
The code is NGOEEUHLH; the name is CHILD_FOUNDATION_; and the other names are None
The code is NGOEDU; the name is CHILDFUND_; and the other names are None
The code is NGO; the name is CHILDREN_INTERNATIONAL_; and the other names are None
The code is NGODEV; the name is CHILDREN'S_FUND_FOR_SOUTHERN_AFRICA_; and the other names are None
The code is NGOSAF; the name is CHINA_EDUCATION_ASSOCIATION_FOR_INTERNATIONAL_EXCHANGE_; and the other names are None
The code is NGOCHNEDU; the name is CHINA_NGO_NETWORK_FOR_INTERNATIONAL_EXCHANGES_; and the other names are None
The code is NGOCHN; the name is CHINA_YOUTH_DEVELOPMENT_FOUNDATION_; and the other names are None
The code is NGOCHNEDU; the name is CHRISTIAN_CHILDREN'S_FUND_; and the other names are None
The code is NGO; the name is CHRISTIAN_MISSION_FOR_THE_UNITED_NATIONS_COMMUNITY_; and the other names are None
The code is NGOCHR; the name is CHRISTIAN_RELIEF_AND_DEVELOPMENT_ASSOCATION_; and the other names are None
The code is NGOETHCHRDEV; the name is CHRISTIANS_ASSOCIATED_FOR_RELATIONSHIPS_WITH_EASTERN_EUROPE_; and the other names are None
The code is NGOEEUCHR; the name is CHURCH_WORLD_SERVICE_; and the other names are None
The code is NGOUSACHR; the name is CIDSE_; and the other names are None
The code is NGOCHRCTHDEV; the name is CITIZENS_FOUNDATION,_THE_; and the other names are None
The code is NGOPAKEDU; the name is CLEAN_UP_THE_WORLD_; and the other names are None
The code is NGOAUSENV; the name is CLEAR_PATH_INTERNATIONAL_; and the other names are None
The code is NGOHLH; the name is CMMB_; and the other names are None
The code is NGOUSACHRCTHHLH; the name is CNIE_; and the other names are None
The code is NGOCHN; the name is COALITION_AGAINST_TRAFFICKING_IN_WOMEN_; and the other names are None
The code is NGO; the name is COALITION_FOR_PEACE_ACTION_; and the other names are None
The code is NGOUSA; the name is CODEHUCA_; and the other names are None
The code is NGOLAMHRI; the name is COLAC_; and the other names are None
The code is NGOLAMBUS; the name is COMISION_JURIDICA_PARA_EL_AUTODESARROLLO_DE_LOS_PUEBLOS_ORIGINARIOS_ANDINOS_; and the other names are None
The code is NGOLAMHRI; the name is COMITATO_COLLABORAZIONE_MEDICA_; and the other names are None
The code is NGOITAHLH; the name is COMITE_EUROPEEN_DU_THE_; and the other names are None
The code is NGOEURAGR; the name is COMITE_INTERNACIONAL_DE_LA_BANDERA_DE_LA_PAZ_; and the other names are None
The code is NGO; the name is COMITE_NATIONAL_D'ACTION_POUR_LES_DROITS_DE_L'ENFANT_ET_DE_LA_FEMME_; and the other names are None
The code is NGOCMRDEV; the name is COMMISSION_FOR_THE_DEFENSE_OF_HUMAN_RIGHTS_IN_CENTRAL_AMERICA_; and the other names are None
The code is NGOLAMHRI; the name is COMMISSION_INTERNATIONALE_DE_L'ECLAIRAGE_; and the other names are None
The code is NGOEDU; the name is COMMONWEALTH_BROADCASTING_ASSOCIATION_; and the other names are None
The code is NGOMED; the name is COMPANY_OF_THE_DAUGHTERS_OF_CHARITY_OF_ST._VINCENT_DE_PAUL_; and the other names are None
The code is NGOCHRCTHDEV; the name is COMPUTERAID_; and the other names are None
The code is NGODEV; the name is CONFEDERACION_LATINOAMERICANA_DE_COOPERATIVAS_DE_AHORRO_Y_CREDITO_; and the other names are None
The code is NGOLAMBUS; the name is CONFERENCE_OF_NON_GOVERNMENTAL_ORGANIZATIONS_IN_CONSULTATIVE_RELATIONSHIP_WITH_THE_UNITED_NATIONS_; and the other names are None
The code is NGO; the name is CONGRESS_OF_RACIAL_EQUALITY_; and the other names are None
The code is NGOUSA; the name is CONSEJO_INDIO_DE_SUDAMERICA_; and the other names are None
The code is NGOSAMHRI; the name is CONSORTIUM_FOR_THE_SOUTHERN_AFRICA_FOOD_SECURITY_EMERGENCY_; and the other names are None
The code is NGOSAF; the name is COOPERATION_INTERNATIONALE_POUR_LE_DEVELOPMENT_ET_LA_SOLIDARITE_; and the other names are None
The code is NGOCHRCTHDEV; the name is COOPERAZIONE_INTERNATIONALE_; and the other names are None
The code is NGOITADEV; the name is COOPI_; and the other names are None
The code is NGOITADEV; the name is COORDINATING_BOARD_OF_JEWISH_ORGANIZATIONS_; and the other names are None
The code is NGOJEW; the name is COORDINATION_COMMITTEE_OF_MAOIST_PARTIES_AND_ORGANISATIONS_IN_SOUTH_ASIA_; and the other names are None
The code is NGOSAS;; the name is CORDAID_; and the other names are None
The code is NGONLD; the name is CORNELIO_SOMMARUGA_; and the other names are None
The code is NGOHLHIRC; the name is COUSTEAU_SOCIETY_; and the other names are None
The code is NGOENV; the name is CROATIAN_CLUB_FOR_INTERNATIONAL_COOPERATION_; and the other names are None
The code is NGOHRV; the name is CROIX_ROUGE_; and the other names are None
The code is NGOHLHIRC; the name is CRUZ_ROJA_; and the other names are None
The code is NGOHLHIRC; the name is CULTURAL_SURVIVAL,_INC.; and the other names are None
The code is NGOLAMHRI;; the name is CYDF_; and the other names are None
The code is NGOCHNEDU; the name is DANCHURCHAID_; and the other names are None
The code is NGODNKCHRPRO; the name is DANIEL_PEARL_FOUNDATION_; and the other names are None
The code is NGOUSAMED; the name is DANISH_AFGHAN_COMMITTEE_; and the other names are None
The code is NGODNKHLH; the name is DANISH_REFUGEE_COUNCIL_; and the other names are None
The code is NGODNKREF; the name is DAVID_MCANTONY_GIBSON_FOUNDATION_; and the other names are None
The code is NGOCANHLH; the name is DELTA_KAPPA_GAMMA_; and the other names are None
The code is NGOUSAEDU; the name is DELTA_SIGMA_THETA_; and the other names are None
The code is NGOUSAEDU; the name is DEMOCRACY_COALITION_PROJECT_; and the other names are None
The code is NGODEV; the name is DEUTSCHE_WELTHUNGERHILFE_; and the other names are None
The code is NGODEUAGR; the name is DEVELOPING_COUNTRIES_FARM_RADIO_NETWORK_; and the other names are None
The code is NGOCANMEDAGR; the name is DEVELOPMENT_ALTERNATIVES_WITH_WOMEN_FOR_A_NEW_ERA_; and the other names are None
The code is NGODEV; the name is DEVELOPMENT_STUDIES_ASSOCIATION_; and the other names are None
The code is NGOGBREDUDEV; the name is DEVNET_ASSOCIATION_; and the other names are None
The code is NGOROMBUS; the name is DHAKA_AHSANIA_MISSION_; and the other names are None
The code is NGOSASMOSDEV; the name is DIAKONIE_KATASTROPHENHILFE_; and the other names are None
The code is NGODEU; the name is DISASTER_PSYCHIATRY_OUTREACH_; and the other names are None
The code is NGOUSAHLH; the name is DISASTERS_EMERGENCY_COMMITTEE_; and the other names are None
The code is NGOGBR; the name is DOCTORS_OF_THE_WORLD_USA_; and the other names are None
The code is NGOUSAHLH; the name is DORCAS_AID_; and the other names are None
The code is NGOCHRDEV; the name is DROITS_A_L'ENERGIE_SOS_FUTURE_; and the other names are None
The code is NGOFRAENV; the name is DVV_INTERNATIONAL_; and the other names are None
The code is NGODEUEDU; the name is EARTH_CHILD_INSTITUTE_; and the other names are None
The code is NGO; the name is EARTHJUSTICE_; and the other names are None
The code is NGOUSAENV; the name is EARTHTRUST_; and the other names are None
The code is NGOENV; the name is EASTERN_REGIONAL_ORGANIZATION_FOR_PUBLIC_ADMINISTRATION_; and the other names are None
The code is NGOASADEV; the name is ECCP_; and the other names are None
The code is NGOEUR; the name is ECONEWS_AFRICA_; and the other names are None
The code is NGOAFRENV; the name is ECONOMISTS_FOR_PEACE_AND_SECURITY_; and the other names are None
The code is NGO; the name is ECOWAS_YOUTH_AND_CITIZENS_LEAGUE_; and the other names are None
The code is NGOWAFBUSWAS; the name is ECPAT_; and the other names are None
The code is NGOHRI; the name is EDUCATION_DEVELOPMENT_CENTER_; and the other names are None
The code is NGOUSAEDU; the name is ELIZABETH_HAUB_FOUNDATION_; and the other names are None
The code is NGOENV; the name is EMERGENCY_LIFE_SUPPORT_FOR_CIVILIAN_WAR_VICTIMS_; and the other names are None
The code is NGOITAHLH; the name is ENGLISH_INTERNATIONAL_ASSOCIATION_OF_LUND_; and the other names are None
The code is NGOSWELAB; the name is ENVIRONMENTAL_DEVELOPMENT_ACTION_IN_THE_THIRD_WORLD_; and the other names are None
The code is NGOSENDEV; the name is ENVIRONMENTAL_LAW_INSTITUTE_; and the other names are None
The code is NGOUSAENV; the name is EQUIPE_COUSTEAU_; and the other names are None
The code is NGOFRAENV; the name is ESTONIAN_AMERICAN_FUND_FOR_ECONOMIC_EDUCATION_; and the other names are None
The code is NGOESTDEV;; the name is EUROPEAN_ACADEMY_OF_ARTS,_SCIENCES_AND_HUMANITIES_; and the other names are None
The code is NGOEUREDU; the name is EUROPEAN_CENTRE_FOR_CONFLICT_PREVENTION_; and the other names are None
The code is NGOEUR; the name is EUROPEAN_CHEMICAL_INDUSTRY_COUNCIL_; and the other names are None
The code is NGOEURBUS; the name is EUROPEAN_STUDENTS_FORUM_; and the other names are None
The code is NGOEUREDU; the name is EUROPEAN_WIND_ENERGY_ASSOCIATION_; and the other names are None
The code is NGOEURBUSENV; the name is EVERYCHILD_; and the other names are None
The code is NGODEV; the name is EXPLORERS_CLUB_; and the other names are None
The code is NGOUSAEDU; the name is FAWCO_; and the other names are None
The code is NGOUSA; the name is FDI_WORLD_DENTAL_FEDERATION_; and the other names are None
The code is NGOHLH; the name is FEDERACION_DE_MUJERES_PROGRESISTAS_; and the other names are None
The code is NGOESPHRI; the name is FEDERATION_FOR_PEACE_AND_CONCILIATION_; and the other names are None
The code is NGORUS; the name is FEDERATION_INTERNATIONALE_DES_CORPS_ET_ASSOCIATIONS_CONSULAIRES_; and the other names are None
The code is NGO; the name is FEDERATION_INTERNATIONALE_DES_DROITS_DE_L'HOMME_; and the other names are None
The code is NGOHRI; the name is FEDERATION_INTERNATIONALE_DES_FEMMES_DES_CARRIERES_JURIDIQUES_; and the other names are None
The code is NGOJUDHRI; the name is FEDERATION_INTERNATIONALE_DES_ORGANISATIONS_DE_CORRESPONDANCE_ET_D'ECHANGES_SCOLAIRES_; and the other names are None
The code is NGOEDU; the name is FEDERATION_OF_ASSOCIATIONS_OF_FORMER_INTERNATIONAL_CIVIL_SERVANTS_; and the other names are None
The code is NGO; the name is FEDERATION_OF_EUROPEAN_TWINE_AND_ROPE_INDUSTRIES_; and the other names are None
The code is NGOEURBUS; the name is FEDERATION_OF_JEWISH_MEN'S_CLUBS_; and the other names are None
The code is NGONMRJEW; the name is FEDERATION_OF_WORLD_VOLUNTEER_FIREFIGHTERS_ASSOCIATIONS_; and the other names are None
The code is NGO; the name is FEMMES_AFRIQUE_SOLIDARITE_; and the other names are None
The code is NGOAFR; the name is FEREMA_; and the other names are None
The code is NGOHNDEDU; the name is FH_ASSOCIATION_; and the other names are None
The code is NGOCHRPRO; the name is FHEDA_; and the other names are None
The code is NGOPHLHLH; the name is FIABCI_; and the other names are None
The code is NGOBUS; the name is FIANAKAVIANA_SAMBRATRA_; and the other names are None
The code is NGOMDGHLH; the name is FIMITIC_; and the other names are None
The code is NGOEURHRI; the name is FINN_CHURCH_AID_; and the other names are None
The code is NGOFINCHR; the name is FINNCHURCHAID_; and the other names are None
The code is NGOFINCHR; the name is FIRST_WEEK_FOUNDATION_; and the other names are None
The code is NGONOR; the name is FONDATION_HIRONDELLE_; and the other names are None
The code is NGOMED; the name is FOOD_FOR_THE_HUNGRY_ASSOCIATION_; and the other names are None
The code is NGOCHRPRO; the name is FOOD_FOR_THE_HUNGRY_INTERNATIONAL_; and the other names are None
The code is NGOCHRPRO; the name is FORD_FOUNDATION_; and the other names are None
The code is NGOUSA; the name is FOREIGNAID_500_; and the other names are None
The code is NGODEV;; the name is FOREST_TREES_AND_PEOPLE_PROGRAM_; and the other names are None
The code is NGOENV;; the name is FORMERLY_UNITED_CHURCH_BOARD_FOR_WORLD_MINISTRIES_; and the other names are None
The code is NGOCHRPRO; the name is FORUM_FOR_AFRICAN_WOMEN_EDUCATIONALISTS_; and the other names are None
The code is NGOAFREDU; the name is FORUM_ON_EARLY_WARNING_AND_EARLY_RESPONSE_; and the other names are None
The code is NGO; the name is FOUNDATION_ECOLOGY_AND_LIFE_; and the other names are None
The code is NGOENV; the name is FOUNDATION_FOR_AMITY_AND_NATIONAL_SOLIDARITY_; and the other names are None
The code is NGOIND; the name is FOUNDATION_FOR_HEALTH_EDUCATION_AND_DRUG_AWARENESS_; and the other names are None
The code is NGOPHLHLH; the name is FOUNDATION_FOR_POST_CONFLICT_DEVELOPMENT_; and the other names are None
The code is NGOUSADEV; the name is FOUNDATION_FOR_SUBJECTIVE_EXPERIENCE_AND_RESEARCH_; and the other names are None
The code is NGODEUREL; the name is FOUNDATION_FOR_THE_RIGHTS_OF_THE_FAMILY_; and the other names are None
The code is NGOESP; the name is FRIENDSHIP_AMBASSADORS_FOUNDATION_; and the other names are None
The code is NGOMED; the name is FULBRIGHT_ASSOCIATION_; and the other names are None
The code is NGOUSAEDU; the name is FUNDACAO_DE_ASSISTENCIA_MEDICA_INTERNACIONAL_; and the other names are None
The code is NGOPRT; the name is FUNDACION_CULTURAL_BAUR_; and the other names are None
The code is NGODEV; the name is FUNDACION_GLOBAL_DEMOCRACIA_Y_DESARROLLO_; and the other names are None
The code is NGODOM; the name is FUNDACION_NUEVO_MILENIO_; and the other names are None
The code is NGOARG; the name is FUNDACION_PARA_LA_EDUCACION_RICARDO_ERNESTO_MADURO_ANDREU_; and the other names are None
The code is NGOHNDEDU; the name is FUNDACION_SALVEMOS_EL_AGUA_; and the other names are None
The code is NGOMEXENV; the name is FUNGLODE_; and the other names are None
The code is NGODOM; the name is FUSEN_HEISHI_NO_KAI_; and the other names are None
The code is NGOVNM; the name is GADDAFI_INTERNATIONAL_CHARITY_AND_DEVELOPMENT_FOUNDATION_; and the other names are None
The code is NGOLBY; the name is GENDER_WATCHERS_; and the other names are None
The code is NGO; the name is GENERAL_CONFEDERATION_OF_TRADE_UNIONS_; and the other names are None
The code is NGOCASLAB; the name is GIRLS_LEARN_INTERNATIONAL_; and the other names are None
The code is NGOUSAEDU; the name is GLOBAL_ACTION_ON_AGEING_; and the other names are None
The code is NGO; the name is GLOBAL_ACTION_ON_AGING_; and the other names are None
The code is NGO; the name is GLOBAL_ALLIANCE_FOR_PUBLIC_RELATIONS_AND_COMMUNICATION_MANAGEMENT_; and the other names are None
The code is NGOBUSMED; the name is GLOBAL_EDUCATION_MOTIVATORS_; and the other names are None
The code is NGOEDU; the name is GLOBAL_FAMILY_FOR_LOVE_AND_PEACE_; and the other names are None
The code is NGOTAO; the name is GLOBAL_FOUNDATION_FOR_DEMOCRACY_AND_DEVELOPMENT_; and the other names are None
The code is NGODOM; the name is GLOBAL_FUND_FOR_HIV_AIDS_; and the other names are None
The code is NGOHLH; the name is GLOBAL_HEALTH_ACTION_; and the other names are None
The code is NGOEURHLH; the name is GLOBAL_INFORMATION_NETWORK_; and the other names are None
The code is NGOAFRMED; the name is GLOBAL_KIDS,_INC_; and the other names are None
The code is NGOUSA; the name is GLOBAL_KIDS_INC_; and the other names are None
The code is NGOUSA; the name is GLOBAL_NETWORK_AGAINST_WEAPONS_AND_NUCLEAR_POWER_IN_SPACE_; and the other names are None
The code is NGOUSA; the name is GLOBAL_SECURITY_INSTITUTE_; and the other names are None
The code is NGOUSA; the name is GLOBAL_VISION_FOR_PEACE_; and the other names are None
The code is NGOUSAMED; the name is GLOBAL_YOUTH_ACTION_NETWORK_; and the other names are None
The code is NGO; the name is GLOBETREE_; and the other names are None
The code is NGO; the name is GOOD_NEIGHBOURS_INTERNATIONAL_; and the other names are None
The code is NGODEV; the name is GOOD_NEWS_AGENCY_; and the other names are None
The code is NGOITAMED; the name is GRASSROOTS_ORGANIZATIONS_OPERATING_TOGETHER_IN_SISTERHOOD_; and the other names are None
The code is NGO; the name is GROOTS_INTERNATIONAL_; and the other names are None
The code is NGO; the name is HABITAT_FOR_HUMANITY_; and the other names are None
The code is NGOCHR; the name is HABITAT_POUR_L'HUMANITE_; and the other names are None
The code is NGOCHR; the name is HAGUE_APPEAL_FOR_PEACE_; and the other names are None
The code is NGO; the name is HAGUE_INTERNATIONAL_MODEL_UNITED_NATIONS_; and the other names are None
The code is NGOEDU; the name is HAP_INTERNATIONAL_; and the other names are None
The code is NGO; the name is HARVARD_HUMAN_RIGHTS_INTERNET_; and the other names are None
The code is NGOUSAHRI; the name is HATOF_FOUNDATION_; and the other names are None
The code is NGOGHADEV; the name is HEADINGTON_INSTITUTE_; and the other names are None
The code is NGOUSAHLH; the name is HEALTH_CARE_ORGANIZATION_FOR_AFRICA_; and the other names are None
The code is NGOAFRHLH; the name is HEALTH_PARTNERS_INTERNATIONAL_; and the other names are None
The code is NGOHLH; the name is HEALTH_POVERTY_ACTION_; and the other names are None
The code is NGOGBRHLH; the name is HEALTHNET_TPO_; and the other names are None
The code is NGONLDHLH; the name is HEALTHRIGHT_; and the other names are None
The code is NGOHRIHLH; the name is HEARTLAND_ALLIANCE_FOR_HUMAN_NEEDS_AND_HUMAN_RIGHTS_; and the other names are None
The code is NGOUSAHRI; the name is HELEN_KELLER_INTERNATIONAL_; and the other names are None
The code is NGOHLH; the name is HELFEN_WIR_; and the other names are None
The code is NGOAUTDEV; the name is HELPAGE_INTERNATIONAL_; and the other names are None
The code is NGOHRI; the name is HEPCA_; and the other names are None
The code is NGOMDEENV; the name is HILFE_ZUR_SELBSTHILFE_; and the other names are None
The code is NGODEU; the name is HOPE_'87_; and the other names are None
The code is NGOAUT; the name is HORN_RELIEF_; and the other names are None
The code is NGOUSAHRI; the name is HUMANISTIC_INSTITUTE_FOR_CO_OPERATION_WITH_DEVELOPING_COUNTRIES_; and the other names are None
The code is NGONLDDEV; the name is HUMANITARIAN_ACCOUNTABILITY_PARTNERSHIP_; and the other names are None
The code is NGO; the name is HUMEDICA_; and the other names are None
The code is NGODEU; the name is HUMPTY_DUMPTY_INSTITUTE_; and the other names are None
The code is NGOUSA; the name is HUNGARIAN_INTERCHURCH_AID_; and the other names are None
The code is NGOHUNCHR; the name is HURGHADA_ENVIRONMENTAL_PROTECTION_AND_CONSERVATION_ORGANIZATION_; and the other names are None
The code is NGOMDEENV; the name is I.D.E.A.L._SOCIETY_; and the other names are None
The code is NGOCANEDU; the name is IAAP_; and the other names are None
The code is NGOEDU; the name is IABSE_; and the other names are None
The code is NGOBUS; the name is IAJ_UIM_; and the other names are None
The code is NGOJUD; the name is IAMANEH_; and the other names are None
The code is NGOHLH; the name is IANSA_; and the other names are None
The code is NGO; the name is ICAI_; and the other names are None
The code is NGODEV; the name is ICDDR,B_; and the other names are None
The code is NGOBGDHLH; the name is ICDDRB_; and the other names are None
The code is NGOBGDHLH; the name is ICMEC_; and the other names are None
The code is NGOUSA; the name is ICMICA_IMCS_; and the other names are None
The code is NGOCHRCTHEDU; the name is ICOMP_; and the other names are None
The code is NGODEV; the name is ICTUR_; and the other names are None
The code is NGOLABHRI; the name is ICVOLUNTEERS_; and the other names are None
The code is NGOMED; the name is IFFAMPAC_; and the other names are None
The code is NGO; the name is IFLRY_; and the other names are None
The code is NGOPTY; the name is IFMBE_; and the other names are None
The code is NGOHLH; the name is IHEAS_; and the other names are None
The code is NGORUSEDU; the name is IMAMIA_MEDICS_INTERNATIONAL_; and the other names are None
The code is NGOMOSHLH; the name is INDIAN_COUNCIL_OF_SOUTH_AMERICA_; and the other names are None
The code is NGOSAMHRI; the name is INDIAN_LAW_RESOURCE_CENTER_; and the other names are None
The code is NGOUSA; the name is INFORMATION_TECHNOLOGIES_FOR_DEVELOPMENT_; and the other names are None
The code is NGODEVMED; the name is INFOTERM_; and the other names are None
The code is NGO; the name is INITIATIVES_OF_CHANGE_INTERNATIONAL_; and the other names are None
The code is NGO; the name is INPEA_; and the other names are None
The code is NGOHRI; the name is INSTITUT_INTERNATIONAL_DES_SCIENCES_HUMAIN_INTEGRALES_; and the other names are None
The code is NGOREL; the name is INSTITUTE_FOR_INTERRELIGIOUS_DIALOGUE_; and the other names are None
The code is NGOIRNREL; the name is INSTITUTE_FOR_THE_DEVELOPMENT_OF_EDUCATION_ARTS_AND_LEISURE_; and the other names are None
The code is NGOCANEDU; the name is INSTITUTE_OF_CULTURAL_AFFAIRS_INTERNATIONAL_; and the other names are None
The code is NGODEV; the name is INSTITUTE_OF_GENERAL_SEMANTICS_; and the other names are None
The code is NGOUSAEDU; the name is INSTITUTE_OF_INTERNAL_AUDITORS_; and the other names are None
The code is NGOBUS; the name is INSTITUTE_OF_INTERNATIONAL_EDUCATION_; and the other names are None
The code is NGOEDU; the name is INSTITUTO_DE_ESTUDOS_PARA_O_DESENVOLVIMENTO_; and the other names are None
The code is NGOPRTDEV; the name is INSTITUTO_GRISELDA_ALVAREZ_; and the other names are None
The code is NGOMEXDEV; the name is INSTITUTO_IBEROAMERICANO_DE_DERECHO_AERONAUTICO_Y_DEL_ESPACIO_Y_DE_LA_AVIACION_COMERCIAL_; and the other names are None
The code is NGOLAMBUS; the name is INSULA_; and the other names are None
The code is NGODEV; the name is INTER_AMERICAN_HOUSING_UNION_; and the other names are None
The code is NGOLAMDEV; the name is INTER_AMERICAN_PRESS_ASSOCIATION_; and the other names are None
The code is NGOWSTMED; the name is INTER_PRESS_SERVICE_; and the other names are None
The code is NGOMED; the name is INTERACTION:_AMERICAN_COUNCIL_FOR_VOLUNTARY_INTERNATIONAL_ACTION_; and the other names are None
The code is NGOUSA; the name is INTERFAITH_CENTER_ON_CORPORATE_RESPONSIBILITY_; and the other names are None
The code is NGOUSACHRBUS; the name is INTERFAITH_CENTRE_OF_NEW_YORK_; and the other names are None
The code is NGOUSAREL; the name is INTERMON_; and the other names are None
The code is NGOXFM; the name is INTERNATIONAL_ABOLITIONIST_FEDERATION_; and the other names are None
The code is NGOHRI; the name is INTERNATIONAL_ACTION_NETWORK_ON_SMALL_ARMS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_ADVERTISING_ASSOCIATION_; and the other names are None
The code is NGOBUSMED; the name is INTERNATIONAL_AGENCY_FOR_THE_PREVENTION_OF_BLINDNESS_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_ASSOCIATION_AGAINST_DRUG_TRAFFICKING_AND_DRUG_ABUSE_; and the other names are None
The code is NGORUSHLH; the name is INTERNATIONAL_ASSOCIATION_AGAINST_NOISE_; and the other names are None
The code is NGOEURENV; the name is INTERNATIONAL_ASSOCIATION_AGAINST_PAINFUL_EXPERIMENTS_ON_ANIMALS_; and the other names are None
The code is NGOENV; the name is INTERNATIONAL_ASSOCIATION_FOR_BRIDGE_AND_STRUCTURAL_ENGINEERING_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_ASSOCIATION_FOR_COMMUNITY_DEVELOPMENT_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_ASSOCIATION_FOR_HOUSING_SCIENCE_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_FOR_MATERNAL_AND_NEONATAL_HEALTH_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_ASSOCIATION_FOR_RESEARCH_IN_INCOME_AND_WEALTH_; and the other names are None
The code is NGOEDUBUS; the name is INTERNATIONAL_ASSOCIATION_FOR_THE_EXCHANGE_OF_STUDENTS_FOR_TECHNICAL_EXPERIENCE_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_FOR_VOLUNTEER_EFFORT_; and the other names are None
The code is NGO; the name is INTERNATIONAL_ASSOCIATION_FOR_WATER_LAW_; and the other names are None
The code is NGOENV; the name is INTERNATIONAL_ASSOCIATION_OF_APPLIED_PSYCHOLOGY_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_OF_CRAFTS_AND_SMALL_AND_MEDIUM_SIZED_ENTERPRISES_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_ASSOCIATION_OF_DEMOCRATIC_LAWYERS_; and the other names are None
The code is NGOJUD; the name is INTERNATIONAL_ASSOCIATION_OF_DRILLING_CONTRACTORS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_ASSOCIATION_OF_GERONTOLOGY_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_OF_INDEPENDENT_TANKER_OWNERS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_ASSOCIATION_OF_JEWISH_LAWYERS_AND_JURISTS_; and the other names are None
The code is NGOJEWJUDHRI; the name is INTERNATIONAL_ASSOCIATION_OF_JUDGES_; and the other names are None
The code is NGOJUD; the name is INTERNATIONAL_ASSOCIATION_OF_LAWYERS_AGAINST_NUCLEAR_ARMS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_ASSOCIATION_OF_LIONS_CLUBS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_ASSOCIATION_OF_LOGOPEDICS_AND_PHONIATRICS_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_OF_OIL_AND_GAS_PRODUCERS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_ASSOCIATION_OF_PEACE_FOUNDATIONS_; and the other names are None
The code is NGOCAS; the name is INTERNATIONAL_ASSOCIATION_OF_PORTS_AND_HARBORS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_ASSOCIATION_OF_SCHOOLS_OF_SOCIAL_WORK_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_OF_UNIVERSITY_PRESIDENTS_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_ASSOCIATION_OF_WOMEN_IN_RADIO_AND_TELEVISION_; and the other names are None
The code is NGOMED; the name is INTERNATIONAL_ASSOCIATION_OF_WOMEN_JUDGES_; and the other names are None
The code is NGOJUD; the name is INTERNATIONAL_ASSOCIATION_OF_YOUNG_LAWYERS_; and the other names are None
The code is NGOJUD; the name is INTERNATIONAL_ASTRONAUTICAL_FEDERATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_BAR_ASSOCIATION_; and the other names are None
The code is NGOJUDHRI; the name is INTERNATIONAL_BLUE_CRESCENT_; and the other names are None
The code is NGOTURDEV; the name is INTERNATIONAL_BOARD_ON_BOOKS_FOR_YOUNG_PEOPLE_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_BOOK_BANK_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_BOOK_PROJECT_; and the other names are None
The code is NGOEDU;; the name is INTERNATIONAL_CARTOGRAPHIC_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_CATHOLIC_CHILD_BUREAU_; and the other names are None
The code is NGOCHRCTHHRI; the name is INTERNATIONAL_CATHOLIC_UNION_OF_THE_PRESS_; and the other names are None
The code is NGOCHRCTHMED; the name is INTERNATIONAL_CENTRE_FOR_MISSING_AND_EXPLOITED_CHILDREN_; and the other names are None
The code is NGOUSA; the name is INTERNATIONAL_CENTRE_FOR_TRADE_UNION_RIGHTS_; and the other names are None
The code is NGOLABHRI; the name is INTERNATIONAL_CENTRE_OF_ROERICHS_; and the other names are None
The code is NGORUS; the name is INTERNATIONAL_CO_OPERATIVE_ALLIANCE_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_COMMISSION_ON_IRRIGATION_AND_DRAINAGE_; and the other names are None
The code is NGOAGR; the name is INTERNATIONAL_COMMISSION_ON_OCCUPATIONAL_HEALTH_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_COMMUNICATION_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_CONFEDERATION_OF_MIDWIVES_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_CONFERENCE_OF_LABOUR_HISTORIANS_; and the other names are None
The code is NGOEDULAB; the name is INTERNATIONAL_COOPERATIVE_ALLIANCE_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_COUNCIL_FOR_ADULT_EDUCATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_COUNCIL_FOR_CARING_COMMUNITIES_; and the other names are None
The code is NGO; the name is INTERNATIONAL_COUNCIL_FOR_COMMERCIAL_ARBITRATION_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_COUNCIL_FOR_SCIENCE_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_COUNCIL_OF_MUSEUMS_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_COUNCIL_OF_NURSES_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_COUNCIL_OF_PSYCHOLOGISTS_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_COUNCIL_OF_WOMEN_; and the other names are None
The code is NGO; the name is INTERNATIONAL_COUNCIL_ON_ALCOHOL_AND_ADDICTIONS_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_COUNCIL_ON_EDUCATION_FOR_TEACHING_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_COUNCIL_ON_MANAGEMENT_OF_POPULATION_PROGRAMMES_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_COUNCIL_ON_SOCIAL_WELFARE_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_DESALINATION_ASSOCIATION_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_DIABETES_FEDERATION_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_ELECTROTECHNICAL_COMMITTEE_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_FOR_EAST_TIMOR_; and the other names are None
The code is NGOTMP; the name is INTERNATIONAL_FEDERATION_FOR_HOME_ECONOMICS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_FEDERATION_FOR_HOUSING_AND_PLANNING_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_FOR_MEDICAL_AND_BIOLOGICAL_ENGINEERING_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_FEDERATION_OF_AGRICULTURAL_PRODUCERS_; and the other names are None
The code is NGOAGR; the name is INTERNATIONAL_FEDERATION_OF_ASSOCIATIONS_OF_THE_ELDERLY_; and the other names are None
The code is NGO; the name is INTERNATIONAL_FEDERATION_OF_AUTOMATIC_CONTROL_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_OF_BEEKEEPERS'_ASSOCIATIONS_; and the other names are None
The code is NGOAGR; the name is INTERNATIONAL_FEDERATION_OF_BUSINESS_AND_PROFESSIONAL_WOMEN_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_OF_CATHOLIC_UNIVERSITIES_; and the other names are None
The code is NGOCHRCTHEDU; the name is INTERNATIONAL_FEDERATION_OF_CLINICAL_CHEMISTRY_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_FEDERATION_OF_EMPLOYEES_IN_PUBLIC_SERVICES_; and the other names are None
The code is NGOLAB; the name is INTERNATIONAL_FEDERATION_OF_FAMILY_ASSOCIATIONS_OF_MISSING_PERSONS_FROM_ARMED_CONFLICTS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_FEDERATION_OF_FREIGHT_FORWARDERS_ASSOCIATIONS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_OF_LIBERAL_YOUTH_; and the other names are None
The code is NGOPTY; the name is INTERNATIONAL_FEDERATION_OF_MEDICAL_AND_BIOLOGICAL_ENGINEERING_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_FEDERATION_OF_MEDICAL_STUDENTS'_ASSOCIATIONS_; and the other names are None
The code is NGOEDUHLH; the name is INTERNATIONAL_FEDERATION_OF_PERSONS_WITH_PHYSICAL_DISABILITY_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_FEDERATION_OF_SETTLEMENTS_AND_NEIGHBOURHOOD_CENTRES_; and the other names are None
The code is NGO; the name is INTERNATIONAL_FEDERATION_OF_SOCIAL_WORKERS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_OF_SURGICAL_COLLEGES_; and the other names are None
The code is NGOEDUHLH; the name is INTERNATIONAL_FEDERATION_OF_SURVEYORS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_FEDERATION_OF_TRAINING_AND_DEVELOPMENT_ORGANIZATIONS_; and the other names are None
The code is NGOEDUDEV; the name is INTERNATIONAL_FEDERATION_OF_WOMEN_IN_LEGAL_CAREERS_; and the other names are None
The code is NGOJUDHRI; the name is INTERNATIONAL_FEDERATION_OF_WOMEN_LAWYERS_; and the other names are None
The code is NGOJUD; the name is INTERNATIONAL_FEDERATION_OF_WORKERS'_EDUCATIONAL_ASSOCIATIONS_; and the other names are None
The code is NGOZAFEDU; the name is INTERNATIONAL_FEDERATION_ON_AGEING_; and the other names are None
The code is NGO; the name is INTERNATIONAL_FELLOWSHIP_OF_RECONCILIATION_; and the other names are None
The code is NGOCHRPRO; the name is INTERNATIONAL_FILM_AND_TELEVISION_EXCHANGE_; and the other names are None
The code is NGOUSAMED; the name is INTERNATIONAL_FORUM_FOR_CHILD_WELFARE_; and the other names are None
The code is NGO; the name is INTERNATIONAL_GENDER_ORGANIZATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_HEALTH_AWARENESS_NETWORK_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_HIGHER_EDUCATION_ACADEMY_OF_SCIENCES_; and the other names are None
The code is NGORUSEDU; the name is INTERNATIONAL_HIV_AIDS_ALLIANCE_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_INFORMATION_CENTER_FOR_TERMINOLOGY_; and the other names are None
The code is NGO; the name is INTERNATIONAL_INFORMATIZATION_ACADEMY_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_INNER_WHEEL_; and the other names are None
The code is NGO; the name is INTERNATIONAL_INSTITUTE_FOR_APPLIED_SYSTEMS_ANALYSIS_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_INSTITUTE_FOR_NON_ALIGNED_STUDIES_; and the other names are None
The code is NGO; the name is INTERNATIONAL_INSTITUTE_OF_ADMINISTRATIVE_SCIENCES_; and the other names are None
The code is NGOEDUBUS; the name is INTERNATIONAL_INSTITUTE_OF_HIGHER_STUDIES_IN_CRIMINAL_SCIENCES_; and the other names are None
The code is NGOITAHRI; the name is INTERNATIONAL_INSTITUTE_OF_HUMANITARIAN_LAW; and the other names are None
The code is NGOEURHRI; the name is INTERNATIONAL_INSTITUTE_OF_INTEGRAL_HUMAN_SCIENCES_; and the other names are None
The code is NGOREL; the name is INTERNATIONAL_INSTITUTE_OF_RURAL_RECONSTRUCTION_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_INSTITUTE_ON_PEACE_EDUCATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_KOLPING_SOCIETY_; and the other names are None
The code is NGOCHRCTHDEV; the name is INTERNATIONAL_LEAGUE_FOR_THE_RIGHTS_AND_LIBERATION_OF_PEOPLES_; and the other names are None
The code is NGOHRI; the name is INTERNATIONAL_LEAGUE_OF_SOCIETIES_FOR_PERSONS_WITH_MENTAL_HANDICAPS_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_MEDICAL_CORPS_; and the other names are None
The code is NGOUSAHLH; the name is INTERNATIONAL_MEDICAL_CORPS_UK_; and the other names are None
The code is NGOGBRHLH; the name is INTERNATIONAL_MISSION_ASSOCIATION_; and the other names are None
The code is NGOKORCHRHLH; the name is INTERNATIONAL_MODEL_UNITED_NATIONS_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_MOVEMENT_A.T.D._FOURTH_WORLD_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_MOVEMENT_ATD_FOURTH_WORLD_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_MOVEMENT_FOR_FRATERNAL_UNION_AMONG_RACES_AND_PEOPLES_; and the other names are None
The code is NGO; the name is INTERNATIONAL_NETWORK_FOR_THE_PREVENTION_OF_ELDER_ABUSE_; and the other names are None
The code is NGOHRI; the name is INTERNATIONAL_NETWORK_OF_PEACE_MUSEUMS_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_OCEAN_INSTITUTE_; and the other names are None
The code is NGOENV; the name is INTERNATIONAL_ORGANIZATION_FOR_STANDARDIZATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_ORGANIZATION_FOR_THE_ELIMINATION_OF_ALL_FORMS_OF_RACIAL_DISCRIMINATION_; and the other names are None
The code is NGOHRI; the name is INTERNATIONAL_ORGANIZATION_OF_EMPLOYERS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_PEACE_BUREAU_; and the other names are None
The code is NGO; the name is INTERNATIONAL_PEACE_RESEARCH_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_PHOTOGRAPHIC_COUNCIL_; and the other names are None
The code is NGOMED; the name is INTERNATIONAL_PHYSICIANS_FOR_THE_PREVENTION_OF_NUCLEAR_WAR_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_POLITICAL_SCIENCE_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_PRESS_INSTITUTE_; and the other names are None
The code is NGOMED; the name is INTERNATIONAL_PROGRESS_ORGANIZATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_PUBLIC_POLICY_INSTITUTE_; and the other names are None
The code is NGO; the name is INTERNATIONAL_PUBLIC_RELATIONS_ASSOCIATION_; and the other names are None
The code is NGOBUSMED; the name is INTERNATIONAL_PUBLISHERS_ASSOCIATION_; and the other names are None
The code is NGOMED; the name is INTERNATIONAL_REAL_ESTATE_FEDERATION_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_REHABILITATION_COUNCIL_FOR_TORTURE_VICTIMS_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_RELIEF_FRIENDSHIP_FOUNDATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_RESEARCH_CENTRE_FOR_ENVIRONMENTAL_STRUCTURES_PIO_MANZU_; and the other names are None
The code is NGOITAENV; the name is INTERNATIONAL_ROAD_FEDERATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_ROMANI_UNION_; and the other names are None
The code is NGOEUR; the name is INTERNATIONAL_SAVE_THE_CHILDREN_ALLIANCE_; and the other names are None
The code is NGO; the name is INTERNATIONAL_SCHOOLS_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_SCIENTIFIC_COUNCIL_FOR_ISLAND_DEVELOPMENT_; and the other names are None
The code is NGODEV; the name is INTERNATIONAL_SOCIAL_SCIENCE_COUNCIL_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_SOCIAL_SECURITY_ASSOCIATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_SOCIAL_SERVICE_; and the other names are None
The code is NGO; the name is INTERNATIONAL_SOCIETY_FOR_MANGROVE_ECOSYSTEMS_; and the other names are None
The code is NGOJPNENV; the name is INTERNATIONAL_SOCIETY_FOR_PHOTOGRAMMETRY_AND_REMOTE_SENSING_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_SOCIETY_FOR_TRAUMATIC_STRESS_STUDIES_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_SOCIETY_OF_CITY_AND_REGIONAL_PLANNERS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_SOCIETY_OF_NURSING_IN_CANCER_CARE_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_SOCIETY_OF_RADIOGRAPHERS_AND_RADIOLOGICAL_TECHNICIANS_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_SOCIOLOGICAL_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_STATISTICAL_INSTITUTE_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_STUDIES_ASSOCIATION_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_TELECOMMUNICATION_ACADEMY_; and the other names are None
The code is NGOMED; the name is INTERNATIONAL_TRADE_UNION_CONFEDERATION_; and the other names are None
The code is NGOLAB; the name is INTERNATIONAL_TUNNELLING_AND_UNDERGROUND_SPACE_ASSOCIATION_; and the other names are None
The code is NGO; the name is INTERNATIONAL_UNION_FOR_CONSERVATION_OF_NATURE_; and the other names are None
The code is NGOENV; the name is INTERNATIONAL_UNION_FOR_HEALTH_PROMOTION_AND_EDUCATION_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_UNION_FOR_LAND_VALUE_TAXATION_AND_FREE_TRADE_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_UNION_OF_ARCHITECTS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_UNION_OF_BIOLOGICAL_SCIENCES_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_UNION_OF_BUILDING_CENTRES_; and the other names are None
The code is NGOEURBUS; the name is INTERNATIONAL_UNION_OF_ECONOMISTS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_UNION_OF_NUTRITIONAL_SCIENCES_; and the other names are None
The code is NGOHLH; the name is INTERNATIONAL_UNION_OF_PSYCHOLOGICAL_SCIENCE_; and the other names are None
The code is NGOEDU; the name is INTERNATIONAL_UNION_OF_SOCIALIST_YOUTH_; and the other names are None
The code is NGOPTY; the name is INTERNATIONAL_UNION_OF_TECHNICAL_ASSOCIATIONS_AND_ORGANIZATIONS_; and the other names are None
The code is NGOBUS; the name is INTERNATIONAL_UNION_OF_TENANTS_; and the other names are None
The code is NGO; the name is INTERNATIONAL_WILDLIFE_COALITION_TRUST_; and the other names are None
The code is NGOPHLENV; the name is INTERNATIONAL_WOMEN_JUDGES_FOUNDATION_; and the other names are None
The code is NGOJUD; the name is INTERNATIONAL_YOUTH_AND_STUDENT_MOVEMENT_FOR_THE_UNITED_NATIONS_; and the other names are None
The code is NGO; the name is INTERNATIONALE_DE_L'EDUCATION_; and the other names are None
The code is NGOLABEDU; the name is INTERSOS_; and the other names are None
The code is NGOITA; the name is INTERTANKO_; and the other names are None
The code is NGOBUS; the name is INTERVIDA_WORLD_ALLIANCE_; and the other names are None
The code is NGOESPDEV; the name is INTRAHEALTH_INTERNATIONAL_; and the other names are None
The code is NGOHLH;; the name is ISLAMIC/AFRICAN_RELIEF_AGENCY_; and the other names are None
The code is NGOSDNMOS; the name is ISLAMIC_RELIEF_; and the other names are None
The code is NGOMOSDEV; the name is ISMUN_; and the other names are None
The code is NGO; the name is ITA_AITES_; and the other names are None
The code is NGO; the name is ITFD_INTERNATIONAL_; and the other names are None
The code is NGODEVMED; the name is IUHPE_; and the other names are None
The code is NGOHLH; the name is IUPSYS_; and the other names are None
The code is NGOEDU; the name is JAKOB_KELLENBERGER_; and the other names are None
The code is NGOHLHIRC; the name is JANE_GOODALL_INSTITUTE_; and the other names are None
The code is NGOENV; the name is JAPAN_CENTER_FOR_CONFLICT_PREVENTION_; and the other names are None
The code is NGOJPN; the name is JAPAN_PEACE_BOAT_; and the other names are None
The code is NGOJPN; the name is JAPAN_WELL_AGING_ASSOCIATION_; and the other names are None
The code is NGOJPNHLH; the name is JEUNES_MEDECINS_SANS_FRONTIERES_TUNISIE_; and the other names are None
The code is NGOTUNHLH; the name is JEWISH_NATIONAL_FUND_; and the other names are None
The code is NGOISRJEW; the name is JEWISH_WOMEN_INTERNATIONAL_; and the other names are None
The code is NGOCANJEW; the name is JOHANNITER_INTERNATIONAL_ALLIANCE_; and the other names are None
The code is NGODEUHLH; the name is JOSEPH_PARARAJASINGHAM_; and the other names are None
The code is NGOTAM; the name is JOVENEX_EN_MOVIMIENTO_; and the other names are None
The code is NGOREF; the name is JUAN_MANUEL_SUAREZ_DEL_TORO_RIVERO_; and the other names are None
The code is NGOHLHIRC; the name is JUDGES_WITHOUT_BORDERS_; and the other names are None
The code is NGOJUD; the name is JUNIOR_CHAMBER_INTERNATIONAL_; and the other names are None
The code is NGOREL; the name is KAPPA_DELTA_PI_; and the other names are None
The code is NGONMREDU; the name is KARAMAH_; and the other names are None
The code is NGOMOSJUDHRI; the name is KARP_KOREAN_ASSOCIATION_OF_RETIRED_PERSONS_; and the other names are None
The code is NGOKOR; the name is KEGME_; and the other names are None
The code is NGOEEU; the name is KERKINACTIE_; and the other names are None
The code is NGONLDCHRPRO360; the name is KIDS_WITH_A_CAUSE_; and the other names are None
The code is NGODEV; the name is KINDERDORF_INTERNATIONAL_; and the other names are None
The code is NGODEU; the name is KIWANIS_INTERNATIONAL_; and the other names are None
The code is NGO; the name is KOREA_INTERNATIONAL_VOLUNTEER_ORGANIZATION_; and the other names are None
The code is NGOKOR; the name is LA_LECHE_LEAGUE_; and the other names are None
The code is NGOHLH; the name is LANDMINE_ACTION_; and the other names are None
The code is NGOGBR; the name is LAO_NEW_GENERATION_DEMOCRACY_MOVEMENT_; and the other names are None
The code is NGOHRI; the name is LAWYERS_WITHOUT_BORDERS_; and the other names are None
The code is NGOJUD; the name is LEGACY_INTERNATIONAL_; and the other names are None
The code is NGOUSA; the name is LEGIAO_DA_BOA_VONTADE_; and the other names are None
The code is NGOLAM; the name is LEGION_OF_GOOD_WILL_; and the other names are None
The code is NGOLAM; the name is LEITNER_CENTER_FOR_INTERNATIIONAL_LAW_AND_JUSTICE_; and the other names are None
The code is NGOUSAHRI; the name is LIBERAL_INTERNATIONAL_; and the other names are None
The code is NGOPTY; the name is LIFE_AND_PEACE_INSTITUTE_; and the other names are None
The code is NGOCHECHR; the name is LIFE_FOR_RELIEF_AND_DEVELOPMENT_; and the other names are None
The code is NGOUSAARBMOS; the name is LIGHT_MILLENNIUM_; and the other names are None
The code is NGOUSA; the name is LIONS_CLUBS_INTERNATIONAL_; and the other names are None
The code is NGO; the name is LOOMBA_TRUST_; and the other names are None
The code is NGO; the name is LORETTO_COMMUNITY_; and the other names are None
The code is NGOUSACHRCTH; the name is LUTHERAN_IMMIGRATION_AND_REFUGEE_SERVICE_; and the other names are None
The code is NGOUSAREF; the name is LUTHERAN_WORLD_FEDERATION_DEPARTMENT_FOR_WORLD_SERVICE_; and the other names are None
The code is NGOCHRPRO214; the name is LUTHERAN_WORLD_FUND_TANZANIA_; and the other names are None
The code is NGOTZACHRPRO214; the name is LUTHERAN_WORLD_RELIEF_; and the other names are None
The code is NGOUSACHRPRODEV; the name is MAKE_A_WISH_FOUNDATION_; and the other names are None
The code is NGOUSA; the name is MALTESER_INTERNATIONAL_; and the other names are None
The code is NGOCHRCTH603; the name is MANAGEMENT_ACCOUNTING_FOR_NON_GOVERNMENTAL_ORGANISATIONS_; and the other names are None
The code is NGOGBR; the name is MANDAT_INTERNATIONAL_; and the other names are None
The code is NGOCHE; the name is MANOS_UNIDAS_; and the other names are None
The code is NGOESPDEV; the name is MAPACTION_; and the other names are None
The code is NGOMED; the name is MARIE_STOPES_; and the other names are None
The code is NGOHLH;; the name is MARTHA_WAYNE_FOUNDATION_ [NGOUSA]; and the other names are None
The code is NGOUSACHRCTH; the name is MARYKNOLL_FATHERS_AND_BROTHERS_; and the other names are None
The code is NGOIND; the name is MATA_AMRITANANDAMAYI_MATH_; and the other names are None
The code is NGOCHRCTHHLH; the name is MATERCARE_INTERNATIONAL_; and the other names are None
The code is NGOCHR; the name is MEDAIR_; and the other names are None
The code is NGOHLH; the name is MEDECINS_DU_MONDE_; and the other names are None
The code is NGOUSACHRHLH; the name is MEDICAL_ASSISTANCE_PROGRAMS_INTERNATIONAL_; and the other names are None
The code is NGOHLH; the name is MEDICAL_KNOWLEDGE_INSTITUTE_; and the other names are None
The code is NGOCHRCTHHLH; the name is MEDICAL_MISSION_SISTERS_; and the other names are None
The code is NGOUSACHRHLH; the name is MEDICAL_TEAMS_INTERNATIONAL_; and the other names are None
The code is NGOHLH; the name is MEDICAL_WOMEN'S_INTERNATIONAL_ASSOCIATION_; and the other names are None
The code is NGOEEU; the name is MEDITERRANEAN_WOMEN'S_STUDIES_CENTRE_; and the other names are None
The code is NGODEV; the name is MEGA_CITIES_PROJECT_; and the other names are None
The code is NGOYEM; the name is MERCYEMEN_; and the other names are None
The code is NGOGBRCHRPRO230; the name is METHODIST_RELIEF_AND_DEVELOPMENT_FUND_; and the other names are None
The code is NGODEV; the name is MINBYUN_LAWYERS_FOR_A_DEMOCRATIC_SOCIETY_; and the other names are None
The code is NGO; the name is MINES_ADVISORY_GROUP_; and the other names are None
The code is NGOHRI; the name is MONTREAL_SOCIAL_JUSTICE_COMMITTEE_; and the other names are None
The code is NGOHRI; the name is MOUVEMENT_DU_NID_; and the other names are None
The code is NGO; the name is MOUVEMENT_MONDIAL_DES_MERES_; and the other names are None
The code is NGOARBHRI; the name is MOVIMIENTO_POR_LA_PAZ_EL_DESARME_Y_LA_LIBERTAD_; and the other names are None
The code is NGOITA; the name is MOVIMONDO_; and the other names are None
The code is NGOGBRMOS; the name is MUSLIM_AID_; and the other names are None
The code is NGOMOSJUDHRI; the name is MUSLIM_WOMEN_LAWYERS_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGONMR; the name is NATIONAL_COUNCIL_ON_FAMILY_RELATIONS_; and the other names are None
The code is NGOBUS; the name is NATIONAL_FOREIGN_TRADE_COUNCIL_; and the other names are None
The code is NGOUSA; the name is NATIONAL_SERVICE_CONFERENCE_OF_THE_AMERICAN_ETHICAL_UNION_; and the other names are None
The code is NGO; the name is NATIONAL_SPACE_SOCIETY_; and the other names are None
The code is NGOUSAENV; the name is NATURAL_RESOURCES_DEFENCE_COUNCIL_; and the other names are None
The code is NGONMR; the name is NCFR_; and the other names are None
The code is NGOUSADEV; the name is NEAR_EAST_FOUNDATION_; and the other names are None
The code is NGOHRI; the name is NESOHR_; and the other names are None
The code is NGOJPNENV; the name is NETWORK_EARTH_VILLAGE_; and the other names are None
The code is NGOHRI; the name is NEW_HUMAN_RIGHTS_; and the other names are None
The code is NGONZL; the name is NEW_ZEALAND_CAMPAIGN_AGAINST_LANDMINES_; and the other names are None
The code is NGOMED; the name is NEXUS_INTERNATIONAL_BROADCASTING_ASSOCIATION_; and the other names are None
The code is NGOHRI; the name is NGARMSUK_RATTANASATHIEN_; and the other names are None
The code is NGOHLH; the name is NGO_HEALTH_COMMITTEE_; and the other names are None
The code is NGOHRI; the name is NICK_CHEESMAN_; and the other names are None
The code is NGOHLH; the name is NIGHTINGALE_INITIATIVE_FOR_GLOBAL_HEALTH_; and the other names are None
The code is NGO; the name is NORD_SUD_XXI_; and the other names are None
The code is NGOTAM; the name is NORTHEAST_SECRETARIAT_OF_HUMAN_RIGHTS_; and the other names are None
The code is NGOTAM; the name is NORTHEAST_SECRETARIAT_ON_HUMAN_RIGHTS_; and the other names are None
The code is NGO; the name is NORTHERN_FORUM_; and the other names are None
The code is NGONORCHRPRO; the name is NORWEGIAN_CHURCH_AID_; and the other names are None
The code is NGONOR; the name is NORWEGIAN_PEOPLE'S_AID_; and the other names are None
The code is NGOHRI; the name is NOUVEAUX_DROITS_DE_L'HOMME_; and the other names are None
The code is NGOAFRLAB; the name is OATUU_; and the other names are None
The code is NGOITAMED; the name is OBSERVATORY_FOR_CULTURAL_AND_AUDIOVISUAL_COMMUNICATION_; and the other names are None
The code is NGOGBRREF; the name is OCKENDEN_INTERNATIONAL_; and the other names are None
The code is NGOAFRDEV; the name is OFADEC_; and the other names are None
The code is NGOAFRDEV; the name is OFFICE_AFRICAIN_POUR_LE_DEVELOPPEMENT_ET_LA_COOPERATION_; and the other names are None
The code is NGOCHRCTHEDU; the name is OIEC_; and the other names are None
The code is NGOPRTDEV; the name is OIKOS_COOPERACAO_E_DESENVOLVIMENTO_; and the other names are None
The code is NGOENV; the name is OIPA_; and the other names are None
The code is NGOSWE; the name is OLOF_PALME_PEACE_FOUNDATION_; and the other names are None
The code is NGODEV; the name is OPERATION_MERCY_; and the other names are None
The code is NGO; the name is OPERATION_PEACE_THROUGH_UNITY_; and the other names are None
The code is NGOUSA; the name is OPERATION_USA_; and the other names are None
The code is NGODEV; the name is ORGANISATION_DEVELOPMENT_AND_TRAINING_; and the other names are None
The code is NGOENV; the name is ORGANISATION_INTERNATIONALE_POUR_LA_PROTECTION_DES_ANIMAUX_; and the other names are None
The code is NGOAFRLAB; the name is ORGANIZATION_OF_AFRICAN_TRADE_UNION_UNITY_; and the other names are None
The code is NGOMOS; the name is ORGANIZATION_OF_ISLAMIC_CAPITALS_AND_CITIES_; and the other names are None
The code is NGO; the name is ORPHANS_INTERNATIONAL_; and the other names are None
The code is NGOUSAJEWEDU; the name is ORT_AMERICA_; and the other names are None
The code is NGO; the name is OSAKA_JUNIOR_CHAMBER_; and the other names are None
The code is NGOISRCHR; the name is OSMTH_; and the other names are None
The code is NGOHRI; the name is OTTAWA_HUMAN_RIGHTS_INTERNET_; and the other names are None
The code is NGOUSAMED; the name is OVERSEAS_PRESS_CLUB_OF_AMERICA_; and the other names are None
The code is NGOFJI; the name is PACIFIC_CONCERNS_RESOURCE_CENTRE_; and the other names are None
The code is NGOAFRDEV; the name is PAN_AFRICAN_INSTITUTE_FOR_DEVELOPMENT_; and the other names are None
The code is NGOLAMDEV; the name is PAN_AMERICAN_DEVELOPMENT_FOUNDATION_; and the other names are None
The code is NGOSEADEV; the name is PAN_PACIFIC_AND_SOUTHEAST_ASIA_WOMEN'S_ASSOCIATION_; and the other names are None
The code is NGOUSACHR; the name is PARTNERSHIP_FOR_GLOBAL_JUSTICE_; and the other names are None
The code is NGOENV; the name is PARTNERSHIP_FOR_INDIGENOUS_PEOPLES_ENVIRONMENT_; and the other names are None
The code is NGO; the name is PATHWAYS_TO_PEACE_; and the other names are None
The code is NGOCHRCTH; the name is PAX_CHRISTI_INTERNATIONAL_; and the other names are None
The code is NGO; the name is PAZ_Y_COOPERACION_; and the other names are None
The code is NGOUSA; the name is PEACE_ACTION_; and the other names are None
The code is NGOJPN; the name is PEACE_BOAT_; and the other names are None
The code is NGOGBRDEV; the name is PEACE_CHILD_INTERNATIONAL_; and the other names are None
The code is NGOEDU; the name is PEACE_EDUCATION_FOUNDATION_; and the other names are None
The code is NGOCAS; the name is PEACE_PARTNERSHIP_INTERNATIONAL_; and the other names are None
The code is NGOJPN; the name is PEACE_WINDS_JAPAN_; and the other names are None
The code is NGOUSA; the name is PEACEMAKER_CORPS_ASSOCIATION_; and the other names are None
The code is NGO; the name is PEACEWORKERS/NONVIOLENT_PEACEFORCE_; and the other names are None
The code is NGOUSAEDU; the name is PEARL_S._BUCK_INTERNATIONAL_; and the other names are None
The code is NGOHLH; the name is PHYSICIANS_FOR_PEACE_; and the other names are None
The code is NGODEV; the name is PLAN_INTERNATIONAL_; and the other names are None
The code is NGOMEX; the name is PLANETAFILLIA_; and the other names are None
The code is NGOUSAHLH; the name is PLANNED_PARENTHOOD_FEDERATION_; and the other names are None
The code is NGODEV; the name is POPULATION_COUNCIL_; and the other names are None
The code is NGOUSA; the name is POPULATION_INSTITUTE_; and the other names are None
The code is NGOSEADEV; the name is PPSEAWA_; and the other names are None
The code is NGOFRA; the name is PREMIERE_URGENCE_; and the other names are None
The code is NGOCHR; the name is PRISON_FELLOWSHIP_INTERNATIONAL_; and the other names are None
The code is NGOESP; the name is PRODEFA_; and the other names are None
The code is NGOHLH; the name is PROGRAM_FOR_APPROPRIATE_TECHNOLOGY_IN_HEALTH_; and the other names are None
The code is NGOCANCHR; the name is PROJECT_PLOUGHSHARES_; and the other names are None
The code is NGOUSA; the name is PROMOTING_ENDURING_PEACE_; and the other names are None
The code is NGODEV; the name is PUBLIC_PRIVATE_ALLIANCE_FOUNDATION_; and the other names are None
The code is NGOMED; the name is PUBLIC_RELATIONS_SOCIETY_OF_AMERICA_; and the other names are None
The code is NGO; the name is PUGWASH_CONFERENCES_ON_SCIENCE_AND_WORLD_AFFAIRS_; and the other names are None
The code is NGOCHRPROENV; the name is QUAKER_EARTHCARE_WITNESS_; and the other names are None
The code is NGOHUN; the name is QUICK_RELIEF_FOUNDATION_; and the other names are None
The code is NGO; the name is QUOTA_INTERNATIONAL_; and the other names are None
The code is NGOSWEDEV; the name is RADDA_BARNEN_; and the other names are None
The code is NGOENV; the name is RAINFOREST_FOUNDATION_INTERNATIONAL_; and the other names are None
The code is NGOBGDCHRPRO214; the name is RDRS_BANGLADESH_; and the other names are None
The code is NGOREF; the name is REACH_OUT_REFUGEE_PROTECTION_TRAINING_PROJECT_; and the other names are None
The code is NGOHLHIRC; the name is RED_CROSS_EU_OFFICE_; and the other names are None
The code is NGOLAM; the name is RED_DE_SALUD_DE_LAS_MUJERES_LATINOAMERICANAS_Y_DEL_CARIBE_; and the other names are None
The code is NGO; the name is REDR_; and the other names are None
The code is NGOUSA; the name is RELIEF_INTERNATIONAL_; and the other names are None
The code is NGOUSAENV; the name is RENE_DUBOS_CENTER_FOR_HUMAN_ENVIRONMENTS_; and the other names are None
The code is NGOHLH; the name is RESEARCH_ACTION_AND_INFORMATION_NETWORK_FOR_BODILY_INTEGRITY_OF_WOMEN_; and the other names are None
The code is NGOMOS; the name is REVIVAL_OF_ISLAMIC_HERITAGE_SOCIETY_; and the other names are None
The code is NGO; the name is RIBBON_INTERNATIONAL_; and the other names are None
The code is NGOMOS; the name is RIHS_; and the other names are None
The code is NGOUSAHRI; the name is ROBERT_F._KENNEDY_MEMORIAL_CENTER_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGOUSA; the name is ROCKEFELLER_FOUNDATION_; and the other names are None
The code is NGOAGR; the name is ROOTS_OF_PEACE_; and the other names are None
The code is NGOHLHRCI; the name is ROTES_KREUZ_; and the other names are None
The code is NGO; the name is ROYAL_ACADEMY_OF_SCIENCE_INTERNATIONAL_TRUST_; and the other names are None
The code is NGOFRA; the name is S.O.S._ATTENTATS_; and the other names are None
The code is NGOAFREDU; the name is SADOCC_; and the other names are None
The code is NGOCHRCTH; the name is SAINT_JOAN'S_INTERNATIONAL_ALLIANCE_; and the other names are None
The code is NGOUSA; the name is SARATOGA_FOUNDATION_FOR_WOMEN_WORLDWIDE_; and the other names are None
The code is NGODEV; the name is SAVE_THE_CHILDREN_FUND_; and the other names are None
The code is NGOSWEDEV; the name is SAVE_THE_CHILDREN_SWEDEN_; and the other names are None
The code is NGOCANEDU; the name is SCIENCE_FOR_PEACE_; and the other names are None
The code is NGOFRA; the name is SECOURISTES_SANS_FRONTIERES_; and the other names are None
The code is NGOUSA; the name is SEEDS_OF_PEACE,_INC.; and the other names are None
The code is NGOLAM; the name is SERPAJ_AL_; and the other names are None
The code is NGO; the name is SERVAS_INTERNATIONAL_; and the other names are None
The code is NGO; the name is SERVAS_OPEN_DOORS_; and the other names are None
The code is NGO; the name is SERVICE_FOR_PEACE_; and the other names are None
The code is NGOLAM; the name is SERVICIO_PAZ_Y_JUSTICIA_EN_AMERICA_LATINA_; and the other names are None
The code is NGOBUS; the name is SHARED_INTEREST_; and the other names are None
The code is NGOUSAENV; the name is SIERRA_CLUB_; and the other names are None
The code is NGOHLH; the name is SIGHTSAVERS_; and the other names are None
The code is NGOEDU; the name is SIGMA_GAMMA_RHO_; and the other names are None
The code is NGOHLHEDU; the name is SIGMA_THETA_TAU_; and the other names are None
The code is NGOJEW; the name is SIMON_WIESENTHAL_CENTER_; and the other names are None
The code is NGO; the name is SISTER_TO_SISTER_INTERNATIONAL_; and the other names are None
The code is NGOUSACHRCTH; the name is SISTERS_OF_LORETTO_; and the other names are None
The code is NGO; the name is SMALL_KINDNESS_; and the other names are None
The code is NGOHRI; the name is SOCIAL_JUSTICE_COMMITTEE_MONTREAL_; and the other names are None
The code is NGOPTY; the name is SOCIALIST_INTERNATIONAL_; and the other names are None
The code is NGODEV; the name is SOCIETY_FOR_INTERNATIONAL_DEVELOPMENT_; and the other names are None
The code is NGOHLH; the name is SOCIETY_FOR_PUBLIC_HEALTH_EDUCATION_; and the other names are None
The code is NGOCHRCTHHLH; the name is SOCIETY_OF_CATHOLIC_MEDICAL_MISSIONARIES_; and the other names are None
The code is NGOMOS; the name is SOCIETY_OF_THE_REVIVAL_OF_ISLAMIC_HERITAGE_; and the other names are None
The code is NGOEDUDEV; the name is SOCIOLOGISTS_FOR_WOMEN_IN_SOCIETY_; and the other names are None
The code is NGODEV; the name is SOROPTIMIST_INTERNATIONAL_; and the other names are None
The code is NGO; the name is SOS_CHILREN_; and the other names are None
The code is NGO; the name is SOS_KINDERDORF_; and the other names are None
The code is NGOSAFHRI; the name is SOUTHERN_AFRICA_COMMITTEE_; and the other names are None
The code is NGOAFREDU; the name is SOUTHERN_AFRICA_DOCUMENTATION_AND_CO_OPERATION_CENTRE_; and the other names are None
The code is NGOISRCHR; the name is SOVEREIGN_MILITARY_ORDER_OF_THE_TEMPLE_OF_JERUSALEM_; and the other names are None
The code is NGO; the name is SPECIAL_OLYMPICS_; and the other names are None
The code is NGOIND; the name is SPHERE_INDIA_; and the other names are None
The code is NGOUSAEDU; the name is SPSSI_; and the other names are None
The code is NGOGBRHLH; the name is STAFFORDSHIRE_AMBULANCE_STAFF_HUMANITARIAN_AID_; and the other names are None
The code is NGOENV; the name is STAKEHOLDER_FORUM_FOR_FUTURE_; and the other names are None
The code is NGOHRI; the name is STUDENT_WORLD_ASSEMBLY_; and the other names are None
The code is NGOSDNHRI;; the name is SUDAN_HUMAN_RIGHTS_ORGANISATION_; and the other names are None
The code is NGOENV; the name is SUNSAT_ENERGY_COUNCIL_; and the other names are None
The code is NGOUSADEV; the name is SUSIE_REIZOD_FOUNDATION_; and the other names are None
The code is NGO; the name is SUSILA_DHARMA_INTERNATIONAL_ASSOCIATION_; and the other names are None
The code is NGOIND; the name is SUSTAINABLE_ENVIRONMENT_AND_ECOLOGICAL_DEVELOPMENT_SOCIETY_; and the other names are None
The code is NGOCHE; the name is SWISS_FOUNDATION_FOR_MINE_ACTION_; and the other names are None
The code is NGOUSAMED; the name is SYMPHONY_FOR_UNITED_NATIONS_; and the other names are None
The code is NGODEV; the name is SYNERGOS_INSTITUTE_; and the other names are None
The code is NGOCAN; the name is TAKINGITGLOBAL_; and the other names are None
The code is NGOTZACHRPRO214; the name is TANGANYIKA_CHRISTIAN_REFUGEE_SERVICE_; and the other names are None
The code is NGOEDU; the name is TEACHERS_OF_ENGLISH_TO_SPEAKERS_OF_OTHER_LANGUAGES_; and the other names are None
The code is NGOCHRPRO; the name is TEARFUND_; and the other names are None
The code is NGOMED; the name is TELECOMS_SANS_FRONTIERES_; and the other names are None
The code is NGOREL; the name is TEMPLE_OF_UNDERSTANDING_; and the other names are None
The code is NGO; the name is TERRE_DES_HOMMES_; and the other names are None
The code is NGOEDU; the name is TESOL_; and the other names are None
The code is NGOASA; the name is THE_ASIA_SOCIETY_; and the other names are None
The code is NGOIRLCHRCTHDEV; the name is THE_CATHOLIC_AGENCY_FOR_WORLD_DEVELOPMENT_; and the other names are None
The code is NGOUSA; the name is THE_FRIENDSHIP_FORCE_; and the other names are None
The code is NGOBUS; the name is THE_IU_; and the other names are None
The code is NGODEUHLH; the name is THE_JOHANNITER_; and the other names are None
The code is NGO; the name is THE_SPHERE_PROJECT_; and the other names are None
The code is NGOEDU; the name is THIMUN_FOUNDATION_; and the other names are None
The code is NGOSEAHRI; the name is THIRD_WORLD_MOVEMENT_AGAINST_THE_EXPLOITATION_OF_WOMEN_; and the other names are None
The code is NGOJPN; the name is TOKYO_JUNIOR_CHAMBER_; and the other names are None
The code is NGOGBR; the name is TORCHWOOD_INSTITUTE_ ; and the other names are None
The code is NGOHRI;; the name is TORTURE_ABOLITION_AND_SURVIVORS_SUPPORT_COALITION_; and the other names are None
The code is NGODEV; the name is TRACE_INTERNATIONAL_; and the other names are None
The code is NGOUSAHRI; the name is TRANSNATIONAL_IMMIGRATION_AND_REFUGEE_GROUP_; and the other names are None
The code is NGO; the name is TRIANGLE_GENERATION_HUMANITAIRE_; and the other names are None
The code is NGO; the name is TRIBAL_LINK_FOUNDATION_; and the other names are None
The code is NGODEV; the name is TRICKLE_UP_PROGRAM_; and the other names are None
The code is NGOIRLCHRCTHDEV; the name is TROCAIRE_; and the other names are None
The code is NGOUSAUIG; the name is UIGHUR_AMERICAN_ASSOCIATION_; and the other names are None
The code is NGOGBR; the name is UK_NETWORK_FOR_CIVIL_SOCIETY_LINK_WITH_UN_GENERAL_ASSEMBLY_; and the other names are None
The code is NGOGBR; the name is UNGA_LINK_UK_; and the other names are None
The code is NGOLAMDEV; the name is UNIAPRAVI_; and the other names are None
The code is NGOBUS; the name is UNION_DES_FOIRES_INTERNATIONALES_; and the other names are None
The code is NGOLAMJUD; the name is UNION_IBEROAMERICANA_DE_COLEGIOS_Y_AGRUPACIONES_DE_ABOGADOS_; and the other names are None
The code is NGOBUS; the name is UNION_INTERNATIONALE_DE_L'INDUSTRIE_DU_GAZ_; and the other names are None
The code is NGOARBBUS; the name is UNION_OF_ARAB_BANKS_; and the other names are None
The code is NGO; the name is UNION_OF_INTERNATIONAL_ASSOCIATIONS_; and the other names are None
The code is NGOFRABUS; the name is UNION_PROFESSIONNELLE_DES_EXPERTS_MARITIMES_; and the other names are None
The code is NGOITA; the name is UNIPAX_UNIONE_MONDIALE_PER_LA_PACE_ED_I_DIRITTI_FONDAMENTALI_DELL'UOMO_E_DEI_POPOLI_; and the other names are None
The code is NGOUSAHLH; the name is UNITE_FOR_SIGHT_; and the other names are None
The code is NGOCHRPRO; the name is UNITED_CHURCH_OF_CHRIST_COMMISSION_FOR_RACIAL_JUSTICE_; and the other names are None
The code is NGOCHRPRO; the name is UNITED_CHURCH_OF_CHRIST_JUSTICE_AND_WITNESS_MINISTRIES_; and the other names are None
The code is NGOCHRPRO; the name is UNITED_CHURCH_OF_CHRIST_WIDER_CHURCH_MINISTRIES_; and the other names are None
The code is NGOCHRPRO; the name is UNITED_METHODIST_CHURCH_GENERAL_BOARD_OF_GLOBAL_MINISTRIES_; and the other names are None
The code is NGOCHRPRO230; the name is UNITED_METHODIST_COMMITTEE_ON_RELIEF_; and the other names are None
The code is NGO; the name is UNITED_NATIONS_WATCH_; and the other names are None
The code is NGOREL; the name is UNITED_RELIGIONS_INITIATIVE_; and the other names are None
The code is NGOSIKDEV; the name is UNITED_SIKHS_; and the other names are None
The code is NGO; the name is UNIVERSAL_ESPERANTO_ASSOCIATION_; and the other names are None
The code is NGOBUS; the name is UNIVERSAL_FEDERATION_OF_TRAVEL_AGENTS_ASSOCIATIONS_; and the other names are None
The code is NGOUSAHRI; the name is UNIVERSAL_HUMAN_RIGHTS_NETWORK_; and the other names are None
The code is NGOUSA; the name is US_ASIA_INSTITUTE_; and the other names are None
The code is NGO; the name is VERIFICATION_RESEARCH_TRAINING_AND_INFORMATION_CENTRE_; and the other names are None
The code is NGOUSADEV; the name is VIRGINIA_GILDERSLEEVE_INTERNATIONAL_FUND_; and the other names are None
The code is NGOUSA; the name is VITAL_VOICES_GLOBAL_PARTNERSHIP_; and the other names are None
The code is NGOBRADEV; the name is VIVA_RIO_; and the other names are None
The code is NGOEUR; the name is VOLUNTARY_ORGANISATIONS_IN_COOPERATION_IN_EMERGENCIES_; and the other names are None
The code is NGOUSACHRPRO; the name is VOLUNTEERS_OF_AMERICA_; and the other names are None
The code is NGOEDU; the name is WAGGGS_; and the other names are None
The code is NGO; the name is WAR_AND_PEACE_FOUNDATION_; and the other names are None
The code is NGOCASCVL; the name is WAR_VETERANS_COMMITTEE_; and the other names are None
The code is NGOUSADEV; the name is WATER_FOR_PEOPLE_; and the other names are None
The code is NGO; the name is WFUNA_; and the other names are None
The code is NGORELENV; the name is WITTENBERG_CENTER_FOR_ALTERNATIVE_RESOURCES_; and the other names are None
The code is NGOISRJEW; the name is WIZO_; and the other names are None
The code is NGO; the name is WLFD_; and the other names are None
The code is NGO; the name is WOMEN_FOR_INTERNATIONAL_PEACE_AND_ARBITRATION_; and the other names are None
The code is NGOJEW; the name is WOMEN_OF_REFORM_JUDAISM_; and the other names are None
The code is NGOUSADEV; the name is WOMEN_OF_VISION_; and the other names are None
The code is NGO; the name is WOMEN_WAGING_PEACE_; and the other names are None
The code is NGOREF; the name is WOMEN'S_COMMISSION_FOR_REFUGEE_WOMEN_AND_CHILDREN_; and the other names are None
The code is NGOUSAHLH; the name is WOMEN'S_HEALTH_AND_EDUCATION_CENTER_; and the other names are None
The code is NGOUSAHRI; the name is WOMEN'S_INSTITUTE_FOR_FREEDOM_OF_THE_PRESS_; and the other names are None
The code is NGODEV; the name is WOMEN'S_INTERNATIONAL_LEAGUE_FOR_PEACE_AND_FREEDOM_; and the other names are None
The code is NGOEDU; the name is WOMEN'S_NATIONAL_BOOK_ASSOCIATION_; and the other names are None
The code is NGOUSAMIL; the name is WOMEN'S_OVERSEAS_SERVICE_LEAGUE_; and the other names are None
The code is NGOUSAREF; the name is WOMEN'S_REFUGEE_COMMISSION_; and the other names are None
The code is NGODEV; the name is WOMEN'S_WORLD_BANKING_; and the other names are None
The code is NGOUSAJEW; the name is WOMEN'S_ZIONIST_ORGANIZATION_OF_AMERICA_; and the other names are None
The code is NGOEDU; the name is WORLD_ACADEMY_OF_ART_AND_SCIENCE_; and the other names are None
The code is NGOHLH; the name is WORLD_ADDICTION_FOUNDATION_; and the other names are None
The code is NGOHLH; the name is WORLD_ALLIANCE_FOR_BREASTFEEDING_ACTION_; and the other names are None
The code is NGO; the name is WORLD_ALLIANCE_FOR_CITIZEN_PARTICIPATION_; and the other names are None
The code is NGOCHR; the name is WORLD_ALLIANCE_OF_YOUNG_MEN'S_CHRISTIAN_ASSOCIATIONS_; and the other names are None
The code is NGOMOSEDU; the name is WORLD_ASSEMBLY_OF_MUSLIM_YOUTH_; and the other names are None
The code is NGO; the name is WORLD_ASSEMBLY_OF_YOUTH_; and the other names are None
The code is NGOHLH; the name is WORLD_ASSOCIATION_FOR_PSYCHOSOCIAL_REHABILITATION_; and the other names are None
The code is NGOMCO; the name is WORLD_ASSOCIATION_OF_CHILDREN'S_FRIENDS_; and the other names are None
The code is NGOEDU; the name is WORLD_ASSOCIATION_OF_EARLY_CHILDHOOD_EDUCATORS_; and the other names are None
The code is NGOEDU; the name is WORLD_ASSOCIATION_OF_GIRL_GUIDES_AND_GIRL_SCOUTS_; and the other names are None
The code is NGOMEDHRI; the name is WORLD_ASSOCIATION_OF_NEWSPAPERS_; and the other names are None
The code is NGOHRI; the name is WORLD_BLIND_UNION_; and the other names are None
The code is NGOUSADEV; the name is WORLD_CARES_CENTER_; and the other names are None
The code is NGOHLH; the name is WORLD_CHIROPRACTIC_ALLIANCE_; and the other names are None
The code is NGOBUS; the name is WORLD_COAL_INSTITUTE_; and the other names are None
The code is NGOEURLAB; the name is WORLD_CONFEDERATION_OF_LABOUR_; and the other names are None
The code is NGOBUS; the name is WORLD_CONFEDERATION_OF_PRODUCTIVITY_SCIENCE_; and the other names are None
The code is NGOEDU; the name is WORLD_COUNCIL_FOR_CURRICULUM_AND_INSTRUCTION_; and the other names are None
The code is NGOMOS; the name is WORLD_COUNCIL_OF_MUSLIM_COMMUNITIES_; and the other names are None
The code is NGOEDU; the name is WORLD_EDUCATION_FELLOWSHIP_; and the other names are None
The code is NGOENV; the name is WORLD_ENERGY_COUNCIL_; and the other names are None
The code is NGO; the name is WORLD_FEDERALIST_MOVEMENT_; and the other names are None
The code is NGO; the name is WORLD_FEDERATION_OF_CONSULS_; and the other names are None
The code is NGOCHRPRO; the name is WORLD_FEDERATION_OF_METHODIST_AND_UNITING_CHURCH_WOMEN_; and the other names are None
The code is NGOHLH; the name is WORLD_FEDERATION_OF_OCCUPATIONAL_THERAPISTS_; and the other names are None
The code is NGODEV; the name is WORLD_FEDERATION_OF_THE_DEAF_; and the other names are None
The code is NGODEV; the name is WORLD_FEDERATION_OF_UKRAINIAN_WOMEN'S_ORGANIZATIONS_; and the other names are None
The code is NGO; the name is WORLD_FEDERATION_OF_UNESCO_CLUBS_CENTRES_AND_ASSOCIATIONS_; and the other names are None
The code is NGO; the name is WORLD_FORUM_OF_CIVIL_SOCIETY_NETWORKS_; and the other names are None
The code is NGODEV; the name is WORLD_HUNGER_YEAR_; and the other names are None
The code is NGOMOS; the name is WORLD_ISLAMIC_CALL_SOCIETY_; and the other names are None
The code is NGOJEW; the name is WORLD_JEWISH_CONGRESS_; and the other names are None
The code is NGOJUD; the name is WORLD_JURIST_ASSOCIATION_OF_THE_WORLD_PEACE_THROUGH_LAW_CENTER_; and the other names are None
The code is NGO; the name is WORLD_LEAGUE_FOR_FREEDOM_AND_DEMOCRACY_; and the other names are None
The code is NGOLBN; the name is WORLD_LEBANESE_CULTURAL_UNION_; and the other names are None
The code is NGOBUS; the name is WORLD_LP_GAS_ASSOCIATION_; and the other names are None
The code is NGO; the name is WORLD_MOVEMENT_OF_MOTHERS_; and the other names are None
The code is NGOMOS; the name is WORLD_MUSLIM_CONGRESS_; and the other names are None
The code is NGODEV;; the name is WORLD_NEIGHBOURS_; and the other names are None
The code is NGOBUS; the name is WORLD_ORGANISATION_OF_BUILDING_OFFICIALS_; and the other names are None
The code is NGODEV; the name is WORLD_ORGANIZATION_FOR_EARLY_CHILDHOOD_EDUCATION_; and the other names are None
The code is NGOJEWREF; the name is WORLD_ORGANIZATION_OF_JEWS_FROM_ARAB_COUNTRIES_; and the other names are None
The code is NGOEDU; the name is WORLD_ORGANIZATION_OF_THE_SCOUT_MOVEMENT_; and the other names are None
The code is NGOJEWEDU; the name is WORLD_ORT_; and the other names are None
The code is NGOHLH; the name is WORLD_PSYCHIATRIC_ASSOCIATION_; and the other names are None
The code is NGOUSAMED; the name is WORLD_SECURITY_INSTITUTE_; and the other names are None
The code is NGOENV; the name is WORLD_SOCIETY_FOR_THE_PROTECTION_OF_ANIMALS_; and the other names are None
The code is NGOJUD; the name is WORLD_SOCIETY_OF_VICTIMOLOGY_; and the other names are None
The code is NGOCHRCTHHRI; the name is WORLD_UNION_OF_CATHOLIC_WOMEN'S_ORGANIZATIONS_; and the other names are None
The code is NGOUIG; the name is WORLD_UYGHUR_CONGRESS_; and the other names are None
The code is NGOCVL; the name is WORLD_VETERANS_FEDERATION_; and the other names are None
The code is NGO; the name is WORLD_WINTER_CITIES_ASSOCIATION_FOR_MAYORS_; and the other names are None
The code is NGOUSACHR; the name is WORLD_WOMAN'S_CHRISTIAN_TEMPERANCE_UNION_; and the other names are None
The code is NGOENV; the name is WSPA_; and the other names are None
The code is NGODEV; the name is WWSF_; and the other names are None
The code is NGOUSAJEW; the name is WZOA_; and the other names are None
The code is NGOPER;; the name is YACHAY_WASI_; and the other names are None
The code is NGOJPNHRI; the name is YOKOHAMA_INTERNATIONAL_HUMAN_RIGHTS_CENTER_; and the other names are None
The code is NGONGACHR; the name is YOUNG_WOMEN'S_CHRISTIAN_ASSOCIATION_; and the other names are None
The code is NGONGACHR; the name is YOUNG_WOMEN'S_CHRISTIAN_ASSOCIATION_OF_NIGERIA_; and the other names are None
The code is NGONGACHR; the name is YOUNG_WOMEN'S_CHRISTIAN_ASSOCIATION_OF_THE_UNITED_STATES_OF_AMERICA_; and the other names are None
The code is NGO; the name is YOUTH_FOR_UNITY_AND_VOLUNTARY_ACTION_; and the other names are None
The code is NGOISRHLH; the name is ZAKA_RESCUE_AND_RECOVERY_; and the other names are None
The code is NGOUSAEDU; the name is ZETA_PHI_BETA_SORORITY_; and the other names are None
The code is NGORUS; the name is ZNANIE_; and the other names are None
The code is NGODEV;; the name is ZONTA_; and the other names are None
The code is NGOHRI; the name is HUMAN_RIGHTS_ORGANIZATION_; and the other names are None
The code is NGOHRI; the name is INTERNATIONAL_HUMAN_RIGHTS_GROUP_; and the other names are None
The code is NGOWAFMOS; the name is AFRICAN_AMERICAN_ISLAMIC_INSTITUTE_; and the other names are None
The code is NGOAFRHLH; the name is AFRICAN_MEDICAL_AND_RESEARCH_FOUNDATION_; and the other names are None
The code is NGOEDU; the name is AFS_INTERCULTURAL_; and the other names are None
The code is NGOMDEMOSSHI; the name is AL_KHOEI_FOUNDATION_; and the other names are None
The code is NGOUSAEDU; the name is AMERICAN_ASSOCIATION_FOR_THE_ADVANCEMENT_OF_SCIENCE_; and the other names are None
The code is NGOBGDCOP; the name is ASIA_CRIME_PREVENTION_FOUNDATION_; and the other names are None
The code is NGOEEURENV; the name is ASSOCIATION_FOR_SUSTAINABLE_HUMAN_DEVELOPMENT_; and the other names are None
The code is NGODEVUSA;; the name is BILL_AND_MELINDA_GATES_FOUNDATION_; and the other names are None
The code is NGOUSACHRCTH; the name is CATHOLIC_RELIEF_SERVICES_; and the other names are None
The code is NGOUSAEDU;; the name is COUNCIL_OF_ACADEMIES_OF_ENGINEERING_AND_TECHNOLOGICAL_SCIENCES_; and the other names are None
The code is NGOUSACHRCTH; the name is COVENANT_HOUSE_; and the other names are None
The code is NGONMRENV;; the name is DESERT_RESEARCH_FOUNDATION_OF_NAMIBIA_; and the other names are None
The code is NGOUSACHRPRO214;; the name is EVANGELICAL_LUTHERAN_CHURCH_IN_AMERICA_DIVISION_FOR_GLOBAL_MISSION_; and the other names are None
The code is NGOUSAEDU; the name is EXPERIMENT_IN_INTERNATIONAL_LIVING_; and the other names are None
The code is NGOASADEV;; the name is FOCUS_ON_THE_GLOBAL_SOUTH_; and the other names are None
The code is NGOMED;; the name is FRIENDS_OF_THE_UNITED_NATIONS_; and the other names are None
The code is NGOEDU; the name is GLOBAL_EDUCATION_ASSOCIATES_; and the other names are None
The code is NGOHLH; the name is GLOBAL_HEALTH_COUNCIL_; and the other names are None
The code is NGOUSA; the name is GLOBAL_POLICY_FORUM_; and the other names are None
The code is NGOUSAHRI; the name is HUMAN_RIGHTS_INTERNET HARVARD_; and the other names are None
The code is NGOCANHRI;; the name is HUMAN_RIGHTS_INTERNET OTTAWA_; and the other names are None
The code is NGOCANHRI;; the name is HUMANE_SOCIETY_OF_THE_UNITED_STATES_; and the other names are None
The code is NGOUSAENV;; the name is INSTITUTO_SOCIAL_Y_POLITICO_DE_LA_MUJER_; and the other names are None
The code is NGOARGHRI; the name is INTERNATIONAL_ASSOCIATION_FOR_RELIGIOUS_FREEDOM_; and the other names are None
The code is NGOGBRRELHRI; the name is INTERNATIONAL_CENTER_FOR_RESEARCH_ON_WOMEN_; and the other names are None
The code is NGOUSADEV; the name is INTERNATIONAL_RESCUE_COMMITTEE_; and the other names are None
The code is NGOUSA; the name is INTERNATIONAL_SOCIETY_FOR_HUMAN_RIGHTS_; and the other names are None
The code is NGODEUHRI; the name is INTERNATIONAL_UYGHUR_YOUTHS_LEAGUE_; and the other names are None
The code is NGOUIG; the name is INTERNATIONAL_UYGHUR_YOUTH'S_LEAGUE_; and the other names are None
The code is NGOUIG; the name is INTERNATIONAL_WOMEN'S_TRIBUNE_CENTRE_; and the other names are None
The code is NGO; the name is INTERNS_FOR_PEACE_; and the other names are None
The code is NGOISR; the name is IRC_INTERNATIONAL_WATER_AND_SANITATION_CENTRE_; and the other names are None
The code is NGOHLHIRCDEV;; the name is LEGAL_ASSISTANCE_CENTRE_NAMIBIA_; and the other names are None
The code is NGONMRHRI;; the name is MENNONITE_CENTRAL_COMMITTEE_; and the other names are None
The code is NGONMRCHRPRO; the name is NAMIBIA_DEVELOPMENT_GATEWAY_; and the other names are None
The code is NGONMRDEV;; the name is NAMIBIA_INSTITUTE_FOR_DEMOCRACY_; and the other names are None
The code is NGONMRDEV;; the name is NAMIBIA_NATURE_FOUNDATION_; and the other names are None
The code is NGONMRENV;; the name is NAMIBIAN_ECONOMIC_POLICY_RESEARCH_UNIT_; and the other names are None
The code is NGONMRDEV;; the name is PEARL_S._BUCK_FOUNDATION_; and the other names are None
The code is NGOUSAEDU;; the name is PROJECT_CONCERN_INTERNATIONAL_; and the other names are None
The code is NGODEV; the name is SOCIETY_FOR_THE_PSYCHOLOGICAL_STUDY_OF_SOCIAL_ISSUES_; and the other names are None
The code is NGOCHNTIBHRI; the name is UNANIMA_INTERNATIONAL_; and the other names are None
The code is NGOCHRCTHDEV; the name is VIVAT_INTERNATIONAL_; and the other names are None
The code is NGOCHRCTHDEV; the name is WATER_ENVIRONMENT_FEDERATION_; and the other names are None
The code is NGODEV; the name is WOMEN'S_ENVIRONMENT_AND_DEVELOPMENT_ORGANIZATION_; and the other names are None
The code is NGOUSADEV; the name is WOMEN'S_FEDERATION_FOR_WORLD_PEACE_; and the other names are None
The code is NGOCHRMAY280; the name is WOMEN'S_INTERNATIONAL_DEMOCRATIC_FEDERATION_; and the other names are None
The code is NGOLAM; the name is WOMEN'S_INTERNATIONAL_ZIONIST_ORGANIZATION_; and the other names are None
The code is NGOISRJEW; the name is WORLD_SAFETY_ORGANIZATION_; and the other names are None
The code is NGOBUS; the name is WORLDWATCH_INSTITUTE_; and the other names are None
The code is NGOUSAENV; the name is AFRICA_CONFIDENTIAL_; and the other names are None
The code is MNCAFRMED;; the name is AFRICA_RESEARCH_BULLETIN_; and the other names are None
The code is MNCAFRMED;; the name is AIRASIA_; and the other names are None
The code is MNCSEA; the name is AFRICAN_COMMUNITY_PUBLISHING_AND_DEVELOPMENT_TRUST_; and the other names are None
The code is MNCAFRMED;; the name is ARCELOR_MITTAL_; and the other names are None
The code is MNCLUX; the name is ARTHUR_ANDERSEN_; and the other names are None
The code is MNCUSA;; the name is ASSOCIATES_FOR_INTERNATIONAL_RESOURCES_AND_DEVELOPMENT_; and the other names are None
The code is MNCUSADEV;; the name is BHP_BILLITON_; and the other names are None
The code is MNCAUS; the name is BRAHMOS_AEROSPACE_; and the other names are None
The code is MNCMIL; the name is BRITISH_GAS_INDIA_; and the other names are None
The code is MNCGBR; the name is CHEVRON_; and the other names are None
The code is MNC;; the name is CHIEF_EXECUTIVE_OFFICER_OF_THE_MILLENIUM_CHALLENGE_CORPORATION_; and the other names are None
The code is MNCUSA;; the name is CHIEF_EXECUTIVE_OF_MCC_; and the other names are None
The code is MNCUSA;; the name is DAEWOO_; and the other names are None
The code is MNCKOR; the name is E._SLACK_; and the other names are None
The code is MNCUSA;; the name is E_SLACK_; and the other names are None
The code is MNCUSA;; the name is FOREIGN_OWNED VESSEL_; and the other names are None
The code is MNC; the name is GAS_AUTHORITY_OF_INDIA_; and the other names are None
The code is MNCIND; the name is GRANGER_TELECOM_ ; and the other names are None
The code is MNCGBRMED;; the name is GRINDLAYS_; and the other names are None
The code is MNCGBR;; the name is HITACHI_; and the other names are None
The code is MNCJPN;; the name is HONDA_; and the other names are None
The code is MNCJPN; the name is HUTCHISON_ESSAR_; and the other names are None
The code is MNCINDMED;; the name is HYUNDAI_; and the other names are None
The code is MNCKOR; the name is INFOSYS_; and the other names are None
The code is MNCINDMED;; the name is JEUNE_AFRIQUE_; and the other names are None
The code is MNCAFRMED;; the name is LENOVO_; and the other names are None
The code is MNCHKG; the name is LOCKHEED_MARTIN_; and the other names are None
The code is MNCUSA; the name is MNCS_; and the other names are None
The code is MNC; the name is MNC_; and the other names are None
The code is MNC; the name is MOODY'S_INVESTORS_SERVICE_; and the other names are None
The code is MNC;; the name is NEWMONT_CORPORATION_; and the other names are None
The code is MNC;; the name is NEWMONT_MINING_CORPORATION_; and the other names are None
The code is MNC;; the name is NOVARTIS_; and the other names are None
The code is MNCCHEHLH; the name is R._BERZOK_; and the other names are None
The code is MNCUSA;; the name is RELIANCE_INDUSTRIES_; and the other names are None
The code is MNCIND; the name is ROBERT_BERZOK_; and the other names are None
The code is MNCUSA;; the name is ROLLS_ROYCE_GROUP_; and the other names are None
The code is MNCGBR; the name is R_BERZOK_; and the other names are None
The code is MNCUSA;; the name is R_S_BUTOLA_; and the other names are None
The code is MNCIND; the name is SANDLINE_; and the other names are None
The code is MNCUAF;; the name is STEVEDORING_SERVICES_; and the other names are None
The code is MNCLAB;; the name is T._FAILLA_; and the other names are None
The code is MNCUSA;; the name is TEXACO_; and the other names are None
The code is MNC;; the name is TOM_FAILLA_; and the other names are None
The code is MNCUSA;; the name is TOYOTA_; and the other names are None
The code is MNCJPN; the name is T_FAILLA_; and the other names are None
The code is MNCUSA;; the name is UNION_CARBIDE_; and the other names are None
The code is MNCUSA;; the name is UNION_TEXAS_; and the other names are None
The code is MNC;; the name is UNITED_MERIDIAN_CORPORATION_; and the other names are None
The code is MNC;; the name is UNOCAL_; and the other names are None
The code is MNC;; the name is USA_GLOBAL_LINK_; and the other names are None
The code is MNC;; the name is VIDEOCON_INDUSTRIES_; and the other names are None
The code is MNCIND; the name is VODAFONE_; and the other names are None
The code is MNCGBRMED;; the name is ABN_AMRO_; and the other names are None
The code is MNCNLD; the name is A._SCHULMAN_; and the other names are None
The code is MNCUSA; the name is A.H._BELO_CORPORATION_; and the other names are None
The code is MNCMED; the name is A_POWER_ENERGY_GENERATION_SYSTEMS_; and the other names are None
The code is MNCCHN; the name is A123_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is AAON_INC_; and the other names are None
The code is MNCUSA; the name is AAR_CORP_; and the other names are None
The code is MNCUSA; the name is AARON'S_INC_; and the other names are None
The code is MNCUSA; the name is ABAXIS_; and the other names are None
The code is MNCUSA; the name is ABB_LTD_; and the other names are None
The code is MNCCHE; the name is ABBEY_NATIONAL_; and the other names are None
The code is MNCESP; the name is ABERCROMBIE_AND_FITCH_; and the other names are None
The code is MNCUSA; the name is ABERDEEN_ASIA_PACIFIC_INCOME_FUND_; and the other names are None
The code is MNCUSA; the name is ABERDEEN_AUSTRALIA_EQUITY_FUND_; and the other names are None
The code is MNCUSA; the name is ABERDEEN_CHILE_FUND_; and the other names are None
The code is MNCUSA; the name is ABERDEEN_EMERGING_MARKETS_TELECOMMUNICATIONS_FUND_INC_; and the other names are None
The code is MNCUSA; the name is ABERDEEN_GLOBAL_INCOME_FUND_; and the other names are None
The code is MNCUSA; the name is ABERDEEN_INDONESIA_FUND_; and the other names are None
The code is MNCUSA; the name is ABERDEEN_ISRAEL_FUND_; and the other names are None
The code is MNCUSA; the name is ABINGTON_BANCORP_; and the other names are None
The code is MNCUSA; the name is ABIOMED_; and the other names are None
The code is MNCUSAHLH; the name is ABM_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is ABOVENET_INC_; and the other names are None
The code is MNCUSAMED; the name is ABRAXAS_PETROLEUM_; and the other names are None
The code is MNCUSA; the name is ABRAXIS_BIOSCIENCE_; and the other names are None
The code is MNCUSAHLH; the name is ABU_DHABI_NATIONAL_ENERGY_COMPANY_; and the other names are None
The code is MNCARE; the name is ACACIA_RESEARCH_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ACADIA_REALTY_TRUST_; and the other names are None
The code is MNCUSA; the name is ACCELRYS_; and the other names are None
The code is MNCUSA; the name is ACCENTURE_PLC_; and the other names are None
The code is MNCBMU; the name is ACCESS_NATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ACCO_BRANDS_CORPORATION_; and the other names are None
The code is MNCMED; the name is ACCRETIVE_HEALTH_INC_; and the other names are None
The code is MNCHLH; the name is ACCURAY_INCORPORATED_; and the other names are None
The code is MNCUSAHLH; the name is ACE_LTD_; and the other names are None
The code is MNCCHE; the name is ACER_INC_; and the other names are None
The code is MNCGBR; the name is ACETO_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ACHILLION_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is ACI_WORLDWIDE_; and the other names are None
The code is MNCUSA; the name is ACME_PACKET_; and the other names are None
The code is MNCUSA; the name is ACORDA_THERAPEUTICS_; and the other names are None
The code is MNCUSAHLH; the name is ACORN_ENERGY_; and the other names are None
The code is MNCUSA; the name is ACTEL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ACTIONS_SEMICONDUCTOR_CO_; and the other names are None
The code is MNCCHN; the name is ACTIVE_POWER,_INC_; and the other names are None
The code is MNCUSA; the name is ACTIVIDENTITY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ACTIVISION_BLIZZARD_; and the other names are None
The code is MNCUSA; the name is ACTUANT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ACTUATE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ACUITY_BRANDS_INC_; and the other names are None
The code is MNCUSA; the name is ACURA_PHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is ACXIOM_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ADAMS_EXPRESS_COMPANY_; and the other names are None
The code is MNCUSA; the name is ADAMS_RESOURCES_AND_ENERGY_; and the other names are None
The code is MNCUSA; the name is ADC_TELECOMMUNICATIONS_; and the other names are None
The code is MNCUSAMED; the name is ADCARE_HEALTH_SYSTEMS_; and the other names are None
The code is MNCHLH; the name is ADDUS_HOMECARE_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is ADMINISTAFF_; and the other names are None
The code is MNCUSA; the name is ADMINISTRADORA_DE_FONDOS_DE_PENSIONES-PROVIDA_; and the other names are None
The code is MNC; the name is ADOBE_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is ADTRAN_; and the other names are None
The code is MNCUSAMED; the name is ADVANCE_AMERICA_CASH_ADVANCE_CENTERS_; and the other names are None
The code is MNC; the name is ADVANCE_AUTO_PARTS_; and the other names are None
The code is MNCUSA; the name is ADVANCED_ANALOGIC_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is ADVANCED_BATTERY_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is ADVANCED_ENERGY_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is ADVANCED_MICRO_DEVICES_INC_; and the other names are None
The code is MNCUSA; the name is ADVANCED_SEMICONDUCTOR_ENGINEERING_; and the other names are None
The code is MNCTWN; the name is ADVANTAGE_OIL_AND_GAS_; and the other names are None
The code is MNCCAN; the name is ADVANTEST_CORPORATION_; and the other names are None
The code is MNCJPN; the name is ADVENT_SOFTWARE_; and the other names are None
The code is MNCUSA; the name is AECOM_TECHNOLOGY_; and the other names are None
The code is MNC; the name is AEGEAN_MARINE_PETROLEUM_NETWORK_; and the other names are None
The code is MNC; the name is AEGON_NV_; and the other names are None
The code is MNCNLD; the name is AEP_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is AERCAP_HOLDINGS_; and the other names are None
The code is MNC; the name is AEROPOSTALE_INC_; and the other names are None
The code is MNCUSA; the name is AEROVIRONMENT_; and the other names are None
The code is MNCUSA; the name is AETERNA_ZENTARIS_; and the other names are None
The code is MNCCANHLH; the name is AETNA_INC_; and the other names are None
The code is MNCUSAHLH; the name is AFC_ENTERPRISES_; and the other names are None
The code is MNCUSA; the name is AFFILIATED_MANAGERS_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is AFFYMAX_; and the other names are None
The code is MNCUSAHLH; the name is AFFYMETRIX_; and the other names are None
The code is MNCUSA; the name is AFLAC_; and the other names are None
The code is MNCUSA; the name is AGA_MEDICAL_HOLDINGS_INC_; and the other names are None
The code is MNCUSAHLH; the name is AGCO_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AGFEED_INDUSTRIES_; and the other names are None
The code is MNCCHNAGR; the name is AGIC_INTERNATIONAL_; and the other names are None
The code is MNC; the name is AGILENT_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is AGILITY_PUBLIC_WAREHOUSING_CO_; and the other names are None
The code is MNCKWT; the name is AGILYSYS_; and the other names are None
The code is MNCUSA; the name is AGL_RESOURCES_; and the other names are None
The code is MNCUSA; the name is AGNICO_EAGLE_MINES_; and the other names are None
The code is MNCCAN; the name is AGREE_REALTY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AGRIA_CORPORATION_; and the other names are None
The code is MNCAGR; the name is AGRICULTURAL_BANK_OF_CHINA_; and the other names are None
The code is MNCCHN; the name is AGRIUM_INC_; and the other names are None
The code is MNCCANAGR; the name is AIR_METHODS_CORP_; and the other names are None
The code is MNCUSA; the name is AIR_PRODUCTS_AND_CHEMICALS_INC_; and the other names are None
The code is MNCUSA; the name is AIR_TRANSPORT_SERVICES_GROUP_; and the other names are None
The code is MNCUSA; the name is AIRCASTLE_LIMITED_; and the other names are None
The code is MNC; the name is AIRGAS_INC_; and the other names are None
The code is MNCUSA; the name is AIRMEDIA_GROUP_; and the other names are None
The code is MNCCHNMED; the name is AIRTRAN_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is AIXTRON_AKTIENGESELLSCHAFT_; and the other names are None
The code is MNCDEU; the name is AK_STEEL_HOLDING_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AKAMAI_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is AKORN_INC_; and the other names are None
The code is MNCUSAHLH; the name is ALABAMA_POWER_COMPANY_; and the other names are None
The code is MNCUSA; the name is ALAMO_GROUP_; and the other names are None
The code is MNCUSA; the name is ALASKA_AIR_GROUP_; and the other names are None
The code is MNCUSA; the name is ALASKA_COMMUNICATIONS_SYSTEMS_GROUP_; and the other names are None
The code is MNCUSAMED; the name is ALBANY_INTERNATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ALBANY_MOLECULAR_RESEARCH_; and the other names are None
The code is MNCUSA; the name is ALBEMARLE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ALBERTO_CULVER_CO_; and the other names are None
The code is MNCUSA; the name is ALCATEL_LUCENT_; and the other names are None
The code is MNCFRAMED; the name is ALCOA_INC_; and the other names are None
The code is MNCUSA; the name is ALCON_INC_; and the other names are None
The code is MNCCHE; the name is ALERE_INC_; and the other names are None
The code is MNCUSA; the name is ALEXANDER_AND_BALDWIN_INC_; and the other names are None
The code is MNCUSA; the name is ALEXANDER'S_INC_; and the other names are None
The code is MNCUSA; the name is ALEXANDRIA_REAL_ESTATE_EQUITIES_; and the other names are None
The code is MNCUSA; the name is ALEXCO_RESOURCE_CORP_; and the other names are None
The code is MNC; the name is ALEXION_PHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is ALEXZA_PHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is ALICO_INC_; and the other names are None
The code is MNCUSAAGR; the name is ALIGN_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is ALIMERA_SCIENCES_; and the other names are None
The code is MNCUSAHLH; the name is ALKERMES_; and the other names are None
The code is MNCUSAHLH; the name is ALLEGHANY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ALLEGHENY_ENERGY_; and the other names are None
The code is MNCUSA; the name is ALLEGHENY_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is ALLEGIANT_TRAVEL_COMPANY_; and the other names are None
The code is MNCUSA; the name is ALLERGAN_INC_; and the other names are None
The code is MNCUSAHLH; the name is ALLETE_INC_; and the other names are None
The code is MNCUSA; the name is ALLIANCE_CALIFORNIA_MUNICIPAL_INCOME_FUND_; and the other names are None
The code is MNCUSA; the name is ALLIANCE_CAPITAL_MANAGEMENT_HOLDING_; and the other names are None
The code is MNCUSA; the name is ALLIANCE_DATA_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is ALLIANCE_FIBER_OPTIC_PRODUCTS_; and the other names are None
The code is MNCUSA; the name is ALLIANCE_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ALLIANCE_HEALTHCARE_SERVICES_; and the other names are None
The code is MNCUSAHLH; the name is ALLIANCE_HOLDINGS_GP_; and the other names are None
The code is MNCUSA; the name is ALLIANCE_NATIONAL_MUNICIPAL_INCOME_FUND_; and the other names are None
The code is MNCUSA; the name is ALLIANCE_NEW_YORK_MUNICIPAL_INCOME_FUND_; and the other names are None
The code is MNCUSA; the name is ALLIANCE_ONE_INTERNATIONAL_; and the other names are None
The code is MNCUSAAGR; the name is ALLIANCE_RESOURCE_PARTNERS_; and the other names are None
The code is MNCUSA; the name is ALLIANCE_WORLD_DOLLAR_GOVERNMENT_FUND_II_; and the other names are None
The code is MNCUSA; the name is ALLIANCEBERNSTEIN_INCOME_FUND_; and the other names are None
The code is MNC; the name is ALLIANT_ENERGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ALLIANT_TECHSYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is ALLIED_CAPITAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ALLIED_HEALTHCARE_INTERNATIONAL_; and the other names are None
The code is MNCUSAHLH; the name is ALLIED_IRISH_BANKS_; and the other names are None
The code is MNCIRL; the name is ALLIED_NEVADA_GOLD_CORP_; and the other names are None
The code is MNCUSA; the name is ALLIED_WORLD_ASSURANCE_COMPANY_; and the other names are None
The code is MNC; the name is ALLIS_CHALMERS_CORP_; and the other names are None
The code is MNCUSA; the name is ALLOS_THERAPEUTICS_; and the other names are None
The code is MNCUSAHLH; the name is ALLOT_COMMUNICATIONS_; and the other names are None
The code is MNCISRHLH; the name is ALLOY_INC_; and the other names are None
The code is MNCUSAMED; the name is ALLSCRIPTS_HEALTHCARE_SOLUTIONS_; and the other names are None
The code is MNCUSA; the name is ALLSTATE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ALMADEN_MINERALS_; and the other names are None
The code is MNC; the name is ALMANIJ_; and the other names are None
The code is MNCBEL; the name is ALMOST_FAMILY_INC_; and the other names are None
The code is MNCUSAHLH; the name is ALNYLAM_PHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is ALON_HOLDINGS_BLUE_SQUARE_ISRAEL_; and the other names are None
The code is MNCISR; the name is ALON_USA_ENERGY_; and the other names are None
The code is MNC; the name is ALPHA_AND_OMEGA_SEMICONDUCTOR_; and the other names are None
The code is MNCUSA; the name is ALPHA_NATURAL_RESOURCES_INC_; and the other names are None
The code is MNC; the name is ALPHA_PRO_TECH_; and the other names are None
The code is MNCCAN; the name is ALPHATEC_HOLDINGS_; and the other names are None
The code is MNCUSAHLH; the name is ALPINE_GLOBAL_DYNAMIC_DIVIDEND_FUND_; and the other names are None
The code is MNC; the name is ALPINE_GLOBAL_PREMIER_PROPERTIES_FUND_; and the other names are None
The code is MNCUSA; the name is ALPINE_TOTAL_DYNAMIC_DIVIDEND_FUND_; and the other names are None
The code is MNC; the name is ALTAIR_NANOTECHN_; and the other names are None
The code is MNCUSA; the name is ALTERA_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ALTERRA_CAPITAL_HOLDINGS_; and the other names are None
The code is MNCBMU; the name is ALTISOURCE_PORTFOLIO_SOLUTIONS_; and the other names are None
The code is MNCUSA; the name is ALTO_PALERMO_; and the other names are None
The code is MNCARG; the name is ALTRA_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is ALTRIA_GROUP_; and the other names are None
The code is MNCUSAAGR; the name is ALUMINA_LTD_; and the other names are None
The code is MNC; the name is ALUMINUM_CORPORATION_OF_CHINA_; and the other names are None
The code is MNCCHN; the name is ALVARION_LTD_; and the other names are None
The code is MNCISRMED; the name is AMAG_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is AMARIN_CORPORATION_; and the other names are None
The code is MNCGBRHLH; the name is AMAZON.COM_; and the other names are None
The code is MNCUSAMED; the name is AMB_PROPERTY_CORP_; and the other names are None
The code is MNCUSA; the name is AMBAC_FINANCIAL_GROUP_; and the other names are None
The code is MNCUSA; the name is AMBASSADORS_GROUP,_INC_; and the other names are None
The code is MNCUSA; the name is AMCOL_INTERNATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AMDOCS_LIMITED_; and the other names are None
The code is MNCUSA; the name is AMEDISYS_; and the other names are None
The code is MNCUSAHLH; the name is AMERCO_; and the other names are None
The code is MNCUSA; the name is AMEREN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AMERICA_FIRST_MORTGAGE_INVESTMENTS_; and the other names are None
The code is MNCUSA; the name is AMERICA_FIRST_TAX_EXEMPT_INVESTORS_; and the other names are None
The code is MNCUSA; the name is AMERICA_MOVIL_; and the other names are None
The code is MNCMEXMED; the name is AMERICA_SERVICE_GROUP_; and the other names are None
The code is MNCUSA; the name is AMERICAN_APPAREL_INC_; and the other names are None
The code is MNC; the name is AMERICAN_AXLE_AND_MANUFACTURING_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is AMERICAN_CAMPUS_COMMUNITIES_INC_; and the other names are None
The code is MNC; the name is AMERICAN_CAPITAL_AGENCY_CORP_; and the other names are None
The code is MNCUSA; the name is AMERICAN_CAPITAL_LTD_; and the other names are None
The code is MNCUSA; the name is AMERICAN_COMMERCIAL_LINES_INC_; and the other names are None
The code is MNCUSA; the name is AMERICAN_DAIRY_INC_; and the other names are None
The code is MNCCHN; the name is AMERICAN_DENTAL_PARTNERS_INC_; and the other names are None
The code is MNCUSAHLH; the name is AMERICAN_DG_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is AMERICAN_EAGLE_OUTFITTERS_; and the other names are None
The code is MNCUSA; the name is AMERICAN_ELECTRIC_POWER_COMPANY_; and the other names are None
The code is MNCUSA; the name is AMERICAN_EQUITY_INVESTMENT_; and the other names are None
The code is MNCUSA; the name is AMERICAN_EXPRESS_COMPANY_; and the other names are None
The code is MNCUSA; the name is AMERICAN_FINANCIAL_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is AMERICAN_INCOME_FUND_INC_; and the other names are None
The code is MNCUSA; the name is AMERICAN_INTERNATIONAL_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is AMERICAN_ISRAELI_PAPER_MILLS_; and the other names are None
The code is MNCISR; the name is AMERICAN_LORAIN_CORPORATION_; and the other names are None
The code is MNCCHN; the name is AMERICAN_MEDICAL_ALERT_CORP_; and the other names are None
The code is MNCUSA; the name is AMERICAN_MEDICAL_SYSTEMS_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is AMERICAN_MUNICIPAL_INCOME_PORTFOLIO_; and the other names are None
The code is MNCUSA; the name is AMERICAN_NATIONAL_BANKSHARES_INC_; and the other names are None
The code is MNCUSA; the name is AMERICAN_NATIONAL_INSURANCE_COMPANY_; and the other names are None
The code is MNCUSA; the name is AMERICAN_OIL_AND_GAS_INC_; and the other names are None
The code is MNCUSA; the name is AMERICAN_ORIENTAL_BIOENGINEERING_; and the other names are None
The code is MNCCHNHLH; the name is AMERICAN_PHYSICIANS_CAPITAL_; and the other names are None
The code is MNCUSAHLH; the name is AMERICAN_PHYSICIANS_SERVICE_GROUP_; and the other names are None
The code is MNCUSAHLH; the name is AMERICAN_PUBLIC_EDUCATION_INC_; and the other names are None
The code is MNCUSA; the name is AMERICAN_RAILCAR_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is AMERICAN_REALTY_INVESTORS_INC_; and the other names are None
The code is MNCUSA; the name is AMERICAN_REPROGRAPHICS_COMPANY_; and the other names are None
The code is MNC; the name is AMERICAN_SAFETY_INSURANCE_; and the other names are None
The code is MNCBMU; the name is AMERICAN_SCIENCE_AND_ENGINEERING_INC_; and the other names are None
The code is MNCUSAHLH; the name is AMERICAN_SELECT_PORTFOLIO_INC_; and the other names are None
The code is MNCUSA; the name is AMERICAN_SOFTWARE_INC_; and the other names are None
The code is MNCUSA; the name is AMERICAN_STATES_WATER_COMPANY_; and the other names are None
The code is MNCUSA; the name is AMERICAN_SUPERCONDUCTOR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AMERICAN_TOWER_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is AMERICAN_VANGUARD_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AMERICAN_WOODMARK_CORPORATION_; and the other names are None
The code is MNCUSAAGR; the name is AMERICA'S_CAR-MART_; and the other names are None
The code is MNCUSA; the name is AMERICREDIT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AMERIGAS_PARTNERS_; and the other names are None
The code is MNCUSA; the name is AMERIGON_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is AMERIGROUP_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is AMERIPRISE_FINANCIAL_SERVICES_; and the other names are None
The code is MNCUSA; the name is AMERIS_BANCORP_; and the other names are None
The code is MNCUSA; the name is AMERISAFE_; and the other names are None
The code is MNCUSA; the name is AMERISOURCEBERGEN_; and the other names are None
The code is MNCUSAHLH; the name is AMERISTAR_CASINOS_; and the other names are None
The code is MNCUSA; the name is AMERON_INTERNATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AMES_NATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AMGEN_INC_; and the other names are None
The code is MNCUSA; the name is AMICUS_THERAPEUTICS_; and the other names are None
The code is MNCUSAHLH; the name is AMKOR_TECHNOLOGY_; and the other names are None
The code is MNCUSA; the name is AMN_HEALTHCARE_SERVICES_; and the other names are None
The code is MNCUSA; the name is AMPAL_AMERICAN_ISRAEL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AMPCO_PITTSBURGH_; and the other names are None
The code is MNCUSA; the name is AMPHENOL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AMR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AMRC_; and the other names are None
The code is MNC; the name is AMREP_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AMSURG_CORP_; and the other names are None
The code is MNCUSAHLH; the name is AMTECH_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is AMTEK_INC_; and the other names are None
The code is MNCUSA; the name is AMTRUST_FINANCIAL_SERVICES_; and the other names are None
The code is MNCUSA; the name is AMYLIN_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is ANADARKO_PETROLEUM_; and the other names are None
The code is MNCUSA; the name is ANADIGICS_INC_; and the other names are None
The code is MNCUSA; the name is ANADYS_PHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is ANALOG_DEVICES_INC_; and the other names are None
The code is MNCUSA; the name is ANALOGIC_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ANAREN,_INC_; and the other names are None
The code is MNCUSA; the name is ANCESTRY.COM_; and the other names are None
The code is MNCUSA; the name is ANDATEE_CHINA_MARINE_FUEL_SERVICES_; and the other names are None
The code is MNCCHN; the name is ANGIODYNAMICS_INC_; and the other names are None
The code is MNCUSAHLH; the name is ANGIOTECH_PHARMACEUTICAL_; and the other names are None
The code is MNCCANHLH; the name is ANGLOGOLD_ASHANTI_; and the other names are None
The code is MNCZAF; the name is ANHEUSER_BUSCH_; and the other names are None
The code is MNCUSA; the name is ANIKA_THERAPEUTICS_; and the other names are None
The code is MNCUSAHLH; the name is ANIMAL_HEALTH_INTERNATIONAL_; and the other names are None
The code is MNCUSAHLH; the name is ANIXTER_INTERNATIONAL_; and the other names are None
The code is MNCUSAMED; the name is ANNALY_CAPITAL_MANAGEMENT_; and the other names are None
The code is MNCUSA; the name is ANOORAQ_RESOURCES_; and the other names are None
The code is MNCCAN; the name is ANSYS_INC_; and the other names are None
The code is MNCUSA; the name is ANTARES_PHARMA_; and the other names are None
The code is MNCUSAHLH; the name is ANTHERA_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is ANTIGENICS_INC_; and the other names are None
The code is MNCUSA; the name is ANWORTH_MORTGAGE_ASSET_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AOL_INC_; and the other names are None
The code is MNCUSAMED; the name is AON_CORPORATION_; and the other names are None
The code is MNCUSA; the name is APAC_CUSTOMER_SERVICES_; and the other names are None
The code is MNCUSA; the name is APACHE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is APARTMENT_INVESTMENT_AND_MANAGEMENT_COMPANY_; and the other names are None
The code is MNCUSA; the name is APCO_OIL_AND_GAS_; and the other names are None
The code is MNCUSA; the name is APOGEE_ENTERPRISES_; and the other names are None
The code is MNCUSA; the name is APOLLO_COMMERCIAL_REAL_ESTATE_FINANCE_; and the other names are None
The code is MNC; the name is APOLLO_GOLD_CORPORATION_; and the other names are None
The code is MNCUSA; the name is APOLLO_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is APOLLO_INVESTMENT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is APPLE_INC_; and the other names are None
The code is MNCUSA; the name is APPLIED_ENERGETICS,_INC_; and the other names are None
The code is MNCUSA; the name is APPLIED_INDUSTRIAL_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is APPLIED_MATERIALS,_INC_; and the other names are None
The code is MNCUSA; the name is APPLIED_MICRO_CIRCUITS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is APPLIED_SIGNAL_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSAMED; the name is APPROACH_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is APTARGROUP_; and the other names are None
The code is MNCUSA; the name is AQUA_AMERICA_; and the other names are None
The code is MNCUSA; the name is ARBITRON_INC_; and the other names are None
The code is MNCUSA; the name is ARBOR_REALTY_TRUST_; and the other names are None
The code is MNC; the name is ARC_SIGHT_INC_; and the other names are None
The code is MNCUSA; the name is ARCADIA_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is ARCH_CAPITAL_GROUP_; and the other names are None
The code is MNCBMU; the name is ARCH_CHEMICALS_INC_; and the other names are None
The code is MNCUSA; the name is ARCH_COAL_INC_; and the other names are None
The code is MNCUSA; the name is ARCHER_DANIELS_MIDLAND_; and the other names are None
The code is MNCUSA; the name is ARCHIPELAGO_LEARNING_; and the other names are None
The code is MNCUSA; the name is ARCTIC_CAT_; and the other names are None
The code is MNCUSA; the name is ARDEA_BIOSCIENCES_; and the other names are None
The code is MNCUSAHLH; the name is ARDEN_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is ARENA_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is ARES_CAPITAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ARGAN_INC_; and the other names are None
The code is MNCUSA; the name is ARGO_GROUP_INTERNATIONAL_; and the other names are None
The code is MNCBMU; the name is ARIAD_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is ARIBA_INC_; and the other names are None
The code is MNCUSA; the name is ARKANSAS_BEST_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ARLINGTON_ASSET_INVESTMENT_CORP_; and the other names are None
The code is MNCUSA; the name is ARM_HOLDINGS_; and the other names are None
The code is MNCGBR; the name is ARMSTRONG_WORLD_INDUSTRIES_; and the other names are None
The code is MNC; the name is ARQULE_; and the other names are None
The code is MNCUSAHLH; the name is ARRAY_BIOPHARMA_INC_; and the other names are None
The code is MNCUSAHLH; the name is ARRIS_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is ARROW_ELECTRONICS_; and the other names are None
The code is MNCUSA; the name is ARROW_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ARROWHEAD_RESEARCH_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ART_TECHNOLOGY_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is ARTESIAN_RESOURCES_CORP_; and the other names are None
The code is MNCUSA; the name is ARTHROCARE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ARTHUR_J._GALLAGHER_; and the other names are None
The code is MNCUSA; the name is ARTIO_GLOBAL_INVESTORS_; and the other names are None
The code is MNC; the name is ARUBA_NETWORKS_; and the other names are None
The code is MNCUSA; the name is ARVINMERITOR_; and the other names are None
The code is MNCUSA; the name is ASA_LIMITED_; and the other names are None
The code is MNCZAF; the name is ASBURY_AUTOMOTIVE_; and the other names are None
The code is MNCUSA; the name is ASCENT_MEDIA_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ASCENT_SOLAR_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is ASHFORD_HOSPITALITY_TRUST_; and the other names are None
The code is MNCUSA; the name is ASHLAND_INC_; and the other names are None
The code is MNCUSA; the name is ASIA_ENTERTAINMENT_AND_RESOURCES_; and the other names are None
The code is MNC; the name is ASIA_PACIFIC_FUND_; and the other names are None
The code is MNCUSA; the name is ASIAINFO_LINKAGE_; and the other names are None
The code is MNCCHN; the name is ASM_INTERNATIONAL_; and the other names are None
The code is MNCNLD; the name is ASML_HOLDING_; and the other names are None
The code is MNCNLD; the name is ASPEN_INSURANCE_; and the other names are None
The code is MNCBMU; the name is ASPEN_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is ASSET_ACCEPTANCE_CAPITAL_CORP_; and the other names are None
The code is MNCUSA; the name is ASSISTED_LIVING_CONCEPTS_INC_; and the other names are None
The code is MNCUSA; the name is ASSOCIATED_BANC_CORP_; and the other names are None
The code is MNCUSA; the name is ASSOCIATED_ESTATES_REALTY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ASSURANT_INC_; and the other names are None
The code is MNCUSA; the name is ASSURED_GUARANTY_LTD_; and the other names are None
The code is MNC; the name is ASTA_FUNDING_INC_; and the other names are None
The code is MNCUSA; the name is ASTEC_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is ASTORIA_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ASTRAZENECA_; and the other names are None
The code is MNCGBRHLH; the name is ASTRONICS_CORP_; and the other names are None
The code is MNCUSA; the name is ASUSTEK_COMPUTER_; and the other names are None
The code is MNCTWN; the name is AT&T_; and the other names are None
The code is MNCUSAMED; the name is ATA_INC_; and the other names are None
The code is MNCCHN; the name is ATC_TECHNOLOGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ATHENAHEALTH_; and the other names are None
The code is MNCUSAHLH; the name is ATHEROS_COMMUNICATIONS_; and the other names are None
The code is MNCUSA; the name is ATLANTIC_POWER_CORPORATION_; and the other names are None
The code is MNC; the name is ATLANTIC_TELE_NETWORK_; and the other names are None
The code is MNCUSAMED; the name is ATLAS_AIR_WORLDWIDE_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is ATLAS_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is ATLAS_PIPELINE_HOLDINGS_; and the other names are None
The code is MNC; the name is ATLAS_PIPELINE_PARTNERS_; and the other names are None
The code is MNCUSA; the name is ATMEL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ATMI_INC_; and the other names are None
The code is MNCUSA; the name is ATMOS_ENERGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ATP_OIL_AND_GAS_; and the other names are None
The code is MNCUSA; the name is ATRICURE_INC_; and the other names are None
The code is MNCUSAHLH; the name is ATRION_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is ATS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ATWOOD_OCEANICS_; and the other names are None
The code is MNCUSA; the name is AU_OPTRONICS_CORP_; and the other names are None
The code is MNCTWN; the name is AUBURN_NATIONAL_BANCORPORATION_; and the other names are None
The code is MNCUSA; the name is AUDIOCODES_LTD_; and the other names are None
The code is MNCISRMED; the name is AUDIOVOX_; and the other names are None
The code is MNCUSAMED; the name is AUGUSTA_RESOURCE_CORPORATION_; and the other names are None
The code is MNC; the name is AURIZON_MINES_; and the other names are None
The code is MNCCAN; the name is AUTOCHINA_INTERNATIONAL_; and the other names are None
The code is MNCCHN; the name is AUTODESK_INC_; and the other names are None
The code is MNCUSA; the name is AUTOLIV_INC_; and the other names are None
The code is MNCSWE; the name is AUTOMATIC_DATA_PROCESSING_INC_; and the other names are None
The code is MNCUSA; the name is AUTONATION_INC_; and the other names are None
The code is MNCUSA; the name is AUTONAVI_HOLDINGS_; and the other names are None
The code is MNCCHN; the name is AUTOZONE_INC_; and the other names are None
The code is MNCUSA; the name is AUXILIUM_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is AVAGO_TECHNOLOGIES_; and the other names are None
The code is MNCSGP; the name is AVALONBAY_COMMUNITIES_; and the other names are None
The code is MNCUSA; the name is AVANIR_PHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is AVATAR_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is AVEO_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is AVERY_DENNISON_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AVI_BIOPHARMA_; and the other names are None
The code is MNCUSAHLH; the name is AVIAT_NETWORKS_; and the other names are None
The code is MNCUSAMED; the name is AVID_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is AVIS_BUDGET_GROUP_; and the other names are None
The code is MNC; the name is AVISTA_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AVIVA_PLC_; and the other names are None
The code is MNCGBR; the name is AVNET_INC_; and the other names are None
The code is MNCUSA; the name is AVON_PRODUCTS_; and the other names are None
The code is MNCUSA; the name is AVX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is AXCELIS_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is AXIATA_GROUP_; and the other names are None
The code is MNCMYS; the name is AXIS_CAPITAL_HOLDINGS_; and the other names are None
The code is MNCBMU; the name is AXT_INC_; and the other names are None
The code is MNCUSA; the name is AZZ_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is B&G_FOODS_; and the other names are None
The code is MNC; the name is B.O.S._BETTER_ONLINE_SOLUTIONS_; and the other names are None
The code is MNCISR; the name is B_COMMUNICATIONS_LTD_; and the other names are None
The code is MNCISRMED; the name is B+H_OCEAN_CARRIERS_; and the other names are None
The code is MNCBMU; the name is BABCOCK_AND_WILCOX_; and the other names are None
The code is MNC; the name is BADGER_METER_INC_; and the other names are None
The code is MNCUSA; the name is BAIDU,_INC_; and the other names are None
The code is MNCCHN; the name is BAKER_HUGHES_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is BAKER_MICHAEL_CORP_; and the other names are None
The code is MNCUSA; the name is BALCHEM_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BALDOR_ELECTRIC_COMPANY_; and the other names are None
The code is MNCUSA; the name is BALDWIN_AND_LYONS_; and the other names are None
The code is MNCUSA; the name is BALL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BALLANTYNE_STRONG_; and the other names are None
The code is MNCUSA; the name is BALLARD_POWER_SYSTEMS_; and the other names are None
The code is MNCCAN; the name is BALLY_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is BALTIC_TRADING_LIMITED_; and the other names are None
The code is MNC; the name is BANCA_INTESA_; and the other names are None
The code is MNCITA; the name is BANCO_BILBAO_VISCAYA_ARGENTARIA_; and the other names are None
The code is MNCESP; the name is BANCO_BILBAO_VIZCAYA_ARGENTARIA_; and the other names are None
The code is MNCESP; the name is BANCO_BRADESCO_; and the other names are None
The code is MNCBRA; the name is BANCO_DE_CHILE_; and the other names are None
The code is MNCCHL; the name is BANCO_LATINOAMERICANO_DE_COMERCIO_EXTERIOR_; and the other names are None
The code is MNCPAN; the name is BANCO_MACRO_; and the other names are None
The code is MNC; the name is BANCO_SANTANDER_; and the other names are None
The code is MNCESP; the name is BANCO_SANTIAGO_; and the other names are None
The code is MNCCHL; the name is BANCOLOMBIA_; and the other names are None
The code is MNCCOL; the name is BANCORP_RHODE_ISLAND_; and the other names are None
The code is MNCUSA; the name is BANCORPSOUTH_; and the other names are None
The code is MNCUSA; the name is BANCROFT_CONVERTIBLE_FUND_; and the other names are None
The code is MNCUSA; the name is BANK_MUTUAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BANK_OF_AMERICA_; and the other names are None
The code is MNCUSA; the name is BANK_OF_CHINA_; and the other names are None
The code is MNCCHN; the name is BANK_OF_COMMERCE_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is BANK_OF_HAWAII_CORP_; and the other names are None
The code is MNCUSA; the name is BANK_OF_MARIN_BANCORP_; and the other names are None
The code is MNCUSA; the name is BANK_OF_MONTREAL_; and the other names are None
The code is MNCCAN; the name is BANK_OF_NEW_YORK_MELLON_CORP_; and the other names are None
The code is MNCUSA; the name is BANK_OF_NOVA_SCOTIA_; and the other names are None
The code is MNCCAN; the name is BANK_OF_THE_OZARKS_; and the other names are None
The code is MNCUSA; the name is BANKATLANTIC_BANCORP_; and the other names are None
The code is MNCUSA; the name is BANKFINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is BANNER_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BANRO_CORPORATION_; and the other names are None
The code is MNC; the name is BAR_HARBOR_BANKSHARES_; and the other names are None
The code is MNCUSA; the name is BARCLAYS_PLC_; and the other names are None
The code is MNCGBR; the name is BARNES_AND_NOBLE_; and the other names are None
The code is MNCUSA; the name is BARNES_GROUP_; and the other names are None
The code is MNCUSA; the name is BARRETT_BUSINESS_SERVICES_; and the other names are None
The code is MNCUSA; the name is BARRICK_GOLD_CORPORATION_; and the other names are None
The code is MNCCAN; the name is BASIC_ENERGY_SERVICES_INC_; and the other names are None
The code is MNC; the name is BAXTER_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSAHLH; the name is BAYERISCHE_HYPO_UND_VEREINSBANK_; and the other names are None
The code is MNCDEU; the name is BAYTEX_ENERGY_TRUST_; and the other names are None
The code is MNCCAN; the name is BB&T_COR_; and the other names are None
The code is MNCUSA; the name is BBVA_BANCO_FRANCES_; and the other names are None
The code is MNCARG; the name is BCB_BANCORP_; and the other names are None
The code is MNCUSA; the name is BCE_INC_; and the other names are None
The code is MNCCANMED; the name is BE_AEROSPACE_INC_; and the other names are None
The code is MNCUSA; the name is BEACON_FEDERAL_BANCORP_; and the other names are None
The code is MNCUSA; the name is BEACON_POWER_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BEACON_ROOFING_SUPPLY_; and the other names are None
The code is MNCUSA; the name is BEAZER_HOMES_USA_; and the other names are None
The code is MNCUSA; the name is BEBE_STORES_; and the other names are None
The code is MNCUSA; the name is BECKMAN_COULTER_; and the other names are None
The code is MNCUSA; the name is BECTON_DICKINSON_AND_CO_; and the other names are None
The code is MNCUSAHLH; the name is BED_BATH_AND_BEYOND_; and the other names are None
The code is MNCUSA; the name is BEL_FUSE_INC_; and the other names are None
The code is MNCUSA; the name is BELDEN_CDT_; and the other names are None
The code is MNCMED; the name is BELO_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BEMIS_COMPANY_INC_; and the other names are None
The code is MNCUSA; the name is BENCHMARK_ELECTRONICS_INC_; and the other names are None
The code is MNCUSA; the name is BENEFICIAL_MUTUAL_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is BENIHANA_INC_; and the other names are None
The code is MNCUSA; the name is BERKSHIRE_HATHAWAY_INC_; and the other names are None
The code is MNCUSA; the name is BERKSHIRE_HILLS_BANCORP_; and the other names are None
The code is MNCUSA; the name is BERRY_PETROLEUM_COMPANY_; and the other names are None
The code is MNCUSA; the name is BEST_BUY_CO_; and the other names are None
The code is MNCUSA; the name is BGC_PARTNERS_; and the other names are None
The code is MNCUSA; the name is BIG_5_SPORTING_GOODS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BIG_LOTS_INC_; and the other names are None
The code is MNCUSA; the name is BIGBAND_NETWORKS_; and the other names are None
The code is MNCUSAMED; the name is BIGLARI_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is BILL_BARRETT_CORPORATION_; and the other names are None
The code is MNC; the name is BIO_RAD_LABORATORIES_; and the other names are None
The code is MNCUSA; the name is BIO_REFERENCE_LABORATORIES_INC_; and the other names are None
The code is MNCUSAHLH; the name is BIOCRYST_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is BIODEL_INC_; and the other names are None
The code is MNCUSAHLH; the name is BIOGEN_IDEC_INC_; and the other names are None
The code is MNCUSA; the name is BIOMARIN_PHARMACEUTICAL_INC_; and the other names are None
The code is MNCUSAHLH; the name is BIOMED_REALTY_TRUST_; and the other names are None
The code is MNC; the name is BIOMIMETIC_THERAPEUTICS_; and the other names are None
The code is MNCUSAHLH; the name is BIOSANTE_PHARMACEUTICALS_INC_; and the other names are None
The code is MNCUSAHLH; the name is BIOSCRIP_INC_; and the other names are None
The code is MNCUSAHLH; the name is BIOSPECIFICS_TECHNOLOGIES_CORP_; and the other names are None
The code is MNCUSAHLH; the name is BIOSPHERE_MEDICAL_INC_; and the other names are None
The code is MNCUSAHLH; the name is BIOSTAR_PHARMACEUTICALS_; and the other names are None
The code is MNCCHNHLH; the name is BIOTIME_INC_; and the other names are None
The code is MNCUSA; the name is BIOVAIL_CORPORATION_; and the other names are None
The code is MNCCANHLH; the name is BITSTREAM_INC_; and the other names are None
The code is MNCUSA; the name is BJ'S_RESTAURANTS_; and the other names are None
The code is MNCUSA; the name is BJ'S_WHOLESALE_CLUB_; and the other names are None
The code is MNCUSA; the name is BLACK_BOX_CORP_; and the other names are None
The code is MNCUSA; the name is BLACK_HILLS_CORP_; and the other names are None
The code is MNCUSA; the name is BLACKBAUD_INC_; and the other names are None
The code is MNCUSA; the name is BLACKBOARD_INC_; and the other names are None
The code is MNCUSA; the name is BLACKROCK_; and the other names are None
The code is MNCUSA; the name is BLOUNT_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is BLUE_COAT_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is BLUE_NILE_INC_; and the other names are None
The code is MNCUSA; the name is BLUE_SQUARE_ISRAEL_; and the other names are None
The code is MNCISR; the name is BLUEGREEN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BLUELINX_HOLDINGS_; and the other names are None
The code is MNC; the name is BLUEPHOENIX_SOLUTIONS_; and the other names are None
The code is MNCISR; the name is BLYTH_INC_; and the other names are None
The code is MNCUSA; the name is BMB_MUNAI_; and the other names are None
The code is MNCKAZ; the name is BMC_SOFTWARE_INC_; and the other names are None
The code is MNCUSA; the name is BMP_SUNSTONE_CORP_; and the other names are None
The code is MNCUSAHLH; the name is BNC_BANCORP_; and the other names are None
The code is MNCUSA; the name is BNP_PARIBAS_; and the other names are None
The code is MNCUSA; the name is BOB_EVANS_FARMS_; and the other names are None
The code is MNCUSA; the name is BOEING_; and the other names are None
The code is MNCUSA; the name is BOFI_HOLDING_INC_; and the other names are None
The code is MNCUSA; the name is BOISE_INC_; and the other names are None
The code is MNC; the name is BOK_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is BOLT_TECHNOLOGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BONSO_ELECTRONICS_INTERNATIONAL_; and the other names are None
The code is MNCCHNHKG; the name is BON-TON_STORES_; and the other names are None
The code is MNCUSA; the name is BOOKS_A_MILLION_INC_; and the other names are None
The code is MNCUSA; the name is BOOTS_AND_COOTS_INC_; and the other names are None
The code is MNCUSA; the name is BORDERS_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is BORGWARNER_; and the other names are None
The code is MNCUSA; the name is BOSTON_BEER_COMPANY_INC_; and the other names are None
The code is MNCUSA; the name is BOSTON_PRIVATE_FINANCIAL_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is BOSTON_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is BOSTON_SCIENTIFIC_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is BOTTOMLINE_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is BOULDER_TOTAL_RETURN_FUND_INC_; and the other names are None
The code is MNCUSA; the name is BOWNE_AND_CO_; and the other names are None
The code is MNCUSAMED; the name is BOYD_GAMING_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BP_; and the other names are None
The code is MNCGBR; the name is BPZ_RESOURCES_; and the other names are None
The code is MNCUSA; the name is BRADY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BRANDYWINE_REALTY_TRUST_; and the other names are None
The code is MNCUSA; the name is BRASIL_TELECOM_; and the other names are None
The code is MNCBRAMED; the name is BRE_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is BREEZE-EASTERN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BREITBURN_ENERGY_PARTNERS_; and the other names are None
The code is MNCUSA; the name is BRF_BRASIL_FOODS_; and the other names are None
The code is MNCBRA; the name is BRIDGE_BANCORP_; and the other names are None
The code is MNCUSA; the name is BRIDGE_CAPITAL_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is BRIDGEPOINT_EDUCATION_; and the other names are None
The code is MNCEDU; the name is BRIDGFORD_FOODS_CORP_; and the other names are None
The code is MNCUSA; the name is BRIGGS_AND_STRATTON_; and the other names are None
The code is MNCUSA; the name is BRIGHAM_EXPLORATION_COMPANY_; and the other names are None
The code is MNCUSA; the name is BRIGHTPOINT_INC_; and the other names are None
The code is MNCUSA; the name is BRINKER_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is BRINK'S_COMPANY_; and the other names are None
The code is MNCUSA; the name is BRISTOL_MYERS_SQUIBB_; and the other names are None
The code is MNCUSAHLH; the name is BRISTOW_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is BRITISH_AMERICAN_TOBACCO_INDUSTRIES_; and the other names are None
The code is MNCGBRAGR; the name is BRITISH_PETROLEUM_; and the other names are None
The code is MNC; the name is BROADCOM_CORP_; and the other names are None
The code is MNCUSA; the name is BROADRIDGE_FINANCIAL_SOLUTIONS_; and the other names are None
The code is MNCUSA; the name is BROADSOFT_INC_; and the other names are None
The code is MNCUSA; the name is BROADWIND_ENERGY_; and the other names are None
The code is MNCUSA; the name is BROCADE_COMMUNICATIONS_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is BRONCO_DRILLING_CO_; and the other names are None
The code is MNCUSA; the name is BROOKDALE_SENIOR_LIVING_; and the other names are None
The code is MNCHLH; the name is BROOKFIELD_ASSET_MANAGEMENT_; and the other names are None
The code is MNCCAN; the name is BROOKFIELD_HOMES_CORP_; and the other names are None
The code is MNC; the name is BROOKFIELD_INFRASTRUCTURE_PARTNERS_; and the other names are None
The code is MNC; the name is BROOKFIELD_PROPERTIES_CORPORATION_; and the other names are None
The code is MNCCAN; the name is BROOKLINE_BANCORP_; and the other names are None
The code is MNCUSA; the name is BROOKS_AUTOMATION_INC_; and the other names are None
The code is MNCUSA; the name is BROWN_AND_BROWN_INC_; and the other names are None
The code is MNCUSA; the name is BROWN_FORMAN_; and the other names are None
The code is MNC; the name is BROWN_SHOE_COMPANY_; and the other names are None
The code is MNCUSA; the name is BRT_REALTY_TRUST_; and the other names are None
The code is MNCUSA; the name is BRUKER_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BRUNSWICK_CORPORATION_; and the other names are None
The code is MNCUSA; the name is BRUSH_ENGINEERED_MATERIALS_INC_; and the other names are None
The code is MNCUSA; the name is BRYN_MAWR_BANK_CORP_; and the other names are None
The code is MNCUSA; the name is BT_GROUP_; and the other names are None
The code is MNCGBRMED; the name is BUCKEYE_GP_; and the other names are None
The code is MNC; the name is BUCKEYE_PARTNERS_; and the other names are None
The code is MNCUSA; the name is BUCKEYE_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is BUCKLE_INC_; and the other names are None
The code is MNCUSA; the name is BUCYRUS_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is BUFFALO_WILD_WINGS_; and the other names are None
The code is MNCUSA; the name is BUILD-A-BEAR_WORKSHOP_; and the other names are None
The code is MNC; the name is BUILDERS_FIRSTSOURCE_; and the other names are None
The code is MNCUSA; the name is BUNGE_LIMITED_; and the other names are None
The code is MNCUSA; the name is BURGER_KING_; and the other names are None
The code is MNCUSA; the name is BZMD_; and the other names are None
The code is MNCUSA; the name is C.H._ROBINSON_; and the other names are None
The code is MNCUSA; the name is C.R._BARD_; and the other names are None
The code is MNCUSAHLH; the name is CA_INC_; and the other names are None
The code is MNCUSA; the name is CABELA'S_; and the other names are None
The code is MNCUSA; the name is CABLEVISION_SYSTEMS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CABOT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CABOT_MICROELECTRONICS_CORP_; and the other names are None
The code is MNCUSA; the name is CABOT_OIL_AND_GAS_CORP_; and the other names are None
The code is MNCUSA; the name is CACI_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is CADENCE_DESIGN_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is CADENCE_PHARMA_; and the other names are None
The code is MNCUSAHLH; the name is CADIZ_INC_; and the other names are None
The code is MNCUSA; the name is CAE_INC_; and the other names are None
The code is MNC; the name is CAERUS_ASSOCIATES; and the other names are None
The code is MNCUSA; the name is CAI_INTERNATIONAL_; and the other names are +CAERUS_ANALYTICS
The code is MNC; the name is CAL_DIVE_INTERNATIONAL_; and the other names are None
The code is MNC; the name is CAL_MAINE_FOODS_; and the other names are None
The code is MNCUSAAGR; the name is CALAMOS_ASSET_MANAGEMENT_; and the other names are None
The code is MNCUSA; the name is CALAMOS_GLOBAL_; and the other names are None
The code is MNC; the name is CALAMP_CORP_; and the other names are None
The code is MNCUSA; the name is CALAVO_GROWERS_; and the other names are None
The code is MNCUSAAGR; the name is CALGON_CARBON_CORP_; and the other names are None
The code is MNCUSA; the name is CALIFORNIA_FIRST_NATIONAL_BANCORP_; and the other names are None
The code is MNCUSA; the name is CALIFORNIA_PIZZA_KITCHEN_; and the other names are None
The code is MNCUSA; the name is CALIPER_LIFE_SCIENCES_INC_; and the other names are None
The code is MNCUSA; the name is CALIX_INC_; and the other names are None
The code is MNCMED; the name is CALLAWAY_GOLF_COMPANY_; and the other names are None
The code is MNCUSA; the name is CALLIDUS_SOFTWARE_; and the other names are None
The code is MNCUSA; the name is CALLON_PETROLEUM_COMPANY_; and the other names are None
The code is MNCUSA; the name is CALPINE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CALUMET_SPECIALTY_PRODUCTS_PARTNERS_; and the other names are None
The code is MNCUSA; the name is CAMAC_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is CAMBIUM_LEARNING_GROUP_; and the other names are None
The code is MNCUSAMED; the name is CAMBREX_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is CAMDEN_NATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CAMDEN_PROPERTY_TRUST_; and the other names are None
The code is MNCUSA; the name is CAMECO_CORPORATION_; and the other names are None
The code is MNCCAN; the name is CAMERON_INTERNATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CAMPBELL_SOUP_COMPANY_; and the other names are None
The code is MNCUSA; the name is CAMTEK_; and the other names are None
The code is MNCISR; the name is CANADIAN_IMPERIAL_BANK_OF_COMMERCE_; and the other names are None
The code is MNCCAN; the name is CANADIAN_NATIONAL_RAILWAY_; and the other names are None
The code is MNCCAN; the name is CANADIAN_NATURAL_RESOURCES_LIMITED_; and the other names are None
The code is MNCCAN; the name is CANADIAN_PACIFIC_RAILWAY_; and the other names are None
The code is MNCCAN; the name is CANADIAN_SOLAR_INC_; and the other names are None
The code is MNCCHN; the name is CANON_INC_; and the other names are None
The code is MNCJPN; the name is CANTEL_MEDICAL_CORP_; and the other names are None
The code is MNCUSAHLH; the name is CAPE_BANCORP_; and the other names are None
The code is MNCUSA; the name is CAPELLA_EDUCATION_COMPANY_; and the other names are None
The code is MNCUSA; the name is CAPITAL_CITY_BANK_GROUP_; and the other names are None
The code is MNCUSA; the name is CAPITAL_GOLD_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CAPITAL_ONE_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCGRC; the name is CAPITAL_SENIOR_LIVING_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CAPITAL_SOUTHWEST_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CAPITALAND_LIMITED_; and the other names are None
The code is MNCSGP; the name is CAPITALSOURCE_INC_; and the other names are None
The code is MNCUSA; the name is CAPITOL_FEDERAL_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is CAPLEASE_FUNDING_INC_; and the other names are None
The code is MNC; the name is CAPSTEAD_MORTGAGE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CAPSTONE_TURBINE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CARACO_PHARMACEUTICAL_LABORATORIES,_LTD_; and the other names are None
The code is MNCUSAHLH; the name is CARBO_CERAMICS_; and the other names are None
The code is MNCUSA; the name is CARDERO_RESOURCE_CORPORATION_; and the other names are None
The code is MNC; the name is CARDINAL_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CARDINAL_HEALTH_INC_; and the other names are None
The code is MNCUSAHLH; the name is CARDIOME_PHARMA_; and the other names are None
The code is MNCCANHLH; the name is CARDIONET_INC_; and the other names are None
The code is MNCUSAHLH; the name is CARDIOVASCULAR_SYSTEMS_INC_; and the other names are None
The code is MNCUSAHLH; the name is CARDTRONICS_INC_; and the other names are None
The code is MNCUSA; the name is CAREER_EDUCATION_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CAREFUSION_CORPORATION_; and the other names are None
The code is MNCHLH; the name is CARIBOU_COFFEE_CO_; and the other names are None
The code is MNCUSA; the name is CARLISLE_COMPANIES_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is CARMAX_INC_; and the other names are None
The code is MNCUSA; the name is CARMIKE_CINEMAS_; and the other names are None
The code is MNCUSA; the name is CARNIVAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CARNIVAL_PLC_; and the other names are None
The code is MNC; the name is CARPENTER_TECHNOLOGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CARRIAGE_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is CARRIZO_OIL_AND_GAS_; and the other names are None
The code is MNCUSA; the name is CARROLS_RESTAURANT_GROUP,_INC_; and the other names are None
The code is MNCUSA; the name is CARTER'S_INC_; and the other names are None
The code is MNCUSA; the name is CASCADE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CASELLA_WASTE_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is CASEYS_GENERAL_STORES_; and the other names are None
The code is MNCUSA; the name is CASH_AMERICA_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is CASS_INFORMATION_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is CASTLE_A.M._AND_CO_; and the other names are None
The code is MNCUSA; the name is CASUAL_MALE_RETAIL_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is CATALYST_HEALTH_SOLUTIONS_INC_; and the other names are None
The code is MNCUSA; the name is CATERPILLAR_INC_; and the other names are None
The code is MNCUSA; the name is CATHAY_GENERAL_BANCORP_; and the other names are None
The code is MNCUSA; the name is CATO_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CAVCO_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is CAVIUM_NETWORKS,_INC_; and the other names are None
The code is MNCUSA; the name is CB_RICHARD_ELLIS_GROUP_; and the other names are None
The code is MNC; the name is CBEYOND,_INC_; and the other names are None
The code is MNCUSAMED; the name is CBIZ_INC_; and the other names are None
The code is MNCUSA; the name is CBL_AND_ASSOCIATES_PROPERTIES_; and the other names are None
The code is MNCUSA; the name is CBOE_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is CBS_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is CDC_CORPORATION_; and the other names are None
The code is MNCCHNHKG; the name is CDC_IXIS_; and the other names are None
The code is MNCFRA; the name is CDC_SOFTWARE_CORPORATION_; and the other names are None
The code is MNCCHNHKG; the name is CDI_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CE_FRANKLIN_; and the other names are None
The code is MNCCAN; the name is CEC_ENTERTAINMENT_INC_; and the other names are None
The code is MNCUSA; the name is CECO_ENVIRONMENTAL_CORP_; and the other names are None
The code is MNCUSA; the name is CEDAR_SHOPPING_CENTERS_INC_; and the other names are None
The code is MNCUSA; the name is CEL_SCI_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CELADON_GROUP_; and the other names are None
The code is MNCUSA; the name is CELANESE_CORPORATION_; and the other names are None
The code is MNC; the name is CELERA_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CELESTICA_INC_; and the other names are None
The code is MNCCAN; the name is CELGENE_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is CELL_THERAPEUTICS_INC_; and the other names are None
The code is MNCUSAHLH; the name is CELLCOM_ISRAEL_; and the other names are None
The code is MNCISRMED; the name is CELLDEX_THERAPEUTICS_; and the other names are None
The code is MNCUSA; the name is CELLU_TISSUE_HOLDINGS_; and the other names are None
The code is MNC; the name is CEMEX_; and the other names are None
The code is MNCMEX; the name is CENOVUS_ENERGY_INC_; and the other names are None
The code is MNC; the name is CENTENE_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is CENTER_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is CENTER_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CENTERPOINT_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is CENTERSTATE_BANKS_; and the other names are None
The code is MNCUSA; the name is CENTRAIS_ELC_; and the other names are None
The code is MNC; the name is CENTRAL_EUROPE_AND_RUSSIA_FUND_INC_; and the other names are None
The code is MNCUSA; the name is CENTRAL_EUROPEAN_DISTRIBUTION_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CENTRAL_EUROPEAN_MEDIA_ENTERPRISES_; and the other names are None
The code is MNCBMUMED; the name is CENTRAL_FUND_OF_CANADA_LIMITED_; and the other names are None
The code is MNCCAN; the name is CENTRAL_GARDEN_AND_PET_CO_; and the other names are None
The code is MNCUSA; the name is CENTRAL_GOLD_TRUST_; and the other names are None
The code is MNCCAN; the name is CENTRAL_JERSEY_BANCORP_; and the other names are None
The code is MNCUSA; the name is CENTRAL_SECURITIES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CENTRAL_VERMONT_PUB_SVC_; and the other names are None
The code is MNCUSA; the name is CENTURY_ALUMINUM_COMPANY_; and the other names are None
The code is MNCUSA; the name is CENTURY_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is CENTURYLINK_INC_; and the other names are None
The code is MNCUSAMED; the name is CENVEO_INC_; and the other names are None
The code is MNCUSAMED; the name is CEPHALON_INC_; and the other names are None
The code is MNCUSAHLH; the name is CEPHEID_; and the other names are None
The code is MNCUSA; the name is CERADYNE_INC_; and the other names are None
The code is MNCUSA; the name is CERAGON_NETWORK_; and the other names are None
The code is MNCISRMED; the name is CERNER_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CERUS_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is CEVA_INC_; and the other names are None
The code is MNCUSA; the name is CF_INDUSTRIES_HOLDINGS_; and the other names are None
The code is MNCAGR; the name is CGI_GROUP_; and the other names are None
The code is MNCCAN; the name is CH_ENERGY_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is CHANGYOU.COM_; and the other names are None
The code is MNCCHN; the name is CHARLES_RIVER_LABORATORIES_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is CHARLES_SCHWAB_; and the other names are None
The code is MNCUSA; the name is CHARM_COMMUNICATIONS_INC_; and the other names are None
The code is MNCCHNMED; the name is CHARMING_SHOPPES_INC_; and the other names are None
The code is MNCUSA; the name is CHART_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is CHARTWELL_DIVIDEND_AND_INCOME_FUND_INC_; and the other names are None
The code is MNCUSA; the name is CHASE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CHATHAM_LODGING_TRUST_; and the other names are None
The code is MNC; the name is CHECK_POINT_SOFTWARE_TECHNOLOG_; and the other names are None
The code is MNCISR; the name is CHECKPOINT_SYSTEMS_INC_; and the other names are None
The code is MNCUSAMED; the name is CHEESECAKE_FACTORY_; and the other names are None
The code is MNCUSA; the name is CHELSEA_THERAPEUTICS_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is CHEMED_CORP_; and the other names are None
The code is MNCUSAHLH; the name is CHEMICAL_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CHENIERE_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is CHENIERE_ENERGY_PARTNERS_; and the other names are None
The code is MNCUSA; the name is CHEROKEE_INC_; and the other names are None
The code is MNCUSA; the name is CHESAPEAKE_ENERGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CHESAPEAKE_LODGING_TRUST_; and the other names are None
The code is MNCUSA; the name is CHESAPEAKE_UTILITIES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CHEVIOT_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is CHEVRON_CORP_; and the other names are None
The code is MNCUSA; the name is CHI_MEI_OPTOELECTRONICS_; and the other names are None
The code is MNCTWN; the name is CHICAGO_BRIDGE_AND_IRON_COMPANY_; and the other names are None
The code is MNCNLD; the name is CHICOPEE_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is CHICO'S_FAS_; and the other names are None
The code is MNCUSA; the name is CHILDREN'S_PLACE_RETAIL_STORES_; and the other names are None
The code is MNCUSA; the name is CHIMERA_INVESTMENT_CORPORATION_; and the other names are None
The code is MNC; the name is CHINA_AGRITECH_; and the other names are None
The code is MNCCHNAGR; the name is CHINA_AOXING_PHARMACEUTICAL_CO_; and the other names are None
The code is MNCUSAHLH; the name is CHINA_ARCHITECTURAL_ENGINEERING_INC_; and the other names are None
The code is MNCCHN; the name is CHINA_AUTO_LOGISTICS_INC_; and the other names are None
The code is MNCCHN; the name is CHINA_AUTOMOTIVE_SYSTEMS_INC_; and the other names are None
The code is MNCCHN; the name is CHINA_BAK_BATTERY_; and the other names are None
The code is MNCCHN; the name is CHINA_BIOLOGIC_PRODUCTS_INC_; and the other names are None
The code is MNCCHNHLH; the name is CHINA_BIOTICS_INC_; and the other names are None
The code is MNCCHNEDU; the name is CHINA_CABLECOM_HOLDINGS_; and the other names are None
The code is MNCCHNMED; the name is CHINA_COMMUNICATIONS_CONSTRUCTION_CO_; and the other names are None
The code is MNCCHN; the name is CHINA_CONSTRUCTION_BANK_; and the other names are None
The code is MNCCHN; the name is CHINA_CORD_BLOOD_CORPORATION_; and the other names are None
The code is MNCCHN; the name is CHINA_DIGITAL_TV_HOLDING_; and the other names are None
The code is MNCCHNMED; the name is CHINA_DISTANCE_EDUCATION_HOLDINGS_; and the other names are None
The code is MNCCHN; the name is CHINA_EASTERN_AIRLINES_; and the other names are None
The code is MNCCHN; the name is CHINA_EDUCATION_ALLIANCE_; and the other names are None
The code is MNCCHNEDU; the name is CHINA_ELECTRIC_MOTOR_INC_; and the other names are None
The code is MNCCHN; the name is CHINA_FINANCE_ONLINE_CO_; and the other names are None
The code is MNCCHN; the name is CHINA_FIRE_AND_SECURITY_GROUP_; and the other names are None
The code is MNCCHN; the name is CHINA_GENGSHENG_MINERALS_; and the other names are None
The code is MNCCHN; the name is CHINA_GERUI_ADVANCED_MATERIALS_; and the other names are None
The code is MNCCHN; the name is CHINA_GREEN_AGRICULTURE,_INC_; and the other names are None
The code is MNCCHNAGR; the name is CHINA_GRENTECH_CORPORATION_LIMITED_; and the other names are None
The code is MNCCHNMED; the name is CHINA_HOUSING_AND_LAND_DEVELOPMENT_INC_; and the other names are None
The code is MNCCHN; the name is CHINA_HYDROELECTRIC_CORPORATION_; and the other names are None
The code is MNCCHN; the name is CHINA_INFORMATION_TECHNOLOGY_INC_; and the other names are None
The code is MNCCHNMED; the name is CHINA_INFRASTRUCTURE_INVESTMENT_CORPORATION_; and the other names are None
The code is MNCCHN; the name is CHINA_INSONLINE_CORP_; and the other names are None
The code is MNCCHNHKG; the name is CHINA_INTEGRATED_ENERGY_; and the other names are None
The code is MNCCHN; the name is CHINA_INTELLIGENT_LIGHTING_AND_ELECTRONICS_; and the other names are None
The code is MNCCHN; the name is CHINA_LIFE_INSURANCE_COMPANY_; and the other names are None
The code is MNCCHN; the name is CHINA_LODGING_GROUP_; and the other names are None
The code is MNCCHN; the name is CHINA_MARINE_FOOD_GROUP_LIMITED_; and the other names are None
The code is MNCCHN; the name is CHINA_MASS_MEDIA_CORP_; and the other names are None
The code is MNCCHNMED; the name is CHINA_MEDIAEXPRESS_HOLDINGS_; and the other names are None
The code is MNCCHNHKGMED; the name is CHINA_MEDICAL_TECHNOLOGIES_INC_; and the other names are None
The code is MNCCHNHLH; the name is CHINA_METRO_RURAL_HOLDINGS_; and the other names are None
The code is MNCCHN; the name is CHINA_MOBILE_; and the other names are None
The code is MNCCHNMED; the name is CHINA_NATURAL_GAS_INC_; and the other names are None
The code is MNCCHN; the name is CHINA_NATURAL_RESOURCES,_INC_; and the other names are None
The code is MNCCHNHKG; the name is CHINA_NEPSTAR_CHAIN_; and the other names are None
The code is MNCHLH; the name is CHINA_NEW_BORUN_CORPORATION_; and the other names are None
The code is MNCCHN; the name is CHINA_NORTH_EAST_PETROLEUM_HOLDINGS_LIMITED_; and the other names are None
The code is MNCUSA; the name is CHINA_NUOKANG_BIO-PHARMACEUTICAL_; and the other names are None
The code is MNCCHNHLH; the name is CHINA_NUTRIFRUIT_GROUP_; and the other names are None
The code is MNCCHN; the name is CHINA_PETROLEUM_AND_CHEMICAL_CORPORATION_; and the other names are None
The code is MNCCHN; the name is CHINA_PHARMA_HOLDINGS_INC_; and the other names are None
The code is MNCCHNHLH; the name is CHINA_PRECISION_STEEL_INC_; and the other names are None
The code is MNCCHNHKG; the name is CHINA_REAL_ESTATE_INFORMATION_CORPORATION_; and the other names are None
The code is MNC; the name is CHINA_RECYCLING_ENERGY_CORPORATION_; and the other names are None
The code is MNCCHN; the name is CHINA_RITAR_POWER_; and the other names are None
The code is MNCCHN; the name is CHINA_SECURITY_AND_SURVEILLANCE_TECHNOLOGY_INC_; and the other names are None
The code is MNCCHNMED; the name is CHINA_SHEN_ZHOU_MINING_AND_RESOURCES_; and the other names are None
The code is MNCCHN; the name is CHINA_SHENGHUO_PHARMACEUTICAL_; and the other names are None
The code is MNCCHNHLH; the name is CHINA_SKY_ONE_MEDICAL_; and the other names are None
The code is MNCCHNHLH; the name is CHINA_SOUTHERN_AIRLINES_; and the other names are None
The code is MNCCHN; the name is CHINA_SUNERGY_CO_; and the other names are None
The code is MNCCHN; the name is CHINA_TECHFAITH_WIRELESS_; and the other names are None
The code is MNCCHN; the name is CHINA_TECHNOLOGY_DEVELOPMENT_GROUP_CORPORATION_; and the other names are None
The code is MNCCHNHKG; the name is CHINA_TELECOM_; and the other names are None
The code is MNCCHNMED; the name is CHINA_TRANSINFO_TECHNOLOGY_; and the other names are None
The code is MNCCHN; the name is CHINA_VALVES_TECHNOLOGY_; and the other names are None
The code is MNCCHN; the name is CHINA_WIND_SYSTEMS_INC_; and the other names are None
The code is MNCCHN; the name is CHINA_XD_PLASTICS_COMPANY_; and the other names are None
The code is MNCCHN; the name is CHINA_YIDA_HOLDING_; and the other names are None
The code is MNCCHNMED; the name is CHINA_YUCHAI_INTERNATIONAL_; and the other names are None
The code is MNCSGP; the name is CHINACAST_EDUCATION_CORPORATION_; and the other names are None
The code is MNCCHNHKGEDU; the name is CHINAEDU_CORPORATION_; and the other names are None
The code is MNCCHN; the name is CHINANET_ONLINE_HOLDINGS_; and the other names are None
The code is MNCCHNMED; the name is CHINDEX_INTERNATIONAL_; and the other names are None
The code is MNCUSAHLH; the name is CHIPMOS_TECHNOLOGIES_; and the other names are None
The code is MNCTWN; the name is CHIPOTLE_MEXICAN_GRILL_; and the other names are None
The code is MNC; the name is CHIQUITA_BRANDS_INTERNATIONAL_; and the other names are None
The code is MNCUSAAGR; the name is CHOICE_HOTELS_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is CHOPU_; and the other names are None
The code is MNCCHN; the name is CHRISTOPHER_AND_BANKS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CHS_INC_; and the other names are None
The code is MNCUSAAGR; the name is CHUBB_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CHUNGHWA_TELECOM_; and the other names are None
The code is MNCTWNMED; the name is CHURCH_AND_DWIGHT_CO_; and the other names are None
The code is MNCUSA; the name is CHURCHILL_DOWNS_INC_; and the other names are None
The code is MNCUSA; the name is CIBC_; and the other names are None
The code is MNCCAN; the name is CIBER_INC_; and the other names are None
The code is MNCUSA; the name is CIBT_EDUCATION_GROUP_; and the other names are None
The code is MNCCAN; the name is CIENA_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is CIGNA_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is CIGNA_HIGH_INCOME_SHARES_; and the other names are None
The code is MNCUSA; the name is CIMAREX_ENERGY_CO_; and the other names are None
The code is MNCUSA; the name is CIMATRON_; and the other names are None
The code is MNCISR; the name is CINCINNATI_BELL_INC_; and the other names are None
The code is MNCUSAMED; the name is CINCINNATI_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CINEMARK_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is CINTAS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CIRCOR_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is CIRRUS_LOGIC_INC_; and the other names are None
The code is MNCUSA; the name is CISCO_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is CIT_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is CITI_TRENDS_INC_; and the other names are None
The code is MNCUSA; the name is CITIGROUP_; and the other names are None
The code is MNCUSA; the name is CITIZENS_AND_NORTHERN_CORP_; and the other names are None
The code is MNCUSA; the name is CITIZENS_HOLDING_COMPANY_; and the other names are None
The code is MNCUSA; the name is CITIZENS_INC_; and the other names are None
The code is MNCUSA; the name is CITIZENS_REPUBLIC_BANCORP_; and the other names are None
The code is MNCUSA; the name is CITRIX_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is CITY_HOLDING_COMPANY_; and the other names are None
The code is MNCUSA; the name is CITY_NATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CITY_TELECOM_; and the other names are None
The code is MNCCHNHKGMED; the name is CKX_INC_; and the other names are None
The code is MNCUSA; the name is CLARCOR_INC_; and the other names are None
The code is MNCUSA; the name is CLARIENT_INC_; and the other names are None
The code is MNCUSAHLH; the name is CLARUS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CLAUDE_RESOURCES_; and the other names are None
The code is MNC; the name is CLAYMORE/GUGGENHEIM_STRATEGIC_OPPORTUNITIES_FUND_; and the other names are None
The code is MNC; the name is CLAYMORE_DIVIDEND_AND_INCOME_FUND_; and the other names are None
The code is MNCUSA; the name is CLAYTON_WILLIAMS_; and the other names are None
The code is MNCUSA; the name is CLEAN_ENERGY_FUELS_CORP_; and the other names are None
The code is MNCUSA; the name is CLEAN_HARBORS_INC_; and the other names are None
The code is MNCUSA; the name is CLEAR_CHANNEL_OUTDOOR_HOLDINGS_; and the other names are None
The code is MNC; the name is CLEARWATER_PAPER_CORPORATION_; and the other names are None
The code is MNC; the name is CLEARWIRE_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is CLECO_POWER_LLC_; and the other names are None
The code is MNCUSA; the name is CLEVELAND_BIOLABS_INC_; and the other names are None
The code is MNCUSA; the name is CLICKSOFTWARE_; and the other names are None
The code is MNCISR; the name is CLIFFS_NATURAL_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is CLIFTON_SAVINGS_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is CLINICAL_DATA_INC_; and the other names are None
The code is MNCUSAHLH; the name is CLOROX_COMPANY_; and the other names are None
The code is MNCUSA; the name is CLOUD_PEAK_ENERGY_; and the other names are None
The code is MNC; the name is CLOUGH_GLOBAL_OPPORTUNITIES_FUND_; and the other names are None
The code is MNCUSA; the name is CLP_HOLDINGS_; and the other names are None
The code is MNCCHNHKG; the name is CME_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is CMS_ENERGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CNA_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CNA_SURETY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CNB_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CNF_INC_; and the other names are None
The code is MNCUSA; the name is CNH_GLOBAL_; and the other names are None
The code is MNCNLD; the name is CNINSURE_; and the other names are None
The code is MNCCHN; the name is CNO_FINANCIAL_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is CNOOC_LIMITED_; and the other names are None
The code is MNCCHN; the name is COACH_INC_; and the other names are None
The code is MNCUSA; the name is COBALT_INTERNATIONAL_ENERGY_; and the other names are None
The code is MNC; the name is COBIZ_FINANCIAL_INC_; and the other names are None
The code is MNCUSA; the name is COCA_COLA_FEMSA_; and the other names are None
The code is MNCMEX; the name is COCA_COLA_HELLENIC_BOTTL_; and the other names are None
The code is MNCAUS; the name is COCA-COLA_; and the other names are None
The code is MNCUSA; the name is CODEXIS_INC_; and the other names are None
The code is MNCUSA; the name is COEUR_D'ALENE_MINES_; and the other names are None
The code is MNCUSA; the name is COGDELL_SPENCER_; and the other names are None
The code is MNC; the name is COGENT_COMMUNICATIONS_GROUP_; and the other names are None
The code is MNCUSA; the name is COGENT_INC_; and the other names are None
The code is MNCUSA; the name is COGNEX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is COGNIZANT_TECHNOLOGY_SOLUTIONS_CORP_; and the other names are None
The code is MNCUSA; the name is COGO_GROUP_; and the other names are None
The code is MNCCHN; the name is COHEN_AND_STEERS_; and the other names are None
The code is MNCUSA; the name is COHERENT_INC_; and the other names are None
The code is MNCUSA; the name is COHN_AND_STEERS_; and the other names are None
The code is MNC; the name is COHU_INC_; and the other names are None
The code is MNCUSA; the name is COINSTAR_INC_; and the other names are None
The code is MNCUSA; the name is COLDWATER_CREEK_INC_; and the other names are None
The code is MNCUSA; the name is COLEMAN_CABLE_INC_; and the other names are None
The code is MNCUSAMED; the name is COLFAX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is COLLECTIVE_BRANDS_INC_; and the other names are None
The code is MNCUSA; the name is COLLECTORS_UNIVERSE_INC_; and the other names are None
The code is MNCUSA; the name is COLONY_FINANCIAL_; and the other names are None
The code is MNC; the name is COLUMBIA_BANKING_SYSTEM_INC_; and the other names are None
The code is MNCUSA; the name is COLUMBIA_LABORATORIES_INC_; and the other names are None
The code is MNCUSAHLH; the name is COLUMBIA_SPORTSWEAR_COMPANY_; and the other names are None
The code is MNCUSA; the name is COLUMBUS_MCKINNON_CORPORATION_; and the other names are None
The code is MNCUSA; the name is COMBINATORX_INC_; and the other names are None
The code is MNCUSAHLH; the name is COMCAST_; and the other names are None
The code is MNCUSAMED; the name is COMERICA_INC_; and the other names are None
The code is MNCUSA; the name is COMFORT_SYSTEMS_USA_INC_; and the other names are None
The code is MNCUSA; the name is COMM_BANCORP_; and the other names are None
The code is MNCUSA; the name is COMMERCE_BANCSHARES_INC_; and the other names are None
The code is MNCUSA; the name is COMMERCIAL_METALS_COMPANY_; and the other names are None
The code is MNCUSA; the name is COMMERCIAL_VEHICLE_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is COMMERZBANK_; and the other names are None
The code is MNCDEU; the name is COMMONWEALTH_REIT_; and the other names are None
The code is MNCUSA; the name is COMMSCOPE_INC_; and the other names are None
The code is MNCUSA; the name is COMMTOUCH_SOFTWARE_LTD_; and the other names are None
The code is MNCUSAMED; the name is COMMUNICATIONS_SYSTEMS_INC_; and the other names are None
The code is MNCUSAMED; the name is COMMUNITY_BANK_SYSTEM_INC_; and the other names are None
The code is MNCUSA; the name is COMMUNITY_HEALTH_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is COMMUNITY_TRUST_BANCORP_; and the other names are None
The code is MNCUSA; the name is COMMVAULT_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is COMP_EN_DE_MN_CEMIG_ADS_; and the other names are None
The code is MNC; the name is COMPAGNIE_GENERALE_DE_GEOPHYSIQUE-VERITAS_; and the other names are None
The code is MNC; the name is COMPAL_ELECTRONICS_; and the other names are None
The code is MNCTWN; the name is COMPANHIA_BRASILEIRA_DE_DISTRIBUICAO_; and the other names are None
The code is MNCBRA; the name is COMPANHIA_DE_BEBIDAS_DAS_AMERICAS_; and the other names are None
The code is MNCBRA; the name is COMPANHIA_DE_SANEAMENTO_BASICO_DO_ESTADO_DE_SAO_PAULO_; and the other names are None
The code is MNCBRA; the name is COMPANHIA_PARANAENSE_DE_ENERGIA_; and the other names are None
The code is MNCBRA; the name is COMPANIA_CERVECERIAS_UNIDAS_; and the other names are None
The code is MNCCHL; the name is COMPANIA_MINA_BUENAVENTURA_; and the other names are None
The code is MNCPER; the name is COMPASS_DIVERSIFIED_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is COMPASS_MINERALS_INTL_INC_; and the other names are None
The code is MNCUSA; the name is COMPELLENT_TECHNOLOGIES_; and the other names are None
The code is MNC; the name is COMPLETE_PRODUCTION_SERVICES_INC_; and the other names are None
The code is MNC; the name is COMPUCREDIT_HOLDINGS_CORP_; and the other names are None
The code is MNCUSA; the name is COMPUGEN_; and the other names are None
The code is MNCISR; the name is COMPUTER_PROGRAMS_AND_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is COMPUTER_SCIENCES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is COMPUTER_TASK_GROUP_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is COMPUWARE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is COMSCORE_; and the other names are None
The code is MNCUSA; the name is COMSTOCK_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is COMTECH_TELECOMMUNICATIONS_CORP_; and the other names are None
The code is MNCUSA; the name is COMVERGE_INC_; and the other names are None
The code is MNCUSA; the name is CONAGRA_FOODS_INC_; and the other names are None
The code is MNCUSA; the name is CONCEPTUS_INC_; and the other names are None
The code is MNCUSAHLH; the name is CONCHO_RESOURCES_; and the other names are None
The code is MNC; the name is CONCORD_MEDICAL_SERVICES_; and the other names are None
The code is MNCHLH; the name is CONCUR_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is CONEXANT_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is CONMED_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CONNECTICUT_WATER_SERVICE_INC_; and the other names are None
The code is MNCUSA; the name is CONN'S_INC_; and the other names are None
The code is MNCUSA; the name is CONSOL_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is CONSOLIDATED_COMMUNICATIONS_HOLDINGS,_INC_; and the other names are None
The code is MNCUSAMED; the name is CONSOLIDATED_EDISON_COMPANY_OF_NEW_YORK_; and the other names are None
The code is MNCUSA; the name is CONSOLIDATED_GRAPHICS_INC_; and the other names are None
The code is MNCUSAMED; the name is CONSOLIDATED_TOMOKA_LAND_CO_; and the other names are None
The code is MNCUSA; the name is CONSOLIDATED_WATER_CO_; and the other names are None
The code is MNCCYM; the name is CONSTANT_CONTACT_INC_; and the other names are None
The code is MNCUSA; the name is CONSTELLATION_BRANDS_INC_; and the other names are None
The code is MNC; the name is CONSTELLATION_ENERGY_GROUP_; and the other names are None
The code is MNCUSA; the name is CONTANGO_OIL_AND_GAS_COMPANY_; and the other names are None
The code is MNCUSA; the name is CONTINENTAL_AIRLINES_; and the other names are None
The code is MNCUSA; the name is CONTINENTAL_RESOURCES_INC_; and the other names are None
The code is MNC; the name is CONTINUCARE_CORP_; and the other names are None
The code is MNCUSAHLH; the name is CONVERGYS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CONVIO_INC_; and the other names are None
The code is MNCUSA; the name is COOPER_COMPANIES_INC_; and the other names are None
The code is MNCUSA; the name is COOPER_INDUSTRIES,_PLC_; and the other names are None
The code is MNCUSA; the name is COOPER_TIRE_AND_RUBBER_CO_; and the other names are None
The code is MNCUSA; the name is COPA_HOLDINGS_; and the other names are None
The code is MNC; the name is COPANO_ENERGY_; and the other names are None
The code is MNCUSA; the name is COPART_INC_; and the other names are None
The code is MNCUSA; the name is COPENE_PETROQUIMICA_DO_NORDESTE_; and the other names are None
The code is MNCBRA; the name is COPERNIC_INC_; and the other names are None
The code is MNCCAN; the name is CORCEPT_THERAPEUTICS_INCORPORATED_; and the other names are None
The code is MNCUSAHLH; the name is CORE_LABORATORIES_; and the other names are None
The code is MNCNLD; the name is CORE_MARK_HOLDING_CO_; and the other names are None
The code is MNCUSA; the name is CORELOGIC_; and the other names are None
The code is MNC; the name is CORINTHIAN_COLLEGES_; and the other names are None
The code is MNCUSAEDU; the name is CORN_PRODUCTS_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is CORNERSTONE_PROGRESSIVE_RETURN_FUND_; and the other names are None
The code is MNC; the name is CORNERSTONE_THERAPEUTICS_INC_; and the other names are None
The code is MNCUSAHLH; the name is CORNING_INCORPORATED_; and the other names are None
The code is MNCUSAMED; the name is CORPBANCA_; and the other names are None
The code is MNCCHL; the name is CORPORATE_EXECUTIVE_BOARD_COMPANY_; and the other names are None
The code is MNCUSA; the name is CORPORATE_OFFICE_PROPERTIES_TRUST_; and the other names are None
The code is MNCUSA; the name is CORRECTIONS_CORPORATION_OF_AMERICA_; and the other names are None
The code is MNCUSA; the name is CORVEL_CORP_; and the other names are None
The code is MNCUSA; the name is COSAN_LIMITED_; and the other names are None
The code is MNC; the name is COST_PLUS_INC_; and the other names are None
The code is MNCUSA; the name is COSTAR_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is COSTCO_; and the other names are None
The code is MNCUSA; the name is COTT_CORPORATION_; and the other names are None
The code is MNCCAN; the name is COURIER_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is COUSINS_PROPERTIES_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is COVANCE_INC_; and the other names are None
The code is MNCUSA; the name is COVANTA_HOLDING_CORPORATION_; and the other names are None
The code is MNCUSA; the name is COVENANT_TRANSPORTATION_GROUP_; and the other names are None
The code is MNCUSA; the name is COVENTRY_HEALTH_CARE_; and the other names are None
The code is MNCUSAHLH; the name is COVIDIEN_PLC_; and the other names are None
The code is MNCIRLHLH; the name is COWEN_GROUP_; and the other names are None
The code is MNCUSA; the name is CP_RAIL_; and the other names are None
The code is MNCCAN; the name is CPEX_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is CPI_AEROSTRUCTURES_; and the other names are None
The code is MNCUSA; the name is CPI_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CPI_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is CRA_INTERNATIONALINC_; and the other names are None
The code is MNCUSA; the name is CRACKER_BARREL_OLD_COUNTRY_STORE_; and the other names are None
The code is MNCUSA; the name is CRAFT_BREWERS_ALLIANCE_; and the other names are None
The code is MNCUSA; the name is CRANE_COMPANY_; and the other names are None
The code is MNCUSA; the name is CRAWFORD_AND_COMPANY_; and the other names are None
The code is MNCUSA; the name is CRAY_INC_; and the other names are None
The code is MNCUSA; the name is CREDICORP_LTD_; and the other names are None
The code is MNCPER; the name is CREDIT_ACCEPTANCE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CREDIT_AGRICOLE_; and the other names are None
The code is MNCFRA; the name is CREDIT_SUISSE_; and the other names are None
The code is MNCCHE; the name is CREDO_PETROLEUM_CORP_; and the other names are None
The code is MNCUSA; the name is CREE_INC_; and the other names are None
The code is MNCARGAGR; the name is CREXUS_INVESTMENT_; and the other names are None
The code is MNC; the name is CRH_PLC_; and the other names are None
The code is MNCIRL; the name is CRIMSON_EXPLORATION_INC_; and the other names are None
The code is MNCUSA; the name is CROCS_INC_; and the other names are None
The code is MNCUSA; the name is CROSS_A.T._COMPANY_; and the other names are None
The code is MNCUSA; the name is CROSS_COUNTRY_HEALTHCARE_; and the other names are None
The code is MNCUSA; the name is CROSS_TIMBERS_ROYALTY_TRUST_; and the other names are None
The code is MNCUSA; the name is CROSSTEX_ENERGY_; and the other names are None
The code is MNCUSA; the name is CROWN_CASTLE_INTERNATIONAL_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is CROWN_CORK_AND_SEAL_COMPANY,_INC_; and the other names are None
The code is MNCUSA; the name is CROWN_MEDIA_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is CRUCELL_NV_; and the other names are None
The code is MNCNLD; the name is CRYOLIFE_INC_; and the other names are None
The code is MNCUSAHLH; the name is CRYPTOLOGIC_LIMITED_; and the other names are None
The code is MNCIRL; the name is CRYSTALLEX_INTERNATIONAL_; and the other names are None
The code is MNCCAN; the name is CSG_SYSTEMS_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is CSS_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is CSX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CTC_MEDIA_INC_; and the other names are None
The code is MNCRUS; the name is CTRIP.COM_; and the other names are None
The code is MNCCHN; the name is CTS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CUBIC_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CUBIC_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is CUBIST_PHARMACEUTICALS_INC_; and the other names are None
The code is MNCUSAHLH; the name is CULLEN/FROST_BANKERS_INC_; and the other names are None
The code is MNCUSA; the name is CULP_INC_; and the other names are None
The code is MNCUSA; the name is CUMBERLAND_PHARMACEUTICALS_INC_; and the other names are None
The code is MNCUSAHLH; the name is CUMMINS_INC_; and the other names are None
The code is MNCUSA; the name is CUMULUS_MEDIA_INC_; and the other names are None
The code is MNCUSA; the name is CURIS_INC_; and the other names are None
The code is MNCUSA; the name is CURTISS_WRIGHT_CORP_; and the other names are None
The code is MNCUSA; the name is CUTERA_INC_; and the other names are None
The code is MNCUSA; the name is CVB_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CVR_ENERGY_INC_; and the other names are None
The code is MNC; the name is CVS_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is CYBERDEFENDER_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CYBERONICS_INC_; and the other names are None
The code is MNCUSA; the name is CYBEROPTICS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CYMER_INC_; and the other names are None
The code is MNCUSA; the name is CYNOSURE_INC_; and the other names are None
The code is MNCUSA; the name is CYPRESS_BIOSCIENCE_INC_; and the other names are None
The code is MNCUSA; the name is CYPRESS_SEMICONDUCTOR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is CYPRESS_SHARPRIDGE_INVESTMENTS_; and the other names are None
The code is MNC; the name is CYTEC_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is CYTOKINETICS_INCORPORATED_; and the other names are None
The code is MNCUSAHLH; the name is CYTORI_THERAPEUTICS_; and the other names are None
The code is MNCUSAHLH; the name is CYTRX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is D._MEDICAL_INDUSTRIES_; and the other names are None
The code is MNCISRHLH; the name is D.R._HORTON_INC_; and the other names are None
The code is MNCUSA; the name is DAILY_JOURNAL_CORP_; and the other names are None
The code is MNCUSAMED; the name is DAKTRONICS_INC_; and the other names are None
The code is MNCUSA; the name is DANA_HOLDING_CORPORATION_; and the other names are None
The code is MNC; the name is DANAHER_CORPORATION_; and the other names are None
The code is MNCUSA; the name is DANAOS_CORPORATION_; and the other names are None
The code is MNC; the name is DANVERS_BANCORP_; and the other names are None
The code is MNCUSA; the name is DARDEN_RESTAURANTS_; and the other names are None
The code is MNCUSA; the name is DARLING_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is DAVITA_INC_; and the other names are None
The code is MNCUSA; the name is DAWSON_GEOPHYSICAL_COMPANY_; and the other names are None
The code is MNCUSA; the name is DCP_MIDSTREAM_PARTNERS_; and the other names are None
The code is MNC; the name is DCT_INDUSTRIAL_TRUST_; and the other names are None
The code is MNC; the name is DDI_CORP_; and the other names are None
The code is MNCUSA; the name is DEALERTRACK_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is DEAN_FOODS_COMPANY_; and the other names are None
The code is MNCUSA; the name is DECKERS_OUTDOOR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is DEER_CONSUMER_PRODUCTS_; and the other names are None
The code is MNCCHN; the name is DEERE_AND_COMPANY_; and the other names are None
The code is MNCUSA; the name is DEERFIELD_CAPITAL_CORP_; and the other names are None
The code is MNCUSA; the name is DEHAIER_MEDICAL_SYSTEMS_; and the other names are None
The code is MNCCHNHLH; the name is DEJOUR_ENTERPRISES_; and the other names are None
The code is MNCCAN; the name is DEL_MONTE_FOODS_; and the other names are None
The code is MNCUSA; the name is DELAWARE_ENHANCED_GLOBAL_DIVIDEND_; and the other names are None
The code is MNCUSA; the name is DELCATH_SYSTEMS_INC_; and the other names are None
The code is MNCUSAHLH; the name is DELEK_US_HOLDINGS_; and the other names are None
The code is MNC; the name is DELL_INC_; and the other names are None
The code is MNCUSA; the name is DELPHI_FINANCIAL_GROUP_; and the other names are None
The code is MNCUSA; the name is DELTA_AIR_LINES_; and the other names are None
The code is MNCUSA; the name is DELTA_APPAREL,_INC_; and the other names are None
The code is MNCUSA; the name is DELTA_NATURAL_GAS_COMPANY_; and the other names are None
The code is MNCUSA; the name is DELTA_PETROLEUM_CORPORATION_; and the other names are None
The code is MNCUSA; the name is DELTEK_INC_; and the other names are None
The code is MNCUSA; the name is DELTIC_TIMBER_CORPORATION_; and the other names are None
The code is MNCUSA; the name is DELUXE_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is DEMANDTEC_INC_; and the other names are None
The code is MNCUSA; the name is DENBURY_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is DENDREON_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is DENNY'S_CORPORATION_; and the other names are None
The code is MNCUSA; the name is DENTSPLY_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSAHLH; the name is DEPOMED_INC_; and the other names are None
The code is MNCUSAHLH; the name is DESARROLLADORA_HOMEX_; and the other names are None
The code is MNC; the name is DESCARTES_SYSTEMS_GROUP_; and the other names are None
The code is MNCCAN; the name is DESTINATION_MATERNITY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is DESWELL_INDUSTRIES,_INC_; and the other names are None
The code is MNCCHN; the name is DEUTSCHE_BANK_; and the other names are None
The code is MNCDEU; the name is DEVELOPERS_DIVERSIFIED_REALTY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is DEVON_ENERGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is DEVRY_INC_; and the other names are None
The code is MNCUSA; the name is DEX_ONE_CORPORATION_; and the other names are None
The code is MNC; the name is DEXCOM_INC_; and the other names are None
The code is MNCUSAHLH; the name is DEXIA_; and the other names are None
The code is MNCBEL; the name is DG_FASTCHANNEL_INC_; and the other names are None
The code is MNCUSA; the name is DHT_HOLDINGS_; and the other names are None
The code is MNCGBR; the name is DIAGEO_PLC_; and the other names are None
The code is MNCGBR; the name is DIAMOND_FOODS_; and the other names are None
The code is MNCUSA; the name is DIAMOND_HILL_INVESTMENT_GROUP_; and the other names are None
The code is MNCUSA; the name is DIAMOND_MANAGEMENT_AND_TECHNOLOGY_CONSULTANTS_; and the other names are None
The code is MNCUSA; the name is DIAMOND_OFFSHORE_DRILLING_; and the other names are None
The code is MNCUSA; the name is DIAMONDROCK_HOSPITALITY_COMPANY_; and the other names are None
The code is MNC; the name is DIANA_SHIPPING_INC_; and the other names are None
The code is MNC; the name is DICE_HOLDINGS_INC_; and the other names are None
The code is MNC; the name is DICK'S_SPORTING_GOODS_; and the other names are None
The code is MNCUSA; the name is DIEBOLD_INC_; and the other names are None
The code is MNCUSA; the name is DIGI_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is DIGIMARC_CORP_; and the other names are None
The code is MNCUSA; the name is DIGITAL_REALTY_TRUST_; and the other names are None
The code is MNC; the name is DIGITAL_RIVER_INC_; and the other names are None
The code is MNCUSA; the name is DIGITALGLOBE_; and the other names are None
The code is MNCMED; the name is DILLARD'S_INC_; and the other names are None
The code is MNCUSA; the name is DIME_COMMUNITY_BANCSHARES_; and the other names are None
The code is MNCUSA; the name is DINEEQUITY_INC_; and the other names are None
The code is MNCUSA; the name is DIODES_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is DIONEX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is DIRECTV_; and the other names are None
The code is MNCUSAMED; the name is DISCOVER_FINANCIAL_SERVICES_; and the other names are None
The code is MNCUSA; the name is DISCOVERY_COMMUNICATIONS_INC_; and the other names are None
The code is MNCUSAMED; the name is DISH_NETWORK_CORP_; and the other names are None
The code is MNCUSAMED; the name is DISNEY_; and the other names are None
The code is MNCUSA; the name is DIVX_INC_; and the other names are None
The code is MNCUSA; the name is DOCUMENT_SECURITY_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is DOLAN_COMPANY_; and the other names are None
The code is MNCUSA; the name is DOLBY_LABORATORIES_; and the other names are None
The code is MNCMED; the name is DOLE_FOOD_COMPANY_; and the other names are None
The code is MNCAGR; the name is DOLLAR_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is DOLLAR_GENERAL_CORP_; and the other names are None
The code is MNCUSA; the name is DOLLAR_THRIFTY_AUTOMOTIVE_GROUP_; and the other names are None
The code is MNCUSA; the name is DOLLAR_TREE_INC_; and the other names are None
The code is MNCUSA; the name is DOMINION_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is DOMINO'S_PIZZA_; and the other names are None
The code is MNC; the name is DOMTAR_CORPORATION_; and the other names are None
The code is MNCCAN; the name is DONALDSON_COMPANY_; and the other names are None
The code is MNCUSA; the name is DONEGAL_GROUP_; and the other names are None
The code is MNCUSA; the name is DORAL_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is DORMAN_PRODUCTS_INC_; and the other names are None
The code is MNCUSA; the name is DOT_HILL_SYSTEMS_CORP_; and the other names are None
The code is MNCUSA; the name is DOUGLAS_DYNAMICS_; and the other names are None
The code is MNC; the name is DOUGLAS_EMMETT_; and the other names are None
The code is MNC; the name is DOVER_CORPORATION_; and the other names are None
The code is MNCUSA; the name is DOW_30_PREMIUM_; and the other names are None
The code is MNC; the name is DOW_CHEMICAL_COMPANY_; and the other names are None
The code is MNCUSA; the name is DPL_INC_; and the other names are None
The code is MNCUSA; the name is DR._REDDY'S_LABORATORIES_; and the other names are None
The code is MNCINDHLH; the name is DR_PEPPER_SNAPPLE_; and the other names are None
The code is MNCUSA; the name is DRAGONWAVE_; and the other names are None
The code is MNCCANMED; the name is DRDGOLD_LIMITED_; and the other names are None
The code is MNCZAF; the name is DREAMS_INC_; and the other names are None
The code is MNCUSA; the name is DREAMWORKS_ANIMATION_; and the other names are None
The code is MNCUSAMED; the name is DRESDNER_BANK_; and the other names are None
The code is MNCDEU; the name is DRESS_BARN_INC_; and the other names are None
The code is MNCUSA; the name is DRESSER-RAND_GROUP_; and the other names are None
The code is MNC; the name is DREW_INDUSTRIES_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is DREYFUS_MUNICIPAL_INCOME_; and the other names are None
The code is MNCUSA; the name is DREYFUS_STRATEGIC_MUNICIPALS_; and the other names are None
The code is MNCUSA; the name is DRIL_QUIP_; and the other names are None
The code is MNCUSA; the name is DRUGSTORE.COM_; and the other names are None
The code is MNCUSAHLH; the name is DRYSHIPS_INC_; and the other names are None
The code is MNCGRC; the name is DSP_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is DST_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is DTE_ENERGY_COMPANY_; and the other names are None
The code is MNCUSA; the name is DTS_INC_; and the other names are None
The code is MNCUSA; the name is DUCOMMUN_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is DUFF_AND_PHELPS_; and the other names are None
The code is MNC; the name is DUKE_ENERGY_CORP_; and the other names are None
The code is MNCUSA; the name is DUKE_REALTY_CORP_; and the other names are None
The code is MNCUSA; the name is DUN_AND_BRADSTREET_CORP_; and the other names are None
The code is MNCUSA; the name is DUNCAN_ENERGY_PARTNERS_; and the other names are None
The code is MNC; the name is DUOYUAN_GLOBAL_WATER_; and the other names are None
The code is MNCCHN; the name is DUOYUAN_PRINTING_; and the other names are None
The code is MNCCN; the name is DUPONT_FABROS_; and the other names are None
The code is MNC; the name is DURECT_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is DWS_DREMAN_; and the other names are None
The code is MNC; the name is DWS_RREEF_WORLD_ESTATE_FUND_; and the other names are None
The code is MNC; the name is DWS_SCUDDER_; and the other names are None
The code is MNCDEU; the name is DXP_ENTERPRISES_INC_; and the other names are None
The code is MNCUSA; the name is DYAX_CORP_; and the other names are None
The code is MNCUSA; the name is DYCOM_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is DYNAMEX_INC_; and the other names are None
The code is MNCUSA; the name is DYNAMIC_MATERIALS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is DYNAMICS_RESEARCH_CORPORATION_; and the other names are None
The code is MNCUSA; the name is DYNAVAX_TECHNOLOGIES_CORP_; and the other names are None
The code is MNCUSAHLH; the name is DYNAVOX_; and the other names are None
The code is MNCUSA; the name is DYNEGY_INC_; and the other names are None
The code is MNCUSA; the name is DYNEX_CAPITAL_INC_; and the other names are None
The code is MNCUSA; the name is DZ_BANK_; and the other names are None
The code is MNCDEU; the name is E*TRADE_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is E.I._DU_PONT_DE_NEMOURS_; and the other names are None
The code is MNCUSA; the name is E.W._SCRIPPS_COMPANY_; and the other names are None
The code is MNCUSAMED; the name is EAGLE_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is EAGLE_BULK_SHIPPING_INC_; and the other names are None
The code is MNCUSA; the name is EAGLE_MATERIALS_INC_; and the other names are None
The code is MNCUSA; the name is EAGLE_ROCK_ENERGY_PARTNERS_; and the other names are None
The code is MNCUSA; the name is EARTHLINK_INC_; and the other names are None
The code is MNCUSA; the name is EAST_WEST_BANCORP_; and the other names are None
The code is MNCUSA; the name is EASTERN_INSURANCE_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is EASTGROUP_PROPERTIES_; and the other names are None
The code is MNCUSA; the name is EASTMAN_CHEMICAL_CO_; and the other names are None
The code is MNCUSA; the name is EASTMAN_KODAK_CO_; and the other names are None
The code is MNCUSA; the name is EASYLINK_SERVICES_INTERNATIONAL_CORP_; and the other names are None
The code is MNCUSA; the name is EATON_CORPORATION_; and the other names are None
The code is MNCUSA; the name is EATON_VANCE_; and the other names are None
The code is MNCUSA; the name is EBAY_INC_; and the other names are None
The code is MNCUSA; the name is EBIX_INC_; and the other names are None
The code is MNCUSA; the name is ECHELON_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ECHO_GLOBAL_LOGISTICS_; and the other names are None
The code is MNCUSA; the name is ECHOSTAR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ECOLAB_INC_; and the other names are None
The code is MNC; the name is EDAP_TMS_; and the other names are None
The code is MNCFRAHLH; the name is EDISON_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is EDUCATION_MANAGEMENT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is EDUCATION_REALTY_TRUST_; and the other names are None
The code is MNC; the name is EDWARDS_LIFESCIENCES_CORP_; and the other names are None
The code is MNCUSA; the name is EFUTURE_INFORMATION_TECHNOLOGY_; and the other names are None
The code is MNCCHN; the name is EHEALTH_INC_; and the other names are None
The code is MNCUSA; the name is E-HOUSE_(CHINA)_HOLDINGS_LIMITED_; and the other names are None
The code is MNCCHN; the name is EINSTEIN_NOAH_RESTAURANT_GROUP_; and the other names are None
The code is MNCUSA; the name is EL_PASO_CORPORATION_; and the other names are None
The code is MNCUSA; the name is EL_PASO_ELECTRIC_CO_; and the other names are None
The code is MNCUSA; the name is EL_PASO_PIPELINE_PARTNERS_LP_; and the other names are None
The code is MNC; the name is ELAN_CORPORATION_; and the other names are None
The code is MNCIRLHLH; the name is ELBIT_IMAGING_; and the other names are None
The code is MNCISR; the name is ELBIT_SYSTEMS_; and the other names are None
The code is MNCISR; the name is ELDORADO_GOLD_CORP_; and the other names are None
The code is MNCCAN; the name is ELECTRO_RENT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ELECTRO_SCIENTIFIC_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is ELECTRONIC_ARTS_INC_; and the other names are None
The code is MNCUSA; the name is ELECTRONICS_FOR_IMAGING_INC_; and the other names are None
The code is MNCUSA; the name is ELI_LILLY_; and the other names are None
The code is MNCUSAHLH; the name is ELIZABETH_ARDEN_; and the other names are None
The code is MNCUSA; the name is ELLSWORTH_CONVERTIBLE_GROWTH_AND_INCOME_FUND_; and the other names are None
The code is MNCUSA; the name is ELONG_INC_; and the other names are None
The code is MNCCHN; the name is ELOYALTY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ELTEK_LTD_; and the other names are None
The code is MNCISR; the name is EMBOTELLADORA_ANDINA_; and the other names are None
The code is MNCCHL; the name is EMBRAER_; and the other names are None
The code is MNCBRA; the name is EMC_CORPORATION_; and the other names are None
The code is MNCUSA; the name is EMC_INSURANCE_GROUP_; and the other names are None
The code is MNCUSA; the name is EMCOR_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is EMCORE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is EMDEON_INC_; and the other names are None
The code is MNC; the name is EMERGENCY_MEDICAL_SERVICES_CORPORATION_; and the other names are None
The code is MNCHLH; the name is EMERGENT_BIOSOLUTIONS_INC_; and the other names are None
The code is MNCHLH; the name is EMERITUS_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is EMERSON_ELECTRIC_COMPANY_; and the other names are None
The code is MNCUSA; the name is EMERSON_RADIO_CORPORATION_; and the other names are None
The code is MNCUSA; the name is EMPIRE_DISTRICT_ELECTRIC_CO_; and the other names are None
The code is MNCUSA; the name is EMPIRE_RESORTS_INC_; and the other names are None
The code is MNCUSA; the name is EMPLOYERS_HOLDINGS_INC_; and the other names are None
The code is MNC; the name is EMPRESA_NACIONAL_DE_ELECTRICIDAD_; and the other names are None
The code is MNC; the name is EMPRESAS_ICA_SOC_CONTRLADORA_; and the other names are None
The code is MNCMEX; the name is EMS_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is EMULEX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ENBRIDGE_ENERGY_; and the other names are None
The code is MNCUSA; the name is ENBRIDGE_INC_; and the other names are None
The code is MNCCAN; the name is ENCANA_; and the other names are None
The code is MNCCAN; the name is ENCORE_BANCSHARES_; and the other names are None
The code is MNCUSA; the name is ENCORE_CAPITAL_GROUP_; and the other names are None
The code is MNCUSA; the name is ENCORE_ENERGY_PARTNERS_; and the other names are None
The code is MNC; the name is ENCORE_WIRE_CORP_; and the other names are None
The code is MNCUSA; the name is ENDEAVOR_INTERNATIONAL_CORP_; and the other names are None
The code is MNCUSA; the name is ENDEAVOUR_SILVER_CORP_; and the other names are None
The code is MNC; the name is ENDO_PHARMACEUTICALS_HOLDINGS_; and the other names are None
The code is MNCUSAHLH; the name is ENDOLOGIX_INC_; and the other names are None
The code is MNCUSAHLH; the name is ENDURANCE_SPECIALTY_HOLDINGS_; and the other names are None
The code is MNC; the name is ENER1_INC_; and the other names are None
The code is MNCUSA; the name is ENERGEN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ENERGIZER_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is ENERGY_CONVERSION_DEVICES_INC_; and the other names are None
The code is MNCUSA; the name is ENERGY_INCOME_AND_GROWTH_FUND_; and the other names are None
The code is MNC; the name is ENERGY_PARTNERS_LTD_; and the other names are None
The code is MNCUSA; the name is ENERGY_RECOVERY_INC_; and the other names are None
The code is MNCUSA; the name is ENERGY_TRANSFER_EQUITY_; and the other names are None
The code is MNC; the name is ENERGY_TRANSFER_PARTNERS_; and the other names are None
The code is MNCUSA; the name is ENERGY_XXI_; and the other names are None
The code is MNCBMU; the name is ENERGYSOLUTIONS_INC_; and the other names are None
The code is MNCENV; the name is ENERNOC_INC_; and the other names are None
The code is MNCUSA; the name is ENERPLUS_RESOURCES_FUND_; and the other names are None
The code is MNCCAN; the name is ENERSIS_S_A_; and the other names are None
The code is MNC; the name is ENERSYS_; and the other names are None
The code is MNCMED; the name is ENGLOBAL_CORPORATION_; and the other names are None
The code is MNCITA; the name is ENKA_INSAAT_VE_SANAYI_; and the other names are None
The code is MNCTUR; the name is ENNIS_INC_; and the other names are None
The code is MNCUSA; the name is ENPRO_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is ENSCO_PLC_; and the other names are None
The code is MNCUSA; the name is ENSIGN_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is ENSTAR_GROUP_LIMITED_; and the other names are None
The code is MNCBMU; the name is ENTEGRIS_INC_; and the other names are None
The code is MNCUSA; the name is ENTERCOM_COMMUNICATIONS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ENTERGY_ARKANSAS_; and the other names are None
The code is MNCUSA; the name is ENTERGY_MISSISSIPPI_; and the other names are None
The code is MNCUSA; the name is ENTERGY_TEXAS_INC_; and the other names are None
The code is MNC; the name is ENTERPRISE_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is ENTERPRISE_FINANCIAL_SERVICES_CORP_; and the other names are None
The code is MNCUSA; the name is ENTERTAINMENT_PROPERTIES_TRUST_; and the other names are None
The code is MNCUSA; the name is ENTRAVISION_COMMUNICATIONS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ENTREE_GOLD_INC_; and the other names are None
The code is MNCCAN; the name is ENTROPIC_COMMUNICATIONS_INC_; and the other names are None
The code is MNCUSA; the name is ENVOY_CAPITAL_GROUP_; and the other names are None
The code is MNCCAN; the name is ENZO_BIOCHEM_; and the other names are None
The code is MNCUSAHLH; the name is ENZON_PHARMACEUTICALS_; and the other names are None
The code is MNCUSA; the name is EOG_RESOURCES_; and the other names are None
The code is MNCUSA; the name is EPICOR_SOFTWARE_CORP_; and the other names are None
The code is MNCUSA; the name is EPIQ_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is EPLUS_INC_; and the other names are None
The code is MNCUSA; the name is EPOCH_HOLDING_CORPORATION_; and the other names are None
The code is MNCUSA; the name is EQT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is EQUIFAX_INC_; and the other names are None
The code is MNCUSA; the name is EQUINIX_INC_; and the other names are None
The code is MNCUSAMED; the name is EQUITY_LIFESTYLE_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is EQUITY_ONE_INC_; and the other names are None
The code is MNCUSA; the name is EQUITY_RESIDENTIAL_; and the other names are None
The code is MNCUSA; the name is ERESEARCH_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is ERIE_INDEMNITY_CO_; and the other names are None
The code is MNCUSA; the name is ESB_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is ESCALADE_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is ESCO_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSAMED; the name is ESSA_BANCORP_; and the other names are None
The code is MNCUSA; the name is ESSEX_PROPERTY_TRUST_; and the other names are None
The code is MNCUSA; the name is ESSEX_RENTAL_CORP_; and the other names are None
The code is MNCUSA; the name is ESTEE_LAUDER_CO_; and the other names are None
The code is MNCUSA; the name is ESTERLINE_TECHNOLOGIES_CORP_; and the other names are None
The code is MNCUSA; the name is ETABLISSEMENTS_DELHAIZE_FRERES_ET_CIE_; and the other names are None
The code is MNCBELAGR; the name is ETHAN_ALLEN_INTERIORS_; and the other names are None
The code is MNCNLDHLH; the name is EURO_TECH_HOLDINGS_; and the other names are None
The code is MNCCHNHKG; the name is EURONET_WORLDWIDE_; and the other names are None
The code is MNCUSA; the name is EUROPEAN_EQUITY_FUND_; and the other names are None
The code is MNCUSA; the name is EUROSEAS_LTD_; and the other names are None
The code is MNCGRC; the name is EV_ENERGY_PARTNERS_; and the other names are None
The code is MNCUSA; the name is EVERCORE_PARTNERS_INC_; and the other names are None
The code is MNC; the name is EVEREST_RE_GROUP_; and the other names are None
The code is MNCBMU; the name is EVERGREEN_SOLAR_INC_; and the other names are None
The code is MNCUSA; the name is EVOLUTION_PETROLEUM_CORPORATION_; and the other names are None
The code is MNCUSA; the name is EVOLVING_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is EVRAZ_; and the other names are None
The code is MNCRUS; the name is EXACT_SCIENCES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is EXACTECH_INC_; and the other names are None
The code is MNCUSA; the name is EXAR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is EXCEED_COMPANY_LTD_; and the other names are None
The code is MNCCHNHKG; the name is EXCEL_MARITIME_CARRIERS_; and the other names are None
The code is MNCBMU; the name is EXCEL_TRUST,_INC_; and the other names are None
The code is MNC; the name is EXCO_RESOURCES_; and the other names are None
The code is MNCUSA; the name is EXELIXIS_INC_; and the other names are None
The code is MNCUSA; the name is EXELON_CORPORATION_; and the other names are None
The code is MNC; the name is EXETER_RESOURCE_CORPORATION_; and the other names are None
The code is MNC; the name is EXFO_INC_; and the other names are None
The code is MNCCAN; the name is EXIDE_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is EXLSERVICE_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is EXPEDIA_INC_; and the other names are None
The code is MNCUSA; the name is EXPEDITORS_INTERNATIONAL_OF_WASHINGTON_; and the other names are None
The code is MNCUSA; the name is EXPONENT_INC_; and the other names are None
The code is MNCUSA; the name is EXPRESS_INC_; and the other names are None
The code is MNC; the name is EXPRESS_SCRIPTS_INC_; and the other names are None
The code is MNCUSAHLH; the name is EXPRESSJET_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is EXTERRAN_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is EXTRA_SPACE_STORAGE_; and the other names are None
The code is MNC; the name is EXTREME_NETWORKS_INC_; and the other names are None
The code is MNCUSA; the name is EXXON_MOBIL_; and the other names are None
The code is MNCUSA; the name is EZCHIP_SEMICONDUCTOR_LIMITED_; and the other names are None
The code is MNCISRMED; the name is EZCORP_INC_; and the other names are None
The code is MNCUSA; the name is F.N.B._CORP_; and the other names are None
The code is MNCUSA; the name is F5_NETWORKS_INC_; and the other names are None
The code is MNCUSA; the name is FACTSET_RESEARCH_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is FAIR,_ISAAC_AND_CO_; and the other names are None
The code is MNCUSA; the name is FAIRCHILD_SEMICONDUCTOR_; and the other names are None
The code is MNCUSA; the name is FALCONSTOR_SOFTWARE_; and the other names are None
The code is MNCUSA; the name is FAMILY_DOLLAR_STORES_; and the other names are None
The code is MNCUSA; the name is FAMOUS_DAVE'S_OF_AMERICA_; and the other names are None
The code is MNCUSA; the name is FARMER_BROTHERS_COMPANY_; and the other names are None
The code is MNCUSA; the name is FARO_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is FASTENAL_COMPANY_; and the other names are None
The code is MNCUSA; the name is FBL_FINANCIAL_GROUP_; and the other names are None
The code is MNCUSA; the name is FBR_CAPITAL_MARKETS_CORP_; and the other names are None
The code is MNCUSA; the name is FEDERAL_AGRICULTURAL_MORTGAGE_CORP_; and the other names are None
The code is MNCUSA; the name is FEDERAL_MOGUL_CORP_; and the other names are None
The code is MNCUSA; the name is FEDERAL_SIGNAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FEDERATED_INVESTORS_INC_; and the other names are None
The code is MNCUSA; the name is FEDERATED_PREMIER_INTERMEDIATE_MUNICIPAL_INCOME_FUND_; and the other names are None
The code is MNC; the name is FEDERATED_PREMIER_MUNICIPAL_INCOME_FUND_; and the other names are None
The code is MNC; the name is FEDEX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FEI_COMPANY_; and the other names are None
The code is MNCUSA; the name is FELCOR_LODGING_TRUST_; and the other names are None
The code is MNCUSA; the name is FEMSA_; and the other names are None
The code is MNCMEX; the name is FERRELLGAS_PARTNERS_; and the other names are None
The code is MNCUSA; the name is FERRO_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FIBERTOWER_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is FIBRIA_CELULOSE_; and the other names are None
The code is MNCBRAAGR; the name is FIDELITY_NATIONAL_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is FIDELITY_NATIONAL_INFORMATION_SERVICES_; and the other names are None
The code is MNCUSA; the name is FIDELITY_SOUTHERN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FIDUCIARY_CLAYMORE_MLP_OPPORTUNITY_FUND_; and the other names are None
The code is MNC; the name is FIFTH_STREET_FINANCE_CORPORATION_; and the other names are None
The code is MNC; the name is FIFTH_THIRD_BANCORP_; and the other names are None
The code is MNCUSA; the name is FINANCIAL_ENGINES_INC_; and the other names are None
The code is MNCUSA; the name is FINANCIAL_INSTITUTIONS_INC_; and the other names are None
The code is MNCUSA; the name is FINISAR_CORP_; and the other names are None
The code is MNCUSA; the name is FINISH_LINE_INC_; and the other names are None
The code is MNCUSA; the name is FIRST_AMERICAN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FIRST_BUSEY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FIRST_CALIFORNIA_FINANCIAL_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is FIRST_CASH_FINANCIAL_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is FIRST_CITIZENS_BANCSHARES_; and the other names are None
The code is MNCUSA; the name is FIRST_COMMONWEALTH_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FIRST_COMMUNITY_BANCSHARES_INC_; and the other names are None
The code is MNCUSA; the name is FIRST_DEFIANCE_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is FIRST_FINANCIAL_BANCORP_; and the other names are None
The code is MNCUSA; the name is FIRST_FINANCIAL_BANKSHARES_INC_; and the other names are None
The code is MNCUSA; the name is FIRST_FINANCIAL_CORPORATION_INDIANA_; and the other names are None
The code is MNCUSA; the name is FIRST_FINANCIAL_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is FIRST_FINANCIAL_NORTHWEST_INC_; and the other names are None
The code is MNCUSA; the name is FIRST_INDUSTRIAL_REALTY_TRUST,_INC_; and the other names are None
The code is MNCUSA; the name is FIRST_INTERSTATE_BANCSYSTEM_; and the other names are None
The code is MNCUSA; the name is FIRST_MARBLEHEAD_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FIRST_MERCHANTS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FIRST_MERCURY_FINANCIAL_CORPORATION_; and the other names are None
The code is MNC; the name is FIRST_MIDWEST_BANCORP_; and the other names are None
The code is MNCUSA; the name is FIRST_NIAGARA_FINANCIAL_GROUP_; and the other names are None
The code is MNCUSA; the name is FIRST_OF_LONG_ISLAND_CORPORATION_; and the other names are None
The code is MNCCHNHKG; the name is FIRST_PLACE_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is FIRST_POTOMAC_REALTY_TRUST_; and the other names are None
The code is MNCUSA; the name is FIRST_SOLAR_INC_; and the other names are None
The code is MNCUSA; the name is FIRST_SOUTH_BANCORP_; and the other names are None
The code is MNCUSA; the name is FIRST_TENNESSEE_NATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FIRST_TRUST_ABERDEEN_; and the other names are None
The code is MNC; the name is FIRST_TRUST_FOUR_CORNERS_SENIOR_; and the other names are None
The code is MNC; the name is FIRST_UNION_REAL_ESTATE_EQUITY_AND_MORTGAGE_INVESTMENTS_; and the other names are None
The code is MNCUSA; the name is FIRSTCITY_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FIRSTENERGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FIRSTMERIT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FIRSTSERVICE_CORPORATION_; and the other names are None
The code is MNCCAN; the name is FISERV_INC_; and the other names are None
The code is MNCUSA; the name is FISHER_COMMUNICATIONS_INC_; and the other names are None
The code is MNCUSA; the name is FIVE_STAR_QUALITY_CARE_INC_; and the other names are None
The code is MNCUSA; the name is FLAGSTAR_BANCORP_INC_; and the other names are None
The code is MNCBMU; the name is FLAHERTY_AND_CRUMRINE_; and the other names are None
The code is MNCUSA; the name is FLAHERTY_CRUMRINE_CLAYMORE_; and the other names are None
The code is MNC; the name is FLAMEL_TECHNOLOGIES_; and the other names are None
The code is MNCFRAHLH; the name is FLEXIBLE_SOLUTIONS_INTERNATIONAL_; and the other names are None
The code is MNCCAN; the name is FLEXSTEEL_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is FLEXTRONICS_INTERNATIONAL_; and the other names are None
The code is MNCSGP; the name is FLIR_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is FLOW_INTERNATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FLOWERS_FOODS_INC_; and the other names are None
The code is MNCUSA; the name is FLOWSERVE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FLUOR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FLUSHING_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FLY_LEASING_LIMITED_; and the other names are None
The code is MNCIRL; the name is FMC_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FMC_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is FOCUS_MEDIA_HOLDING_; and the other names are None
The code is MNCCHNMED; the name is FOMENTO_ECONOMICO_MEXICANO_; and the other names are None
The code is MNCMEX; the name is FOOTLOCKER_INC_; and the other names are None
The code is MNCUSA; the name is FORCE_PROTECTION_INC_; and the other names are None
The code is MNCUSA; the name is FORD_MOTOR_; and the other names are None
The code is MNCUSA; the name is FOREIGN_OWNED_VESSEL_; and the other names are None
The code is MNC; the name is FOREST_CITY_ENTERPRISES_; and the other names are None
The code is MNCUSA; the name is FOREST_LABORATORIES_INC_; and the other names are None
The code is MNCUSAHLH; the name is FOREST_OIL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FORESTAR_GROUP_; and the other names are None
The code is MNC; the name is FORMFACTOR_INC_; and the other names are None
The code is MNCUSA; the name is FORMOSA_PLASTICS_; and the other names are None
The code is MNCTWN; the name is FORMULA_SYSTEMS_LTD_; and the other names are None
The code is MNCISR; the name is FORRESTER_RESEARCH_INC_; and the other names are None
The code is MNCUSA; the name is FORT_DEARBORN_INCOME_SECURITIES_INC_; and the other names are None
The code is MNCUSA; the name is FORTINET_INC_; and the other names are None
The code is MNCUSA; the name is FORTIS_; and the other names are None
The code is MNCBEL; the name is FORTRESS_INVESTMENT_GROUP_; and the other names are None
The code is MNC; the name is FORTUNE_BRANDS_INC_; and the other names are None
The code is MNCUSA; the name is FORWARD_AIR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FOSSIL_INC_; and the other names are None
The code is MNCUSA; the name is FOSTER_WHEELER_AG_; and the other names are None
The code is MNCUSA; the name is FOX_CHASE_BANCORP_; and the other names are None
The code is MNCUSA; the name is FPIC_INSURANCE_GROUP_; and the other names are None
The code is MNCUSA; the name is FRANCE_TELECOM_; and the other names are None
The code is MNCFRAMED; the name is FRANKLIN_COVEY_; and the other names are None
The code is MNCUSAMED; the name is FRANKLIN_ELECTRIC_CO_; and the other names are None
The code is MNCUSA; the name is FRANKLIN_RESOURCES_; and the other names are None
The code is MNCUSA; the name is FRANKLIN_STREET_PROPERTIES_CORP_; and the other names are None
The code is MNC; the name is FRANKLIN_TEMPLETON_; and the other names are None
The code is MNCUSA; the name is FRANKLIN_UNIVERSAL_TRUST_; and the other names are None
The code is MNCUSA; the name is FRASER_AND_NEAVE_; and the other names are None
The code is MNCSGP; the name is FRED'S_INC_; and the other names are None
The code is MNCUSA; the name is FREEPORT_MCMORAN_COPPER_AND_GOLD,_INC_; and the other names are None
The code is MNCUSA; the name is FREESEAS_INC_; and the other names are None
The code is MNCGRC; the name is FREIGHTCAR_AMERICA_INC_; and the other names are None
The code is MNCUSA; the name is FRESENIUS_KABI_PHARMACEUTICAL_; and the other names are None
The code is MNCDEUHLH; the name is FRESENIUS_MEDICAL_; and the other names are None
The code is MNCDEUHLH; the name is FRESH_DEL_MONTE_PRODUCE_INC_; and the other names are None
The code is MNCUSAAGR; the name is FRISCH'S_RESTAURANTS_INC_; and the other names are None
The code is MNCUSA; the name is FRONTEER_GOLD_INC_; and the other names are None
The code is MNCCAN; the name is FRONTIER_COMMUNICATIONS_CO_; and the other names are None
The code is MNCUSAMED; the name is FRONTIER_OIL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FRONTLINE_LTD_; and the other names are None
The code is MNCBMU; the name is FSI_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is FTI_CONSULTING_INC_; and the other names are None
The code is MNCUSA; the name is FUEL_SYSTEMS_SOLUTIONS_INC_; and the other names are None
The code is MNCUSA; the name is FUEL_TECH_INC_; and the other names are None
The code is MNCUSA; the name is FUELCELL_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is FULL_CIRCLE_CAPITAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FULTON_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FUNDTECH_LTD_; and the other names are None
The code is MNCISR; the name is FUNTALK_CHINA_HOLDINGS_; and the other names are None
The code is MNCCHN; the name is FUQI_INTERNATIONAL_; and the other names are None
The code is MNCCHN; the name is FURIEX_PHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is FURMANITE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is FURNITURE_BRANDS_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is FUSHI_COPPERWELD_; and the other names are None
The code is MNCCHNMED; the name is FUWEI_FILMS_; and the other names are None
The code is MNCCHN; the name is FX_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is G&K_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is G._WILLI_FOOD_; and the other names are None
The code is MNCISR; the name is GABELLI_EQUITY_TRUST_; and the other names are None
The code is MNCUSA; the name is GABELLI_GLOBAL_MULTI_MEDIA_TRUST_; and the other names are None
The code is MNCUSA; the name is GABELLI_UTILITY_TRUST_; and the other names are None
The code is MNCUSA; the name is GAFISA_; and the other names are None
The code is MNCBRA; the name is GAIAM_INC_; and the other names are None
The code is MNCUSA; the name is GAMCO_INVESTORS_INC_; and the other names are None
The code is MNCUSA; the name is GAMESTOP_CORP_; and the other names are None
The code is MNCUSA; the name is GAMMON_GOLD_; and the other names are None
The code is MNCCAN; the name is GANNETT_CO_; and the other names are None
The code is MNCUSAMED; the name is GARDNER_DENVER_INC_; and the other names are None
The code is MNCUSA; the name is GARMIN_LTD_; and the other names are None
The code is MNCCHE; the name is GARTNER_INC_; and the other names are None
The code is MNCUSA; the name is GAS_NATURAL_INC_; and the other names are None
The code is MNCUSA; the name is GASTAR_EXPLORATION_; and the other names are None
The code is MNC; the name is GATX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is GAYLORD_ENTERTAINMENT_; and the other names are None
The code is MNCUSA; the name is GEEKNET_INC_; and the other names are None
The code is MNCUSA; the name is GEN_PROBE_INCORPORATED_; and the other names are None
The code is MNCUSAHLH; the name is GENCO_SHIPPING_; and the other names are None
The code is MNCUSA; the name is GENCORP_; and the other names are None
The code is MNCUSA; the name is GENERAC_HOLDLINGS_; and the other names are None
The code is MNC; the name is GENERAL_AMERICAN_INVESTORS_INC_; and the other names are None
The code is MNCUSA; the name is GENERAL_CABLE_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is GENERAL_COMMUNICATION_INC_; and the other names are None
The code is MNCUSAMED; the name is GENERAL_DYNAMICS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is GENERAL_ELECTRIC_; and the other names are None
The code is MNCUSA; the name is GENERAL_GROWTH_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is GENERAL_MARITIME_CORPORATION_; and the other names are None
The code is MNCUSA; the name is GENERAL_MILLS_; and the other names are None
The code is MNCUSA; the name is GENERAL_MOLY_INC_; and the other names are None
The code is MNCUSA; the name is GENERAL_STEEL_HOLDINGS_; and the other names are None
The code is MNCCHN; the name is GENEREX_BIOTECHNOLOGY_; and the other names are None
The code is MNCCANHLH; the name is GENESCO_INC_; and the other names are None
The code is MNCUSA; the name is GENESEE_AND_WYOMING_; and the other names are None
The code is MNCUSA; the name is GENOMIC_HEALTH_INC_; and the other names are None
The code is MNCUSAHLH; the name is GENOPTIX_; and the other names are None
The code is MNCUSAHLH; the name is GENPACT_LIMITED_; and the other names are None
The code is MNC; the name is GENTEX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is GENTING_BERHAD_; and the other names are None
The code is MNCMYS; the name is GENTIUM_SPA_; and the other names are None
The code is MNCITAHLH; the name is GENTIVA_HEALTH_SERVICES_; and the other names are None
The code is MNCUSAHLH; the name is GENUINE_PARTS_COMPANY_; and the other names are None
The code is MNCUSA; the name is GENVEC_INC_; and the other names are None
The code is MNCUSAHLH; the name is GENWORTH_FINANCIAL_; and the other names are None
The code is MNC; the name is GENZYME_CORPORATION_; and the other names are None
The code is MNCUSA; the name is GEO_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is GEOEYE_INC_; and the other names are None
The code is MNCUSAMED; the name is GEOKINETICS_INC_; and the other names are None
The code is MNCUSA; the name is GEORESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is GEORGIA_GULF_CORPORATION_; and the other names are None
The code is MNCUSA; the name is GEORGIA_POWER_COMPANY_; and the other names are None
The code is MNCUSA; the name is GERBER_SCIENTIFIC_INC_; and the other names are None
The code is MNCUSA; the name is GERDAU_; and the other names are None
The code is MNCBRA; the name is GERMAN_AMERICAN_BANCORP_; and the other names are None
The code is MNCUSA; the name is GERON_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is GEROVA_FINANCIAL_; and the other names are None
The code is MNCCYM; the name is GETTY_REALTY_; and the other names are None
The code is MNCUSA; the name is GFI_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is GFNCZ_; and the other names are None
The code is MNC; the name is GIANT_INTERACTIVE_GROUP_; and the other names are None
The code is MNC; the name is GIBRALTAR_INDUSTRIES_INC_; and the other names are None
The code is MNCTWN; the name is G-III_APPAREL_GROUP_LTD_; and the other names are None
The code is MNCUSA; the name is GILAT_SATELLITE_; and the other names are None
The code is MNCISRMED; the name is GILDAN_ACTIVEWEAR_; and the other names are None
The code is MNCCAN; the name is GILEAD_SCIENCES_INC_; and the other names are None
The code is MNCUSA; the name is GIVEN_IMAGING_LTD_; and the other names are None
The code is MNCISRHLH; the name is GLACIER_BANCORP_; and the other names are None
The code is MNCUSA; the name is GLADSTONE_CAPITAL_CORP_; and the other names are None
The code is MNCUSA; the name is GLADSTONE_COMMERCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is GLADSTONE_INVESTMENT_CORP_; and the other names are None
The code is MNCUSA; the name is GLATFELTER_; and the other names are None
The code is MNCUSA; the name is GLAXOSMITHKLINE_; and the other names are None
The code is MNCGBRHLH; the name is GLEACHER_AND_COMPANY_; and the other names are None
The code is MNCUSA; the name is GLG_LIFE_TECH_; and the other names are None
The code is MNCCAN; the name is GLG_PARTNERS_; and the other names are None
The code is MNC; the name is GLIMCHER_REALTY_; and the other names are None
The code is MNCUSA; the name is GLOBAL_CASH_ACCESS_HOLDINGS_; and the other names are None
The code is MNC; the name is GLOBAL_CROSSING_LTD_; and the other names are None
The code is MNCBMUMED; the name is GLOBAL_DEFENSE_TECHNOLOGY_AND_SYSTEMS_; and the other names are None
The code is MNC; the name is GLOBAL_GEOPHYSICAL_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is GLOBAL_HIGH_INCOME_DOLLAR_FUND_INC_; and the other names are None
The code is MNCUSA; the name is GLOBAL_INCOME_AND_CURRENCY_FUND_INC_; and the other names are None
The code is MNC; the name is GLOBAL_INDEMNITY_PLC_; and the other names are None
The code is MNCCYM; the name is GLOBAL_INDUSTRIES_LTD_; and the other names are None
The code is MNCUSA; the name is GLOBAL_PARTNERS_LP_; and the other names are None
The code is MNC; the name is GLOBAL_PAYMENTS_INC_; and the other names are None
The code is MNCUSA; the name is GLOBAL_POWER_EQUIPMENT_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is GLOBAL_SHIP_LEASE_INC_; and the other names are None
The code is MNC; the name is GLOBAL_SOURCES_LTD_; and the other names are None
The code is MNCBMU; the name is GLOBAL_TECH_ADVANCED_INNOVATIONS_INC_; and the other names are None
The code is MNCCHNHKG; the name is GLOBAL_TRAFFIC_NETWORK_INC_; and the other names are None
The code is MNCUSA; the name is GLOBALSTAR_INC_; and the other names are None
The code is MNCUSAMED; the name is GLOBE_SPECIALTY_METALS_INC_; and the other names are None
The code is MNCUSA; the name is GLOBECOMM_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is GMAC_LLC_; and the other names are None
The code is MNCUSA; the name is GMX_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is GOL_LINHAS_AEREAS_INTELIGENTES_; and the other names are None
The code is MNC; the name is GOLAR_LNG_LIMITED_; and the other names are None
The code is MNCBMU; the name is GOLD_FIELDS_LIMITED_; and the other names are None
The code is MNCZAF; the name is GOLD_FIELDS_LTD_; and the other names are None
The code is MNCZAF; the name is GOLD_RESOURCE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is GOLDCORP_INCORPORATED_; and the other names are None
The code is MNCCAN; the name is GOLDEN_MINERALS_CO_; and the other names are None
The code is MNCCYM; the name is GOLDEN_STAR_RESOURCES_; and the other names are None
The code is MNCUSA; the name is GOLDMAN_SACHS_; and the other names are None
The code is MNCUSA; the name is GOLF_TRUST_OF_AMERICA_INC_; and the other names are None
The code is MNCUSAHLH; the name is GOLUB_CAPITAL_BDC_INC_; and the other names are None
The code is MNCUSA; the name is GOODRICH_CORPORATION_; and the other names are None
The code is MNCUSA; the name is GOODRICH_PETROLEUM_; and the other names are None
The code is MNCUSA; the name is GOODYEAR_TIRE_; and the other names are None
The code is MNCUSA; the name is GOOGLE_; and the other names are None
The code is MNCUSAMED; the name is GORDMANS_STORES_; and the other names are None
The code is MNC; the name is GORMAN-RUPP_; and the other names are None
The code is MNCUSA; the name is GOVERNMENT_PROPERTIES_INCOME_TRUST_; and the other names are None
The code is MNC; the name is GOVERNOR_AND_COMPANY_OF_THE_BANK_OF_IRELAND_; and the other names are None
The code is MNCIRL; the name is GP_STRATEGIES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is GRACO_INC_; and the other names are None
The code is MNCUSA; the name is GRAFTECH_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is GRAHAM_CORPORATION_; and the other names are None
The code is MNCUSA; the name is GRAHAM_PACKAGING_; and the other names are None
The code is MNC; the name is GRAMERCY_CAPITAL_CORP_; and the other names are None
The code is MNC; the name is GRAN_TIERRA_ENERGY_; and the other names are None
The code is MNCCAN; the name is GRAND_CANYON_EDUCATION_INC_; and the other names are None
The code is MNCUSAEDU; the name is GRANITE_CONSTRUCTION_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is GRAPHIC_PACKAGING_HOLDING_COMPANY_; and the other names are None
The code is MNCUSA; the name is GRAVITY_CO_; and the other names are None
The code is MNCKOR; the name is GRAY_TELEVISION_INC_; and the other names are None
The code is MNCUSAMED; the name is GREAT_ATLANTIC_AND_PACIFIC_TEA_; and the other names are None
The code is MNCUSA; the name is GREAT_BASIN_GOLD_LTD_; and the other names are None
The code is MNCCAN; the name is GREAT_LAKES_DREDGE_AND_DOCK_CORP_; and the other names are None
The code is MNCUSA; the name is GREAT_NORTHERN_IRON_ORE_PROPERTIES_; and the other names are None
The code is MNCUSA; the name is GREAT_PLAINS_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is GREAT_SOUTHERN_BANCORP_; and the other names are None
The code is MNCUSA; the name is GREATBATCH_INC_; and the other names are None
The code is MNCUSA; the name is GREATER_CHINA_FUND_INC_; and the other names are None
The code is MNCUSA; the name is GREEN_BANKSHARES_INC_; and the other names are None
The code is MNCUSA; the name is GREEN_DOT_CORPORATION_; and the other names are None
The code is MNC; the name is GREEN_MOUNTAIN_COFFEE_ROASTERS_; and the other names are None
The code is MNCUSA; the name is GREEN_PLAINS_RENEWABLE_ENERGY_; and the other names are None
The code is MNCENV; the name is GREENBRIER_COMPANIES_INC_; and the other names are None
The code is MNCUSA; the name is GREENE_COUNTY_BANCORP_; and the other names are None
The code is MNCUSA; the name is GREENHILL_; and the other names are None
The code is MNC; the name is GREENLIGHT_REINSURANCE_; and the other names are None
The code is MNCCYM; the name is GREIF_BROS_; and the other names are None
The code is MNCUSA; the name is GRIFFIN_LAND_AND_NURSERIES_; and the other names are None
The code is MNCUSAAGR; the name is GRIFFON_CORPORATION_; and the other names are None
The code is MNCUSA; the name is GROUP_1_AUTOMOTIVE_; and the other names are None
The code is MNCUSA; the name is GROUPE_CAISSE_D'EPARGNE_; and the other names are None
The code is MNCMEX; the name is GRUPO_AEROPORTUARIO_DEL_CENTRO_NORTE_; and the other names are None
The code is MNCMEX; the name is GRUPO_AEROPORTUARIO_DEL_PACIFICO_; and the other names are None
The code is MNC; the name is GRUPO_AEROPORTUARIO_DEL_SURESTE_; and the other names are None
The code is MNCMEX; the name is GRUPO_CASA_SABA_; and the other names are None
The code is MNCMEXHLH; the name is GRUPO_FINANCIERO_GALICIA_; and the other names are None
The code is MNCARG; the name is GRUPO_RADIO_CENTRO_; and the other names are None
The code is MNCMEXMED; the name is GRUPO_SIMEC_; and the other names are None
The code is MNCMEX; the name is GRUPO_TELEVISA_; and the other names are None
The code is MNCMEXMED; the name is GRUPO_TMM_; and the other names are None
The code is MNCMEX; the name is GSE_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is GSI_COMMERCE_INC_; and the other names are None
The code is MNCUSA; the name is GSI_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is GT_SOLAR_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is GTX_INC_; and the other names are None
The code is MNCUSAHLH; the name is GUANGSHEN_RAILWAY_COMPANY_; and the other names are None
The code is MNCCHN; the name is GUANWEI_RECYCLING_; and the other names are None
The code is MNCCHN; the name is GUARANTY_BANCORP_; and the other names are None
The code is MNCUSA; the name is GUESS?_INC_; and the other names are None
The code is MNCUSA; the name is GUGGENHEIM_ENHANCED_EQUITY_INCOME_FUND_; and the other names are None
The code is MNC; the name is GUIDANCE_SOFTWARE_INC_; and the other names are None
The code is MNCUSA; the name is GULF_ISLAND_FABRICATION_INC_; and the other names are None
The code is MNCUSA; the name is GULF_POWER_COMPANY_; and the other names are None
The code is MNCUSA; the name is GULF_RESOURCES_INC_; and the other names are None
The code is MNCCHN; the name is GULFMARK_OFFSHORE_INC_; and the other names are None
The code is MNCUSA; the name is GULFPORT_ENERGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is GUSHAN_ENVIRONMENTAL_ENERGY_; and the other names are None
The code is MNCCHN; the name is GYRODYNE_COMPANY_OF_AMERICA_; and the other names are None
The code is MNCUSA; the name is H&E_EQUIPMENT_SERVICES_; and the other names are None
The code is MNCUSA; the name is H&Q_HEALTHCARE_INVESTORS_; and the other names are None
The code is MNCUSA; the name is H&Q_LIFE_SCIENCES_INVESTORS_; and the other names are None
The code is MNCUSA; the name is H&R_BLOCK_; and the other names are None
The code is MNCUSA; the name is H.B._FULLER_; and the other names are None
The code is MNCUSA; the name is H.J._HEINZ_; and the other names are None
The code is MNCUSA; the name is HACKETT_GROUP_; and the other names are None
The code is MNCUSA; the name is HAEMONETICS_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is HAIN_CELESTIAL_GROUP_; and the other names are None
The code is MNCUSA; the name is HALLADOR_ENERGY_; and the other names are None
The code is MNC; the name is HALLMARK_FINANCIAL_SERVICES_; and the other names are None
The code is MNCUSA; the name is HALOZYME_THERAPEUTICS_INC_; and the other names are None
The code is MNCUSA; the name is HAMPDEN_BANCORP_; and the other names are None
The code is MNCUSA; the name is HANCOCK_HOLDING_COMPANY_; and the other names are None
The code is MNCUSA; the name is HANESBRANDS_INC_; and the other names are None
The code is MNC; the name is HANGER_ORTHOPEDIC_GROUP_; and the other names are None
The code is MNCUSAHLH; the name is HANMI_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HANOVER_CAPITAL_MORTGAGE_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is HANOVER_INSURANCE_GROUP_; and the other names are None
The code is MNCUSA; the name is HANSEN_MEDICAL_INC_; and the other names are None
The code is MNCUSA; the name is HANSEN_NATURAL_CORP_; and the other names are None
The code is MNCUSA; the name is HARBIN_ELECTRIC_; and the other names are None
The code is MNCCHN; the name is HARBINGER_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is HARDINGE_INC_; and the other names are None
The code is MNCUSA; the name is HARLEY-DAVIDSON_INC_; and the other names are None
The code is MNCUSA; the name is HARLEYSVILLE_GROUP_; and the other names are None
The code is MNCUSA; the name is HARMAN_INTERNATIONAL_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is HARMONIC_INC_; and the other names are None
The code is MNCUSA; the name is HARMONY_GOLD_MINING_; and the other names are None
The code is MNCZAF; the name is HARRIS_AND_HARRIS_; and the other names are None
The code is MNCUSA; the name is HARRIS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HARRY_WINSTON_DIAMOND_CORP_; and the other names are None
The code is MNCCAN; the name is HARSCO_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HARTE-HANKS_; and the other names are None
The code is MNCUSA; the name is HARTFORD_FINANCIAL_SERVICES_GROUP_; and the other names are None
The code is MNCUSA; the name is HARTFORD_INCOME_SHARES_FUND_INC_; and the other names are None
The code is MNCUSA; the name is HARVARD_BIOSCIENCE_INC_; and the other names are None
The code is MNCUSA; the name is HARVEST_NATURAL_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is HASBRO_; and the other names are None
The code is MNCUSA; the name is HASTINGS_ENTERTAINMENT_; and the other names are None
The code is MNCUSA; the name is HATTERAS_FINANCIAL_CORP_; and the other names are None
The code is MNC; the name is HAVERTY_FURNITURE_; and the other names are None
The code is MNCUSA; the name is HAWAIIAN_ELECTRIC_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is HAWAIIAN_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is HAWK_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HAWKINS_INC_; and the other names are None
The code is MNCUSA; the name is HAYNES_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is HBOS_; and the other names are None
The code is MNCGBR; the name is HCC_INSURANCE_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is HCP_INC_; and the other names are None
The code is MNCUSA; the name is HDFC_BANK_LIMITED_; and the other names are None
The code is MNCIND; the name is HEADWATERS_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is HEALTH_CARE_REIT_; and the other names are None
The code is MNCUSA; the name is HEALTH_GRADES_INC_; and the other names are None
The code is MNCUSA; the name is HEALTH_MANAGEMENT_ASSOCIATES_INC_; and the other names are None
The code is MNCUSA; the name is HEALTH_NET_INC_; and the other names are None
The code is MNCHLH; the name is HEALTHCARE_REALTY_TRUST_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is HEALTHCARE_SERVICES_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is HEALTHSOUTH_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HEALTHSPRING_INC_; and the other names are None
The code is MNCHLH; the name is HEALTHSTREAM_INC_; and the other names are None
The code is MNCUSA; the name is HEALTHWAYS_INC_; and the other names are None
The code is MNCUSA; the name is HEARTLAND_EXPRESS_INC_; and the other names are None
The code is MNCUSA; the name is HEARTLAND_FINANCIAL_USA_; and the other names are None
The code is MNCUSA; the name is HEARTLAND_PAYMENT_SYSTEMS_; and the other names are None
The code is MNC; the name is HEARTWARE_INTERNATIONAL_; and the other names are None
The code is MNCUSAHLH; the name is HECKMANN_CORPORATION_; and the other names are None
The code is MNC; the name is HECLA_MINING_COMPANY_; and the other names are None
The code is MNCUSA; the name is HEELYS_INC_; and the other names are None
The code is MNCUSA; the name is HEICO_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HEIDRICK_AND_STRUGGLES_; and the other names are None
The code is MNCUSA; the name is HELEN_OF_TROY_LIMITED_; and the other names are None
The code is MNCBMU; the name is HELIX_ENERGY_SOLUTIONS_GROUP_; and the other names are None
The code is MNCUSA; the name is HELLENIC_TELECOMMUNICATION_ORGANIZATION_; and the other names are None
The code is MNCGRCMED; the name is HELMERICH_AND_PAYNE_; and the other names are None
The code is MNCUSA; the name is HEMISPHERX_BIOPHARMA_; and the other names are None
The code is MNCUSA; the name is HENRY_SCHEIN_INC_; and the other names are None
The code is MNCUSAHLH; the name is HERBALIFE_LTD_; and the other names are None
The code is MNCHLH; the name is HERCULES_OFFSHORE_INC_; and the other names are None
The code is MNCUSA; the name is HERCULES_TECHNOLOGY_GROWTH_CAPITAL_; and the other names are None
The code is MNCUSA; the name is HERITAGE_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HERITAGE_FINANCIAL_GROUP_; and the other names are None
The code is MNCUSA; the name is HERITAGE_OAKS_BANCORP_; and the other names are None
The code is MNCUSA; the name is HERITAGE-CRYSTAL_CLEAN_; and the other names are None
The code is MNCUSA; the name is HERLEY_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is HERMAN_MILLER_; and the other names are None
The code is MNCUSA; the name is HERSHA_HOSPITALITY_TRUST_; and the other names are None
The code is MNCUSA; the name is HERSHEY_FOODS_; and the other names are None
The code is MNCUSA; the name is HERTZ_GLOBAL_HOLDINGS_; and the other names are None
The code is MNC; the name is HESS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HEWITT_ASSOCIATES_; and the other names are None
The code is MNCUSA; the name is HEWLETT-PACKARD_; and the other names are None
The code is MNCUSA; the name is HEXCEL_CORP_; and the other names are None
The code is MNCUSA; the name is HF_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is HHGREGG_; and the other names are None
The code is MNC; the name is HIBBETT_SPORTS_; and the other names are None
The code is MNCUSA; the name is HICKORY_TECH_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is HIGHER_ONE_HOLDINGS_; and the other names are None
The code is MNC; the name is HIGHLAND_CREDIT_STATEGIES_FUND_; and the other names are None
The code is MNC; the name is HIGHWAY_HOLDINGS_LIMITED_; and the other names are None
The code is MNCCHNHKG; the name is HIGHWOODS_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is HILL_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is HILLENBRAND_INC_; and the other names are None
The code is MNC; the name is HILLENBRAND_INDUSTRIES_INC_; and the other names are None
The code is MNCUSAHLH; the name is HILLTOP_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is HIMAX_TECHNOLOGIES_; and the other names are None
The code is MNCTWN; the name is HINDALCO_INDUSTRIES_; and the other names are None
The code is MNCIND; the name is HINGHAM_INSTITUTION_FOR_SAVINGS_; and the other names are None
The code is MNCUSA; the name is HISOFT_TECHNOLOGY_INTERNATIONAL_; and the other names are None
The code is MNCCHN; the name is HI-TECH_PHARMACAL_CO_; and the other names are None
The code is MNCUSAHLH; the name is HITTITE_MICROWAVE_CORP_; and the other names are None
The code is MNCUSA; the name is HMS_HOLDINGS_CORP_; and the other names are None
The code is MNCUSA; the name is HOKU_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HOLLY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HOLLY_ENERGY_; and the other names are None
The code is MNC; the name is HOLLYSYS_AUTOMATION_; and the other names are None
The code is MNCCHN; the name is HOLOGIC_INC_; and the other names are None
The code is MNCUSAHLH; the name is HOME_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is HOME_BANCSHARES_INC_; and the other names are None
The code is MNCUSA; the name is HOME_DEPOT_INC_; and the other names are None
The code is MNCUSA; the name is HOME_FEDERAL_BANCORP_; and the other names are None
The code is MNCUSA; the name is HOME_INNS_AND_HOTELS_MANAGEMENT_INC_; and the other names are None
The code is MNCCHN; the name is HOME_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is HON_HAI_PRECISION_INDUSTRIES_; and the other names are None
The code is MNCTWN; the name is HON_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is HONEYWELL_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is HONG_KONG_HIGHPOWER_; and the other names are None
The code is MNCCHNHKG; the name is HOOKER_FURNITURE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HOPFED_BANCORP_; and the other names are None
The code is MNCUSA; the name is HORACE_MANN_EDUCATORS_; and the other names are None
The code is MNCUSA; the name is HORIZON_BANCORP_; and the other names are None
The code is MNCUSA; the name is HORIZON_LINES_; and the other names are None
The code is MNC; the name is HORMEL_FOODS_; and the other names are None
The code is MNCUSA; the name is HORNBECK_OFFSHORE_SERVICES_; and the other names are None
The code is MNC; the name is HORSEHEAD_HOLDING_CORP_; and the other names are None
The code is MNCUSA; the name is HOSPIRA_INC_; and the other names are None
The code is MNCHLH; the name is HOSPITALITY_PROPERITES_TRUST_; and the other names are None
The code is MNCUSA; the name is HOST_MARRIOTT_FINANCIAL_TRUST_; and the other names are None
The code is MNCUSA; the name is HOT_TOPIC_INC_; and the other names are None
The code is MNCUSA; the name is HOUSEHOLD_FINANCE_CORP_; and the other names are None
The code is MNCUSA; the name is HOUSTON_AMERICAN_ENERGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HOUSTON_WIRE_AND_CABLE_CO_; and the other names are None
The code is MNCUSAMED; the name is HOVNANIAN_ENTERPRISES_INC_; and the other names are None
The code is MNCUSA; the name is HSBC_HOLDINGS_; and the other names are None
The code is MNC; the name is HSN_INC_; and the other names are None
The code is MNCUSA; the name is HUANENG_POWER_INTL_; and the other names are None
The code is MNC; the name is HUB_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is HUBBELL_INC_; and the other names are None
The code is MNC; the name is HUDSON_CITY_BANCORP_; and the other names are None
The code is MNCUSA; the name is HUDSON_HIGHLAND_GROUP_; and the other names are None
The code is MNCUSA; the name is HUDSON_PACIFIC_PROPERTIES_; and the other names are None
The code is MNC; the name is HUDSON_VALLEY_HOLDING_CORP_; and the other names are None
The code is MNCUSA; the name is HUGHES_COMMUNICATIONS_INC_; and the other names are None
The code is MNCUSAMED; the name is HUGOTON_ROYALTY_TRUST_; and the other names are None
The code is MNCUSA; the name is HUMAN_GENOME_SCIENCES_INC_; and the other names are None
The code is MNCUSA; the name is HUMANA_INC_; and the other names are None
The code is MNCUSAHLH; the name is HUNTINGTON_BANCSHARES_; and the other names are None
The code is MNCUSA; the name is HUNTSMAN_CORPORATION_; and the other names are None
The code is MNC; the name is HURCO_COMPANIES_; and the other names are None
The code is MNCUSA; the name is HURON_CONSULTING_GROUP_; and the other names are None
The code is MNCUSA; the name is HUTCHINSON_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is HUTCHISON_WHAMPOA_; and the other names are None
The code is MNCCHNHKG; the name is HYATT_HOTELS_; and the other names are None
The code is MNC; the name is HYDROGENICS_CORPORATION_; and the other names are None
The code is MNCCAN; the name is HYPERCOM_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HYPERDYNAMICS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is HYPERION_BROOKFIELD_; and the other names are None
The code is MNCUSA; the name is HYPOVEREINSBANK_; and the other names are None
The code is MNCDEU; the name is IAC/INTERACTIVECORP_; and the other names are None
The code is MNCUSA; the name is IAMGOLD_CORP_; and the other names are None
The code is MNC; the name is IBERIABANK_; and the other names are None
The code is MNCUSA; the name is ICAD_INC_; and the other names are None
The code is MNCUSA; the name is ICF_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is ICICI_BANK_LIMITED_; and the other names are None
The code is MNCIND; the name is ICO_GLOBAL_COMMUNICATIONS_; and the other names are None
The code is MNCUSA; the name is ICON_PLC_; and the other names are None
The code is MNCIRLHLH; the name is ICONIX_BRAND_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is ICU_MEDICAL_INC_; and the other names are None
The code is MNCUSAHLH; the name is ICX_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is IDACORP_INC_; and the other names are None
The code is MNCUSA; the name is IDENIX_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is IDENTIVE_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is IDERA_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is IDEX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is IDEXX_LABORATORIES_; and the other names are None
The code is MNCUSA; the name is IDT_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is IESI_BFC_; and the other names are None
The code is MNCCANENV; the name is IFM_INVESTMENTS_LIMITED_; and the other names are None
The code is MNC; the name is IGATE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is II-VI_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is ILLINOIS_TOOL_WORKS_; and the other names are None
The code is MNCUSA; the name is ILLUMINA_INC_; and the other names are None
The code is MNCUSA; the name is IMATION_CORPORATION_; and the other names are None
The code is MNCUSA; the name is IMAX_CORP_; and the other names are None
The code is MNCCAN; the name is IMMERSION_CORPORATION_; and the other names are None
The code is MNCUSA; the name is IMMUCOR_INC_; and the other names are None
The code is MNCUSAHLH; the name is IMMUNOGEN_INC_; and the other names are None
The code is MNCUSAHLH; the name is IMMUNOMEDICS_INC_; and the other names are None
The code is MNCUSA; the name is IMPAX_LABORATORIES_; and the other names are None
The code is MNCUSAHLH; the name is IMPERIAL_OIL_; and the other names are None
The code is MNCCAN; the name is IMPERIAL_SUGAR_COMPANY_; and the other names are None
The code is MNCUSA; the name is INCONTACT_INC_; and the other names are None
The code is MNCUSAMED; the name is INCREDIMAIL_LTD_; and the other names are None
The code is MNCISRMED; the name is INCYTE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INDEPENDENCE_HOLDING_COMPANY_; and the other names are None
The code is MNCUSA; the name is INDIA_FUND_INC._; and the other names are None
The code is MNCUSA; the name is INDIANA_MICHIGAN_POWER_CO_; and the other names are None
The code is MNCUSA; the name is INDOSAT_; and the other names are None
The code is MNCIDNMED; the name is INDUSTRIAL_AND_COMMERCIAL_BANK_OF_CHINA_; and the other names are None
The code is MNCCHN; the name is INDUSTRIAL_SERVICES_OF_AMERICA_INC_; and the other names are None
The code is MNCUSA; the name is INDUSTRIAS_BACHOCO_; and the other names are None
The code is MNCUSA; the name is INFINERA_CORP_; and the other names are None
The code is MNCUSAMED; the name is INFINITY_PHARMACEUTICALS_INC_; and the other names are None
The code is MNCUSAHLH; the name is INFINITY_PROPERTY_AND_CASUALTY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INFORMATICA_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INFOSPACE_INC_; and the other names are None
The code is MNCUSA; the name is ING_GROUP_; and the other names are None
The code is MNCNLD; the name is INGERSOLL_RAND_; and the other names are None
The code is MNCBMU; the name is INGLES_MARKETS_; and the other names are None
The code is MNCUSA; the name is INGRAM_MICRO_INC_; and the other names are None
The code is MNCUSA; the name is INHIBITEX_INC_; and the other names are None
The code is MNCUSA; the name is INLAND_REAL_ESTATE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INNERWORKINGS_INC_; and the other names are None
The code is MNCUSA; the name is INNODATA_ISOGEN_INC_; and the other names are None
The code is MNCUSA; the name is INNOPHOS_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is INNOSPEC_INC_; and the other names are None
The code is MNCGBR; the name is INNOVATIVE_SOLUTIONS_AND_SUPPORT_INC_; and the other names are None
The code is MNCUSA; the name is INOVIO_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is INSIGHT_ENTERPRISES_INC_; and the other names are None
The code is MNCUSA; the name is INSIGNIA_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is INSITUFORM_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is INSMED_INC_; and the other names are None
The code is MNCUSAHLH; the name is INSPIRE_PHARMACEUTICALS_INC_; and the other names are None
The code is MNCUSAHLH; the name is INSTEEL_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is INSULET_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is INTEGRA_LIFESCIENCES_HOLDINGS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INTEGRAL_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is INTEGRAMED_AMERICA_INC_; and the other names are None
The code is MNCUSAHLH; the name is INTEGRATED_DEVICE_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is INTEGRATED_SILICON_SOLUTION_INC_; and the other names are None
The code is MNCUSA; the name is INTEGRYS_ENERGY_GROUP_; and the other names are None
The code is MNCUSA; the name is INTEL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INTELLIPHARMACEUTICS_INTERNATIONAL_; and the other names are None
The code is MNCCANHLH; the name is INTER_PARFUMS_; and the other names are None
The code is MNCUSA; the name is INTERACTIVE_BROKERS_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is INTERACTIVE_INTELLIGENCE_INC_; and the other names are None
The code is MNCUSA; the name is INTERCLICK_INC_; and the other names are None
The code is MNCUSA; the name is INTERCONTINENTAL_HOTELS_GROUP_; and the other names are None
The code is MNCGBR; the name is INTERCONTINENTALEXCHANGE_; and the other names are None
The code is MNC; the name is INTERDIGITAL_INC_; and the other names are None
The code is MNCUSA; the name is INTERFACE_INC_; and the other names are None
The code is MNCUSA; the name is INTERLINE_BRANDS_; and the other names are None
The code is MNC; the name is INTERMUNE_INC_; and the other names are None
The code is MNCUSAHLH; the name is INTERNAP_NETWORK_SERVICES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INTERNATIONA_FLAVORS_AND_FRAGRANCES_INC_; and the other names are None
The code is MNCUSA; the name is INTERNATIONAL_BANCSHARES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INTERNATIONAL_BUSINESS_MACHINES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INTERNATIONAL_COAL_GROUP_INC_; and the other names are None
The code is MNC; the name is INTERNATIONAL_GAME_TECHNOLOGY_; and the other names are None
The code is MNCUSA; the name is INTERNATIONAL_PAPER_COMPANY_; and the other names are None
The code is MNCUSA; the name is INTERNATIONAL_RECTIFIER_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INTERNATIONAL_SHIPHOLDING_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INTERNATIONAL_SPEEDWAY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INTERNATIONAL_TOWER_HILL_MINES_; and the other names are None
The code is MNCCAN; the name is INTERNET_BRANDS_INC_; and the other names are None
The code is MNCUSA; the name is INTERNET_CAPITAL_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is INTERNET_GOLD_GOLDEN_LINES_LTD_; and the other names are None
The code is MNCISRMED; the name is INTERNET_INITIATIVE_JAPAN_; and the other names are None
The code is MNCJPNMED; the name is INTEROIL_CORP_; and the other names are None
The code is MNC; the name is INTERPUBLIC_GROUP_OF_COMPANIES_INC_; and the other names are None
The code is MNCUSA; the name is INTERSECTIONS_INC_; and the other names are None
The code is MNCUSA; the name is INTERSIL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INTERVAL_LEISURE_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is INTEVAC_INC_; and the other names are None
The code is MNCUSA; the name is INTL_URANIUM_CORP_; and the other names are None
The code is MNC; the name is INTRALINKS_HOLDINGS_; and the other names are None
The code is MNC; the name is INTREPID_POTASH_; and the other names are None
The code is MNC; the name is INTUIT_INC_; and the other names are None
The code is MNCUSA; the name is INTUITIVE_SURGICAL_INC_; and the other names are None
The code is MNCUSA; the name is INVACARE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is INVENTEC_COMPANY_; and the other names are None
The code is MNCTWN; the name is INVENTURE_FOODS_INC_; and the other names are None
The code is MNCUSA; the name is INVESCO_; and the other names are None
The code is MNCUSA; the name is INVESTMENT_TECHNOLOGY_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is INVESTORS_BANCORP_; and the other names are None
The code is MNC; the name is INVESTORS_TITLE_COMPANY_; and the other names are None
The code is MNCUSA; the name is ION_GEOPHYSICAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is IPASS_INC_; and the other names are None
The code is MNCUSA; the name is IPC_THE_HOSPITALIST_COMPANY_; and the other names are None
The code is MNCUSA; the name is IPG_PHOTONICS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is IRIDIUM_COMMUNICATIONS_; and the other names are None
The code is MNCUSAMED; the name is IRIS_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is IROBOT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is IRON_MOUNTAIN_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is IRONWOOD_PHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is IRSA_INVERSIONES_Y_REPRESENTACIONES_; and the other names are None
The code is MNCARG; the name is IRST_TRUST_ACTIVE_DIVIDEND_INCOME_FUND_; and the other names are None
The code is MNC; the name is ISHARES_; and the other names are None
The code is MNCUSA; the name is ISILON_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is ISIS_PHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is ISLE_OF_CAPRI_CASINOS_; and the other names are None
The code is MNCUSA; the name is ISRAMCO_INC_; and the other names are None
The code is MNCUSA; the name is ISTA_PHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is ISTAR_FINANCIAL_INC_; and the other names are None
The code is MNCUSA; the name is ITAU_UNIBANCO_BANCO_; and the other names are None
The code is MNCBRA; the name is ITC_HOLDINGS_CORP_; and the other names are None
The code is MNC; the name is ITRON_INC_; and the other names are None
The code is MNCUSA; the name is ITT_EDUCATIONAL_SERVICES_; and the other names are None
The code is MNCUSA; the name is ITT_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is ITURAN_LOCATION_AND_CONTROL_LTD_; and the other names are None
The code is MNCISR; the name is IVANHOE_ENERGY_; and the other names are None
The code is MNCCAN; the name is IVANHOE_MINES_; and the other names are None
The code is MNCCAN; the name is IXIA_; and the other names are None
The code is MNCUSA; the name is IXYS_CORP_; and the other names are None
The code is MNCUSA; the name is J._CREW_GROUP_; and the other names are None
The code is MNC; the name is J.B._HUNT_TRANSPORT_; and the other names are None
The code is MNCUSA; the name is J.C._PENNEY_; and the other names are None
The code is MNCUSA; the name is J.M._SMUCKER_; and the other names are None
The code is MNCUSA; the name is J.P._MORGAN_CHASE_; and the other names are None
The code is MNCUSA; the name is J_AND_J_SNACK_FOODS_; and the other names are None
The code is MNCUSA; the name is J_P_MORGAN_CHASE_; and the other names are None
The code is MNCUSA; the name is J2_GLOBAL_COMMUNICATIONS_; and the other names are None
The code is MNCUSAMED; the name is JA_SOLAR_HOLDINGS_; and the other names are None
The code is MNCCHN; the name is JABIL_CIRCUIT_; and the other names are None
The code is MNCUSA; the name is JACADA_LTD_; and the other names are None
The code is MNCISR; the name is JACK_HENRY_AND_ASSOCIATES_; and the other names are None
The code is MNCUSA; the name is JACK_IN_THE_BOX_INC_; and the other names are None
The code is MNCUSA; the name is JACOBS_ENGINEERING_GROUP_; and the other names are None
The code is MNCUSA; the name is JAGUAR_MINING_INC_; and the other names are None
The code is MNCUSA; the name is JAKKS_PACIFIC_; and the other names are None
The code is MNCUSA; the name is JAMBA_INC_; and the other names are None
The code is MNC; the name is JAMES_HARDIE_INDUSTR_; and the other names are None
The code is MNCAUS; the name is JAMES_RIVER_COAL_COMPANY_; and the other names are None
The code is MNCUSA; the name is JANUS_CAPITAL_GROUP_; and the other names are None
The code is MNCUSA; the name is JARDEN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is JARDINE_MATHESON_; and the other names are None
The code is MNCCHNHKG; the name is JAZZ_PHARMACEUTICALS_INC_; and the other names are None
The code is MNCUSAHLH; the name is JDA_SOFTWARE_GROUP_; and the other names are None
The code is MNCUSA; the name is JDS_UNIPHASE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is JEFFERIES_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is JETBLUE_; and the other names are None
The code is MNCUSA; the name is JIANGBO_PHARMACEUTICALS_; and the other names are None
The code is MNCCHNHLH; the name is JINGWEI_INTERNATIONAL_; and the other names are None
The code is MNCCHN; the name is JINKOSOLAR_; and the other names are None
The code is MNC; the name is JINPAN_INTERNATIONAL_; and the other names are None
The code is MNCCHN; the name is JMP_GROUP_INC_; and the other names are None
The code is MNC; the name is JO_JO_DRUGSTORES_; and the other names are None
The code is MNCCHNHLH; the name is JO-ANN_STORES_INC_; and the other names are None
The code is MNCUSA; the name is JOE'S_JEANS_INC_; and the other names are None
The code is MNCUSA; the name is JOHN_B._SANFILIPPO_; and the other names are None
The code is MNCUSA; the name is JOHN_BEAN_TECHNOLOGIES_; and the other names are None
The code is MNC; the name is JOHN_HANCOCK_; and the other names are None
The code is MNC; the name is JOHN_WILEY_AND_SONS_; and the other names are None
The code is MNCUSAMED; the name is JOHNSON_AND_JOHNSON_; and the other names are None
The code is MNCUSAHLH; the name is JOHNSON_CONTROLS_INC_; and the other names are None
The code is MNCUSA; the name is JOHNSON_OUTDOORS_INC_; and the other names are None
The code is MNCUSA; the name is JONES_APPAREL_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is JONES_LANG_LASALLE_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is JOS._A._BANK_CLOTHIERS_; and the other names are None
The code is MNCUSA; the name is JOURNAL_COMMUNICATIONS_INC_; and the other names are None
The code is MNCUSAMED; the name is JOY_GLOBAL_INC_; and the other names are None
The code is MNCUSA; the name is JP_MORGAN_CHASE_; and the other names are None
The code is MNCUSA; the name is JSFC_SISTEMA_; and the other names are None
The code is MNCRUS; the name is JUNIPER_NETWORKS_INC_; and the other names are None
The code is MNCUSA; the name is K12_INC_; and the other names are None
The code is MNC; the name is KABUSHIKI_KAISHA_ADVANTEST_; and the other names are None
The code is MNCJPN; the name is KADANT_INC_; and the other names are None
The code is MNCUSA; the name is KAISER_ALUMINUM_; and the other names are None
The code is MNCUSA; the name is KAMAN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is KANDI_TECHNOLGIES_; and the other names are None
The code is MNCCHN; the name is KANSAS_CITY_LIFE_INSURANCE_; and the other names are None
The code is MNCUSA; the name is KANSAS_CITY_SOUTHERN_; and the other names are None
The code is MNCUSA; the name is KAPSTONE_PAPER_AND_PACKAGING_; and the other names are None
The code is MNCUSA; the name is KAR_AUCTION_SERVICES_; and the other names are None
The code is MNC; the name is KAYDON_CORPORATION_; and the other names are None
The code is MNCUSA; the name is KAYNE_ANDERSON_MLP_; and the other names are None
The code is MNC; the name is KB_FINANCIAL_GROUP_; and the other names are None
The code is MNCKOR; the name is KB_HOME_; and the other names are None
The code is MNCUSA; the name is KBR_INC_; and the other names are None
The code is MNC; the name is KEARNY_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is KEEGAN_RESOURCES_INC_; and the other names are None
The code is MNCCAN; the name is KEITHLEY_INSTRUMENTS_INC_; and the other names are None
The code is MNCUSA; the name is KELLOGG_COMPANY_; and the other names are None
The code is MNCUSA; the name is KELLY_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is KEMET_CORPORATION_; and the other names are None
The code is MNCUSA; the name is KENDLE_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is KENEXA_CORPORATION_; and the other names are None
The code is MNCUSA; the name is KENNAMETAL_INC_; and the other names are None
The code is MNCUSA; the name is KENNEDY-WILSON_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is KENNETH_COLE_PRODUCTIONS_; and the other names are None
The code is MNCUSA; the name is KENSEY_NASH_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is KENTUCKY_FIRST_FEDERAL_BANCORP_; and the other names are None
The code is MNCUSA; the name is KEPPEL_CORPORATION_; and the other names are None
The code is MNCSGP; the name is KERYX_BIOPHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is KEY_ENERGY_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is KEY_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is KEYCORP_; and the other names are None
The code is MNCUSA; the name is KEYNOTE_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is K-FED_BANCORP_; and the other names are None
The code is MNCUSA; the name is KFORCE_INC_; and the other names are None
The code is MNCUSA; the name is KID_BRANDS_INC_; and the other names are None
The code is MNCUSA; the name is KILROY_REALTY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is KIMBALL_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is KIMBER_RESOURCES_INC_; and the other names are None
The code is MNCCAN; the name is KIMCO_REALTY_; and the other names are None
The code is MNCUSA; the name is KINDER_MORGAN_ENERGY_; and the other names are None
The code is MNCUSA; the name is KINDER_MORGAN_MANAGEMENT_; and the other names are None
The code is MNCUSA; the name is KINDRED_HEALTHCARE_INC_; and the other names are None
The code is MNCUSA; the name is KINETIC_CONCEPTS_INC_; and the other names are None
The code is MNCUSA; the name is KING_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is KINGOLD_JEWERLY_INC_; and the other names are None
The code is MNCUSA; the name is KINGSWAY_FINANCIAL_SERVICES_; and the other names are None
The code is MNCCAN; the name is KINGTONE_WIRELESSINFO_; and the other names are None
The code is MNCCHN; the name is KINROSS_GOLD_CORPORATION_; and the other names are None
The code is MNCCAN; the name is KIRBY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is KIRKLAND'S_INC_; and the other names are None
The code is MNCUSA; the name is KIT_DIGITAL_INC_; and the other names are None
The code is MNCUSA; the name is KITE_REALTY_; and the other names are None
The code is MNC; the name is KKR_FINANCIAL_; and the other names are None
The code is MNC; the name is KLA-TENCOR_; and the other names are None
The code is MNCUSA; the name is KMG_CHEMICALS_; and the other names are None
The code is MNCUSA; the name is KNIGHT_CAPITAL_GROUP_; and the other names are None
The code is MNCUSA; the name is KNIGHT_TRANSPORTATION_INC_; and the other names are None
The code is MNCUSA; the name is KNIGHTSBRIDGE_TANKER_; and the other names are None
The code is MNCBMU; the name is KNOLL_INC_; and the other names are None
The code is MNC; the name is KNOLOGY_INC_; and the other names are None
The code is MNCUSAMED; the name is KOBEX_MINERALS_INC_; and the other names are None
The code is MNCCAN; the name is KODIAK_OIL_; and the other names are None
The code is MNC; the name is KOHLBERG_CAPITAL_CORP_; and the other names are None
The code is MNCUSA; the name is KOHL'S_CORP_; and the other names are None
The code is MNCUSA; the name is KONAMI_CORPORATION_; and the other names are None
The code is MNCJPN; the name is KONGZHONG_CORPORATION_; and the other names are None
The code is MNCCHNMED; the name is KONINKLIJKE_PHILIPS_; and the other names are None
The code is MNCNLD; the name is KOPIN_CORP_; and the other names are None
The code is MNCUSA; the name is KOPPERS_HOLDINGS_INC_; and the other names are None
The code is MNC; the name is KOREA_ELECTRIC_POWER_CORP_; and the other names are None
The code is MNCKOR; the name is KOREA_EQUITY_FUND_; and the other names are None
The code is MNCUSA; the name is KOREA_FUND_INC_; and the other names are None
The code is MNCUSA; the name is KOREA_TELECOM_; and the other names are None
The code is MNCKORMED; the name is KORN/FERRY_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is KRAFT_FOODS_INC_; and the other names are None
The code is MNCUSA; the name is KRATON_PERFORMANCE_POLYMERS,_INC_; and the other names are None
The code is MNC; the name is KRATOS_DEFENSE_AND_SECURITY_; and the other names are None
The code is MNCUSAMED; the name is KRISPY_KREME_; and the other names are None
The code is MNCUSA; the name is KROGER_COMPANY_; and the other names are None
The code is MNCUSA; the name is KRONOS_WORLDWIDE_INC_; and the other names are None
The code is MNCUSA; the name is K-SEA_TRANSPORTATION_; and the other names are None
The code is MNCUSA; the name is K-SWISS_INC_; and the other names are None
The code is MNCUSA; the name is KU6_MEDIA_; and the other names are None
The code is MNCCHNMED; the name is KUBOTA_CORPORATION_; and the other names are None
The code is MNCJPN; the name is KULICKE_AND_SOFFA_; and the other names are None
The code is MNCUSA; the name is K-V_PHARMACEUTICAL_COMPANY_; and the other names are None
The code is MNCUSAHLH; the name is KVH_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is KYOCERA_CORPORATION_; and the other names are None
The code is MNCJPN; the name is L&L_ENERGY_; and the other names are None
The code is MNCUSA; the name is L.B._FOSTER_; and the other names are None
The code is MNCUSA; the name is L-1_IDENTITY_SOLUTIONS_; and the other names are None
The code is MNCUSA; the name is L-3_COMMUNICATIONS_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is LABARGE_INC_; and the other names are None
The code is MNCUSA; the name is LABOPHARM_; and the other names are None
The code is MNCCANHLH; the name is LABORATORY_CORPORATION_OF_AMERICA_; and the other names are None
The code is MNCUSAHLH; the name is LABRANCHE_AND_CO_; and the other names are None
The code is MNCUSA; the name is LACLEDE_GROUP_; and the other names are None
The code is MNCUSA; the name is LACROSSE_FOOTWEAR_; and the other names are None
The code is MNCUSA; the name is LADENBURG_THALMANN_; and the other names are None
The code is MNCUSA; the name is LADISH_CO_; and the other names are None
The code is MNCUSA; the name is LAKELAND_BANCORP_; and the other names are None
The code is MNCUSA; the name is LAKELAND_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is LAM_RESEARCH_CORPORATION_; and the other names are None
The code is MNCUSA; the name is LAMAR_ADVERTISING_COMPANY_; and the other names are None
The code is MNCCHL; the name is LANCASTER_COLONY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is LANCE_INC_; and the other names are None
The code is MNCUSA; the name is LANDAUER_INC_; and the other names are None
The code is MNCUSA; the name is LANDEC_CORPORATION_; and the other names are None
The code is MNCUSA; the name is LANDRY'S_RESTAURANTS_; and the other names are None
The code is MNCUSA; the name is LANDSTAR_SYSTEM_; and the other names are None
The code is MNCUSA; the name is LANNETT_CO_; and the other names are None
The code is MNCUSAHLH; the name is LASALLE_HOTEL_PROPERTIES_; and the other names are None
The code is MNCUSA; the name is LATTICE_SEMICONDUCTOR_CORP_; and the other names are None
The code is MNCUSA; the name is LAWSON_PRODUCTS_INC_; and the other names are None
The code is MNCUSA; the name is LAWSON_SOFTWARE_INC_; and the other names are None
The code is MNCUSA; the name is LAYNE_CHRISTENSEN_; and the other names are None
The code is MNCUSA; the name is LAZARD_LTD_; and the other names are None
The code is MNC; the name is LA-Z-BOY_; and the other names are None
The code is MNCUSA; the name is LCA-VISION_; and the other names are None
The code is MNCUSAHLH; the name is LDK_SOLAR_CO_; and the other names are None
The code is MNC; the name is LEADING_BRANDS_INC_; and the other names are None
The code is MNCCAN; the name is LEAP_WIRELESS_INTERNATIONAL_; and the other names are None
The code is MNCUSAMED; the name is LEAPFROG_ENTERPRISES_INC_; and the other names are None
The code is MNCUSA; the name is LEAR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is LEARNING_TREE_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is LECROY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is LEE_ENTERPRISES_INC_; and the other names are None
The code is MNCUSAMED; the name is LEGACY_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is LEGACY_RESERVES_LP_; and the other names are None
The code is MNCUSA; the name is LEGG_MASON_INC_; and the other names are None
The code is MNCUSA; the name is LEGGETT_AND_PLATT_; and the other names are None
The code is MNCUSA; the name is LEMAITRE_VASCULAR_; and the other names are None
The code is MNCUSAHLH; the name is LENDER_PROCESSING_SERVICES_INC_; and the other names are None
The code is MNC; the name is LENNAR_CORP_; and the other names are None
The code is MNCUSA; the name is LENNOX_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is LEUCADIA_NATIONAL_CORP_; and the other names are None
The code is MNCUSA; the name is LEVEL_3_COMMUNICATIONS_; and the other names are None
The code is MNCUSAMED; the name is LEXICON_PHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is LEXINGTON_REALTY_TRUST_; and the other names are None
The code is MNCUSA; the name is LEXMARK_; and the other names are None
The code is MNCUSA; the name is LG_CORP_; and the other names are None
The code is MNCKOR; the name is LG_DISPLAY_CO_; and the other names are None
The code is MNC; the name is LHC_GROUP_; and the other names are None
The code is MNCUSAHLH; the name is LI_AND_FUNG_; and the other names are None
The code is MNCCHNHKG; the name is LIBBEY_INC_; and the other names are None
The code is MNCUSA; the name is LIBERTE_INVESTORS_INC_; and the other names are None
The code is MNCUSA; the name is LIBERTY_ACQUISITION_HOLDINGS_CORP_; and the other names are None
The code is MNC; the name is LIBERTY_GLOBAL_INC_; and the other names are None
The code is MNCUSAMED; the name is LIBERTY_MEDIA_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is LIBERTY_PROPERTY_TRUST_; and the other names are None
The code is MNCUSA; the name is LIFE_PARTNERS_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is LIFE_TECHNOLOGIES_CORP_; and the other names are None
The code is MNCUSA; the name is LIFE_TIME_FITNESS_; and the other names are None
The code is MNC; the name is LIFEPOINT_HOSPITALS_INC_; and the other names are None
The code is MNCUSA; the name is LIFETIME_BRANDS_INC_; and the other names are None
The code is MNCUSA; the name is LIFEWAY_FOODS_INC_; and the other names are None
The code is MNCUSA; the name is LIGAND_PHARMACEUTICALS_INC_; and the other names are None
The code is MNCUSAHLH; the name is LIGHTBRIDGE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is LIHUA_INTERNATIONAL_; and the other names are None
The code is MNCCHN; the name is LIME_ENERGY_CO_; and the other names are None
The code is MNCUSA; the name is LIMELIGHT_NETWORKS_INC_; and the other names are None
The code is MNCUSA; the name is LIMITED_BRANDS_INC_; and the other names are None
The code is MNCUSA; the name is LIMONEIRA_CO_; and the other names are None
The code is MNCAGR; the name is LIN_TV_CORP_; and the other names are None
The code is MNCUSA; the name is LINCARE_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is LINCOLN_EDUCATIONAL_SERVICES_CORP_; and the other names are None
The code is MNCUSA; the name is LINCOLN_ELECTRIC_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is LINCOLN_NATIONAL_CORP_; and the other names are None
The code is MNCUSA; the name is LINDSAY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is LINEAR_TECHNOLOGY_CORP_; and the other names are None
The code is MNCUSA; the name is LINKTONE_LTD_; and the other names are None
The code is MNCCHNMED; the name is LINN_ENERGY_LLC_; and the other names are None
The code is MNCUSA; the name is LIONBRIDGE_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is LIONS_GATE_ENTERTAINMENT_; and the other names are None
The code is MNCUSA; the name is LIQUIDITY_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is LITHIA_MOTORS_; and the other names are None
The code is MNCUSA; the name is LITTELFUSE_INC_; and the other names are None
The code is MNCUSA; the name is LIVE_NATION_ENTERTAINMENT_INC_; and the other names are None
The code is MNCUSA; the name is LIVEPERSON_INC_; and the other names are None
The code is MNCUSA; the name is LIZ_CLAIBORNE_INC_; and the other names are None
The code is MNCUSA; the name is LJ_INTERNATIONAL_; and the other names are None
The code is MNCCHNHKG; the name is LKQ_CORPORATION_; and the other names are None
The code is MNCUSA; the name is LLOYDS_BANKING_; and the other names are None
The code is MNCGBR; the name is LLOYDS_TSB_; and the other names are None
The code is MNCGBR; the name is LM_ERICSSON_; and the other names are None
The code is MNCSWEMED; the name is LMI_AEROSPACE_; and the other names are None
The code is MNCUSA; the name is LML_PAYMENT_SYSTEMS_; and the other names are None
The code is MNCCAN; the name is LODGENET_INTERACTIVE_CORP_; and the other names are None
The code is MNCUSAMED; the name is LOEWS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is LOGITECH_; and the other names are None
The code is MNCUSA; the name is LOGMEIN_INC_; and the other names are None
The code is MNCUSA; the name is LOJACK_CORP_; and the other names are None
The code is MNCUSAMED; the name is LONGTOP_FINANCIAL_; and the other names are None
The code is MNC; the name is LONGWEI_PETROLEUM_INVESTMENT_HOLDING_; and the other names are None
The code is MNCCHN; the name is LOOPNET_INC_; and the other names are None
The code is MNCUSA; the name is LORAL_SPACE_AND_COMMUNICATIONS_; and the other names are None
The code is MNCUSA; the name is LORILLARD_INC_; and the other names are None
The code is MNC; the name is LOUISIANA_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is LOUISIANA-PACIFIC_CORP_; and the other names are None
The code is MNCUSA; the name is LOWE'S_COMPANIES_INC_; and the other names are None
The code is MNCUSA; the name is LSB_CORPORATION_; and the other names are None
The code is MNCUSA; the name is LSB_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is LSI_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is LSI_LOGIC_CORP_; and the other names are None
The code is MNCUSA; the name is LTC_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is LTX-CREDENCE_CORP_; and the other names are None
The code is MNCUSA; the name is LUBRIZOL_CORP_; and the other names are None
The code is MNCUSA; the name is LUBY'S_INC_; and the other names are None
The code is MNCUSA; the name is LUFKIN_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is LULULEMON_ATHLETICA_; and the other names are None
The code is MNCCAN; the name is LUMBER_LIQUIDATORS_; and the other names are None
The code is MNCUSA; the name is LUMINEX_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is LUXOTTICA_GROUP_; and the other names are None
The code is MNCITAHLH; the name is LYDALL_INC_; and the other names are None
The code is MNCUSA; the name is M&F_WORLDWIDE_; and the other names are None
The code is MNCUSA; the name is M&T_BANK_; and the other names are None
The code is MNCUSA; the name is M.D.C._HOLDINGS_; and the other names are None
The code is MNCUSA; the name is M/I_HOMES_INC_; and the other names are None
The code is MNCUSA; the name is MACERICH_COMPANY_; and the other names are None
The code is MNCUSA; the name is MAC-GRAY_CORP_; and the other names are None
The code is MNCUSA; the name is MACK-CALI_REALTY_; and the other names are None
The code is MNCUSA; the name is MACQUARIE/FIRST_TRUST_GLOBAL_; and the other names are None
The code is MNC; the name is MACQUARIE_GLOBAL_INFRASTRUCTURE_; and the other names are None
The code is MNC; the name is MACQUARIE_INFRASTRUCTURE_; and the other names are None
The code is MNC; the name is MACY'S_INC_; and the other names are None
The code is MNCUSA; the name is MADISON_CLAYMORE_; and the other names are None
The code is MNC; the name is MADISON_SQUARE_GARDEN_INC_; and the other names are None
The code is MNCUSAMED; the name is MAG_SILVER_CORPORATION_; and the other names are None
The code is MNCCAN; the name is MAGAL_SECURITY_SYSTEMS_; and the other names are None
The code is MNCISRMED; the name is MAGELLAN_HEALTH_SERVICES_; and the other names are None
The code is MNCUSA; the name is MAGELLAN_MIDSTREAM_PARTNERS_; and the other names are None
The code is MNCUSA; the name is MAGELLAN_PETROLEUM_; and the other names are None
The code is MNCUSA; the name is MAGIC_SOFTWARE_ENTERPRISES_LTD_; and the other names are None
The code is MNCISR; the name is MAGMA_DESIGN_AUTOMATION_; and the other names are None
The code is MNCUSA; the name is MAGNA_INTERNATIONAL_; and the other names are None
The code is MNCCAN; the name is MAGNUM_HUNTER_RESOURCES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is MAHANAGAR_TELEPHONE_NIGAM_; and the other names are None
The code is MNCINDMED; the name is MAIDEN_HLDGS_; and the other names are None
The code is MNCBMU; the name is MAIDENFORM_BRANDS_; and the other names are None
The code is MNC; the name is MAIN_STREET_CAPITAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is MAINE_AND_MARITIMES_CORP_; and the other names are None
The code is MNCUSA; the name is MAINSOURCE_FINANCIAL_GROUP_; and the other names are None
The code is MNCUSA; the name is MAJESTIC_CAPITAL,_LTD_; and the other names are None
The code is MNCBMU; the name is MAKEMYTRIP_; and the other names are None
The code is MNCIND; the name is MAKITA_CORP_; and the other names are None
The code is MNCJPN; the name is MAKO_SURGICAL_CORP_; and the other names are None
The code is MNCUSA; the name is MANHATTAN_ASSOCIATES_INC_; and the other names are None
The code is MNCUSA; the name is MANITOWOC_COMPANY_; and the other names are None
The code is MNCUSA; the name is MANNATECH_INC_; and the other names are None
The code is MNCUSA; the name is MANNKIND_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is MANPOWER_INC_; and the other names are None
The code is MNCUSA; the name is MANTECH_INTERNATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is MANULIFE_; and the other names are None
The code is MNCCAN; the name is MAP_PHARMACEUTICALS_INC_; and the other names are None
The code is MNCUSAHLH; the name is MARATHON_OIL_CORP_; and the other names are None
The code is MNCUSA; the name is MARCHEX_INC_; and the other names are None
The code is MNCUSA; the name is MARCUS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is MARINA_BIOTECH_INC_; and the other names are None
The code is MNCUSAHLH; the name is MARINE_PRODUCTS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is MARINEMAX_INC_; and the other names are None
The code is MNCUSA; the name is MARINER_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is MARKEL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is MARKETAXESS_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is MARKWEST_ENERGY_PARTNERS_; and the other names are None
The code is MNCUSA; the name is MARLIN_BUSINESS_SERVICES_CORP_; and the other names are None
The code is MNCUSA; the name is MARRIOT_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is MARSH_AND_MCLENNAN_; and the other names are None
The code is MNCUSA; the name is MARSHALL_EDWARDS_; and the other names are None
The code is MNCAUSHLH; the name is MARTEK_BIOSCIENCES_; and the other names are None
The code is MNCUSA; the name is MARTEN_TRANSPORT_; and the other names are None
The code is MNCUSA; the name is MARTHA_STEWART_LIVING_; and the other names are None
The code is MNCUSAMED; the name is MARTIN_MARIETTA_MATERIALS_; and the other names are None
The code is MNCUSA; the name is MARVELL_TECHNOLOGY_GROUP_; and the other names are None
The code is MNCBMU; the name is MASCO_CORP_; and the other names are None
The code is MNCUSA; the name is MASIMO_CORP_; and the other names are None
The code is MNCUSA; the name is MASSEY_ENERGY_COMPANY_; and the other names are None
The code is MNCUSA; the name is MASSMUTUAL INVESTORS_; and the other names are None
The code is MNCUSA; the name is MASTEC_INC_; and the other names are None
The code is MNCUSA; the name is MASTERCARD_; and the other names are None
The code is MNC; the name is MATAV_; and the other names are None
The code is MNCHUNMED; the name is MATRIX_SERVICE_COMPANY_; and the other names are None
The code is MNCUSA; the name is MATTEL_; and the other names are None
The code is MNCUSA; the name is MATTHEWS_INTERNATIONAL_CORP_; and the other names are None
The code is MNCUSA; the name is MATTSON_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is MAUI_LAND_AND_PINEAPPLE_; and the other names are None
The code is MNCUSA; the name is MAXCOM_; and the other names are None
The code is MNCMEXMED; the name is MAXIM_INTEGRATED_PRODUCTS_INC_; and the other names are None
The code is MNCUSA; the name is MAXIMUS_INC_; and the other names are None
The code is MNCUSA; the name is MAXLINEAR_; and the other names are None
The code is MNC; the name is MAXWELL_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is MAXYGEN_INC_; and the other names are None
The code is MNCUSA; the name is MB_FINANCIAL_INC_; and the other names are None
The code is MNCUSA; the name is MBIA_INC_; and the other names are None
The code is MNCUSA; the name is MCCLATCHY_COMPANY_; and the other names are None
The code is MNCUSAMED; the name is MCCORMICK_AND_COMPANY_; and the other names are None
The code is MNCUSA; the name is MCCORMICK_AND_SCHMICK'S_; and the other names are None
The code is MNCUSA; the name is MCDERMOTT_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is MCDONALD'S_CORP_; and the other names are None
The code is MNCUSA; the name is MCG_CAPITAL_CORP_; and the other names are None
The code is MNCUSA; the name is MCGRATH_RENTCORP_; and the other names are None
The code is MNCUSA; the name is MCGRAW-HILL_; and the other names are None
The code is MNCUSAMED; the name is MCKESSON_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is MCMORAN_EXPLORATION_COMPANY_; and the other names are None
The code is MNCUSA; the name is MDC_PARTNERS_INC_; and the other names are None
The code is MNCCAN; the name is MDS,_INC_; and the other names are None
The code is MNCCAN; the name is MDU_RES_GROUP_; and the other names are None
The code is MNCUSA; the name is MEAD_JOHNSON_; and the other names are None
The code is MNC; the name is MEADOWBROOK_INSURANCE_GROUP_; and the other names are None
The code is MNCUSA; the name is MEADWESTVACO_; and the other names are None
The code is MNCUSA; the name is MEASUREMENT_SPECIALTIES_INC_; and the other names are None
The code is MNCUSA; the name is MECHEL_; and the other names are None
The code is MNCRUS; the name is MEDALLION_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is MEDASSETS_INC_; and the other names are None
The code is MNCUSAHLH; the name is MEDCATH_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is MEDCOHEALTH_; and the other names are None
The code is MNCUSAHLH; the name is MEDI_CLINIC_CORP_; and the other names are None
The code is MNCZAF; the name is MEDIA_GENERAL_INC_; and the other names are None
The code is MNCUSAMED; the name is MEDIACOM_COMMUNICATIONS_CORP_; and the other names are None
The code is MNCUSA; the name is MEDIAMIND_TECHNOLOG_; and the other names are None
The code is MNC; the name is MEDICAL_ACTION_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is MEDICAL_PROPERTIES_TRUST_; and the other names are None
The code is MNCHLH; the name is MEDICINOVA_INC_; and the other names are None
The code is MNCUSAHLH; the name is MEDICIS_PHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is MEDIDATA_SOLUTIONS_; and the other names are None
The code is MNCUSA; the name is MEDIFAST_INC_; and the other names are None
The code is MNCUSA; the name is MEDIVATION_INC_; and the other names are None
The code is MNCUSAHLH; the name is MEDIWARE_INFORMATION_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is MEDNAX_INC_; and the other names are None
The code is MNCUSA; the name is MEDQUIST_INC_; and the other names are None
The code is MNCUSA; the name is MEDTOX_SCIENTIFIC_; and the other names are None
The code is MNCUSAHLH; the name is MEDTRONIC_INC_; and the other names are None
The code is MNCUSA; the name is MELA_SCIENCES_INC_; and the other names are None
The code is MNCUSAHLH; the name is MELCO_CROWN_ENTERTAINMENT_; and the other names are None
The code is MNCCHNHKG; the name is MELLANOX_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is MEMC_ELECTRONIC_MATERIALS_; and the other names are None
The code is MNCUSA; the name is MEN'S_WEARHOUSE_INC_; and the other names are None
The code is MNCUSA; the name is MENTOR_GRAPHICS_CORP_; and the other names are None
The code is MNCUSA; the name is MER_TELEMANAGEMENT_SOLUTIONS_; and the other names are None
The code is MNCISRMED; the name is MERCADOLIBRE_; and the other names are None
The code is MNCARG; the name is MERCER_INSURANCE_GROUP_; and the other names are None
The code is MNCUSA; the name is MERCER_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is MERCHANTS_BANCSHARES_INC_; and the other names are None
The code is MNCUSA; the name is MERCK_AND_COMPANY_INC_; and the other names are None
The code is MNCUSAHLH; the name is MERCURY_COMPUTER_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is MERCURY_GENERAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is MEREDITH_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is MERGE_HEALTHCARE_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is MERIDIAN_BIOSCIENCE_INC_; and the other names are None
The code is MNCUSA; the name is MERIDIAN_INTERSTATE_BANCORP_; and the other names are None
The code is MNCUSA; the name is MERIT_MEDICAL_SYSTEMS_INC_; and the other names are None
The code is MNCUSAHLH; the name is MERITAGE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is MERRILL_LYNCH_; and the other names are None
The code is MNCUSA; the name is MERU_NETWORKS_INC_; and the other names are None
The code is MNCUSA; the name is MESA_LABORATORIES_INC_; and the other names are None
The code is MNCUSA; the name is MESA_ROYALTY_TRUST_; and the other names are None
The code is MNCUSA; the name is MESABI_TRUST_; and the other names are None
The code is MNCUSA; the name is META_FINANCIAL_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is METABOLIX_INC_; and the other names are None
The code is MNCUSA; the name is METALICO_INC_; and the other names are None
The code is MNCUSA; the name is METALINK_LTD_; and the other names are None
The code is MNCISR; the name is METALLINE_MINING_; and the other names are None
The code is MNCUSA; the name is METALS_USA_HOLDINGS_; and the other names are None
The code is MNC; the name is METALURGICA_GERDAU_; and the other names are None
The code is MNCBRA; the name is METHANEX_CORP_; and the other names are None
The code is MNCCAN; the name is METHODE_ELECTRONICS_INC_; and the other names are None
The code is MNCUSA; the name is METLIFE_; and the other names are None
The code is MNCUSA; the name is MET-PRO_CORPORATION_; and the other names are None
The code is MNCUSA; the name is METRO_BANCORP_; and the other names are None
The code is MNCUSA; the name is METROPCS_COMMUNICATIONS_; and the other names are None
The code is MNCUSAMED; the name is METROPOLITAN_HEALTH_NETWORKS_INC_; and the other names are None
The code is MNCUSAHLH; the name is METTLER-TOLEDO_; and the other names are None
The code is MNCUSA; the name is MF_GLOBAL_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is MGE_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is MGIC_INVESTMENT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is MGM_RESORTS_; and the other names are None
The code is MNCUSA; the name is MGP_INGREDIENTS_INC_; and the other names are None
The code is MNCUSA; the name is MGT_CAPITAL_INVESTMENTS_; and the other names are None
The code is MNCGBR; the name is MI_DEVELOPMENTS_INC_; and the other names are None
The code is MNCCAN; the name is MICREL_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is MICROCHIP_TECHNOLOGY_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is MICROMET_INC_; and the other names are None
The code is MNCUSA; the name is MICRON_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is MICROS_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is MICROSEMI_CORP_; and the other names are None
The code is MNCUSA; the name is MICROSOFT_; and the other names are None
The code is MNCUSA; the name is MICROSTRATEGY_INC_; and the other names are None
The code is MNCUSA; the name is MICROTUNE_INC_; and the other names are None
The code is MNCUSA; the name is MICROVISION_INC_; and the other names are None
The code is MNCUSA; the name is MICRUS_ENDOVASCULAR_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is MID-AMERICA_APARTMENT_COMMUNITIES_INC_; and the other names are None
The code is MNCUSA; the name is MIDAS_INC_; and the other names are None
The code is MNCUSA; the name is MIDDLEBURG_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is MIDDLEBY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is MIDDLESEX_WATER_COMPANY_; and the other names are None
The code is MNCUSA; the name is MIDSOUTH_BANCORP_; and the other names are None
The code is MNCUSA; the name is MIDWESTONE_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is MILLER_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is MILLER_PETROLEUM_; and the other names are None
The code is MNCUSA; the name is MILLICOM_INTERNATIONAL_; and the other names are None
The code is MNCLUXMED; the name is MIND_C.T.I._LTD_; and the other names are None
The code is MNCISRMED; the name is MIND_CTI_LTD_; and the other names are None
The code is MNCISRMED; the name is MINDRAY_MEDICAL_INTERNATIONAL_LIMITED_; and the other names are None
The code is MNCHLH; the name is MINDSPEED_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is MINE_SAFETY_APPLIANCES_COMPANY_; and the other names are None
The code is MNCUSA; the name is MINEFINDERS_CORP_; and the other names are None
The code is MNCCAN; the name is MINERALS_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is MIPS_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is MIRANT_CORP_; and the other names are None
The code is MNC; the name is MISSION_WEST_PROPERTIES_; and the other names are None
The code is MNCUSA; the name is MISSISSIPPI_POWER_COMPANY_; and the other names are None
The code is MNCUSA; the name is MISTRAS_GROUP_INC_; and the other names are None
The code is MNC; the name is MITCHAM_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is MITEL_NETWORKS_CORPORATION_; and the other names are None
The code is MNCCAN; the name is MITSUBISHI_; and the other names are None
The code is MNCJPN; the name is MITSUI_AND_COMPANY_; and the other names are None
The code is MNCJPN; the name is MIZUHO_FINANCIAL_GROUP_; and the other names are None
The code is MNC; the name is MIZUHO_HOLDINGS_; and the other names are None
The code is MNCJPN; the name is MKS_INSTRUMENTS_INC_; and the other names are None
The code is MNCUSA; the name is MLP_AND_STRATEGIC_EQUITY_FUND_; and the other names are None
The code is MNC; the name is MMC_NORILSK_NICKEL_; and the other names are None
The code is MNCRUS; the name is MOBILE_MINI_INC_; and the other names are None
The code is MNCUSA; the name is MOBILE_TELESYSTEMS_; and the other names are None
The code is MNCRUSMED; the name is MODINE_MANUFACTURING_COMPANY_; and the other names are None
The code is MNCUSA; the name is MODUSLINK_GLOBAL_SOLUTIONS_; and the other names are None
The code is MNCUSA; the name is MOHAWK_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is MOLEX_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is MOLINA_HEALTHCARE_; and the other names are None
The code is MNCUSAHLH; the name is MOLSON_COORS_; and the other names are None
The code is MNCNMR; the name is MOMENTA_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is MONARCH_CASINO_AND_RESORT_; and the other names are None
The code is MNCUSA; the name is MONEYGRAM_INTERNATIONAL_; and the other names are None
The code is MNC; the name is MONMOUTH_REAL_ESTATE_INVESTMENT_; and the other names are None
The code is MNCUSA; the name is MONOLITHIC_POWER_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is MONOTYPE_IMAGING_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is MONRO_MUFFLER_BRAKE_; and the other names are None
The code is MNCUSA; the name is MONSANTO_; and the other names are None
The code is MNCUSAAGR; the name is MONSTER_WORLDWIDE_INC_; and the other names are None
The code is MNCUSA; the name is MONTGOMERY_STREET_INCOME_SECURITIES_; and the other names are None
The code is MNCUSA; the name is MONTPELIER_RE_; and the other names are None
The code is MNCBMU; the name is MOODY'S_CORP_; and the other names are None
The code is MNCUSA; the name is MOOG_INC_; and the other names are None
The code is MNCUSA; the name is MORGAN_STANLEY_; and the other names are None
The code is MNCUSA; the name is MORGANS_HOTEL_GROUP_; and the other names are None
The code is MNCUSA; the name is MORNINGSTAR_INC_; and the other names are None
The code is MNCUSA; the name is MORTON'S_RESTAURANT_GROUP_; and the other names are None
The code is MNCUSA; the name is MOSAIC_COMPANY_; and the other names are None
The code is MNCAGR; the name is MOSYS_INC_; and the other names are None
The code is MNCUSA; the name is MOTORCAR_PARTS_OF_AMERICA_INC_; and the other names are None
The code is MNCUSA; the name is MOTOROLA_; and the other names are None
The code is MNCUSAMED; the name is MOTRICITY_; and the other names are None
The code is MNC; the name is MOUNTAIN_PROVINCE_DIAMONDS_INC_; and the other names are None
The code is MNCCAN; the name is MOVADO_GROUP_; and the other names are None
The code is MNCUSA; the name is MOVE_INC_; and the other names are None
The code is MNCUSA; the name is MPG_OFFICE_TRUST_; and the other names are None
The code is MNCUSA; the name is MSC_INDUSTRIAL_DIRECT_COMPANY_; and the other names are None
The code is MNCUSA; the name is MSCI_INC_; and the other names are None
The code is MNCUSA; the name is MTN_GROUP_LIMITED_; and the other names are None
The code is MNCZAF; the name is MTS_SYSTEMS_CORP_; and the other names are None
The code is MNCUSA; the name is MUELLER_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is MUELLER_WATER_PRODUCTS_; and the other names are None
The code is MNC; the name is MULTI-COLOR_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is MULTI-FINELINE_ELECTRONIX_; and the other names are None
The code is MNCUSA; the name is MULTIMEDIA_GAMES_INC_; and the other names are None
The code is MNCUSA; the name is MULTI-NATIONAL_CORPORATION_; and the other names are None
The code is MNC; the name is MURPHY_OIL_CORP_; and the other names are None
The code is MNCUSA; the name is MV_OIL_TRUST_; and the other names are None
The code is MNC; the name is MVC_CAPITAL_; and the other names are None
The code is MNCUSA; the name is MWI_VETERINARY_SUPPLY_; and the other names are None
The code is MNCUSAHLH; the name is MYERS_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is MYLAN_INC_; and the other names are None
The code is MNCUSAHLH; the name is MYR_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is MYREXIS_INC_; and the other names are None
The code is MNCUSAHLH; the name is MYRIAD_GENETICS_INC_; and the other names are None
The code is MNCUSA; the name is NABI_BIOPHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is NABORS_INDUSTRIES_; and the other names are None
The code is MNCBMU; the name is NACCO_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is NALCO_HOLDING_COMPANY_; and the other names are None
The code is MNC; the name is NAM_TAI_ELECTRONICS_; and the other names are None
The code is MNCCHN; the name is NANOMETRICS_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is NANOSPHERE_INC_; and the other names are None
The code is MNCUSAHLH; the name is NARA_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is NASB_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is NASDAQ_OMX_; and the other names are None
The code is MNCUSA; the name is NASH-FINCH_; and the other names are None
The code is MNCUSA; the name is NASPERS_LIMITED_; and the other names are None
The code is MNCZAF; the name is NATHAN'S_FAMOUS_INC_; and the other names are None
The code is MNCUSA; the name is NATIONAL_AMERICAN_UNIVERSITY_HOLDING_; and the other names are None
The code is MNCUSAEDU; the name is NATIONAL_BANK_OF_GREECE_; and the other names are None
The code is MNCGRC; the name is NATIONAL_BANKSHARES_INC_; and the other names are None
The code is MNCUSA; the name is NATIONAL_BEVERAGE_CORP_; and the other names are None
The code is MNCUSA; the name is NATIONAL_CINEMEDIA_INC_; and the other names are None
The code is MNCUSA; the name is NATIONAL_FINANCIAL_PARTNERS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NATIONAL_FUEL_GAS_COMPANY_; and the other names are None
The code is MNCUSA; the name is NATIONAL_GRID_TRANSCO_; and the other names are None
The code is MNCGBR; the name is NATIONAL_HEALTH_INVESTORS_INC_; and the other names are None
The code is MNCUSA; the name is NATIONAL_INDUSTRIES_GROUP_HOLDINGS_SAK_; and the other names are None
The code is MNCKWT; the name is NATIONAL_INSTRUMENTS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NATIONAL_INTERSTATE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NATIONAL_PENN_BANCSHARES_; and the other names are None
The code is MNCUSA; the name is NATIONAL_PRESTO_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is NATIONAL_RURAL_UTILITIES_COOPERATIVE_FINANCE_CORP_; and the other names are None
The code is MNCUSA; the name is NATIONAL_SEMICONDUCTOR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NATIONAL_STEEL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NATIONAL_TECHNICAL_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is NATIONAL_WESTERN_LIFE_INSURANCE_COMPANY_; and the other names are None
The code is MNCUSA; the name is NATIONAL-OILWELL_INC_; and the other names are None
The code is MNCUSA; the name is NATIONWIDE_HEALTH_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is NATURAL_GAS_SERVICES_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is NATURAL_RESOURCE_PARTNERS_LP_; and the other names are None
The code is MNCUSA; the name is NATURE'S_SUNSHINE_PRODUCTS_; and the other names are None
The code is MNCUSAHLH; the name is NATUS_MEDICAL_INC_; and the other names are None
The code is MNCITA; the name is NAVARRE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NAVIGANT_CONSULTING_INC_; and the other names are None
The code is MNCUSA; the name is NAVIOS_MARITIME_; and the other names are None
The code is MNCGRC; the name is NAVISITE_INC_; and the other names are None
The code is MNCUSA; the name is NAVISTAR_INTERNATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NB&T_FINANCIAL_GROUP_; and the other names are None
The code is MNCUSA; the name is NBT_BANCORP_; and the other names are None
The code is MNCUSA; the name is NBTY_INC_; and the other names are None
The code is MNCUSAHLH; the name is NCI_BUILDING_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is NCI_INC_; and the other names are None
The code is MNCUSA; the name is NCR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NEENAH_PAPER_; and the other names are None
The code is MNC; the name is NEKTAR_THERAPEUTICS_; and the other names are None
The code is MNCUSAHLH; the name is NELNET_INC_; and the other names are None
The code is MNCUSA; the name is NEOGEN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NEOSTEM_INC_; and the other names are None
The code is MNCUSA; the name is NEPTUNE_ORIENT_LINES_; and the other names are None
The code is MNCSGP; the name is NEPTUNE_TECHNOLOGIES_; and the other names are None
The code is MNCCANHLH; the name is NESS_TECHNOLOGIES_; and the other names are None
The code is MNCISRMED; the name is NET_1_UEPS_TECHNOLOGIES_; and the other names are None
The code is MNCZAF; the name is NET_SERVICOS_DE_COMUNICACAO_; and the other names are None
The code is MNCBRA; the name is NETAPP_INC_; and the other names are None
The code is MNCUSA; the name is NETCARE_LIMITED_; and the other names are None
The code is MNCZAF; the name is NETEASE.COM_; and the other names are None
The code is MNCCHN; the name is NETEZZA_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NETFLIX_; and the other names are None
The code is MNCUSA; the name is NETGEAR_INC_; and the other names are None
The code is MNCUSAMED; the name is NETLIST_INC_; and the other names are None
The code is MNCUSA; the name is NETLOGIC_MICROSYSTEMS_; and the other names are None
The code is MNCUSA; the name is NETSCOUT_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is NETSUITE_INC_; and the other names are None
The code is MNC; the name is NETWORK_ENGINES_INC_; and the other names are None
The code is MNCUSA; the name is NETWORK_EQUIPMENT_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is NETWORKS_ASSOCIATES_INC_; and the other names are None
The code is MNCUSA; the name is NEUBERGER_BERMAN_; and the other names are None
The code is MNCUSA; the name is NEURALSTEM_INC_; and the other names are None
The code is MNCUSA; the name is NEUROCRINE_BIOSCIENCES_INC_; and the other names are None
The code is MNCUSA; the name is NEUROGESX_INC_; and the other names are None
The code is MNCUSAHLH; the name is NEUSTAR_INC_; and the other names are None
The code is MNC; the name is NEUTRAL_TANDEM_INC_; and the other names are None
The code is MNCUSAMED; the name is NEVSUN_RESOURCES_; and the other names are None
The code is MNCCAN; the name is NEW_DRAGON_ASIA_CORPORATION_; and the other names are None
The code is MNCCHN; the name is NEW_GOLD_INC_; and the other names are None
The code is MNC; the name is NEW_M&I_CORPORATION_; and the other names are None
The code is MNC; the name is NEW_ORIENTAL_ENERGY_AND_CHEMICAL_CORP_; and the other names are None
The code is MNCCHN; the name is NEW_WORLD_DEVELOPMENT_CO_; and the other names are None
The code is MNCCHNHKG; the name is NEW_WORLD_DEVELOPMENT_COMPANY_; and the other names are None
The code is MNCCHNHKG; the name is NEW_YORK_AND_COMPANY_; and the other names are None
The code is MNC; the name is NEW_YORK_COMMUNITY_BANCORP_; and the other names are None
The code is MNCUSA; the name is NEWALLIANCE_BANCSHARES_; and the other names are None
The code is MNCUSA; the name is NEWCASTLE_INVESTMENT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NEWELL_RUBBERMAID_; and the other names are None
The code is MNCUSA; the name is NEWFIELD_EXPLORATION_CO_; and the other names are None
The code is MNCUSA; the name is NEWJERSEY_RESOURCES_CORP_; and the other names are None
The code is MNCUSA; the name is NEWLEAD_HOLDINGS_; and the other names are None
The code is MNCGRC; the name is NEWMARKET_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NEWMONT_MINING_; and the other names are None
The code is MNCUSA; the name is NEWPARK_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is NEWPORT_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is NEWS_CORP_; and the other names are None
The code is MNCUSAMED; the name is NEWS_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is NEWSTAR_FINANCIAL_INC_; and the other names are None
The code is MNCUSA; the name is NEXEN_INC_; and the other names are None
The code is MNCCAN; the name is NEXSTAR_BROADCASTING_GROUP_; and the other names are None
The code is MNCUSA; the name is NEXTERA_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is NGAS_RESOURCES_; and the other names are None
The code is MNCCAN; the name is NGP_CAPITAL_RESOURCES_COMPANY_; and the other names are None
The code is MNCUSA; the name is NIC_INC_; and the other names are None
The code is MNCUSA; the name is NICE-SYSTEMS_LIMITED_; and the other names are None
The code is MNCISR; the name is NICHOLAS_FINANCIAL_INC_; and the other names are None
The code is MNCUSA; the name is NICOR_INC_; and the other names are None
The code is MNCUSA; the name is NIDEC_CORPORATION_; and the other names are None
The code is MNCJPN; the name is NIGHTHAWK_RADIOLOGY_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is NII_HOLDINGS_INC_; and the other names are None
The code is MNCUSAMED; the name is NIKE_INC_; and the other names are None
The code is MNCUSA; the name is NINETOWNS_INTERNET_TECHNOLOGY_; and the other names are None
The code is MNCCHN; the name is NIPPON_TELEGRAPH_AND_TELEPHONE_CORPORATION_; and the other names are None
The code is MNCJPNMED; the name is NISKA_GAS_STORAGE_; and the other names are None
The code is MNC; the name is NISOURCE_INC_; and the other names are None
The code is MNCUSA; the name is NIVS_INTELLIMEDIA_TECHNOLOGY_; and the other names are None
The code is MNC; the name is NL_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is NN_INC_; and the other names are None
The code is MNCUSA; the name is NOBEL_LEARNING_COMMUNITIES_; and the other names are None
The code is MNCUSAEDU; the name is NOBLE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NOBLE_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is NOBLE_GROUP_LIMITED_; and the other names are None
The code is MNCCHNHKG; the name is NOBLE_GROUP_LTD_; and the other names are None
The code is MNCCHNHKG; the name is NOKIA_; and the other names are None
The code is MNCFINMED; the name is NOMURA_HOLDINGS_INC_ADR_; and the other names are None
The code is MNCJPN; the name is NORANDA_ALUMINUM_; and the other names are None
The code is MNC; the name is NORDEA_; and the other names are None
The code is MNCSWE; the name is NORDIC_AMERICAN_TANKER_; and the other names are None
The code is MNCBMU; the name is NORDSON_CORP_; and the other names are None
The code is MNCUSA; the name is NORDSTROM_INC_; and the other names are None
The code is MNCUSA; the name is NORFOLK_SOUTHER_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NORINCHUKIN_BANK_; and the other names are None
The code is MNCJPN; the name is NORTEL_INVERSORA_; and the other names are None
The code is MNCARGMED; the name is NORTH_AMERICAN_ENERGY_PARTNERS_; and the other names are None
The code is MNC; the name is NORTH_AMERICAN_PALLADIUM,_LTD_; and the other names are None
The code is MNCCAN; the name is NORTHEAST_COMMUNITY_BANCORP_; and the other names are None
The code is MNCUSA; the name is NORTHEAST_UTILITIES_SYSTEM_; and the other names are None
The code is MNCUSA; the name is NORTHERN_DYNASTY_MINERALS_; and the other names are None
The code is MNCCAN; the name is NORTHERN_OIL_AND_GAS_INC_; and the other names are None
The code is MNCUSA; the name is NORTHERN_TRUST_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NORTHFIELD_BANCORP_; and the other names are None
The code is MNCUSA; the name is NORTHGATE_MINERALS_CORP_; and the other names are None
The code is MNCCAN; the name is NORTHRIM_BANCORP_; and the other names are None
The code is MNCUSA; the name is NORTHROP_GRUMMAN_; and the other names are None
The code is MNCUSA; the name is NORTHSTAR_REALTY_; and the other names are None
The code is MNC; the name is NORTHWEST_BANCSHARES_INC_; and the other names are None
The code is MNCUSA; the name is NORTHWEST_NATURAL_GAS_COMPANY_; and the other names are None
The code is MNCUSA; the name is NORTHWEST_PIPE_COMPANY_; and the other names are None
The code is MNCUSA; the name is NORTHWESTERN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NORWOOD_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is NOVA_MEASURING_INSTRUMENTS_; and the other names are None
The code is MNCISR; the name is NOVABAY_PHARMACEUTICALS_; and the other names are None
The code is MNCHLH; the name is NOVAGOLD_RESOURCES_INC_; and the other names are None
The code is MNCCAN; the name is NOVAMED_INC_; and the other names are None
The code is MNCUSA; the name is NOVATEL_WIRELESS_INC_; and the other names are None
The code is MNCUSAMED; the name is NOVAVAX_INC_; and the other names are None
The code is MNCUSA; the name is NOVELL_INC_; and the other names are None
The code is MNCUSA; the name is NOVELLUS_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is NOVO_NORDISK_; and the other names are None
The code is MNCDNKHLH; the name is NOVOGEN_LIMITED_; and the other names are None
The code is MNCAUSHLH; the name is NPS_PHARMACEUTICALS_; and the other names are None
The code is MNCUSA; the name is NRG_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is NSTAR_; and the other names are None
The code is MNCUSA; the name is NTELOS_HOLDINGS_; and the other names are None
The code is MNCUSAMED; the name is NTT_DOCOMO_; and the other names are None
The code is MNCJPNMED; the name is NU_HORIZONS_ELECTRONICS_; and the other names are None
The code is MNCUSA; the name is NU_SKIN_ENTERPRISES_; and the other names are None
The code is MNCUSAHLH; the name is NUANCE_COMMUNICATIONS_INC_; and the other names are None
The code is MNCUSA; the name is NUCOR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NUMEREX_CORP_; and the other names are None
The code is MNCUSAMED; the name is NUPATHE_INC_; and the other names are None
The code is MNCHLH; the name is NUSTAR_ENERGY_; and the other names are None
The code is MNCUSA; the name is NUSTAR_GP_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is NUTRACEUTICAL_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is NUTRISYSTEM_INC_; and the other names are None
The code is MNCUSA; the name is NUVASIVE_INC_; and the other names are None
The code is MNCUSAHLH; the name is NUVEEN_; and the other names are None
The code is MNCUSA; the name is NV_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is NVE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is NVIDIA_; and the other names are None
The code is MNCUSA; the name is NVR_INC_; and the other names are None
The code is MNCUSA; the name is NXP_SEMICONDUCTORS_; and the other names are None
The code is MNCNLD; the name is NXSTAGE_MEDICAL_INC_; and the other names are None
The code is MNCUSA; the name is NYMAGIC_INC_; and the other names are None
The code is MNCUSA; the name is NYMOX_PHARMACEUTICAL_; and the other names are None
The code is MNCCANHLH; the name is NYSE_EURONEXT_; and the other names are None
The code is MNC; the name is O2MICRO_INTERNATIONAL_; and the other names are None
The code is MNCCYM; the name is OASIS_PETROLEUM_; and the other names are None
The code is MNC; the name is OBAGI_MEDICAL_PRODUCTS_; and the other names are None
The code is MNCUSAHLH; the name is OCCAM_NETWORKS_; and the other names are None
The code is MNCUSA; the name is OCEAN_SHORE_HOLDING_CO_; and the other names are None
The code is MNCUSA; the name is OCEANEERING_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is OCEANFIRST_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is OCEANFREIGHT_INC_; and the other names are None
The code is MNCGRC; the name is OCH_ZIFF_; and the other names are None
The code is MNC; the name is O'CHARLEY'S_INC_; and the other names are None
The code is MNCUSA; the name is OCLARO_INC_; and the other names are None
The code is MNCUSA; the name is OCWEN_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ODYSSEY_MARINE_EXPLORATION_; and the other names are None
The code is MNCUSA; the name is OFFICE_DEPOT_INC_; and the other names are None
The code is MNCUSA; the name is OFFICEMAX_INC_; and the other names are None
The code is MNCUSA; the name is OGE_ENERGY_CORP_; and the other names are None
The code is MNCUSA; the name is OHIO_VALLEY_BANC_CORP_; and the other names are None
The code is MNCUSA; the name is OIL_STATES_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is OIL-DRI_CORPORATION_OF_AMERICA_; and the other names are None
The code is MNCUSA; the name is OILSANDS_QUEST_INC_; and the other names are None
The code is MNCCAN; the name is OLD_DOMINION_FREIGHT_LINE_; and the other names are None
The code is MNCUSA; the name is OLD_REPUBLIC_INTERNATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is OLIN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is OLYMPIC_STEEL_INC_; and the other names are None
The code is MNCUSA; the name is OM_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is OMEGA_FLEX_INC_; and the other names are None
The code is MNCUSA; the name is OMEGA_HEALTHCARE_INVESTORS_INC_; and the other names are None
The code is MNCUSA; the name is OMEGA_NAVIGATION_ENTERPRISE_; and the other names are None
The code is MNCGRC; the name is OMEGA_PROTEIN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is OMEROS_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is OMNIAMERICAN_BANCORP_; and the other names are None
The code is MNC; the name is OMNICARE_INC_; and the other names are None
The code is MNCUSAHLH; the name is OMNICELL_INC_; and the other names are None
The code is MNCUSA; the name is OMNICOM_GROUP_; and the other names are None
The code is MNCUSA; the name is OMNIVISION_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is OMNOVA_SOLUTIONS_; and the other names are None
The code is MNCUSA; the name is ON_ASSIGNMENT_INC_; and the other names are None
The code is MNCUSA; the name is ON_SEMICONDUCTOR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ON_TRACK_INNOVATIONS_LTD_; and the other names are None
The code is MNCISR; the name is ONCOGENEX_PHARMACEUTICALS_; and the other names are None
The code is MNCUSA; the name is ONCOLYTICS_BIOTECH_; and the other names are None
The code is MNCCANHLH; the name is ONCOTHYREON_INC_; and the other names are None
The code is MNCUSA; the name is ONE_LIBERTY_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is ONEBEACON_INSURANCE_; and the other names are None
The code is MNC; the name is ONEOK_INC_; and the other names are None
The code is MNCUSA; the name is ONLINE_RESOURCES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ONYX_PHARMACEUTICALS_INC_; and the other names are None
The code is MNCUSA; the name is OPEN_JOINT_STOCK_COMPANY_; and the other names are None
The code is MNCRUSMED; the name is OPEN_TEXT_CORPORATION_; and the other names are None
The code is MNCCAN; the name is OPENTABLE_INC_; and the other names are None
The code is MNCUSA; the name is OPENWAVE_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is OPKO_HEALTH_INC_; and the other names are None
The code is MNCUSAHLH; the name is OPLINK_COMMUNICATIONS_; and the other names are None
The code is MNCUSAMED; the name is OPNET_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is OPNEXT_INC_; and the other names are None
The code is MNCUSA; the name is OPPENHEIMER_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is OPTIBASE_LTD_; and the other names are None
The code is MNCISR; the name is OPTICAL_CABLE_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is OPTIMER_PHARMACEUTICALS_INC_; and the other names are None
The code is MNCUSAHLH; the name is OPTIONSXPRESS_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is ORACLE_CORP_; and the other names are None
The code is MNCUSA; the name is ORASCOM_TELECOM_; and the other names are None
The code is MNCEGY; the name is ORASURE_TECHNOLOGIES_; and the other names are None
The code is MNCUSAHLH; the name is ORBCOMM_INC_; and the other names are None
The code is MNCUSAMED; the name is ORBITAL_SCIENCES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ORBITZ_WORLDWIDE_; and the other names are None
The code is MNC; the name is ORBOTECH_LTD_; and the other names are None
The code is MNCISR; the name is ORCHIDS_PAPER_; and the other names are None
The code is MNC; the name is ORCKIT_COMMUNICATION_; and the other names are None
The code is MNCISRMED; the name is O'REILLY_AUTOMOTIVE_; and the other names are None
The code is MNCUSA; the name is OREXIGEN_THERAPEUTICS_; and the other names are None
The code is MNCUSAHLH; the name is ORIENT_EXPRESS_HOTEL_; and the other names are None
The code is MNCBMU; the name is ORIENT_OVERSEAS_INTERNATIONAL_; and the other names are None
The code is MNCCHNHKG; the name is ORIENT_PAPER_INC_; and the other names are None
The code is MNCCHN; the name is ORIENTAL_FINANCIAL_GROUP_; and the other names are None
The code is MNCAGR; the name is ORION_ENERGY_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is ORION_MARINE_GROUP_; and the other names are None
The code is MNCUSA; the name is ORITANI_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is ORIX_CORP_; and the other names are None
The code is MNC; the name is ORMAT_TECHNOLOGIES_; and the other names are None
The code is MNC; the name is ORRSTOWN_FINANCIAL_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is ORSUS_XELENT_; and the other names are None
The code is MNCCHNMED; the name is ORTHOFIX_INTERNATIONAL_; and the other names are None
The code is MNCNLD; the name is ORTHOVITA_INC_; and the other names are None
The code is MNCUSAHLH; the name is OSHKOSH_CORPORATION_; and the other names are None
The code is MNCUSA; the name is OSHKOSH_TRUCK_; and the other names are None
The code is MNCUSA; the name is OSI_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is OSIRIS_THERAPEUTICS_; and the other names are None
The code is MNCUSAHLH; the name is OSTEOTECH_INC_; and the other names are None
The code is MNCUSAHLH; the name is OTELCO_; and the other names are None
The code is MNC; the name is OTTER_TAIL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is OUTDOOR_CHANNEL_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is OVERHILL_FARMS_INC_; and the other names are None
The code is MNCUSA; the name is OVERSEAS_SHIPHOLDING_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is OVERSTOCK.COM_; and the other names are None
The code is MNCUSA; the name is OWENS_AND_MINOR_; and the other names are None
The code is MNCUSAHLH; the name is OWENS_CORNING_INC_; and the other names are None
The code is MNCUSA; the name is OWENS-ILLINOIS_; and the other names are None
The code is MNCUSA; the name is OXFORD_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is OXFORD_RESOURCE_PARTNERS_; and the other names are None
The code is MNC; the name is OXYGEN_BIOTHERAPEUTICS_; and the other names are None
The code is MNCHLH; the name is OYO_GEOSPACE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is P.A.M._TRANSPORTATION_SERVICES_; and the other names are None
The code is MNCUSA; the name is P.F.CHANG'S_; and the other names are None
The code is MNCUSA; the name is PAA_NATURAL_GAS_STORAGE_; and the other names are None
The code is MNC; the name is PACCAR_INC_; and the other names are None
The code is MNCUSA; the name is PACER_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is PACHOLDER_HIGH_YIELD_FUND_INC_; and the other names are None
The code is MNCUSA; the name is PACIFIC_AMERICAN_INCOME_SHARES_INC_; and the other names are None
The code is MNCUSA; the name is PACIFIC_BOOKER_MINERALS_; and the other names are None
The code is MNC; the name is PACIFIC_CONTINENTAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PACIFIC_GAS_AND_ELECTRIC_; and the other names are None
The code is MNCUSA; the name is PACIFIC_RIM_MINING_CORP_; and the other names are None
The code is MNCCAN; the name is PACIFIC_SUNWEAR_OF_CALIFORNIA_INC_; and the other names are None
The code is MNCUSA; the name is PACKAGING_CORPORATION_OF_AMERICA_; and the other names are None
The code is MNCUSA; the name is PACTIV_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PACWEST_BANCORP_; and the other names are None
The code is MNCUSA; the name is PAETEC_HOLDING_CORP_; and the other names are None
The code is MNCUSAMED; the name is PAIN_THERAPEUTICS_; and the other names are None
The code is MNCUSAHLH; the name is PALL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PALOMAR_MEDICAL_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is PAMPA_ENERGIA_; and the other names are None
The code is MNC; the name is PAN_AMERICAN_SILVER_CORP_; and the other names are None
The code is MNCCAN; the name is PANASONIC_; and the other names are None
The code is MNCJPN; the name is PANERA_BREAD_; and the other names are None
The code is MNCUSA; the name is PANHANDLE_ROYALTY_COMPANY_; and the other names are None
The code is MNCUSA; the name is PANSOFT_COMPANY_LIMITED_; and the other names are None
The code is MNCCHN; the name is PAPA_JOHN'S_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is PAR_TECHNOLOGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PARAGON_SHIPPING_; and the other names are None
The code is MNCGRC; the name is PARAMETRIC_TECHNOLOGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PARAMOUNT_GOLD_AND_SILVER_CORP_; and the other names are None
The code is MNCCAN; the name is PAREXEL_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is PARK_ELECTROCHEMICAL_CORP_; and the other names are None
The code is MNCUSA; the name is PARK_NATIONAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PARK_STERLING_BANK_; and the other names are None
The code is MNC; the name is PARKER_DRILLING_; and the other names are None
The code is MNCUSA; the name is PARKER-HANNIFIN_; and the other names are None
The code is MNCUSA; the name is PARK-OHIO_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is PARKWAY_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is PARTNER_COMMUNICATIONS_COMPANY_; and the other names are None
The code is MNCISRMED; the name is PARTNERRE_LTD_; and the other names are None
The code is MNCBMUHLH; the name is PATNI_COMPUTER_SYSTEMS_; and the other names are None
The code is MNC; the name is PATRIOT_COAL_CORP_; and the other names are None
The code is MNC; the name is PATRIOT_TRANSPORTATION_HOLDING_; and the other names are None
The code is MNCUSA; the name is PATTERSON_COMPANIES_; and the other names are None
The code is MNCUSAHLH; the name is PATTERSON-UTI_; and the other names are None
The code is MNCUSA; the name is PAYCHEX_INC_; and the other names are None
The code is MNCUSA; the name is PC_CONNECTION_INC_; and the other names are None
The code is MNCUSA; the name is PC_TEL_INC_; and the other names are None
The code is MNCUSAMED; the name is PDF_SOLUTIONS_INC_; and the other names are None
The code is MNCUSA; the name is PDI_INC_; and the other names are None
The code is MNCUSA; the name is PDL_BIOPHARMA_; and the other names are None
The code is MNCUSAHLH; the name is PEABODY_ENERGY_CORP_; and the other names are None
The code is MNCUSA; the name is PEAPACK-GLADSTONE_; and the other names are None
The code is MNCUSA; the name is PEARSON_PLC_; and the other names are None
The code is MNCGBR; the name is PEBBLEBROOK_HOTEL_TRUST_; and the other names are None
The code is MNC; the name is PEET'S_COFFEE_AND_TEA_; and the other names are None
The code is MNCUSA; the name is PEGASYSTEMS_; and the other names are None
The code is MNCUSA; the name is PENGROWTH_ENERGY_TRUST_; and the other names are None
The code is MNCCAN; the name is PENN_MILLERS_HOLDING_; and the other names are None
The code is MNCUSA; the name is PENN_NATIONAL_GAMING_INC_; and the other names are None
The code is MNCUSA; the name is PENN_VIRGINIA_CORP_; and the other names are None
The code is MNCUSA; the name is PENN_VIRGINIA_GP_; and the other names are None
The code is MNCUSA; the name is PENN_VIRGINIA_RESOURCE_PARTNERS_; and the other names are None
The code is MNCUSA; the name is PENN_WEST_ENERGY_TRUST_; and the other names are None
The code is MNC; the name is PENNANTPARK_INVESTMENT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PENNICHUCK_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PENNS_WOODS_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is PENNYMAC_MORTGAGE_; and the other names are None
The code is MNC; the name is PENSKE_AUTOMOTIVE_; and the other names are None
The code is MNCUSA; the name is PENSON_WORLDWIDE_INC_; and the other names are None
The code is MNCUSA; the name is PENTAIR_INC_; and the other names are None
The code is MNCUSA; the name is PENWEST_PHARMACEUTICALS_CO_; and the other names are None
The code is MNCUSAHLH; the name is PEOPLES_BANCORP_; and the other names are None
The code is MNCUSA; the name is PEOPLES_FEDERAL_BANCSHARES_; and the other names are None
The code is MNCUSA; the name is PEOPLES_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PEOPLE'S_UNITED_FINANCIAL_INC_; and the other names are None
The code is MNCUSA; the name is PEPSICO_; and the other names are None
The code is MNCUSA; the name is PEREGRINE_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is PERFECT_WORLD_CO_; and the other names are None
The code is MNCCHN; the name is PERFICIENT_INC_; and the other names are None
The code is MNCUSA; the name is PERFUMANIA_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is PERICOM_SEMICONDUCTOR_; and the other names are None
The code is MNCUSA; the name is PERKINELMER_; and the other names are None
The code is MNCUSA; the name is PERMA-FIX_ENVIRONMENTAL_SERVICES_; and the other names are None
The code is MNCUSA; the name is PERMIAN_BASIN_ROYALTY_TRUST_; and the other names are None
The code is MNCUSA; the name is PERRIGO_COMPANY_; and the other names are None
The code is MNCUSAHLH; the name is PERRY_ELLIS_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is PERVASIVE_SOFTWARE_INC_; and the other names are None
The code is MNCUSA; the name is PETMED_EXPRESS_; and the other names are None
The code is MNCUSAHLH; the name is PETRLEOS_DE_VENEZUELA_; and the other names are None
The code is MNCVEN; the name is PETROBRAS_; and the other names are None
The code is MNCBRA; the name is PETROCHINA_; and the other names are None
The code is MNCCHN; the name is PETROHAWK_; and the other names are None
The code is MNCUSA; the name is PETROLEO_BRASILEIRO_; and the other names are None
The code is MNCBRA; the name is PETRONAS_; and the other names are None
The code is MNCMYS; the name is PETROQUEST_ENERGY_; and the other names are None
The code is MNCUSA; the name is PETSMART_INC_; and the other names are None
The code is MNCUSA; the name is PFIZER_; and the other names are None
The code is MNCUSAHLH; the name is PGT_INC_; and the other names are None
The code is MNCUSA; the name is PHARMACEUTICAL_PRODUCT_DEVELOPMENT_INC_; and the other names are None
The code is MNCUSAHLH; the name is PHARMACEUTICAL_RESOURCES_INC_; and the other names are None
The code is MNCUSAHLH; the name is PHARMACYCLICS_INC_; and the other names are None
The code is MNCUSAHLH; the name is PHARMASSET_INC_; and the other names are None
The code is MNCUSAHLH; the name is PHARMATHENE_; and the other names are None
The code is MNCHLH; the name is PHARMERICA_CORP_; and the other names are None
The code is MNCHLHHLH; the name is PHH_CORP_; and the other names are None
The code is MNC; the name is PHI_INC_; and the other names are None
The code is MNCUSA; the name is PHILIP_MORRIS_; and the other names are None
The code is MNCUSAAGR; the name is PHILIPPINE_LONG_DISTANCE_TELEPHONE_COMPANY_; and the other names are None
The code is MNCPHLMED; the name is PHILLIPS-VAN_HEUSEN_; and the other names are None
The code is MNCUSA; the name is PHOENIX_COMPANIES_INC_; and the other names are None
The code is MNCUSA; the name is PHOENIX_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is PHOTRONICS_INC_; and the other names are None
The code is MNCUSA; the name is PICO_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is PIEDMONT_NATURAL_GAS_; and the other names are None
The code is MNCUSA; the name is PIEDMONT_OFFICE_REALTY_; and the other names are None
The code is MNC; the name is PIER_1_IMPORTS_; and the other names are None
The code is MNCUSA; the name is PIKE_ELECTRIC_CORP_; and the other names are None
The code is MNC; the name is PILGRIM'S_PRIDE_CORP_; and the other names are None
The code is MNC; the name is PIMCO_; and the other names are None
The code is MNCUSA; the name is PINNACLE_AIRLINES_; and the other names are None
The code is MNCUSA; the name is PINNACLE_ENTERTAINMENT_; and the other names are None
The code is MNCUSA; the name is PINNACLE_FINANCIAL_PARTNERS_; and the other names are None
The code is MNCUSA; the name is PINNACLE_WEST_CAPITAL_; and the other names are None
The code is MNCUSA; the name is PIONEER_DRILLING_CO_; and the other names are None
The code is MNCUSA; the name is PIONEER_FLOATING_RATE_TRUST_; and the other names are None
The code is MNC; the name is PIONEER_MUNICIPAL_HIGH_INCOME_ADVANTAGE_TRUST_; and the other names are None
The code is MNC; the name is PIONEER_MUNICIPAL_HIGH_INCOME_TRUST_; and the other names are None
The code is MNC; the name is PIONEER_NATURAL_RESOURCES_CO_; and the other names are None
The code is MNCUSA; the name is PIONEER_SOUTHWEST_ENERGY_PARTNERS_; and the other names are None
The code is MNC; the name is PIPER_JAFFRAY_; and the other names are None
The code is MNCUSA; the name is PITNEY_BOWES_INC_; and the other names are None
The code is MNCUSA; the name is PLAINS_ALL_AMERICAN_PIPELINE_; and the other names are None
The code is MNCUSA; the name is PLAINS_EXPLORATION_AND_PRODUCTION_CO_; and the other names are None
The code is MNC; the name is PLANTRONICS_INC_; and the other names are None
The code is MNCUSAMED; the name is PLATINUM_GROUP_METALS_LTD_; and the other names are None
The code is MNCCAN; the name is PLATINUM_UNDERWRITERS_; and the other names are None
The code is MNCBMU; the name is PLAYBOY_ENTERPRISES_; and the other names are None
The code is MNCUSA; the name is PLEXUS_CORP_; and the other names are None
The code is MNCUSA; the name is PLUM_CREEK_TIMBER_COMPANY_; and the other names are None
The code is MNCUSA; the name is PLURISTEM_THERAPEUTICS_; and the other names are None
The code is MNCISR; the name is PLX_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is PMA_CAPITAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PMC_COMMERCIAL_TRUST_; and the other names are None
The code is MNCUSA; the name is PMC_SIERRA_INC_; and the other names are None
The code is MNCUSA; the name is PMFG_INC_; and the other names are None
The code is MNCUSA; the name is PMI_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is PNC_BANK_CORP_; and the other names are None
The code is MNCUSA; the name is PNM_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is POHANG_IRON_AND_STEEL_CO_; and the other names are None
The code is MNCKOR; the name is POINTER_TELOCATION_; and the other names are None
The code is MNCISRMED; the name is POLARIS_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is POLO_RALPH_LAUREN_; and the other names are None
The code is MNCUSA; the name is POLYCOM_INC_; and the other names are None
The code is MNCUSAMED; the name is POLYMET_MINING_CORP_; and the other names are None
The code is MNCCAN; the name is POLYONE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is POLYPORE_INTERNATIONAL_; and the other names are None
The code is MNC; the name is POOL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is POPE_RESOURCES_; and the other names are None
The code is MNCUSA; the name is POPULAR_INC_; and the other names are None
The code is MNCPRI; the name is PORTEC_RAIL_PRODUCTS_; and the other names are None
The code is MNCUSA; the name is PORTER_BANCORP_; and the other names are None
The code is MNCUSA; the name is PORTFOLIO_RECOVERY_ASSOCIATES_INC_; and the other names are None
The code is MNCUSA; the name is PORTLAND_GENERAL_ELECTRIC_; and the other names are None
The code is MNCUSA; the name is PORTUGAL_TELECOM_; and the other names are None
The code is MNCPRTMED; the name is POST_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is POTASH_CORPORATION_OF_SASKATCHEWAN_; and the other names are None
The code is MNCCANAGR; the name is POTLATCH_CORPORATION_; and the other names are None
The code is MNCUSA; the name is POTOMAC_ELECTRIC_; and the other names are None
The code is MNCUSA; the name is POU_CHEN_CORP_; and the other names are None
The code is MNCTWN; the name is POWELL_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is POWER_INTEGRATIONS_INC_; and the other names are None
The code is MNCUSA; the name is POWER-ONE_INC_; and the other names are None
The code is MNCUSA; the name is POWERSECURE_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is POWERWAVE_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is POZEN_INC_; and the other names are None
The code is MNCUSAHLH; the name is PPG_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is PPL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PPL_ENERGY_SUPPLY_; and the other names are None
The code is MNC; the name is PRANA_BIOTECH_; and the other names are None
The code is MNCAUSHLH; the name is PRAXAIR_INC_; and the other names are None
The code is MNCUSA; the name is PRECISION_CASTPARTS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PRECISION_DRILLING_CORPORATION_; and the other names are None
The code is MNCCAN; the name is PREFORMED_LINE_PRODUCTS_COMPANY_; and the other names are None
The code is MNCUSA; the name is PREMIER_EXHIBITIONS_INC_; and the other names are None
The code is MNCUSA; the name is PRE-PAID_LEGAL_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is PRESIDENTIAL_LIFE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PRESSTEK_INC_; and the other names are None
The code is MNCUSA; the name is PRESTIGE_BRAND_HOLDINGS_; and the other names are None
The code is MNCHLH; the name is PRGX_GLOBAL_INC_; and the other names are None
The code is MNCUSA; the name is PRICELINE.COM_; and the other names are None
The code is MNCUSA; the name is PRICESMART_INC_; and the other names are None
The code is MNCUSA; the name is PRIDE_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is PRIMEDIA_INC_; and the other names are None
The code is MNCUSAMED; the name is PRIMERICA_; and the other names are None
The code is MNCUSA; the name is PRIMORIS_SERVICES_CORP_; and the other names are None
The code is MNCUSA; the name is PRIMUS_GUARANTY_LTD_; and the other names are None
The code is MNC; the name is PRINCIPAL_FINANCIAL_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is PRIVATE_MEDIA_GROUP_INC_; and the other names are None
The code is MNCESPMED; the name is PRIVATEBANCORP_INC_; and the other names are None
The code is MNCUSA; the name is PRO_ASSURANCE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PROCTER_AND_GAMBLE_; and the other names are None
The code is MNCUSA; the name is PROGENICS_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is PROGRESS_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is PROGRESS_SOFTWARE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PROLOGIS_; and the other names are None
The code is MNCUSA; the name is PROLOR_BIOTECH_; and the other names are None
The code is MNCISRHLH; the name is PROS_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is PROSPECT_CAPITAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PROSPECT_MEDICAL_HLDGS_; and the other names are None
The code is MNCUSAHLH; the name is PROSPERITY_BANCSHARES_INC_; and the other names are None
The code is MNCUSA; the name is PROTALIX_BIOTHERAPEUTICS_; and the other names are None
The code is MNCUSA; the name is PROTECTIVE_LIFE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PROVIDENCE_AND_WORCESTER_RAILROAD_; and the other names are None
The code is MNCUSA; the name is PROVIDENCE_SERVICE_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is PROVIDENT_ENERGY_TRUST_; and the other names are None
The code is MNCCAN; the name is PROVIDENT_FINANCIAL_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is PROVIDENT_FINANCIAL_SERVICES_; and the other names are None
The code is MNC; the name is PROVIDENT_NEW_YORK_BANCORP_; and the other names are None
The code is MNCUSA; the name is PRUDENTIAL_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is PRUDENTIAL_FINANCIAL_; and the other names are None
The code is MNC; the name is PRUDENTIAL_PUBLIC_LIMITED_COMPANY_; and the other names are None
The code is MNCGBR; the name is PS_BUSINESS_PARKS_INC_; and the other names are None
The code is MNCUSA; the name is PSIVIDA_; and the other names are None
The code is MNCUSA; the name is PSS_WORLD_MEDICAL_INC_; and the other names are None
The code is MNCUSAHLH; the name is PSYCHIATRIC_SOLUTIONS_INC_; and the other names are None
The code is MNCUSAHLH; the name is PTEK_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is PTT_PUBLIC_COMPANY_LIMITED_; and the other names are None
The code is MNCTHA; the name is PUBLIC_SERVICE_COMPANY_OF_OKLAHOMA_; and the other names are None
The code is MNCUSA; the name is PUBLIC_SERVICE_ENTERPRISE_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is PUDA_COAL_; and the other names are None
The code is MNCCHN; the name is PULASKI_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is PULTEGROUP_; and the other names are None
The code is MNCUSA; the name is PURE_BIOSCIENCE_; and the other names are None
The code is MNCUSA; the name is PURE_CYCLE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is PUTNAM_INVESTMENTS_; and the other names are None
The code is MNCUSA; the name is PZENA_INVESTMENT_MANAGEMENT_; and the other names are None
The code is MNC; the name is QAD_INC_; and the other names are None
The code is MNCUSA; the name is QATAR_TELECOM_; and the other names are None
The code is MNCQATMED; the name is QC_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is QEP_RESOURCES_INC_; and the other names are None
The code is MNCNLD; the name is QIAO_XING_MOBILE_; and the other names are None
The code is MNCCHNMED; the name is QIAO_XING_UNIVERSAL_RESOURCES_; and the other names are None
The code is MNCCHNMED; the name is QISDA_CORP_; and the other names are None
The code is MNCTWN; the name is QKL_STORES_; and the other names are None
The code is MNCCHN; the name is QLIK_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is QLOGIC_CORP_; and the other names are None
The code is MNCUSA; the name is QLT_INC_; and the other names are None
The code is MNCCANHLH; the name is QUAD_GRAPHICS_INC_; and the other names are None
The code is MNC; the name is QUAKER_CHEMICAL_CORP_; and the other names are None
The code is MNCUSA; the name is QUALCOMM_; and the other names are None
The code is MNCUSAMED; the name is QUALITY_DISTRIBUTION_INC_; and the other names are None
The code is MNCUSA; the name is QUALITY_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is QUANEX_BUILDING_PRODUCTS_; and the other names are None
The code is MNCUSA; the name is QUANTA_COMPUTER_; and the other names are None
The code is MNCTWN; the name is QUANTA_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is QUANTUM_CORPORATION_; and the other names are None
The code is MNCUSA; the name is QUANTUM_FUEL_SYSTEMS_TECHNOLOGIES_WORLDWIDE_; and the other names are None
The code is MNCUSA; the name is QUATERRA_RESOURCES_INC_; and the other names are None
The code is MNC; the name is QUEST_CAP_CORP_NEW_; and the other names are None
The code is MNCCAN; the name is QUEST_DIAGNOSTICS_INCORPORATED_; and the other names are None
The code is MNCUSAHLH; the name is QUEST_SOFTWARE_INC_; and the other names are None
The code is MNCUSA; the name is QUESTAR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is QUESTCOR_PHARMACEUTICALS_INC_; and the other names are None
The code is MNCUSAHLH; the name is QUICKLOGIC_CORP_; and the other names are None
The code is MNCUSA; the name is QUICKSILVER_GAS_SERVICES_; and the other names are None
The code is MNC; the name is QUICKSILVER_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is QUIDEL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is QUIKSILVER_INC_; and the other names are None
The code is MNCUSA; the name is QUINSTREET_INC_; and the other names are None
The code is MNCUSA; the name is QWEST_COMMUNICATIONS_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSAMED; the name is R.G._BARRY_; and the other names are None
The code is MNCUSA; the name is R.I.M._; and the other names are None
The code is MNCCANMED; the name is R.R._DONNELLEY_AND_SONS_; and the other names are None
The code is MNCUSAMED; the name is RABOBANK_; and the other names are None
The code is MNCNLD; the name is RACKSPACE_HOSTING_; and the other names are None
The code is MNC; the name is RADA_ELECTRONICS_INDUSTRIES_; and the other names are None
The code is MNCISR; the name is RADCOM_LTD_; and the other names are None
The code is MNCISR; the name is RADIAN_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is RADIANT_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is RADIOSHACK_; and the other names are None
The code is MNCUSA; the name is RADISYS_CORP_; and the other names are None
The code is MNCUSA; the name is RADNET_INC_; and the other names are None
The code is MNCUSAHLH; the name is RADVISION_LTD_; and the other names are None
The code is MNCISR; the name is RADWARE_LTD_; and the other names are None
The code is MNCISR; the name is RAILAMERICA_INC_; and the other names are None
The code is MNCUSA; the name is RAIT_FINANCIAL_TRUST_; and the other names are None
The code is MNCUSA; the name is RALCORP_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is RAM_ENERGY_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is RAMBUS_INC_; and the other names are None
The code is MNCUSA; the name is RAMCO-GERSHENSON_; and the other names are None
The code is MNCUSA; the name is RAMTRON_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is RAND_LOGISTICS_INC_; and the other names are None
The code is MNCUSA; the name is RANDGOLD_RESOURCES_; and the other names are None
The code is MNCGBR; the name is RANGE_RESOURCES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is RAPTOR_PHARMACEUTICAL_; and the other names are None
The code is MNCUSAHLH; the name is RAVEN_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is RAYMOND_JAMES_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is RAYONIER_INC_; and the other names are None
The code is MNCUSA; the name is RAYTHEON_; and the other names are None
The code is MNCUSA; the name is RBC_BEARINGS_INC_; and the other names are None
The code is MNC; the name is RC2_CORPORATION_; and the other names are None
The code is MNCUSA; the name is RCM_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is REACHLOCAL_INC_; and the other names are None
The code is MNCUSA; the name is READING_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is REALD_INC_; and the other names are None
The code is MNC; the name is REALNETWORKS_INC_; and the other names are None
The code is MNCUSA; the name is REALPAGE_INC_; and the other names are None
The code is MNCUSA; the name is REALTY_INCOME_CORPORATION_; and the other names are None
The code is MNCUSA; the name is REAVES_UTILITY_INCOME_FUND_; and the other names are None
The code is MNCUSA; the name is RECON_TECHNOLOGY_LTD_; and the other names are None
The code is MNCCHN; the name is RED_HAT_INC_; and the other names are None
The code is MNCUSA; the name is RED_ROBIN_GOURMET_BURGERS_; and the other names are None
The code is MNCUSA; the name is REDIFF.COM_INDIA_; and the other names are None
The code is MNCINDMED; the name is REDWOOD_TRUST_INC_; and the other names are None
The code is MNCUSA; the name is REED_ELSEVIER_; and the other names are None
The code is MNCEURMED; the name is REGAL_ENTERTAINMENT_GROUP_; and the other names are None
The code is MNCUSA; the name is REGAL-BELOIT_; and the other names are None
The code is MNCUSA; the name is REGENCY_CENTERS_CORP_; and the other names are None
The code is MNCUSA; the name is REGENCY_ENERGY_PARTNERS_; and the other names are None
The code is MNCUSA; the name is REGENERON_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is REGIONS_FINANCING_TR_; and the other names are None
The code is MNCUSA; the name is REGIS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is REHABCARE_GROUP_; and the other names are None
The code is MNCUSA; the name is REINSURANCE_GROUP_OF_AMERICA_; and the other names are None
The code is MNCUSA; the name is REIS_INC_; and the other names are None
The code is MNCUSA; the name is RELIANCE_STEEL_AND_ALUMINUM_; and the other names are None
The code is MNCUSA; the name is RELIANT_RESOURCES_; and the other names are None
The code is MNCUSA; the name is RENAISSANCE_LEARNING_INC_; and the other names are None
The code is MNCUSA; the name is RENAISSANCERE_; and the other names are None
The code is MNCBMU; the name is RENASANT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is RENESOLA_LTD_; and the other names are None
The code is MNC; the name is RENHUANG_PHARMACEUTICALS_; and the other names are None
The code is MNCCHNHLH; the name is RENT-A-CENTER_; and the other names are None
The code is MNCUSA; the name is RENTECH_INC_; and the other names are None
The code is MNCUSA; the name is RENTRAK_CORP_; and the other names are None
The code is MNCUSA; the name is REPLIGEN_CORP_; and the other names are None
The code is MNCUSA; the name is REPSOL_YPF_; and the other names are None
The code is MNCESP; the name is REPUBLIC_AIRWAYS_; and the other names are None
The code is MNCUSA; the name is REPUBLIC_BANCORP_; and the other names are None
The code is MNCUSA; the name is REPUBLIC_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is RES-CARE_INC_; and the other names are None
The code is MNCUSA; the name is RESEARCH_FRONTIERS_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is RESEARCH_IN_MOTION_; and the other names are None
The code is MNCCANMED; the name is RESMED_INC_; and the other names are None
The code is MNCUSAHLH; the name is RESOLUTE_ENERGY_CORP_; and the other names are None
The code is MNC; the name is RESONA_HOLDINGS_; and the other names are None
The code is MNCJPN; the name is RESOURCE_AMERICA_INC_; and the other names are None
The code is MNCUSA; the name is RESOURCE_CAPITAL_CORP_; and the other names are None
The code is MNCUSA; the name is RESOURCES_CONNECTION_INC_; and the other names are None
The code is MNCUSA; the name is RETAIL_OPPORTUNITY_INVESTMENTS_CORP_; and the other names are None
The code is MNCUSA; the name is RETAIL_VENTURES_INC_; and the other names are None
The code is MNCUSA; the name is RETALIX_LTD_; and the other names are None
The code is MNCISR; the name is REVLON_INC_; and the other names are None
The code is MNCUSA; the name is REWARDS_NETWORK_INC_; and the other names are None
The code is MNCUSA; the name is REX_ENERGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is REX_STORES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is REXAHN_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is REYNOLDS_AMERICAN_INC_; and the other names are None
The code is MNCAGR; the name is RF_MICRO_DEVICES_; and the other names are None
The code is MNCUSA; the name is RGC_RESOURCES_; and the other names are None
The code is MNCUSA; the name is RICHARDSON_ELECTRONICS_; and the other names are None
The code is MNCUSA; the name is RICHMONT_MINES_; and the other names are None
The code is MNCCAN; the name is RICK'S_CABARET_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is RIGEL_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is RIGHTNOW_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is RIMAGE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is RINO_INTERNATIONAL_; and the other names are None
The code is MNCCHN; the name is RIO_TINTO_; and the other names are None
The code is MNCGBR; the name is RIT_TECHNOLOGIES_LTD_; and the other names are None
The code is MNCISRMED; the name is RITCHIE_BROS_; and the other names are None
The code is MNCCAN; the name is RITE_AID_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is RIVERBED_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is RLI_CORPORATION_; and the other names are None
The code is MNCUSA; the name is RMR_ASIA_PACIFIC_REAL_ESTATE_FUND_; and the other names are None
The code is MNC; the name is ROAD_KING_INFRASTRUCTURE_; and the other names are None
The code is MNCCHNHKG; the name is ROADRUNNER_TRANSPORTATION_; and the other names are None
The code is MNC; the name is ROBBINS_AND_MYERS_; and the other names are None
The code is MNCUSA; the name is ROBERT_HALF_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is ROCHESTER_MEDICAL_CORP_; and the other names are None
The code is MNCUSAHLH; the name is ROCK-TENN_COMPANY_; and the other names are None
The code is MNCUSA; the name is ROCKVILLE_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is ROCKWELL_AUTOMATION_; and the other names are None
The code is MNCUSA; the name is ROCKWELL_COLLINS_INC_; and the other names are None
The code is MNCUSA; the name is ROCKWELL_MEDICAL_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is ROCKWOOD_HOLDINGS_; and the other names are None
The code is MNC; the name is RODMAN_AND_RENSHAW_; and the other names are None
The code is MNCUSA; the name is ROFIN-SINAR_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is ROGERS_COMMUNICATION_; and the other names are None
The code is MNCCANMED; the name is ROGERS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ROLLINS_INC_; and the other names are None
The code is MNCUSA; the name is ROLLS_ROYCE_; and the other names are None
The code is MNCGBR; the name is ROMA_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ROME_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is ROPER_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is ROSETTA_GENOMICS_; and the other names are None
The code is MNCISRHLH; the name is ROSETTA_RESOURCES_; and the other names are None
The code is MNCUSA; the name is ROSS_STORES_INC_; and the other names are None
The code is MNCUSA; the name is ROVI_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is ROWAN_COMPANIES_INC_; and the other names are None
The code is MNCUSA; the name is ROYAL_BANK_OF_CANADA_; and the other names are None
The code is MNCCAN; the name is ROYAL_BANK_OF_SCOTLAND_; and the other names are None
The code is MNCGBR; the name is ROYAL_BANK_SCOTLAND_; and the other names are None
The code is MNCGBR; the name is ROYAL_CARIBBEAN_; and the other names are None
The code is MNCUSA; the name is ROYAL_DUTCH_SHELL_; and the other names are None
The code is MNCNLD; the name is ROYAL_GOLD_INC_; and the other names are None
The code is MNCUSA; the name is ROXXON_ENERGY_CORPORATION_ ; and the other names are None
The code is MNC; the name is RPC_INC_; and the other names are None
The code is MNCUSA; the name is RPM_INC_; and the other names are None
The code is MNCUSA; the name is RRSAT_GLOBAL_COMMUNICATIONS_; and the other names are None
The code is MNCISRMED; the name is RSC_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is RTI_BIOLOGICS_INC_; and the other names are None
The code is MNCUSA; the name is RTI_INTERNATIONAL_METALS_INC_; and the other names are None
The code is MNCUSA; the name is RUBICON_MINERALS_CORP_; and the other names are None
The code is MNCCAN; the name is RUBICON_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is RUBY_TUESDAY_; and the other names are None
The code is MNCUSA; the name is RUDDICK_CORPORATION_; and the other names are None
The code is MNCUSA; the name is RUDOLPH_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is RUE21_INC_; and the other names are None
The code is MNCUSA; the name is RURAL/METRO_CORPORATION_; and the other names are None
The code is MNCUSA; the name is RUSH_ENTERPRISES_INC_; and the other names are None
The code is MNCUSA; the name is RUTH'S_HOSPITALITY_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is RYANAIR_; and the other names are None
The code is MNCIRL; the name is RYDER_SYSTEM_INC_; and the other names are None
The code is MNCUSA; the name is RYLAND_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is S&P_QUALITY_RANKINGS_; and the other names are None
The code is MNC; the name is S&T_BANCORP_; and the other names are None
The code is MNCUSA; the name is S.Y._BANCORP_; and the other names are None
The code is MNCUSA; the name is S1_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SABA_SOFTWARE_; and the other names are None
The code is MNCUSA; the name is SABESP_; and the other names are None
The code is MNCBRA; the name is SABINE_ROYALTY_TRUST_; and the other names are None
The code is MNCUSA; the name is SAFE_BULKERS_INC_; and the other names are None
The code is MNC; the name is SAFEGUARD_SCIENTIFICS_INC_; and the other names are None
The code is MNCUSA; the name is SAFETY_INSURANCE_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is SAFEWAY_INC_; and the other names are None
The code is MNCUSA; the name is SAGA_COMMUNICATIONS_INC_; and the other names are None
The code is MNCUSA; the name is SAIA_INC_; and the other names are None
The code is MNCUSA; the name is SAIC_INC_; and the other names are None
The code is MNC; the name is SAKS_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is SALARY.COM_; and the other names are None
The code is MNCUSA; the name is SALESFORCE.COM_; and the other names are None
The code is MNC; the name is SALIX_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is SALLY_BEAUTY_HOLDINGS_; and the other names are None
The code is MNC; the name is SAMSUNG_; and the other names are None
The code is MNCKOR; the name is SANDERS_MORRIS_HARRIS_GROUP_; and the other names are None
The code is MNCUSA; the name is SANDERSON_FARMS_; and the other names are None
The code is MNCUSA; the name is SANDISK_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SANDRIDGE_ENERGY_; and the other names are None
The code is MNCUSA; the name is SANDY_SPRING_BANCORP_; and the other names are None
The code is MNCUSA; the name is SANGAMO_BIOSCIENCES_; and the other names are None
The code is MNCUSA; the name is SANMINA-SCI_; and the other names are None
The code is MNCUSA; the name is SANOFI_AVENTIS_; and the other names are None
The code is MNCFRAHLH; the name is SANTANDER_CENTRAL_HISPANO_; and the other names are None
The code is MNCESP; the name is SANTARUS_INC_; and the other names are None
The code is MNCUSAHLH; the name is SAPIENS_INTERNATIONAL_CORP_; and the other names are None
The code is MNCISR; the name is SAPIENT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SAPPI_LIMITED_; and the other names are None
The code is MNCZAF; the name is SARA_LEE_CORP_; and the other names are None
The code is MNCUSA; the name is SASOL_LIMITED_; and the other names are None
The code is MNCZAF; the name is SASOL_LTD_; and the other names are None
The code is MNCZAF; the name is SATCON_TECHNOLOGY_; and the other names are None
The code is MNCUSA; the name is SATYAM_COMPUTER_SERVICES_; and the other names are None
The code is MNCIND; the name is SAUER-DANFOSS_; and the other names are None
The code is MNCUSA; the name is SAUL_CENTERS_INC_; and the other names are None
The code is MNCUSA; the name is SAVIENT_PHARMACEUTICALS_; and the other names are None
The code is MNCUSA; the name is SAVVIS_INC_; and the other names are None
The code is MNCUSA; the name is SBA_COMMUNICATIONS_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is SCANA_CORP_; and the other names are None
The code is MNCUSA; the name is SCANSOURCE_INC_; and the other names are None
The code is MNCUSA; the name is SCBT_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is SCHAWK_INC_; and the other names are None
The code is MNCUSA; the name is SCHNITZER_STEEL_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is SCHOLASTIC_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SCHOOL_SPECIALTY_INC_; and the other names are None
The code is MNCUSA; the name is SCHWEITZER-MAUDUIT_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is SCICLONE_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is SCIENTIFIC_GAMES_CORP_; and the other names are None
The code is MNCUSA; the name is SCIENTIFIC_LEARNING_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SCORPIO_TANKERS_; and the other names are None
The code is MNC; the name is SCOTTS_MIRACLE-GRO_; and the other names are None
The code is MNCUSA; the name is SCRIPPS_NETWORKS_INTERACTIVE_; and the other names are None
The code is MNCMED; the name is SEABOARD_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SEABRIDGE_GOLD_; and the other names are None
The code is MNC; the name is SEABRIGHT_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is SEACHANGE_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is SEACOAST_BANKING_CORPORATION_OF_FLORIDA_; and the other names are None
The code is MNCUSA; the name is SEACOR_SMIT_; and the other names are None
The code is MNCUSA; the name is SEAGATE_TECHNOLOGY_; and the other names are None
The code is MNCIRL; the name is SEAHAWK_DRILLING_; and the other names are None
The code is MNCUSA; the name is SEALED_AIR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SEALY_CORP_; and the other names are None
The code is MNC; the name is SEANERGY_MARITIME_HOLDINGS_CORP_; and the other names are None
The code is MNCGRC; the name is SEARS_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is SEASPAN_CORPORATION_; and the other names are None
The code is MNCCHN; the name is SEATTLE_GENETICS_INC_; and the other names are None
The code is MNCUSA; the name is SEI_INVESTMENTS_COMPANY_; and the other names are None
The code is MNCUSA; the name is SELECT_COMFORT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SELECT_MEDICAL_HOLDINGS_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is SELECTIVE_INSURANCE_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is SELIGMAN_LASALLE_; and the other names are None
The code is MNCUSA; the name is SEMICONDUCTOR_MANUFACTURING_INTERNATIONAL_CORPORATION_; and the other names are None
The code is MNC; the name is SEMPRA_ENERGY_; and the other names are None
The code is MNCUSA; the name is SEMTECH_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SENECA_FOODS_CORP_; and the other names are None
The code is MNCUSA; the name is SENIOR_HIGH_INCOME_PORTFOLIO_INC_; and the other names are None
The code is MNCUSA; the name is SENIOR_HOUSING_PROPERTIES_TRUST_; and the other names are None
The code is MNCUSA; the name is SENOMYX_INC_; and the other names are None
The code is MNCUSA; the name is SENSATA_TECHNOLOGIES_HOLDING_; and the other names are None
The code is MNC; the name is SENSIENT_TECHNOLOGIES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SEQUENOM_INC_; and the other names are None
The code is MNCUSA; the name is SERACARE_LIFE_SCIENCES_; and the other names are None
The code is MNCUSAHLH; the name is SERVICE_CORPORATION_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is SEVEN_ARTS_PICTURES_; and the other names are None
The code is MNCGBRMED; the name is SEVERSTAL_; and the other names are None
The code is MNCRUS; the name is SFN_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is SHAMIR_OPTICAL_INDUSTRY_; and the other names are None
The code is MNCHLH; the name is SHANDA_GAMES_LIMITED_; and the other names are None
The code is MNCCHN; the name is SHANDA_INTERACTIVE_; and the other names are None
The code is MNCCHN; the name is SHANGRI-LA_ASIA_; and the other names are None
The code is MNCCHNHKG; the name is SHARPS_COMPLIANCE_CORP_; and the other names are None
The code is MNCUSA; the name is SHAW_COMMUNICATIONS_; and the other names are None
The code is MNCCANMED; the name is SHAW_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is SHENANDOAH_TELECOMMUNICATIONS_; and the other names are None
The code is MNCUSAMED; the name is SHENGDATECH_; and the other names are None
The code is MNCCHN; the name is SHENGKAI_INNOVATIONS_; and the other names are None
The code is MNCCHN; the name is SHERWIN-WILLIAMS_; and the other names are None
The code is MNCUSA; the name is SHILOH_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is SHINER_INTERNATIONAL_; and the other names are None
The code is MNCCHN; the name is SHINHAN_FINANCIAL_GROUP_; and the other names are None
The code is MNCKOR; the name is SHIP_FINANCE_INTERNATIONAL_; and the other names are None
The code is MNC; the name is SHIRE_PLC_; and the other names are None
The code is MNCGBRHLH; the name is SHOE_CARNIVAL_INC_; and the other names are None
The code is MNCUSA; the name is SHORE_BANCSHARES_INC_; and the other names are None
The code is MNCUSA; the name is SHORETEL_INC_; and the other names are None
The code is MNCUSAMED; the name is SHUFFLE_MASTER_INC_; and the other names are None
The code is MNCUSA; the name is SHUTTERFLY_INC_; and the other names are None
The code is MNCUSA; the name is SI_FINANCIAL_GROUP_; and the other names are None
The code is MNCUSA; the name is SIEMENS_AG_; and the other names are None
The code is MNCDEU; the name is SIERRA_BANCORP_; and the other names are None
The code is MNCUSA; the name is SIERRA_WIRELESS_; and the other names are None
The code is MNCCANMED; the name is SIFY_TECHNOLOGIES_; and the other names are None
The code is MNCIND; the name is SIGA_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSAHLH; the name is SIGMA_DESIGNS_INC_; and the other names are None
The code is MNCUSA; the name is SIGMA-ALDRICH_; and the other names are None
The code is MNCUSA; the name is SIGNATURE_BANK_; and the other names are None
The code is MNCUSA; the name is SIGNET_JEWELERS_LIMITED_; and the other names are None
The code is MNCBMU; the name is SILGAN_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is SILICOM_LTD_; and the other names are None
The code is MNCISRMED; the name is SILICON_GRAPHICS_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is SILICON_IMAGE_INC_; and the other names are None
The code is MNCUSA; the name is SILICON_LABORATORIES_INC_; and the other names are None
The code is MNCUSA; the name is SILICON_MOTION_TECHNOLOGY_; and the other names are None
The code is MNCTWN; the name is SILICONWARE_PRECISION_INDUSTRIES_CO_; and the other names are None
The code is MNCTWN; the name is SILVER_STANDARD_RESOURCES_; and the other names are None
The code is MNCCAN; the name is SILVER_WHEATON_CORP_; and the other names are None
The code is MNCCAN; the name is SILVERCORP_METALS_INC_; and the other names are None
The code is MNCCAN; the name is SIMCERE_PHARMACEUTICAL_; and the other names are None
The code is MNCCHNHLH; the name is SIME_DARBY_BERHAD_; and the other names are None
The code is MNCMYS; the name is SIMMONS_FIRST_NATIONAL_; and the other names are None
The code is MNCUSA; the name is SIMON_PROPERTY_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is SIMPSON_MANUFACTURING_COMPANY_; and the other names are None
The code is MNCUSA; the name is SIMS_METAL_MANAGEMENT_; and the other names are None
The code is MNC; the name is SINA_CORPORATION_; and the other names are None
The code is MNCCHN; the name is SINCLAIR_BROADCAST_GROUP_; and the other names are None
The code is MNCUSA; the name is SINGTEL_; and the other names are None
The code is MNCSGP; the name is SINO_CLEAN_ENERGY_INC_; and the other names are None
The code is MNCCHN; the name is SINOCHEM_CORP_; and the other names are None
The code is MNCCHN; the name is SINOCOKING_COAL_AND_COKE_; and the other names are None
The code is MNCCHN; the name is SINOENERGY_CORPORATION_; and the other names are None
The code is MNCCHN; the name is SINOHUB_; and the other names are None
The code is MNCCHN; the name is SINOPEC_SHANGAI_PETROCHEMICAL_; and the other names are None
The code is MNCCHN; the name is SINOVAC_BIOTECH_; and the other names are None
The code is MNCCHNHLH; the name is SIRIUS_XM_; and the other names are None
The code is MNCUSAMED; the name is SIRONA_DENTAL_SYSTEMS_; and the other names are None
The code is MNCUSAHLH; the name is SIX_FLAGS_ENTERTAINMENT_; and the other names are None
The code is MNCUSA; the name is SJW_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SK_TELECOM_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SKILLED_HEALTHCARE_GROUP_INC_; and the other names are None
The code is MNCHLH; the name is SKYLINE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SKYPEOPLE_FRUIT_JUICE_; and the other names are None
The code is MNCCHN; the name is SKYSTAR_BIO_PHARMACEUTICAL_; and the other names are None
The code is MNCCHNHLH; the name is SKYWEST_INC_; and the other names are None
The code is MNCUSA; the name is SKYWORKS_SOLUTIONS_INC_; and the other names are None
The code is MNCUSA; the name is SL_GREEN_REALTY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SL_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is SLM_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SM_ENERGY_COMPANY_; and the other names are None
The code is MNCUSA; the name is SMART_BALANCE_INC_; and the other names are None
The code is MNCUSA; the name is SMART_MODULAR_TECHNOLOGIES_WWH_; and the other names are None
The code is MNCUSA; the name is SMART_TECHNOLOGIES_INC_; and the other names are None
The code is MNCCAN; the name is SMARTHEAT_INC_; and the other names are None
The code is MNCCHN; the name is SMITH_AND_NEPHEW_SNATS_; and the other names are None
The code is MNCGBR; the name is SMITH_AND_WESSON_; and the other names are None
The code is MNCUSA; the name is SMITH_A.O._CORPORATION_; and the other names are None
The code is MNCUSA; the name is SMITH_MICRO_SOFTWARE_INC_; and the other names are None
The code is MNCUSA; the name is SMITHFIELD_FOODS_INC_; and the other names are None
The code is MNCUSA; the name is SMTC_CORPORATION_; and the other names are None
The code is MNCCAN; the name is SMURFIT_STONE_CONTAINER_CORP_; and the other names are None
The code is MNC; the name is SNAP-ON_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is SOCIAL_GENERALE_; and the other names are None
The code is MNCFRA; the name is SOCIEDAD_ANONIMA_; and the other names are None
The code is MNCARG; the name is SOCIEDAD_QUIMICA_Y_MINERA_; and the other names are None
The code is MNCCHL; the name is SOHU.COM_; and the other names are None
The code is MNCCHN; the name is SOLAR_CAPITAL_LTD_; and the other names are None
The code is MNCUSA; the name is SOLARFUN_POWER_HOLDINGS_CO_; and the other names are None
The code is MNCCHN; the name is SOLARWINDS_INC_; and the other names are None
The code is MNCUSA; the name is SOLERA_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is SOLITARIO_EXPLORATION_AND_ROYALTY_CORP_; and the other names are None
The code is MNCUSA; the name is SOLTA_MEDICAL_; and the other names are None
The code is MNCUSA; the name is SOLUTIA_INC_; and the other names are None
The code is MNCUSA; the name is SOMAXON_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is SONDE_RESOURCES_CORP_; and the other names are None
The code is MNCCAN; the name is SONIC_AUTOMOTIVE_; and the other names are None
The code is MNCUSA; the name is SONIC_CORP_; and the other names are None
The code is MNCUSA; the name is SONIC_SOLUTIONS_; and the other names are None
The code is MNCUSA; the name is SONOCO_PRODUCTS_; and the other names are None
The code is MNCUSA; the name is SONOSITE_INC_; and the other names are None
The code is MNCUSAHLH; the name is SONUS_NETWORKS_INC_; and the other names are None
The code is MNCUSA; the name is SONY_; and the other names are None
The code is MNCJPN; the name is SORL_AUTO_PARTS_; and the other names are None
The code is MNCCHN; the name is SOTHEBY'S_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is SOURCE_CAPITAL_INC_; and the other names are None
The code is MNCUSA; the name is SOURCEFIRE_INC_; and the other names are None
The code is MNCUSA; the name is SOUTH_FINANCIAL_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is SOUTH_JERSEY_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is SOUTHERN_NATIONAL_BANCORP_OF_VIRGINIA_; and the other names are None
The code is MNCUSA; the name is SOUTHERN_PERU_COPPER_CORP_; and the other names are None
The code is MNCUSA; the name is SOUTHERN_UNION_COMPANY_; and the other names are None
The code is MNCUSA; the name is SOUTHSIDE_BANCSHARES_INC_; and the other names are None
The code is MNCUSA; the name is SOUTHWEST_AIRLINES_; and the other names are None
The code is MNCUSA; the name is SOUTHWEST_BANCORP_; and the other names are None
The code is MNCUSA; the name is SOUTHWEST_GAS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SOUTHWEST_WATER_COMPANY_; and the other names are None
The code is MNCUSA; the name is SOUTHWESTERN_ENERGY_COMPANY_; and the other names are None
The code is MNCUSA; the name is SOVRAN_SELF_STORAGE_; and the other names are None
The code is MNCUSA; the name is SPANSION_INC_; and the other names are None
The code is MNCUSA; the name is SPARK_NETWORKS_PLC_; and the other names are None
The code is MNC; the name is SPARTAN_MOTORS_; and the other names are None
The code is MNCUSA; the name is SPARTAN_STORES_INC_; and the other names are None
The code is MNCUSA; the name is SPARTECH_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SPECIAL_OPPORTUNITIES_FUND_INC_; and the other names are None
The code is MNCUSA; the name is SPECTRA_ENERGY_CORP_; and the other names are None
The code is MNC; the name is SPECTRA_ENERGY_PARTNERS_; and the other names are None
The code is MNC; the name is SPECTRANETICS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SPECTRUM_BRANDS_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is SPECTRUM_CONTROL_INC_; and the other names are None
The code is MNCUSA; the name is SPECTRUM_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is SPEEDWAY_MOTORSPORTS_; and the other names are None
The code is MNCUSA; the name is SPIRIT_AEROSYSTEMS_; and the other names are None
The code is MNC; the name is SPREADTRUM_COMMUNICATIONS_; and the other names are None
The code is MNCCHN; the name is SPRINT_NEXTEL_; and the other names are None
The code is MNCUSAMED; the name is SPS_COMMERCE_INC_; and the other names are None
The code is MNCUSA; the name is SPX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SRA_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is SRS_LABS_INC_; and the other names are None
The code is MNCUSA; the name is SS&C_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is ST._JOE_COMPANY_; and the other names are None
The code is MNCUSA; the name is ST._JUDE_MEDICAL_; and the other names are None
The code is MNCUSAHLH; the name is STAAR_SURGICAL_CO_; and the other names are None
The code is MNCUSAHLH; the name is STAGE_STORES_INC_; and the other names are None
The code is MNCUSA; the name is STAMPS.COM_INC_; and the other names are None
The code is MNCUSA; the name is STANCORP_FINANCIAL_GROUP_; and the other names are None
The code is MNCUSA; the name is STANDARD_MICROSYSTEMS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is STANDARD_MOTOR_PRODUCTS_INC_; and the other names are None
The code is MNCUSA; the name is STANDARD_PACIFIC_LP_; and the other names are None
The code is MNCUSA; the name is STANDARD_PARKING_CORPORATION_; and the other names are None
The code is MNCUSA; the name is STANDARD_REGISTER_COMPANY_; and the other names are None
The code is MNCUSA; the name is STANDEX_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is STANLEY_BLACK_AND_DECKER_; and the other names are None
The code is MNCUSA; the name is STANTEC_INC_; and the other names are None
The code is MNC; the name is STAPLES_INC_; and the other names are None
The code is MNCUSA; the name is STAR_BULK_CARRIERS_; and the other names are None
The code is MNCGRC; the name is STAR_GAS_PARTNERS_; and the other names are None
The code is MNCUSA; the name is STAR_SCIENTIFIC_INC_; and the other names are None
The code is MNCUSAAGR; the name is STARBUCKS_; and the other names are None
The code is MNCUSA; the name is STARK-FUJIKAWA_ ; and the other names are None
The code is MNCJPN; the name is STARK_INTRERNATIONAL_ ; and the other names are None
The code is MNCUSA; the name is STARTEK_INC_; and the other names are None
The code is MNCUSA; the name is STARWOOD_HOTELS_AND_RESORTS_; and the other names are None
The code is MNCUSA; the name is STARWOOD_PROPERTY_TRUST,_INC_; and the other names are None
The code is MNC; the name is STATE_AUTO_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is STATE_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is STATE_STREET_CORP_; and the other names are None
The code is MNC; the name is STATOIL_ASA_; and the other names are None
The code is MNCNOR; the name is STEALTHGAS_; and the other names are None
The code is MNCGRC; the name is STEC_INC_; and the other names are None
The code is MNCUSA; the name is STEEL_DYNAMICS_INC_; and the other names are None
The code is MNCUSA; the name is STEELCASE_INC_; and the other names are None
The code is MNCUSA; the name is STEIN_MART_INC_; and the other names are None
The code is MNCUSA; the name is STEINER_LEISURE_LIMITED_; and the other names are None
The code is MNCBHS; the name is STEINHOFF_INTERNATIONAL_; and the other names are None
The code is MNCZAF; the name is STEINWAY_MUSICAL_; and the other names are None
The code is MNCUSA; the name is STELLARONE_CORP_; and the other names are None
The code is MNCUSA; the name is STEMCELLS_INC_; and the other names are None
The code is MNCUSA; the name is STEPAN_COMPANY_; and the other names are None
The code is MNCUSA; the name is STEREOTAXIS_INC_; and the other names are None
The code is MNCUSA; the name is STERICYCLE_INC_; and the other names are None
The code is MNCUSA; the name is STERIS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is STERLING_BANCORP_; and the other names are None
The code is MNCUSA; the name is STERLING_CONSTRUCTION_COMPANY_INC_; and the other names are None
The code is MNCUSA; the name is STERLITE_INDUSTRIES_; and the other names are None
The code is MNCIND; the name is STEVEN_MADDEN_; and the other names are None
The code is MNCUSA; the name is STEWART_ENTERPRISES_INC_; and the other names are None
The code is MNCUSA; the name is STEWART_INFORMATION_SERVICES_CORP_; and the other names are None
The code is MNCUSA; the name is STIFEL_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is STILLWATER_MINING_; and the other names are None
The code is MNCUSA; the name is STMICROELECTRONICS_; and the other names are None
The code is MNCCHE; the name is STONE_ENERGY_CORP_; and the other names are None
The code is MNCUSA; the name is STONEMOR_PARTNERS_; and the other names are None
The code is MNCUSA; the name is STONERIDGE_INC_; and the other names are None
The code is MNCUSA; the name is STR_HOLDINGS_; and the other names are None
The code is MNC; the name is STRATASYS_INC_; and the other names are None
The code is MNCUSA; the name is STRATEGIC_HOTELS_AND_RESORTS_INC_; and the other names are None
The code is MNC; the name is STRATTEC_SECURITY_; and the other names are None
The code is MNCUSA; the name is STRATUS_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is STRAYER_EDUCATION_INC_; and the other names are None
The code is MNCUSA; the name is STREAM_GLOBAL_SERVICES_; and the other names are None
The code is MNCUSA; the name is STRYKER_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is STURM_RUGER_; and the other names are None
The code is MNCUSA; the name is STX_CORPORATION_; and the other names are None
The code is MNCKOR; the name is SUBAYE_INC_; and the other names are None
The code is MNCCHN; the name is SUBURBAN_PROPANE_PARTNERS_; and the other names are None
The code is MNCUSA; the name is SUCCESSFACTORS_INC_; and the other names are None
The code is MNCUSA; the name is SUFFOLK_BANCORP_; and the other names are None
The code is MNCUSA; the name is SUMITOMO_MITSUI_; and the other names are None
The code is MNCJPN; the name is SUMMER_INFANT_INC_; and the other names are None
The code is MNCUSA; the name is SUN_BANCORP_; and the other names are None
The code is MNCUSA; the name is SUN_COMMUNITIES_INC_; and the other names are None
The code is MNCUSA; the name is SUN_HEALTHCARE_GROUP_; and the other names are None
The code is MNCUSAHLH; the name is SUN_HYDRAULICS_CORP_; and the other names are None
The code is MNCUSA; the name is SUN_LIFE_FINANCIAL_; and the other names are None
The code is MNCCAN; the name is SUNAMERICA_; and the other names are None
The code is MNC; the name is SUNCOR_ENERGY_; and the other names are None
The code is MNCCAN; the name is SUNESIS_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is SUNOCO_INC_; and the other names are None
The code is MNCUSA; the name is SUNOCO_LOGISTICS_; and the other names are None
The code is MNCUSA; the name is SUNOPTA_; and the other names are None
The code is MNCCANAGR; the name is SUNPOWER_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SUNRISE_SENIOR_LIVING_; and the other names are None
The code is MNCUSA; the name is SUNSTONE_HOTEL_INVESTORS_; and the other names are None
The code is MNC; the name is SUNTECH_POWER_HOLDINGS_CO_; and the other names are None
The code is MNC; the name is SUNTRUST_BANKS_; and the other names are None
The code is MNCUSA; the name is SUPER_MICRO_COMPUTER_; and the other names are None
The code is MNCUSA; the name is SUPERGEN_INC_; and the other names are None
The code is MNCUSAHLH; the name is SUPERIOR_ENERGY_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is SUPERIOR_INDUSTRIES_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is SUPERIOR_WELL_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is SUPERMEDIA_INC_; and the other names are None
The code is MNCUSAMED; the name is SUPERTEX_INC_; and the other names are None
The code is MNCUSA; the name is SUPERVALU_INC_; and the other names are None
The code is MNCUSA; the name is SUPPORT.COM_INC_; and the other names are None
The code is MNCUSA; the name is SUREWEST_COMMUNICATIONS_; and the other names are None
The code is MNCUSAMED; the name is SURMODICS_INC_; and the other names are None
The code is MNCUSAHLH; the name is SUSQUEHANNA_BANCSHARES_; and the other names are None
The code is MNCUSA; the name is SUSSER_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is SUTOR_TECHNOLOGY_GROUP_; and the other names are None
The code is MNCCHN; the name is SUZLON_ENERGY_; and the other names are None
The code is MNCIND; the name is SVB_FINANCIAL_GROUP_; and the other names are None
The code is MNCUSA; the name is SWIFT_ENERGY_COMPANY_; and the other names are None
The code is MNCUSA; the name is SWIRE_PACIFIC_LIMITED_; and the other names are None
The code is MNCGBR; the name is SWISS_HELVETIA_FUND_; and the other names are None
The code is MNCUSA; the name is SWS_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is SXC_HEALTH_SOLUTIONS_; and the other names are None
The code is MNCCAN; the name is SYCAMORE_NETWORKS_; and the other names are None
The code is MNCUSAMED; the name is SYKES_ENTERPRISES_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is SYMANTEC_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SYMETRA_FINANCIAL_CORP_; and the other names are None
The code is MNC; the name is SYMMETRICOM_INC_; and the other names are None
The code is MNCUSAMED; the name is SYMMETRY_MEDICAL_INC_; and the other names are None
The code is MNC; the name is SYMS_CORP_; and the other names are None
The code is MNCUSA; the name is SYNAPTICS_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is SYNCHRONOSS_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is SYNERGETICS_USA_INC_; and the other names are None
The code is MNCUSA; the name is SYNERON_MEDICAL_; and the other names are None
The code is MNCISRHLH; the name is SYNGENTA_; and the other names are None
The code is MNCAGR; the name is SYNIVERSE_HOLDINGS_; and the other names are None
The code is MNCMED; the name is SYNNEX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SYNOPSYS_INC_; and the other names are None
The code is MNCUSA; the name is SYNOVIS_LIFE_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is SYNOVUS_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is SYNTA_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is SYNTEL_INC_; and the other names are None
The code is MNCUSA; the name is SYNTROLEUM_CORPORATION_; and the other names are None
The code is MNCUSA; the name is SYNUTRA_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is SYPRIS_SOLUTIONS_INC_; and the other names are None
The code is MNCUSA; the name is SYSCO_CORP_; and the other names are None
The code is MNCUSA; the name is SYSTEMAX_INC_; and the other names are None
The code is MNCUSA; the name is T._ROWE_PRICE_; and the other names are None
The code is MNCUSA; the name is T-3_ENERGY_SERVICES_; and the other names are None
The code is MNCUSA; the name is TAIWAN_FUND_INC_; and the other names are None
The code is MNCUSA; the name is TAIWAN_SEMICONDUCTOR_MANUFACTURING_CO_; and the other names are None
The code is MNCTWN; the name is TAKE-TWO_INTERACTIVE_SOFTWARE_; and the other names are None
The code is MNCUSA; the name is TAL_INTERNATIONAL_GROUP_; and the other names are None
The code is MNC; the name is TALBOTS_INC_; and the other names are None
The code is MNCUSA; the name is TALECRIS_BIOTHERAPEUTICS_; and the other names are None
The code is MNCUSAHLH; the name is TALEO_CORPORATION_; and the other names are None
The code is MNCUSA; the name is TALISMAN_ENERGY_; and the other names are None
The code is MNCCAN; the name is TANGER_FACTORY_OUTLET_; and the other names are None
The code is MNCUSA; the name is TANJONG_PUBLIC_LIMITED_; and the other names are None
The code is MNCMYS; the name is TANZANIAN_ROYALTY_EXPLORATION_CORP_; and the other names are None
The code is MNC; the name is TARGA_RESOURCES_PARTNERS_; and the other names are None
The code is MNCUSA; the name is TARGACEPT_INC_; and the other names are None
The code is MNCUSAHLH; the name is TARGET_CORP_; and the other names are None
The code is MNCUSA; the name is TASEKO_MINES_; and the other names are None
The code is MNCCAN; the name is TASER_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is TAT_TECHNOLOGIES_LTD_; and the other names are None
The code is MNCISR; the name is TATA_COMMUNICATIONS_; and the other names are None
The code is MNCINDMED; the name is TATA_MOTORS_; and the other names are None
The code is MNCIND; the name is TATA_STEEL_; and the other names are None
The code is MNCIND; the name is TAUBMAN_CENTERS_; and the other names are None
The code is MNCUSA; the name is TAYLOR_CAPITAL_GROUP_; and the other names are None
The code is MNCUSA; the name is TBS_INTERNATIONAL_; and the other names are None
The code is MNCBMU; the name is TC_PIPELINES_; and the other names are None
The code is MNCUSA; the name is TCF_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is TD_AMERITRADE_; and the other names are None
The code is MNCUSA; the name is TD_BANK_; and the other names are None
The code is MNCCAN; the name is TEAM_HEALTH_HOLDINGS_INC_; and the other names are None
The code is MNC; the name is TEAM_INC_; and the other names are None
The code is MNCUSA; the name is TEARLAB_CORPORATION_; and the other names are None
The code is MNCCANHLH; the name is TECH_DATA_CORPORATION_; and the other names are None
The code is MNCUSA; the name is TECHE_HOLDING_COMPANY_; and the other names are None
The code is MNCUSA; the name is TECHNE_CORPORATION_; and the other names are None
The code is MNCFRA; the name is TECHNITROL_INC_; and the other names are None
The code is MNCUSA; the name is TECHTARGET_INC_; and the other names are None
The code is MNCUSA; the name is TECHTEAM_GLOBAL_INC_; and the other names are None
The code is MNCUSA; the name is TECHTRONIC_INDUSTRIES_CO_; and the other names are None
The code is MNCCHNHKG; the name is TECK_RESOURCES_LTD_; and the other names are None
The code is MNC; the name is TECO_ENERGY_INC_; and the other names are None
The code is MNCUSA; the name is TEEKAY_LNG_; and the other names are None
The code is MNC; the name is TEEKAY_OFFSHORE_; and the other names are None
The code is MNC; the name is TEEKAY_SHIPPING_; and the other names are None
The code is MNCBHS; the name is TEEKAY_TANKERS_; and the other names are None
The code is MNC; the name is TEJON_RANCH_COMPANY_; and the other names are None
The code is MNCUSA; the name is TEKELEC_; and the other names are None
The code is MNCUSA; the name is TELE_CELULAR_SUL_PARTICIPACOES_; and the other names are None
The code is MNCBRAMED; the name is TELE_NORTE_LESTE_PARTICIPACOES_; and the other names are None
The code is MNCBRAMED; the name is TELECOM_ARGENTINA_; and the other names are None
The code is MNCARGMED; the name is TELECOM_BRASIL_; and the other names are None
The code is MNCBRAMED; the name is TELECOM_CORPORATION_OF_NEW_ZEALAND_; and the other names are None
The code is MNCNZLMED; the name is TELECOM_ITALIA_; and the other names are None
The code is MNCITAMED; the name is TELECOMMUNICATION_SYSTEMS_INC_; and the other names are None
The code is MNCUSA; the name is TELECOMUNICACOES_DE_SAO_PAULO_; and the other names are None
The code is MNCBRAMED; the name is TELEDYNE_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is TELEFLEX_INC_; and the other names are None
The code is MNCUSAHLH; the name is TELEFONICA_SA_; and the other names are None
The code is MNCMED; the name is TELEFONOS_DE_MEXICO_; and the other names are None
The code is MNCMEXMED; the name is TELEKOMUNIKASI_INDONESIA_; and the other names are None
The code is MNCIDNMED; the name is TELENAV_INC_; and the other names are None
The code is MNCUSA; the name is TELEPHONE_AND_DATA_SYSTEMS,_INC_; and the other names are None
The code is MNCMED; the name is TELEPHONE_AND_DATA_SYSTEMS_INC_; and the other names are None
The code is MNCUSAMED; the name is TELESTONE_TECHNOLOGIES_; and the other names are None
The code is MNCCHNMED; the name is TELETECH_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is TELLABS_INC_; and the other names are None
The code is MNCUSAMED; the name is TELUS_; and the other names are None
The code is MNCCANMED; the name is TELVENT_GIT_; and the other names are None
The code is MNCESP; the name is TEMPLE-INLAND_INC_; and the other names are None
The code is MNCUSA; the name is TEMPUR-PEDIC_; and the other names are None
The code is MNC; the name is TENET_HEALTHCARE_; and the other names are None
The code is MNCUSA; the name is TENNANT_COMPANY_; and the other names are None
The code is MNCUSA; the name is TENNECO_AUTOMOTIVE_INC_; and the other names are None
The code is MNCUSA; the name is TENNESSEE_VALLEY_AUTHORITY_; and the other names are None
The code is MNCUSA; the name is TERADATA_CORPORATION_; and the other names are None
The code is MNCUSA; the name is TERADYNE_INC_; and the other names are None
The code is MNCUSA; the name is TEREX_CORPORATION_; and the other names are None
The code is MNC; the name is TERNIUM_SA_; and the other names are None
The code is MNCARG; the name is TERRA_NITROGEN_COMPANY_; and the other names are None
The code is MNCUSA; the name is TERRA_NOVA_ROYALTY_; and the other names are None
The code is MNC; the name is TERREMARK_WORLDWIDE_; and the other names are None
The code is MNCUSAMED; the name is TERRENO_REALTY_CORPORATION_; and the other names are None
The code is MNC; the name is TERRITORIAL_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is TESCO_; and the other names are None
The code is MNCCAN; the name is TESLA_MOTORS_; and the other names are None
The code is MNC; the name is TESORO_PETROLEUM_; and the other names are None
The code is MNCUSA; the name is TESSCO_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is TESSERA_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is TETRA_TECH_INC_; and the other names are None
The code is MNCUSA; the name is TETRA_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is TEVA_PHARMACEUTICAL_; and the other names are None
The code is MNCISRHLH; the name is TEXAS_CAPITAL_BANCSHARES_; and the other names are None
The code is MNCUSA; the name is TEXAS_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is TEXAS_ROADHOUSE_INC_; and the other names are None
The code is MNCUSA; the name is TEXTAINER_GROUP_; and the other names are None
The code is MNC; the name is TEXTRON_; and the other names are None
The code is MNCUSA; the name is TFS_FINANCIAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is TGC_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is THE_ADVISORY_BOARD_COMPANY_; and the other names are None
The code is MNCUSA; the name is THE_AES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is THE_ANDERSONS_INC_; and the other names are None
The code is MNCUSAAGR; the name is THE_BANCORP_INC_; and the other names are None
The code is MNCUSA; the name is THE_BANK_OF_KENTUCKY_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is THE_DENALI_FUND_; and the other names are None
The code is MNC; the name is THE_FEMALE_HEALTH_COMPANY_; and the other names are None
The code is MNCUSAHLH; the name is THE_GABELLI_GLOBAL_; and the other names are None
The code is MNC; the name is THE_GAP_INC_; and the other names are None
The code is MNCUSA; the name is THE_GYMBOREE_; and the other names are None
The code is MNCUSA; the name is THE_KNOT_INC_; and the other names are None
The code is MNCUSA; the name is THE_MEDICINES_COMPANY_; and the other names are None
The code is MNCUSAHLH; the name is THE_NAVIGATORS_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is THE_PANTRY_INC_; and the other names are None
The code is MNCUSA; the name is THE_PEP_BOYS_; and the other names are None
The code is MNCUSA; the name is THE_PRINCETON_REVIEW_; and the other names are None
The code is MNCUSAEDU; the name is THE_PROGRESSIVE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is THE_SINGAPORE_FUND_INC_; and the other names are None
The code is MNCUSA; the name is THE_SOUTHERN_COMPANY_; and the other names are None
The code is MNCUSA; the name is THE_WILLIAMS_COMPANIES_; and the other names are None
The code is MNCUSA; the name is THE9_LIMITED_; and the other names are None
The code is MNCCHN; the name is THERAVANCE_INC_; and the other names are None
The code is MNCUSAHLH; the name is THERMADYNE_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is THERMO_FISHER_; and the other names are None
The code is MNCUSA; the name is THESTREET.COM_INC_; and the other names are None
The code is MNCUSAMED; the name is THL_CREDIT_INC_; and the other names are None
The code is MNCUSA; the name is THOMAS_AND_BETTS_; and the other names are None
The code is MNCUSA; the name is THOMAS_PROPERTIES_GROUP_; and the other names are None
The code is MNCUSA; the name is THOMPSON_CREEK_METALS_COMPANY_; and the other names are None
The code is MNCCAN; the name is THOMSON_REUTERS_; and the other names are None
The code is MNCCANMED; the name is THOR_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is THORATEC_CORP_; and the other names are None
The code is MNCUSA; the name is THQ_INC_; and the other names are None
The code is MNCUSA; the name is THT_HEAT_TRANSFER_TECH_; and the other names are None
The code is MNCCHN; the name is TIANLI_AGRITECH_; and the other names are None
The code is MNCCHNAGR; the name is TIANYIN_PHARMACEUTICAL_; and the other names are None
The code is MNCCHNHLH; the name is TIBCO_SOFTWARE_INC_; and the other names are None
The code is MNCUSA; the name is TICC_CAPITAL_CORP_; and the other names are None
The code is MNCUSA; the name is TIDEWATER_INC_; and the other names are None
The code is MNCUSA; the name is TIENS_BIOTECH_; and the other names are None
The code is MNCCHNHLH; the name is TIER_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is TIFFANY_AND_CO_; and the other names are None
The code is MNCUSA; the name is TIGERLOGIC_CORPORATION_; and the other names are None
The code is MNCUSA; the name is TIM_HORTONS_; and the other names are None
The code is MNCCAN; the name is TIMBERLAND_COMPANY_; and the other names are None
The code is MNCUSA; the name is TIME_WARNER_CABLE_; and the other names are None
The code is MNCUSA; the name is TIME_WARNER_INC_; and the other names are None
The code is MNCUSA; the name is TIMKEN_COMPANY_; and the other names are None
The code is MNCUSA; the name is TITAN_INTERNATIONAL_INC_; and the other names are None
The code is MNCUSA; the name is TITAN_MACHINERY_INC_; and the other names are None
The code is MNCUSA; the name is TITANIUM_METALS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is TIVO_INC_; and the other names are None
The code is MNCUSA; the name is TJX_COMPANIES_INC_; and the other names are None
The code is MNCUSA; the name is TODD_SHIPYARDS_; and the other names are None
The code is MNCUSA; the name is TOLL_BROTHERS_INC_; and the other names are None
The code is MNCUSA; the name is TOLLGRADE_COMMUNICATIONS_; and the other names are None
The code is MNCUSA; the name is TOMKINS_PLC_; and the other names are None
The code is MNCGBR; the name is TOMOTHERAPY_INC_; and the other names are None
The code is MNCUSA; the name is TOMPKINSTRUSTCO_; and the other names are None
The code is MNCUSA; the name is TONGJITANG_CHINESE_MEDICINES_; and the other names are None
The code is MNCCHNHLH; the name is TOOTSIE_ROLL_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is TOP_IMAGE_SYSTEMS_LTD_; and the other names are None
The code is MNCISR; the name is TOP_SHIPS_INC_; and the other names are None
The code is MNCGRC; the name is TORCHMARK_CORPORATION_; and the other names are None
The code is MNCUSA; the name is TOREADOR_RESOURCES_; and the other names are None
The code is MNCUSA; the name is TORO_COMPANY_; and the other names are None
The code is MNCUSA; the name is TORONTO_DOMINION_; and the other names are None
The code is MNCCAN; the name is TORTOISE_ENERGY_; and the other names are None
The code is MNCUSA; the name is TORTOISE_NORTH_AMERICA_; and the other names are None
The code is MNCUSA; the name is TOTAL_SYSTEM_SERVICES_; and the other names are None
The code is MNCUSA; the name is TOTALFINAELF_; and the other names are None
The code is MNCFRA; the name is TOWER_BANCORP_; and the other names are None
The code is MNCUSA; the name is TOWER_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is TOWER_SEMICONDUCTOR_LTD_; and the other names are None
The code is MNCISR; the name is TOWERS_WATSON_AND_CO_; and the other names are None
The code is MNCUSA; the name is TOWN_SPORTS_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is TOWNE_BANK_; and the other names are None
The code is MNCUSA; the name is TPC_GROUP_; and the other names are None
The code is MNC; the name is TPV_TECHNOLOGY_LIMITED_; and the other names are None
The code is MNCTWN; the name is TRACTOR_SUPPLY_COMPANY_; and the other names are None
The code is MNCUSA; the name is TRADESTATION_GROUP_; and the other names are None
The code is MNCUSA; the name is TRANSACT_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is TRANSALTA_; and the other names are None
The code is MNCCAN; the name is TRANSAMERICA_INCOME_SHARES_; and the other names are None
The code is MNCUSA; the name is TRANSATLANTIC_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is TRANSATLANTIC_PETROLEUM_; and the other names are None
The code is MNCCAN; the name is TRANSCANANDA_PIPELINES_; and the other names are None
The code is MNCCAN; the name is TRANSCEND_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is TRANSCEPT_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is TRANSCONTINENTAL_REALTY_INVESTORS_INC_; and the other names are None
The code is MNCUSA; the name is TRANSDIGM_GROUP_; and the other names are None
The code is MNC; the name is TRANSGLOBE_ENERGY_CORP_; and the other names are None
The code is MNCCAN; the name is TRANSITION_THERAPEUTICS_; and the other names are None
The code is MNCCANHLH; the name is TRANSMONTAIGNE_PARTNERS_; and the other names are None
The code is MNC; the name is TRANSOCEAN_INC_; and the other names are None
The code is MNCUSA; the name is TRANSPORTADORA_DE_GAS_DEL_SUR_; and the other names are None
The code is MNCARG; the name is TRANSWITCH_CORP_; and the other names are None
The code is MNCUSA; the name is TRAVELERS_COMPANIES_INC_; and the other names are None
The code is MNCUSA; the name is TRAVELZOO_INC_; and the other names are None
The code is MNCUSA; the name is TREDEGAR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is TREE.COM_INC_; and the other names are None
The code is MNCUSA; the name is TREEHOUSE_FOODS_; and the other names are None
The code is MNC; the name is TREX_COMPANY_; and the other names are None
The code is MNCUSA; the name is TRI_CONTINENTAL_CORP_; and the other names are None
The code is MNCUSA; the name is TRI_TECH_HOLDING_INC_; and the other names are None
The code is MNCCHN; the name is TRIANGLE_CAPITAL_CORP_; and the other names are None
The code is MNCUSA; the name is TRICO_BANCSHARES_; and the other names are None
The code is MNCUSA; the name is TRIDENT_MICROSYSTEMS_; and the other names are None
The code is MNCUSA; the name is TRIMAS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is TRIMBLE_NAVIGATION_; and the other names are None
The code is MNCUSA; the name is TRINA_SOLAR_LIMITED_; and the other names are None
The code is MNC; the name is TRINITY_BIOTECH_; and the other names are None
The code is MNCIRLHLH; the name is TRINITY_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is TRINTECH_GROUP_; and the other names are None
The code is MNCIRL; the name is TRIPLE_S_MANAGEMENT_CORPORATION_; and the other names are None
The code is MNC; the name is TRIQUINT_SEMICONDUCTOR_; and the other names are None
The code is MNCUSA; the name is TRIUMPH_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is TRIUS_THERAPEUTICS_; and the other names are None
The code is MNCUSAHLH; the name is TRUBION_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is TRUE_RELIGION_APPAREL_; and the other names are None
The code is MNCUSA; the name is TRUEBLUE_INC_; and the other names are None
The code is MNCUSA; the name is TRUSTCO_BANK_CORP_NY_; and the other names are None
The code is MNCUSA; the name is TRUSTMARK_CORPORATION_; and the other names are None
The code is MNCUSA; the name is TRW_AUTOMOTIVE_; and the other names are None
The code is MNCUSA; the name is TSAKOS_ENERGY_NAVIGATION_; and the other names are None
The code is MNCGRC; the name is TTM_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is TUCOWS_INC_; and the other names are None
The code is MNCCAN; the name is TUESDAY_MORNING_CORP_; and the other names are None
The code is MNCUSA; the name is TUPPERWARE_; and the other names are None
The code is MNCUSA; the name is TURKCELL_ILETISIM_HIZMETLERI_; and the other names are None
The code is MNCTRKMED; the name is TURKISH_INVESTMENT_FUND_; and the other names are None
The code is MNCUSA; the name is TUTOR_PERINI_CORPORATION_; and the other names are None
The code is MNCUSA; the name is TW_TELECOM_INC_; and the other names are None
The code is MNCUSAMED; the name is TWIN_DISC_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is TWO_HARBORS_INVESTMENTS_; and the other names are None
The code is MNCUSA; the name is TYCO_ELECTRONICS_; and the other names are None
The code is MNCBMU; the name is TYCO_INTERNATIONAL_; and the other names are None
The code is MNCCHE; the name is TYLER_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is TYSON_FOODS_INC_; and the other names are None
The code is MNCUSA; the name is U.S._AUTO_PARTS_NETWORK_; and the other names are None
The code is MNCUSA; the name is U.S._BANCORP_; and the other names are None
The code is MNCUSA; the name is U.S._ENERGY_CORP_; and the other names are None
The code is MNCUSA; the name is U.S._GEOTHERMAL_INC_; and the other names are None
The code is MNCUSA; the name is U.S._GLOBAL_INVESTORS_INC_; and the other names are None
The code is MNCUSA; the name is U.S._GOLD_CORPORATION_; and the other names are None
The code is MNCUSA; the name is U.S._PHYSICAL_THERAPY_INC_; and the other names are None
The code is MNCUSAHLH; the name is U_STORE_IT_TRUST_; and the other names are None
The code is MNC; the name is UAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is UBS_; and the other names are None
The code is MNCCHE; the name is UFJ_HOLDINGS_; and the other names are None
The code is MNCJPN; the name is UFP_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSA; the name is UGI_CORPORATION_; and the other names are None
The code is MNCUSA; the name is UIL_HOLDINGS_CORP_; and the other names are None
The code is MNCUSA; the name is ULTA_SALON_COSMETICS_AND_FRAGRANCE_; and the other names are None
The code is MNCUSA; the name is ULTICOM_INC_; and the other names are None
The code is MNCUSAMED; the name is ULTIMATE_SOFTWARE_GROUP_INC_; and the other names are None
The code is MNCUSA; the name is ULTRA_CLEAN_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is ULTRA_PETROLEUM_CORP_; and the other names are None
The code is MNCUSA; the name is ULTRALIFE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ULTRAPAR_PARTICIPACOES_; and the other names are None
The code is MNCBRA; the name is ULTRAPETROL_; and the other names are None
The code is MNCBHS; the name is ULTRATECH_INC_; and the other names are None
The code is MNCUSA; the name is UMB_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is UMH_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is UMPQUA_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is UNDER_ARMOUR_INC_; and the other names are None
The code is MNCUSA; the name is UNICA_CORPORATION_; and the other names are None
The code is MNC; the name is UNIFI_INC_; and the other names are None
The code is MNCUSA; the name is UNIFIRST_CORPORATION_; and the other names are None
The code is MNCUSA; the name is UNILEVER_NV_; and the other names are None
The code is MNCNLD; the name is UNILEVER_PLC_; and the other names are None
The code is MNCGBR; the name is UNILIFE_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is UNION_BANKSHARES_INC_; and the other names are None
The code is MNCUSA; the name is UNION_DRILLING_INC_; and the other names are None
The code is MNCUSA; the name is UNION_FIRST_MARKET_BANKSHARES_; and the other names are None
The code is MNCUSA; the name is UNION_PACIFIC_; and the other names are None
The code is MNCUSA; the name is UNISOURCE_ENERGY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is UNISYS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is UNIT_CORPORATION_; and the other names are None
The code is MNCUSA; the name is UNITED_BANKSHARES_INC_; and the other names are None
The code is MNCUSA; the name is UNITED_CAPITAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is UNITED_COMMUNITY_BANKS_INC_; and the other names are None
The code is MNCUSA; the name is UNITED_DOMINION_REALTY_TRUST_; and the other names are None
The code is MNCUSA; the name is UNITED_FINANCIAL_BANCORP_; and the other names are None
The code is MNCUSA; the name is UNITED_FIRE_AND_CASUALTY_COMPANY_; and the other names are None
The code is MNCUSA; the name is UNITED_MICROELECTRONICS_CORPORATION_; and the other names are None
The code is MNCTWN; the name is UNITED_NATURAL_FOODS_INC_; and the other names are None
The code is MNCUSA; the name is UNITED_ONLINE_INC_; and the other names are None
The code is MNCUSA; the name is UNITED_PARCEL_SERVICE_; and the other names are None
The code is MNCUSA; the name is UNITED_RENTALS_INC_; and the other names are None
The code is MNCUSA; the name is UNITED_SECURITY_BANCSHARES_; and the other names are None
The code is MNCUSA; the name is UNITED_STATES_CELLULAR_CORPORATION_; and the other names are None
The code is MNCUSAMED; the name is UNITED_STATES_LIME_AND_MINERALS_; and the other names are None
The code is MNCUSA; the name is UNITED_STATES_STEEL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is UNITED_STATIONERS_INC_; and the other names are None
The code is MNCUSA; the name is UNITED_TECHNOLOGIES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is UNITED_THERAPEUTICS_CORPORATION_; and the other names are None
The code is MNCUSAHLH; the name is UNITEDHEALTH_GROUP_INCORPORATED_; and the other names are None
The code is MNCUSAHLH; the name is UNITIL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is UNITRIN_INC_; and the other names are None
The code is MNCUSA; the name is UNIVERSAL_AMERICAN_FINANCIAL_CORP_; and the other names are None
The code is MNCUSAHLH; the name is UNIVERSAL_CORPORATION_; and the other names are None
The code is MNCUSAAGR; the name is UNIVERSAL_DISPLAY_CORPORATION_; and the other names are None
The code is MNCUSA; the name is UNIVERSAL_ELECTRONICS_INC_; and the other names are None
The code is MNCUSA; the name is UNIVERSAL_FOREST_PRODUCTS_INC_; and the other names are None
The code is MNCUSA; the name is UNIVERSAL_HEALTH_REALTY_INCOME_TRUST_; and the other names are None
The code is MNCUSA; the name is UNIVERSAL_HEALTH_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is UNIVERSAL_INSURANCE_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is UNIVERSAL_STAINLESS_AND_ALLOY_PRODUCTS_; and the other names are None
The code is MNCUSA; the name is UNIVERSAL_TECHNICAL_INSTITUTE_INC_; and the other names are None
The code is MNCUSA; the name is UNIVERSAL_TRAVEL_GROUP_; and the other names are None
The code is MNCCHN; the name is UNIVERSAL_TRUCKLOAD_SERVICES_INC_; and the other names are None
The code is MNCUSA; the name is UNIVEST_CORPORATION_OF_PENNSYLVANIA_; and the other names are None
The code is MNCUSA; the name is UNOVA_INC_; and the other names are None
The code is MNCUSA; the name is UNUMPROVIDENT_; and the other names are None
The code is MNCUSA; the name is UQM_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is UR_ENERGY_INC_; and the other names are None
The code is MNC; the name is URANERZ_ENERGY_; and the other names are None
The code is MNCCAN; the name is URANIUM_ENERGY_CORP_; and the other names are None
The code is MNCUSA; the name is URANIUM_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is URBAN_OUTFITTERS_; and the other names are None
The code is MNCUSA; the name is UROPLASTY_INC_; and the other names are None
The code is MNCUSAHLH; the name is URS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is URSTADT_BIDDLE_PROPERTIES_INC_; and the other names are None
The code is MNCUSA; the name is US_AIRWAYS_; and the other names are None
The code is MNCUSA; the name is US_ECOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is USA_MOBILITY_INC_; and the other names are None
The code is MNCUSAMED; the name is USA_TRUCK_INC_; and the other names are None
The code is MNCUSA; the name is USANA_HEALTH_SCIENCES_; and the other names are None
The code is MNCUSA; the name is USEC_INC_; and the other names are None
The code is MNCUSA; the name is USG_CORPORATION_; and the other names are None
The code is MNCUSA; the name is USLIFE_INCOME_FUND_; and the other names are None
The code is MNCUSA; the name is UTAH_MEDICAL_PRODUCTS_INC_; and the other names are None
The code is MNCUSAHLH; the name is UTI_WORLDWIDE_INC_; and the other names are None
The code is MNCUSA; the name is UTSTARCOM_INC_; and the other names are None
The code is MNCUSAMED; the name is V.F._CORPORATION_; and the other names are None
The code is MNCUSA; the name is VAALCO_ENERGY_; and the other names are None
The code is MNCUSA; the name is VAIL_RESORTS_INC_; and the other names are None
The code is MNCUSA; the name is VALASSIS_COMMUNICATIONS_; and the other names are None
The code is MNCBRA; the name is VALEANT_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is VALENCE_TECHNOLOGY_INC_; and the other names are None
The code is MNCUSA; the name is VALERO_ENERGY_; and the other names are None
The code is MNCUSA; the name is VALHI_INC_; and the other names are None
The code is MNCUSA; the name is VALIDUS_HOLDINGS_; and the other names are None
The code is MNC; the name is VALLEY_NATIONAL_BANCORP_; and the other names are None
The code is MNCUSA; the name is VALMONT_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is VALSPAR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is VALUE_LINE_INC_; and the other names are None
The code is MNCUSA; the name is VALUECLICK_INC_; and the other names are None
The code is MNCUSA; the name is VALUEVISION_MEDIA_; and the other names are None
The code is MNCUSA; the name is VANCEINFO_TECHNOLOGIES_INC_; and the other names are None
The code is MNC; the name is VANDA_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is VANGUARD_NATURAL_RESOURCES_; and the other names are None
The code is MNC; the name is VANTAGE_DRILLING_COMPANY_; and the other names are None
The code is MNCUSA; the name is VARIAN_MEDICAL_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is VARIAN_SEMICONDUCTOR_; and the other names are None
The code is MNCUSA; the name is VASCO_DATA_SECURITY_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is VASCULAR_SOLUTIONS_INC_; and the other names are None
The code is MNCUSAHLH; the name is VCA_ANTECH_INC_; and the other names are None
The code is MNCUSAAGR; the name is VECTOR_GROUP_LTD_; and the other names are None
The code is MNCUSAAGR; the name is VECTREN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is VEECO_INSTRUMENTS_; and the other names are None
The code is MNCUSA; the name is VENOCO_; and the other names are None
The code is MNC; the name is VENTAS_INC_; and the other names are None
The code is MNCUSA; the name is VEOLIA_ENVIRONNEMENT_; and the other names are None
The code is MNCFRAHLH; the name is VERIFONE_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is VERIGY_LTD_; and the other names are None
The code is MNCSGP; the name is VERINT_SYSTEMS_; and the other names are None
The code is MNCUSA; the name is VERISIGN_INC_; and the other names are None
The code is MNCUSA; the name is VERISK_ANALYTICS_INC_; and the other names are None
The code is MNCUSA; the name is VERIZON_; and the other names are None
The code is MNCUSAMED; the name is VERMILLION_INC_; and the other names are None
The code is MNCUSA; the name is VERSO_PAPER_CORP_; and the other names are None
The code is MNC; the name is VERTEX_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is VIACOM_; and the other names are None
The code is MNCUSA; the name is VIAD_CORPORATION_; and the other names are None
The code is MNCUSA; the name is VIASAT_INC_; and the other names are None
The code is MNCUSA; the name is VIASYSTEMS_GROUP_; and the other names are None
The code is MNCUSA; the name is VICAL_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is VICOR_CORPORATION_; and the other names are None
The code is MNCUSA; the name is VIEWPOINT_FINANCIAL_GROUP_; and the other names are None
The code is MNCUSA; the name is VILLAGE_SUPER_MARKET_INC_; and the other names are None
The code is MNCUSA; the name is VIMICRO_INTERNATIONAL_; and the other names are None
The code is MNCCHN; the name is VIMPELCOM_; and the other names are None
The code is MNCRUS; the name is VIMPEL-COMMUNICATIONS_; and the other names are None
The code is MNCRUSMED; the name is VINA_CONCHA_Y_TORO_; and the other names are None
The code is MNCCHL; the name is VIRGIN_MEDIA_; and the other names are None
The code is MNCUSAMED; the name is VIRGINIA_COMMERCE_BANCORP_; and the other names are None
The code is MNCUSA; the name is VIRNETX_HOLDING_; and the other names are None
The code is MNCUSA; the name is VIROPHARMA_INCORPORATED_; and the other names are None
The code is MNCUSAHLH; the name is VIRTUS_INVESTMENT_PARTNERS_INC_; and the other names are None
The code is MNCUSA; the name is VIRTUSA_CORP_; and the other names are None
The code is MNCUSA; the name is VISA_INC_; and the other names are None
The code is MNC; the name is VISHAY_INTERTECHNOLOGY_; and the other names are None
The code is MNCUSA; the name is VISHAY_PRECISION_GROUP_; and the other names are None
The code is MNC; the name is VISIONCHINA_MEDIA_; and the other names are None
The code is MNCCHNMED; the name is VISTA_GOLD_CORPORATION_; and the other names are None
The code is MNCCAN; the name is VISTAPRINT_; and the other names are None
The code is MNCBMUMED; the name is VITACOST.COM_INC_; and the other names are None
The code is MNCUSA; the name is VITAL_IMAGES_INC_; and the other names are None
The code is MNCUSA; the name is VITAMIN_SHOPPE_; and the other names are None
The code is MNC; the name is VITRAN_CORPORATION_; and the other names are None
The code is MNCCAN; the name is VIVO_PARTICIPACOES_; and the other names are None
The code is MNCBRAMED; the name is VIVUS_INC_; and the other names are None
The code is MNCUSAHLH; the name is VMWARE_; and the other names are None
The code is MNC; the name is VOCALTEC_COMMUNICATIONS_; and the other names are None
The code is MNCISRMED; the name is VOCUS,_INC_; and the other names are None
The code is MNC; the name is VOLCANO_CORPORATION_; and the other names are None
The code is MNCUSA; the name is VOLCOM_INC_; and the other names are None
The code is MNCUSA; the name is VOLT_INFORMATION_SCIENCES_; and the other names are None
The code is MNCUSA; the name is VOLTAIRE_LTD_; and the other names are None
The code is MNCISR; the name is VOLTERRA_SEMICONDUCTOR_; and the other names are None
The code is MNCUSA; the name is VONAGE_; and the other names are None
The code is MNCMED; the name is VORNADO_REALTY_TRUST_; and the other names are None
The code is MNCUSA; the name is VSE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is VULCAN_MATERIALS_CO_; and the other names are None
The code is MNCUSA; the name is W&T_OFFSHORE_; and the other names are None
The code is MNC; the name is W.P._CAREY_AND_CO_; and the other names are None
The code is MNCUSA; the name is W.R._BERKLEY_; and the other names are None
The code is MNCUSA; the name is W.R._GRACE_AND_CO_; and the other names are None
The code is MNCUSA; the name is W.W._GRAINGER_; and the other names are None
The code is MNCUSA; the name is WABASH_NATIONAL_; and the other names are None
The code is MNCUSA; the name is WABCO_HOLDINGS_; and the other names are None
The code is MNC; the name is WABTEC_CORPORATION_; and the other names are None
The code is MNCUSA; the name is WACHOVIA_; and the other names are None
The code is MNCUSA; the name is WACOAL_HOLDINGS_; and the other names are None
The code is MNCJPN; the name is WADDELL_AND_REED_; and the other names are None
The code is MNCUSA; the name is WAINWRIGHT_BANK_AND_TRUST_; and the other names are None
The code is MNCUSA; the name is WALGREEN_; and the other names are None
The code is MNCUSAHLH; the name is WAL-MART_STORES_; and the other names are None
The code is MNCUSA; the name is WALTER_ENERGY_; and the other names are None
The code is MNCUSA; the name is WARNACO_GROUP_; and the other names are None
The code is MNCUSA; the name is WARNER_CHILCOTT_; and the other names are None
The code is MNCBMUHLH; the name is WARNER_MUSIC_GROUP_; and the other names are None
The code is MNCMED; the name is WARREN_RESOURCES_INC_; and the other names are None
The code is MNCUSA; the name is WARWICK_VALLEY_TELEPHONE_; and the other names are None
The code is MNCUSAMED; the name is WASHINGTON_BANKING_COMPANY_; and the other names are None
The code is MNCUSA; the name is WASHINGTON_FEDERAL_INC_; and the other names are None
The code is MNCUSA; the name is WASHINGTON_MUTUAL_; and the other names are None
The code is MNCUSA; the name is WASHINGTON_POST_COMPANY_; and the other names are None
The code is MNCUSAMED; the name is WASHINGTON_REAL_ESTATE_INVESTMENT_TRUST_; and the other names are None
The code is MNCUSA; the name is WASHINGTON_TRUST_BANCORP_; and the other names are None
The code is MNCUSA; the name is WASTE_CONNECTIONS_INC_; and the other names are None
The code is MNCUSA; the name is WASTE_MANAGEMENT_INC_; and the other names are None
The code is MNCUSA; the name is WATERS_CORPORATION_; and the other names are None
The code is MNCUSA; the name is WATERSTONE_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is WATSCO_INC_; and the other names are None
The code is MNCUSA; the name is WATSON_PHARMACEUTICALS_; and the other names are None
The code is MNCUSAHLH; the name is WATTS_WATER_TECHNOLOGIES_; and the other names are None
The code is MNCUSA; the name is WAUSAU-MOSINEE_PAPER_; and the other names are None
The code is MNCUSA; the name is WAVE_SYSTEMS_CORP_; and the other names are None
The code is MNCUSA; the name is WAYNE_CHEMICAL_ ; and the other names are None
The code is MNC; the name is WCA_WASTE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is WD-40_COMPANY_; and the other names are None
The code is MNCUSA; the name is WEATHERFORD_INTERNATIONAL_; and the other names are None
The code is MNCCHE; the name is WEB.COM_GROUP_; and the other names are None
The code is MNCUSA; the name is WEBMD_HEALTH_; and the other names are None
The code is MNCUSAHLH; the name is WEBSENSE_INC_; and the other names are None
The code is MNCUSA; the name is WEBSTER_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is WEIDER_NUTRITION_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is WEIGHT_WATCHERS_INTERNATIONAL_; and the other names are None
The code is MNCUSA; the name is WEINGARTEN_REALTY_; and the other names are None
The code is MNCUSA; the name is WEIS_MARKETS_INC_; and the other names are None
The code is MNCUSA; the name is WELLCARE_GROUP_; and the other names are None
The code is MNCHLH; the name is WELLPOINT_HEALTH_NETWORKS_; and the other names are None
The code is MNCUSAHLH; the name is WELLS_FARGO_; and the other names are None
The code is MNCUSA; the name is WENDY'S/ARBY'S_; and the other names are None
The code is MNCUSA; the name is WERNER_ENTERPRISES_; and the other names are None
The code is MNCUSA; the name is WESBANCO_INC_; and the other names are None
The code is MNCUSA; the name is WESCO_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is WESCO_INTERNATIONAL_; and the other names are None
The code is MNCUSAMED; the name is WEST_BANCORPORATION_; and the other names are None
The code is MNCUSA; the name is WEST_COAST_BANCORP_; and the other names are None
The code is MNCUSA; the name is WEST_MARINE_INC_; and the other names are None
The code is MNCUSA; the name is WEST_PHARMACEUTICAL_SERVICES_; and the other names are None
The code is MNCUSA; the name is WESTAMERICA_BANCORPORATION_; and the other names are None
The code is MNCUSA; the name is WESTAR_ENERGY_; and the other names are None
The code is MNCUSA; the name is WESTCOAST_HOSPITALITY_CORP_; and the other names are None
The code is MNCUSA; the name is WESTELL_TECHNOLOGIES_INC_; and the other names are None
The code is MNCUSAMED; the name is WESTERN_ALLIANCE_BANCORP_; and the other names are None
The code is MNC; the name is WESTERN_ASSET_INFLATION_MANAGEMENT_FUND_; and the other names are None
The code is MNC; the name is WESTERN_ASSET_MUNICIPAL_DEFINED_OPPORTUNITY_TRUST_; and the other names are None
The code is MNC; the name is WESTERN_ASSET_VARIABLE_RATE_STRATEGIC_FUND_; and the other names are None
The code is MNC; the name is WESTERN_DIGITAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is WESTERN_GAS_PARTNERS_LP_; and the other names are None
The code is MNC; the name is WESTERN_REFINING_INC_; and the other names are None
The code is MNC; the name is WESTERN_UNION_COMPANY_; and the other names are None
The code is MNC; the name is WESTFIELD_FINANCIAL_INC_; and the other names are None
The code is MNCUSA; the name is WESTLAKE_CHEMICAL_CORP_; and the other names are None
The code is MNC; the name is WESTMORELAND_COAL_; and the other names are None
The code is MNCUSA; the name is WESTPAC_BANKING_CORPORATION_; and the other names are None
The code is MNCAUS; the name is WESTPORT_INNOVATIONS_INC_; and the other names are None
The code is MNC; the name is WESTWOOD_HOLDINGS_GROUP_; and the other names are None
The code is MNCUSA; the name is WESTWOOD_ONE_INC_; and the other names are None
The code is MNCUSA; the name is WET_SEAL_INC_; and the other names are None
The code is MNCUSA; the name is WEYCO_GROUP_; and the other names are None
The code is MNCUSA; the name is WEYERHAEUSER_COMPANY_; and the other names are None
The code is MNCUSA; the name is WGL_HOLDINGS_INC_; and the other names are None
The code is MNCUSA; the name is WHIRLPOOL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is WHITE_MOUNTAINS_INSURANCE_GROUP_; and the other names are None
The code is MNCUSA; the name is WHITING_PETROLEUM_; and the other names are None
The code is MNC; the name is WHITNEY_HOLDING_CORP_; and the other names are None
The code is MNCUSA; the name is WHOLE_FOODS_MARKET_; and the other names are None
The code is MNCUSA; the name is WHX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is WILBER_CORPORATION_; and the other names are None
The code is MNCUSA; the name is WILLBROS_GROUP_; and the other names are None
The code is MNCPAN; the name is WILLIAMS_CONTROLS_INC_; and the other names are None
The code is MNC; the name is WILLIAMS-SONOMA_; and the other names are None
The code is MNCUSA; the name is WILLIS_GROUP_; and the other names are None
The code is MNCGBR; the name is WILLIS_LEASE_FINANCE_; and the other names are None
The code is MNCUSA; the name is WILMAR_INTERNATIONAL_; and the other names are None
The code is MNCSGPAGR; the name is WILMINGTON_TRUST_CORP_; and the other names are None
The code is MNCUSA; the name is WILSHIRE_BANCORP_; and the other names are None
The code is MNCUSA; the name is WIMM_BILL_DANN_FOODS_; and the other names are None
The code is MNCRUS; the name is WINDSTREAM_CORPORATION_; and the other names are None
The code is MNCMED; the name is WINMARK_CORPORATION_; and the other names are None
The code is MNCUSA; the name is WINN-DIXIE_STORES_; and the other names are None
The code is MNCUSA; the name is WINNEBAGO_INDUSTR_; and the other names are None
The code is MNCUSA; the name is WINNER_MEDICAL_GROUP_INC_; and the other names are None
The code is MNCCHN; the name is WINTRUST_FINANCIAL_; and the other names are None
The code is MNCUSA; the name is WIPRO_LIMITED_; and the other names are None
The code is MNCIND; the name is WISCONSIN_ENERGY_CORP_; and the other names are None
The code is MNCUSA; the name is WISTRON_CORP_; and the other names are None
The code is MNCTWN; the name is WMS_INDUSTRIES_INC_; and the other names are None
The code is MNCUSA; the name is WNS_HOLDINGS_; and the other names are None
The code is MNC; the name is WOLVERINE_WORLD_WIDE_; and the other names are None
The code is MNCUSA; the name is WONDER_AUTO_TECHNOLOGY_; and the other names are None
The code is MNCCHN; the name is WOODWARD_GOVERNOR_CO_; and the other names are None
The code is MNCUSA; the name is WOORI_FINANCE_HOLDINGS_; and the other names are None
The code is MNCKOR; the name is WORLD_ACCEPTANCE_CORPORATION_; and the other names are None
The code is MNCUSA; the name is WORLD_FUEL_SERVICES_CORPORATION_; and the other names are None
The code is MNCUSA; the name is WORLD_HEART_CORP_; and the other names are None
The code is MNCCANHLH; the name is WORLD_WRESTLING_ENTERTAINMENT_; and the other names are None
The code is MNCUSAMED; the name is WORTHINGTON_INDUSTRIES_; and the other names are None
The code is MNCUSA; the name is WOWJOINT_HOLDINGS_; and the other names are None
The code is MNCCHN; the name is WPP_PLC_; and the other names are None
The code is MNCGBRMED; the name is WRIGHT_EXPRESS_CORP_; and the other names are None
The code is MNC; the name is WRIGHT_MEDICAL_GROUP_; and the other names are None
The code is MNCUSAHLH; the name is WSFS_FINANCIAL_CORP_; and the other names are None
The code is MNCUSA; the name is WUHAN_GENERAL_GROUP_; and the other names are None
The code is MNCCHNENV; the name is WUXI_PHARMATECH_; and the other names are None
The code is MNCHLH; the name is WYNDHAM_WORLDWIDE_CORP_; and the other names are None
The code is MNC; the name is WYNN_RESORTS_; and the other names are None
The code is MNCUSA; the name is XCEL_ENERGY_; and the other names are None
The code is MNCUSA; the name is XENOPORT_; and the other names are None
The code is MNCUSAHLH; the name is XERIUM_TECHNOLOGIES_; and the other names are None
The code is MNC; the name is XEROX_; and the other names are None
The code is MNCUSA; the name is XILINX_INC_; and the other names are None
The code is MNCUSA; the name is XINHUA_SPORTS_AND_ENTERTAINMENT_; and the other names are None
The code is MNCCHNMED; the name is XINYUAN_REAL_ESTATE_; and the other names are None
The code is MNC; the name is XL_COMPANY_SWITZERLAND_; and the other names are None
The code is MNCBMU; the name is X-RITE_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is XYRATEX_; and the other names are None
The code is MNCGBR; the name is YAHOO!_INC_; and the other names are None
The code is MNCUSA; the name is YAMANA_GOLD_; and the other names are None
The code is MNCCAN; the name is YANZHOU_COAL_MINING_COMPANY_; and the other names are None
The code is MNCCHN; the name is YINGLI_GREEN_ENERGY_HOLDING_; and the other names are None
The code is MNCCHN; the name is YM_BIOSCIENCES_; and the other names are None
The code is MNCCANHLH; the name is YONGYE_INTERNATIONAL_; and the other names are None
The code is MNCCHNAGR; the name is YORK_WATER_COMPANY_; and the other names are None
The code is MNCUSA; the name is YOUNG_INNOVATIONS_INC_; and the other names are None
The code is MNCUSAHLH; the name is YRC_WORLDWIDE_; and the other names are None
The code is MNCUSA; the name is YTL_CORP_; and the other names are None
The code is MNCMYS; the name is YUCHENG_TECHNOLOGIES_; and the other names are None
The code is MNCCHN; the name is YUHE_INTERNATIONAL_; and the other names are None
The code is MNCCHNAGR; the name is YUM!_BRANDS_; and the other names are None
The code is MNCUSA; the name is ZAGG_INCORPORATED_; and the other names are None
The code is MNCUSA; the name is ZAIN_; and the other names are None
The code is MNCKWTMED; the name is ZEBRA_TECHNOLOGIES_CORP_; and the other names are None
The code is MNCUSA; the name is ZEP_INC_; and the other names are None
The code is MNC; the name is ZHONGPIN_INC_; and the other names are None
The code is MNCCHN; the name is ZIMMER_HOLDINGS_; and the other names are None
The code is MNCUSA; the name is ZION_OIL_AND_GAS_; and the other names are None
The code is MNCUSA; the name is ZIONS_BANCORP_; and the other names are None
The code is MNCUSA; the name is ZIOPHARM_ONCOLOGY_; and the other names are None
The code is MNCUSAHLH; the name is ZIX_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ZOLL_MEDICAL_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ZOLTEK_COMPANIES_; and the other names are None
The code is MNCUSA; the name is ZORAN_CORPORATION_; and the other names are None
The code is MNCUSA; the name is ZST_DIGITAL_NETWORKS_; and the other names are None
The code is MNCCHNMED; the name is ZTE_CORP_; and the other names are None
The code is MNCCHNMED; the name is ZUMIEZ_INC_; and the other names are None
The code is MNCUSA; the name is ZWEIG_FUND_INC_; and the other names are None
The code is MNCUSA; the name is ZWEIG_TOTAL_RETURN_FUND_INC_; and the other names are None
The code is MNCUSA; the name is ZYGO_CORP_; and the other names are None
The code is MNCUSA; the name is ZYMOGENETICS_INC_; and the other names are None
The code is MNCUSA; the name is ABBOTT_LABORATORIES_; and the other names are None
The code is MNCUSAHLH; the name is CONOCOPHILLIPS_; and the other names are None
The code is MNCUSA; the name is EARL_SLACK_; and the other names are None
The code is MNCUSA;; the name is EXXON_; and the other names are None
The code is MNCUSA;; the name is HALLIBURTON_; and the other names are None
The code is MNCUSA; the name is OCCIDENTAL_LTD_; and the other names are None
The code is MNCUSA;; the name is OCCIDENTAL_PETROLEUM_; and the other names are None
The code is MNCUSA; the name is TEXAS_INSTRUMENTS_; and the other names are None
In [2]:
!pwd
/Users/linwood/projects/gdeltPyR/notebook
In [10]:
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-10-6b6b1fdf5eac> in <module>()
----> 1 from . gdelt import gdelt
ModuleNotFoundError: No module named '__main__.gdelt'; '__main__' is not a package
In [12]:
import numpy as np
from dateutil.parser import parse
dateString = ['20160505', '20160507', '20160506']
if not (np.all(list(
map(
lambda x: x > parse('2013 04 01'), list(
map(
parse, dateString)))))):
answer= (list(
map(lambda x: base + x + ".zip" if parse(
x).date() < parse(
'2013 04 01').date() else base + x + caboose,
dateString)))
In [15]:
(np.all(list(
map(
lambda x: x > parse('2013 04 01'), list(
map(
parse, dateString))))))
Out[15]:
True
In [28]:
import requests
import pandas as pd
import io
r = requests.get('http://data.gdeltproject.org/gdeltv2_cloudvision/20170528021500.imagetags.csv.gz')
data = io.BytesIO(r.content)
df = pd.read_csv(data,compression='gzip',sep='\t',header=None)
In [9]:
d ='''GKGRECORDID STRING NULLABLE
Describe this field...
DATE INTEGER NULLABLE
Describe this field...
SourceCollectionIdentifier INTEGER NULLABLE
Describe this field...
SourceCommonName STRING NULLABLE
Describe this field...
DocumentIdentifier STRING NULLABLE
Describe this field...
Counts STRING NULLABLE
Describe this field...
V2Counts STRING NULLABLE
Describe this field...
Themes STRING NULLABLE
Describe this field...
V2Themes STRING NULLABLE
Describe this field...
Locations STRING NULLABLE
Describe this field...
V2Locations STRING NULLABLE
Describe this field...
Persons STRING NULLABLE
Describe this field...
V2Persons STRING NULLABLE
Describe this field...
Organizations STRING NULLABLE
Describe this field...
V2Organizations STRING NULLABLE
Describe this field...
V2Tone STRING NULLABLE
Describe this field...
Dates STRING NULLABLE
Describe this field...
GCAM STRING NULLABLE
Describe this field...
SharingImage STRING NULLABLE
Describe this field...
RelatedImages STRING NULLABLE
Describe this field...
SocialImageEmbeds STRING NULLABLE
Describe this field...
SocialVideoEmbeds STRING NULLABLE
Describe this field...
Quotations STRING NULLABLE
Describe this field...
AllNames STRING NULLABLE
Describe this field...
Amounts STRING NULLABLE
Describe this field...
TranslationInfo STRING NULLABLE
Describe this field...
Extras STRING NULLABLE
Describe this field...'''
In [25]:
import csv
for l in d.strip().split('\n'):
print (", ".join(l.strip(" ").split()))
break
# with open('iatvheaders.csv','wb') as f:
# spamwriter = csv.writer(delimiter=',')
GKGRECORDID, STRING, NULLABLE
In [36]:
df.ix[24][11]
Out[36]:
'{ "responses": [ { "labelAnnotations": [ { "mid": "/m/07bsy", "description": "transport", "score": 0.87030876 }, { "mid": "/m/0k4j", "description": "car", "score": 0.8695595 }, { "mid": "/m/079bkr", "description": "mode of transport", "score": 0.8423645 }, { "mid": "/m/0btp2", "description": "traffic", "score": 0.8193224 }, { "mid": "/m/0h8ls87", "description": "automotive exterior", "score": 0.74120593 }, { "mid": "/m/05ws7", "description": "police", "score": 0.7256743 }, { "mid": "/m/07yv9", "description": "vehicle", "score": 0.67235726 }, { "mid": "/m/04qvtq", "description": "police car", "score": 0.6050917 }, { "mid": "/m/01j0ry", "description": "traffic congestion", "score": 0.5916241 }, { "mid": "/m/0kw6d", "description": "driving", "score": 0.55533457 }, { "mid": "/m/01jp76", "description": "parking", "score": 0.5476788 }, { "mid": "/m/05zdp", "description": "public transport", "score": 0.524665 } ], "textAnnotations": [ { "locale": "en", "description": "STOP\\n", "boundingPoly": { "vertices": [ { "x": 323, "y": 362 }, { "x": 343, "y": 362 }, { "x": 343, "y": 382 }, { "x": 323, "y": 382 } ] } }, { "description": "STOP", "boundingPoly": { "vertices": [ { "x": 323, "y": 368 }, { "x": 337, "y": 362 }, { "x": 343, "y": 375 }, { "x": 329, "y": 382 } ] } } ], "safeSearchAnnotation": { "adult": "VERY_UNLIKELY", "spoof": "VERY_UNLIKELY", "medical": "VERY_UNLIKELY", "violence": "UNLIKELY" }, "imagePropertiesAnnotation": { "dominantColors": { "colors": [ { "color": { "red": 173, "green": 202, "blue": 235 }, "score": 0.15339078, "pixelFraction": 0.09334071 }, { "color": { "red": 44, "green": 73, "blue": 201 }, "score": 0.09750687, "pixelFraction": 0.0030437189 }, { "color": { "red": 10, "green": 58, "blue": 221 }, "score": 0.06274817, "pixelFraction": 0.0012912747 }, { "color": { "red": 23, "green": 41, "blue": 137 }, "score": 0.038400717, "pixelFraction": 0.0026747833 }, { "color": { "red": 34, "green": 51, "blue": 77 }, "score": 0.035877068, "pixelFraction": 0.08697657 }, { "color": { "red": 5, "green": 23, "blue": 76 }, "score": 0.02561437, "pixelFraction": 0.007009777 }, { "color": { "red": 50, "green": 79, "blue": 167 }, "score": 0.024357548, "pixelFraction": 0.0022136138 }, { "color": { "red": 105, "green": 238, "blue": 255 }, "score": 0.011636046, "pixelFraction": 0.00055340346 }, { "color": { "red": 152, "green": 115, "blue": 121 }, "score": 0.0039490145, "pixelFraction": 0.0030437189 }, { "color": { "red": 237, "green": 186, "blue": 161 }, "score": 0.0025027029, "pixelFraction": 0.0007378712 } ] } }, "cropHintsAnnotation": { "cropHints": [ { "boundingPoly": { "vertices": [ {}, { "x": 683 }, { "x": 683, "y": 382 }, { "y": 382 } ] }, "confidence": 0.79999995, "importanceFraction": 1 } ] }, "fullTextAnnotation": { "pages": [ { "property": { "detectedLanguages": [ { "languageCode": "en" } ] }, "width": 684, "height": 383, "blocks": [ { "property": { "detectedLanguages": [ { "languageCode": "en" } ] }, "boundingBox": { "vertices": [ { "x": 323, "y": 368 }, { "x": 337, "y": 362 }, { "x": 343, "y": 375 }, { "x": 329, "y": 382 } ] }, "paragraphs": [ { "property": { "detectedLanguages": [ { "languageCode": "en" } ] }, "boundingBox": { "vertices": [ { "x": 323, "y": 362 }, { "x": 343, "y": 362 }, { "x": 343, "y": 382 }, { "x": 323, "y": 382 } ] }, "words": [ { "property": { "detectedLanguages": [ { "languageCode": "en" } ] }, "boundingBox": { "vertices": [ { "x": 323, "y": 368 }, { "x": 337, "y": 362 }, { "x": 343, "y": 375 }, { "x": 329, "y": 382 } ] }, "symbols": [ { "property": { "detectedLanguages": [ { "languageCode": "en" } ] }, "boundingBox": { "vertices": [ { "x": 323, "y": 375 }, { "x": 323, "y": 375 }, { "x": 326, "y": 382 }, { "x": 326, "y": 382 } ] }, "text": "S" }, { "property": { "detectedLanguages": [ { "languageCode": "en" } ] }, "boundingBox": { "vertices": [ { "x": 325, "y": 372 }, { "x": 328, "y": 371 }, { "x": 332, "y": 381 }, { "x": 330, "y": 382 } ] }, "text": "T" }, { "property": { "detectedLanguages": [ { "languageCode": "en" } ] }, "boundingBox": { "vertices": [ { "x": 328, "y": 368 }, { "x": 333, "y": 366 }, { "x": 338, "y": 377 }, { "x": 333, "y": 379 } ] }, "text": "O" }, { "property": { "detectedLanguages": [ { "languageCode": "en" } ], "detectedBreak": { "type": "EOL_SURE_SPACE" } }, "boundingBox": { "vertices": [ { "x": 332, "y": 364 }, { "x": 336, "y": 362 }, { "x": 341, "y": 373 }, { "x": 337, "y": 375 } ] }, "text": "P" } ] } ] } ], "blockType": "TEXT" } ] } ], "text": "STOP\\n" }, "webDetection": { "webEntities": [ { "entityId": "/m/0k4j", "score": 1.4637, "description": "Car" }, { "entityId": "/m/0btp2", "score": 0.89082015, "description": "Traffic" }, { "entityId": "/m/04qvtq", "score": 0.8614043, "description": "Police car" }, { "entityId": "/m/05ws7", "score": 0.6454416, "description": "Police" }, { "entityId": "/m/01j0ry", "score": 0.55979913, "description": "Traffic congestion" }, { "entityId": "/m/0kw6d", "score": 0.55037373, "description": "Driving" }, { "entityId": "/m/05zdp", "score": 0.47966304, "description": "Public transport" }, { "entityId": "/m/07bsy", "score": 0.32911, "description": "Transport" } ], "visuallySimilarImages": [ { "url": "https://icantrelaxingreece.files.wordpress.com/2014/08/greek-police.jpg?w=620&h=290&crop=1" }, { "url": "http://i-cdn.embed.ly/1/display/crop?height=300&key=fd92ebbc52fc43fb98f69e50e7893c13&url=http%3A%2F%2Fstatic-31.sinclairstoryline.com%2Fresources%2Fmedia%2Fc8de83e6-ed39-482b-9424-d99cc186e41e-large16x9_1107shooting.JPG%3F1478560732883&width=636" }, { "url": "https://i.ytimg.com/vi/TQ51DXm1yyY/maxresdefault.jpg" }, { "url": "https://www.flhsmv.gov/fhp/photogallery/2007/images/PG072307b.jpg" }, { "url": "http://i.cdn.turner.com/cnn/interactive/2015/01/us/police-encounter-videos/media/buffalo.jpg" }, { "url": "http://dfcxhju327sj9.cloudfront.net/wp-content/uploads/2014/03/Police-Car-003.jpg" }, { "url": "http://wpmedia.news.nationalpost.com/2014/02/police2.jpg?quality=75&strip=all&w=620" }, { "url": "http://media.graytvinc.com/images/690*388/vlcsnap-2017-02-04-19h30m52s513.png" }, { "url": "http://library.autotheftblog.com/wp-content/uploads/2015/11/d350.jpg" }, { "url": "https://resources.stuff.co.nz/content/dam/images/1/5/q/g/o/z/image.related.StuffLandscapeSixteenByNine.620x349.15qgaw.png/1436402691150.jpg" }, { "url": "https://s3.amazonaws.com/carmudi-blogs/carmudi-ph/wp-content/uploads/2017/04/21101230/twittercom.jpg" }, { "url": "http://www.dw.com/image/36000175_304.jpg" }, { "url": "https://resources.stuff.co.nz/content/dam/images/1/7/k/g/6/z/image.related.StuffLandscapeSixteenByNine.620x349.17lam0.png/1445334897839.jpg" }, { "url": "https://media.clickondetroit.com/photo/2017/03/17/Police%20raid%20party%20on%20Fort%20Street_1489807916519_9165807_ver1.0_640_360.jpg" }, { "url": "http://thedailynews.cc/wp-content/uploads/2012/03/loc-0321-cs-New-Belding-Police-Car-1-e1332342576741.jpg" }, { "url": "http://daltonpdblog.typepad.com/.a/6a00d83452285f69e2019103392e5d970c-pi" } ] } } ], "ImageProperties": { "FetchURL": "http://KHNL.images.worldnow.com/images/13998148_G.jpg", "FinalResolvedURL": "http://KHNL.images.worldnow.com/images/13998148_G.jpg", "FirstSeenTimestamp": 20170528013000, "SourceArticleURL": "http://www.hawaiinewsnow.com/story/35533470/hpd-raids-suspected-pearl-city-gambling-den-machines-confiscated", "ImageURLNormalized": "images/13998148_G", "LangHints": "", "Filesize": 52381, "Width": 684, "Height": 383, "MD5": "bcf4cae1b5385308f8beef987d8e9ddb", "AHash": "FC0C04E3802931F0", "DHash": "1814C4452A21654F", "PHash": "CEB0801AE008400C", "TriHashSignificantValues": 35, "TriHashNonZeroBits": 68, "GreyToneCount": 32 }, "EXIF": {"XMP:XMP-rdf:Document:Main:About": "uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b", "EXIF:IFD0:Author:Main:Artist": "Ancheta, Dillon", "File:Image:Main:BitsPerSample": "8", "File:Image:Main:ColorComponents": "3", "EXIF:ExifIFD:Time:Main:CreateDate": "2017:05:27 14:03:06", "XMP:XMP-xmp:Time:Main:Copy1:CreateDate": "2017:05:27 14:03:06.403", "XMP:XMP-dc:Author:Main:Creator": "Ancheta, Dillon", "EXIF:ExifIFD:Time:Main:DateTimeOriginal": "2017:05:27 14:03:06", "File:Image:Main:EncodingProcess": "Baseline DCT, Huffman coding", "File:Image:Main:ExifByteOrder": "Big-endian (Motorola, MM)", "ExifTool:Main:ExifToolVersion": "10.20", "File:System:Image:Main:FileSize": "51 kB", "File:Image:Main:FileType": "JPEG", "File:Image:Main:FileTypeExtension": "jpg", "File:Image:Main:ImageHeight": "383", "Composite:Image:Main:ImageSize": "684x383", "File:Image:Main:ImageWidth": "684", "JFIF:Image:Main:JFIFVersion": "1.01", "File:Image:Main:MIMEType": "image/jpeg", "Composite:Image:Main:Megapixels": "0.262", "EXIF:IFD0:Image:Main:Padding": "[BINARYDATA:BYTES=2060]", "EXIF:ExifIFD:Image:Main:Copy1:Padding": "[BINARYDATA:BYTES=2060]", "JFIF:Image:Main:ResolutionUnit": "inches", "Composite:Time:Main:SubSecCreateDate": "2017:05:27 14:03:06.40", "Composite:Time:Main:SubSecDateTimeOriginal": "2017:05:27 14:03:06.40", "EXIF:ExifIFD:Time:Main:SubSecTimeDigitized": "40", "EXIF:ExifIFD:Time:Main:SubSecTimeOriginal": "40", "EXIF:IFD0:Author:Main:XPAuthor": "Ancheta, Dillon", "JFIF:Image:Main:XResolution": "96", "File:Image:Main:YCbCrSubSampling": "YCbCr4:2:0 (2 2)", "JFIF:Image:Main:YResolution": "96"} }'
In [35]:
df
Out[35]:
0
1
2
3
4
5
6
7
8
9
10
11
0
20170528013000
http://giaoduc.net.vn/Giao-duc-24h/Tac-dong-cu...
http://img.giaoduc.net.vn/Uploaded/vuongthuy/2...
public speaking<FIELD>0.9559472<FIELD>/m/068k4...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.99853504<FIELD>-7.678266<FIELD>-28.742496<FI...
NaN
zh-CN,en,zh-TW,vi
562,374
{ "responses": [ { "faceAnnotations": [ { "bou...
1
20170528013000
http://giaoduc.net.vn/Giao-duc-24h/Tac-dong-cu...
http://img.giaoduc.net.vn/w500/Uploaded/vuongt...
public speaking<FIELD>0.95897806<FIELD>/m/068k...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.99647635<FIELD>-7.78043<FIELD>-29.168629<FIE...
NaN
zh-CN,en,zh-TW,vi
500,333
{ "responses": [ { "faceAnnotations": [ { "bou...
2
20170528013000
http://www.ole.com.ar/futbol-primera/Huracan-B...
http://www.ole.com.ar/futbol-primera/fotos-Hur...
player<FIELD>0.94173044<FIELD>/m/02vzx9<RECORD...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
NaN
BBVA\nBBNA BB\nBBVA\n<RECORD>BBVA<RECORD>BBNA<...
en,es,sr
660,385
{ "responses": [ { "labelAnnotations": [ { "mi...
3
20170528013000
http://www.horacero.com.mx/nacional/cns-analiz...
http://www.horacero.com.mx/wp-content/uploads/...
person<FIELD>0.8971223<FIELD>/m/01g317<RECORD>...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.5939891<FIELD>11.807354<FIELD>-55.88877<FIEL...
NaN
en,es
1098,697
{ "responses": [ { "faceAnnotations": [ { "bou...
4
20170528013000
http://www.yenisafak.com/gundem/ilk-iftari-coc...
http://yenisafak.feo.doracdn.com/resize/47uQuf...
lunch<FIELD>0.8349762<FIELD>/m/0jfd5<RECORD>me...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.8702682<FIELD>6.4371424<FIELD>49.38917<FIELD...
NaN
en,tr
600,336
{ "responses": [ { "faceAnnotations": [ { "bou...
5
20170528013000
http://www.yenisafak.com/gundem/ilk-iftari-coc...
http://yenisafak.feo.doracdn.com/resize/47uQuf...
lunch<FIELD>0.8054063<FIELD>/m/0jfd5<RECORD>me...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.64316535<FIELD>6.295055<FIELD>48.02636<FIELD...
NaN
en,tr
480,269
{ "responses": [ { "faceAnnotations": [ { "bou...
6
20170528013000
http://fenix951.com.ar/nuevo_2013/noticia.php?...
http://www.fenix951.com.ar/nuevo_2013/imagenes...
hair<FIELD>0.97114366<FIELD>/m/03q69<RECORD>hu...
NaN
NaN
0<FIELD>-1<FIELD>0<FIELD>0.5
0.90507096<FIELD>-3.0112946<FIELD>13.699397<FI...
o\na a\n<RECORD>o<RECORD>a<RECORD>a
en,es
760,450
{ "responses": [ { "faceAnnotations": [ { "bou...
7
20170528013000
http://www.vanguardia.com.mx/articulo/un-polic...
http://image.vanguardia.com.mx/sites/default/f...
police<FIELD>0.83474565<FIELD>/m/05ws7<RECORD>...
NaN
Policia Federal<FIELD>0.20523158<FIELD>/g/1ptx...
0<FIELD>0<FIELD>0<FIELD>0
0.51180035<FIELD>-1.8241434<FIELD>14.286311<FI...
POLICIA FEDERAL\n14834\nPOLICIA\n14834\nSSP\nP...
en,es
2048,1360
{ "responses": [ { "faceAnnotations": [ { "bou...
8
20170528013000
http://www.aleqtisady.com/world/tw-885162
http://www.aleqtisady.com/temp/resized/medium_...
person<FIELD>0.92755556<FIELD>/m/01g317<RECORD...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.9317069<FIELD>5.359557<FIELD>15.516358<FIELD...
NaN
en,ar
700,450
{ "responses": [ { "faceAnnotations": [ { "bou...
9
20170528013000
http://www.vanguardia.com.mx/articulo/un-polic...
http://image.vanguardia.com.mx/sites/default/f...
police<FIELD>0.82246053<FIELD>/m/05ws7<RECORD>...
NaN
Policia Federal<FIELD>0.20459506<FIELD>/g/1ptx...
0<FIELD>0<FIELD>0<FIELD>0
0.5139322<FIELD>-2.3561645<FIELD>14.886037<FIE...
POLICIA FEDERAL\n14834\nPOLICIA\nPOLICIA\n<REC...
en,es
2048,1360
{ "responses": [ { "faceAnnotations": [ { "bou...
10
20170528013000
http://www.elhadas.com/World-News/136700/%D9%8...
http://www.elhadas.com/temp/resized/medium_201...
soldier<FIELD>0.5699659<FIELD>/m/099md<RECORD>...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
NaN
ding\n<RECORD>ding
en,fr,ar
700,450
{ "responses": [ { "labelAnnotations": [ { "mi...
11
20170528013000
http://fenix951.com.ar/nuevo_2013/noticia.php?...
http://fenix951.com.ar/Nuevo_2013/imagenes/791...
hair<FIELD>0.97114366<FIELD>/m/03q69<RECORD>hu...
NaN
NaN
0<FIELD>-1<FIELD>0<FIELD>0.5
0.90507096<FIELD>-3.0112946<FIELD>13.699397<FI...
o\na a\n<RECORD>o<RECORD>a<RECORD>a
en,es
760,450
{ "responses": [ { "faceAnnotations": [ { "bou...
12
20170528013000
http://economia.estadao.com.br/noticias/geral,...
http://img.estadao.com.br/resources/jpg/5/0/14...
community<FIELD>0.6526982<FIELD>/m/01qls
NaN
NaN
0<FIELD>-1<FIELD>0<FIELD>0
NaN
CUBS\n<RECORD>CUBS
pt,en
932,622
{ "responses": [ { "labelAnnotations": [ { "mi...
13
20170528013000
http://www.nvinoticias.com/nota/60109/pistoler...
http://www.nvinoticias.com/sites/default/files...
firearm<FIELD>0.85703146<FIELD>/m/034qg<RECORD...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
NaN
NaN
en,es
784,441
{ "responses": [ { "labelAnnotations": [ { "mi...
14
20170528013000
http://economia.estadao.com.br/noticias/geral,...
http://img.estadao.com.br/fotos/crop/320x300/r...
community<FIELD>0.65504366<FIELD>/m/01qls<RECO...
NaN
JBS<FIELD>0.14776382<FIELD>/g/11b824yfls
0<FIELD>-1<FIELD>-1<FIELD>0
0.5630682<FIELD>3.6550674<FIELD>-0.63997346<FI...
UBS\n<RECORD>UBS
pt,en
320,300
{ "responses": [ { "faceAnnotations": [ { "bou...
15
20170528013000
http://www.storm.mg/article/271811
http://image.cache.storm.mg/styles/smg-800x533...
person<FIELD>0.9346294<FIELD>/m/01g317<RECORD>...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.99998355<FIELD>3.884472<FIELD>-14.115643<FIE...
NaN
zh-CN,en,zh-TW
800,533
{ "responses": [ { "faceAnnotations": [ { "bou...
16
20170528013000
http://www.nvinoticias.com/nota/60109/pistoler...
http://www.nvinoticias.com/sites/default/files...
firearm<FIELD>0.86737<FIELD>/m/034qg<RECORD>we...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
NaN
NaN
en,es
1144,645
{ "responses": [ { "labelAnnotations": [ { "mi...
17
20170528013000
http://www.futebol365.pt/artigo/171033-franca-...
http://media.futebol365.pt/cache/79/94/799439e...
player<FIELD>0.95068234<FIELD>/m/02vzx9<RECORD...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.5386669<FIELD>13.986543<FIELD>29.224176<FIEL...
NaN
pt,en,fr
600,450
{ "responses": [ { "faceAnnotations": [ { "bou...
18
20170528013000
http://ictnews.vn/kinh-doanh/doanh-nghiep/me-c...
http://image1.ictnews.vn/_Files/2017/05/28/456...
person<FIELD>0.92342377<FIELD>/m/01g317<RECORD...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.9999995<FIELD>16.630604<FIELD>10.017923<FIEL...
NaN
en,vi
690,517
{ "responses": [ { "faceAnnotations": [ { "bou...
19
20170528013000
http://www.futebol365.pt/artigo/171033-franca-...
http://media.futebol365.pt/images/photos/1a_23...
player<FIELD>0.9509038<FIELD>/m/02vzx9<RECORD>...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.5666879<FIELD>14.2916155<FIELD>29.121655<FIE...
NaN
pt,en,fr
600,450
{ "responses": [ { "faceAnnotations": [ { "bou...
20
20170528013000
http://house.qingdaonews.com/ershou/zulinlist/...
http://pic.qingdaonews.com/album/1348/2694865/...
property<FIELD>0.90796655<FIELD>/m/05wrt<RECOR...
NaN
NaN
-1<FIELD>-1<FIELD>0<FIELD>-1
NaN
NaN
zh-CN,en,zh-TW
600,370
{ "responses": [ { "labelAnnotations": [ { "mi...
21
20170528013000
http://house.qingdaonews.com/ershou/zulinlist/...
http://pic.qingdaonews.com/album/1348/2694865/...
furniture<FIELD>0.89286816<FIELD>/m/0c_jw<RECO...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
NaN
QingDao News'com\n<RECORD>QingDao<RECORD>News'com
zh-CN,en,zh-TW
600,370
{ "responses": [ { "labelAnnotations": [ { "mi...
22
20170528013000
http://maharashtratimes.indiatimes.com/editori...
http://m.maharashtratimes.com/thumb/msid-58870...
planet<FIELD>0.863019<FIELD>/m/05qc_<RECORD>ea...
NaN
Environmental health<FIELD>0.46538442<FIELD>/m...
0<FIELD>-1<FIELD>0<FIELD>0
NaN
NaN
en,mr,ar
350,262
{ "responses": [ { "logoAnnotations": [ { "mid...
23
20170528013000
http://house.qingdaonews.com/ershou/zulinlist/...
http://pic.qingdaonews.com/album/1348/2694865/...
property<FIELD>0.90748274<FIELD>/m/05wrt<RECOR...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
NaN
Lla\n<RECORD>Lla
zh-CN,en,zh-TW
600,370
{ "responses": [ { "labelAnnotations": [ { "mi...
24
20170528013000
http://www.hawaiinewsnow.com/story/35533470/hp...
http://KHNL.images.worldnow.com/images/1399814...
transport<FIELD>0.87030876<FIELD>/m/07bsy<RECO...
NaN
NaN
-1<FIELD>0<FIELD>0<FIELD>0
NaN
STOP\n<RECORD>STOP
NaN
684,383
{ "responses": [ { "labelAnnotations": [ { "mi...
25
20170528013000
http://www.tgcom24.mediaset.it/televisione/il-...
http://img2.tgcom24.mediaset.it/binary/articol...
blue<FIELD>0.8997857<FIELD>/m/01g5v<RECORD>mus...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.99595773<FIELD>21.69399<FIELD>-9.92652<FIELD...
NaN
en,de,it
1287,724
{ "responses": [ { "faceAnnotations": [ { "bou...
26
20170528013000
http://www.nextbigfuture.com/2017/05/alphago-w...
http://www.nextbigfuture.com/wp-content/upload...
text<FIELD>0.92040503<FIELD>/m/07s6nbt<RECORD>...
NaN
NaN
0<FIELD>-1<FIELD>0<FIELD>0
NaN
THE ULTIMATE GO CHALLENGE\nGAME 3 OF 3\n27 MAY...
NaN
1024,512
{ "responses": [ { "labelAnnotations": [ { "mi...
27
20170528013000
http://detroit.cbslocal.com/2017/05/27/trumps-...
https://cbsdetroit.files.wordpress.com/2013/04...
water<FIELD>0.86196417<FIELD>/m/0838f<RECORD>r...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
NaN
nhilmiimimum\n9876\n<RECORD>nhilmiimimum<RECOR...
NaN
424,283
{ "responses": [ { "labelAnnotations": [ { "mi...
28
20170528013000
http://www.yenisafak.com/ekonomi/bankalar-vade...
http://yenisafak.feo.doracdn.com/resize/47uQuf...
cash<FIELD>0.90507513<FIELD>/m/0fd6q<RECORD>mo...
NaN
NaN
0<FIELD>-1<FIELD>0<FIELD>0
NaN
NaN
en,tr
600,336
{ "responses": [ { "labelAnnotations": [ { "mi...
29
20170528013000
http://www.univision.com/noticias/casa-blanca/...
http://cdn3.uvnimg.com/f6/ad/fedaaaf4485a9a0e2...
brand<FIELD>0.5969167<FIELD>/m/01cd9<RECORD>pr...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.96131897<FIELD>-5.9546065<FIELD>-8.563843<FI...
The White House\nLike This Page\n9 hrs\no\nFir...
en,fr,de,es
2446,1168
{ "responses": [ { "faceAnnotations": [ { "bou...
...
...
...
...
...
...
...
...
...
...
...
...
...
2706
20170528014500
http://helenair.com/lifestyles/food-and-cookin...
http://bloximages.chicago2.vip.townnews.com/he...
formula one<FIELD>0.9468476<FIELD>/m/02xz2<REC...
NaN
NaN
-1<FIELD>0<FIELD>0<FIELD>0
0.9722175<FIELD>3.4684334<FIELD>-30.233995<FIE...
,00\u4ec1\u532f\u25a0 Ep:\u6533iilEliiilwm lli...
NaN
779,438
{ "responses": [ { "faceAnnotations": [ { "bou...
2707
20170528014500
http://helenair.com/lifestyles/food-and-cookin...
http://bloximages.chicago2.vip.townnews.com/he...
city<FIELD>0.8330416<FIELD>/m/01n32<RECORD>tex...
NaN
NaN
-1<FIELD>0<FIELD>0<FIELD>0
NaN
NaN
NaN
779,438
{ "responses": [ { "labelAnnotations": [ { "mi...
2708
20170528014500
http://theliberal.ie/can-you-help-paula-dougla...
http://theliberal.ie/wp-content/uploads/2017/0...
person<FIELD>0.89805114<FIELD>/m/01g317<RECORD...
NaN
NaN
-1<FIELD>0<FIELD>0<FIELD>0
0.97381437<FIELD>6.7179213<FIELD>26.724428<FIE...
findmyirishbirthmom@gmail.com\nRPE O\n<RECORD>...
NaN
576,324
{ "responses": [ { "faceAnnotations": [ { "bou...
2709
20170528014500
http://www.noticierodigital.com/forum/viewtopi...
http://www.noticierodigital.com/cms/wp-content...
person<FIELD>0.9133298<FIELD>/m/01g317<RECORD>...
NaN
NaN
0<FIELD>-1<FIELD>0<FIELD>0
0.72201484<FIELD>5.3208337<FIELD>37.320824<FIE...
NaN
en,es
620,420
{ "responses": [ { "faceAnnotations": [ { "bou...
2710
20170528014500
http://news.abs-cbn.com/overseas/05/28/17/2-me...
http://sa.kapamilya.com/absnews/abscbnnews/med...
hair<FIELD>0.9602877<FIELD>/m/03q69<RECORD>fac...
NaN
NaN
-1<FIELD>-1<FIELD>-1<FIELD>0
0.99999994<FIELD>-1.1289216<FIELD>0.35918713<F...
NaN
NaN
950,633
{ "responses": [ { "faceAnnotations": [ { "bou...
2711
20170528014500
http://helenair.com/lifestyles/food-and-cookin...
http://bloximages.chicago2.vip.townnews.com/he...
stone carving<FIELD>0.89095306<FIELD>/m/02wtjj...
NaN
NaN
-1<FIELD>-1<FIELD>0<FIELD>0
NaN
NaN
NaN
779,438
{ "responses": [ { "labelAnnotations": [ { "mi...
2712
20170528014500
https://www.nst.com.my/opinion/columnists/2017...
https://assets.nst.com.my/images/articles/Copy...
human action<FIELD>0.95992523<FIELD>/m/07p82rh...
NaN
NaN
-1<FIELD>0.5<FIELD>0<FIELD>-1
NaN
NaN
en,ms
1200,630
{ "responses": [ { "labelAnnotations": [ { "mi...
2713
20170528014500
http://baotintuc.vn/van-de-quan-tam/bao-dong-t...
http://media.baotintuc.vn/2017/05/24/08/45/sat...
fishing<FIELD>0.5764499<FIELD>/m/094jc<RECORD>...
NaN
NaN
-1<FIELD>0<FIELD>0<FIELD>0
NaN
NaN
en,vi
500,333
{ "responses": [ { "labelAnnotations": [ { "mi...
2714
20170528014500
http://www.dailyamerican.com/news/politics/tex...
http://bloximages.newyork1.vip.townnews.com/da...
speech<FIELD>0.92246836<FIELD>/m/09x0r<RECORD>...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.99109834<FIELD>-5.093544<FIELD>9.038483<FIEL...
su\n*,*,* ' \ub1e8\nA\u2605 \u2605 \u2605\n<RE...
NaN
512,347
{ "responses": [ { "faceAnnotations": [ { "bou...
2715
20170528014500
http://www.journal-news.com/news/flood-victims...
http://www.journal-news.com/rf/image_md/Pub/p8...
community<FIELD>0.6718101<FIELD>/m/01qls<RECOR...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.9769787<FIELD>-3.9626703<FIELD>12.331754<FIE...
NaN
NaN
400,300
{ "responses": [ { "faceAnnotations": [ { "bou...
2716
20170528014500
http://globovision.com/article/exdictador-nori...
http://imgs.globovision.com/9XFS1Sh2Gxqex-n2Yt...
team<FIELD>0.6512124<FIELD>/m/011l78
NaN
NaN
-1<FIELD>0<FIELD>0<FIELD>0
0.6117975<FIELD>1.090917<FIELD>14.670405<FIELD...
NaN
en,es
847,477
{ "responses": [ { "faceAnnotations": [ { "bou...
2717
20170528014500
http://lajornadasanluis.com.mx/destacada/detie...
http://lajornadasanluis.com.mx/wp-content/uplo...
crowd<FIELD>0.97660077<FIELD>/m/03qtwd<RECORD>...
NaN
NaN
-1<FIELD>0<FIELD>0<FIELD>0
0.6980289<FIELD>-12.469715<FIELD>-45.906677<FI...
NaN
en,es
626,417
{ "responses": [ { "faceAnnotations": [ { "bou...
2718
20170528014500
http://health.liputan6.com/read/2967939/tetap-...
http://cdn0-a.production.liputan6.static6.com/...
human action<FIELD>0.9490563<FIELD>/m/07p82rh<...
NaN
NaN
-1<FIELD>0<FIELD>0<FIELD>0
0.9886776<FIELD>14.415768<FIELD>4.001395<FIELD...
NaN
en,id
673,373
{ "responses": [ { "faceAnnotations": [ { "bou...
2719
20170528014500
http://globovision.com/article/exdictador-nori...
http://imgs.globovision.com/Xv36lLzA4Zm3RxsuNF...
team<FIELD>0.65604377<FIELD>/m/011l78<RECORD>o...
NaN
NaN
-1<FIELD>0<FIELD>0<FIELD>0
0.6025366<FIELD>0.9583914<FIELD>9.017498<FIELD...
NaN
en,es
600,338
{ "responses": [ { "faceAnnotations": [ { "bou...
2720
20170528014500
http://www.source-7.com/As-Swdyh/634162.html
http://www.source-7.com/temp/resized/medium_20...
musician<FIELD>0.81005603<FIELD>/m/09jwl<RECOR...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
NaN
NaN
en,ar
700,450
{ "responses": [ { "labelAnnotations": [ { "mi...
2721
20170528014500
https://www.thestar.com/news/world/2017/05/27/...
https://www.thestar.com/content/dam/thestar/ne...
performance<FIELD>0.90748334<FIELD>/m/01gq53<R...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.94505394<FIELD>-16.32167<FIELD>38.104927<FIE...
NaN
NaN
1200,851
{ "responses": [ { "faceAnnotations": [ { "bou...
2722
20170528014500
http://www.dailymail.co.uk/tvshowbiz/article-4...
http://i.dailymail.co.uk/i/pix/2017/05/28/00/4...
hair<FIELD>0.93618035<FIELD>/m/03q69<RECORD>fa...
NaN
NaN
0<FIELD>0<FIELD>-1<FIELD>0
0.9831945<FIELD>3.6301806<FIELD>11.094673<FIEL...
O iPix211\n<RECORD>O<RECORD>iPix211
NaN
634,970
{ "responses": [ { "faceAnnotations": [ { "bou...
2723
20170528014500
http://www.dailymail.co.uk/tvshowbiz/article-4...
http://i.dailymail.co.uk/i/pix/2017/05/28/01/4...
hair<FIELD>0.9751342<FIELD>/m/03q69<RECORD>hai...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.8251672<FIELD>-3.57391<FIELD>3.5105233<FIELD...
NaN
NaN
636,382
{ "responses": [ { "faceAnnotations": [ { "bou...
2724
20170528014500
http://www.dailymail.co.uk/tvshowbiz/article-4...
http://i.dailymail.co.uk/i/pix/2017/05/28/01/4...
hair<FIELD>0.9746861<FIELD>/m/03q69<RECORD>per...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
0.9985707<FIELD>0.17592672<FIELD>-2.8633885<FI...
NaN
NaN
1908,1146
{ "responses": [ { "faceAnnotations": [ { "bou...
2725
20170528014500
http://www.dailymail.co.uk/tvshowbiz/article-4...
http://i.dailymail.co.uk/i/pix/2017/05/28/00/4...
hair<FIELD>0.9543737<FIELD>/m/03q69<RECORD>clo...
NaN
NaN
0<FIELD>0<FIELD>-1<FIELD>0
0.98270667<FIELD>-4.8400717<FIELD>14.785814<FI...
\ufffd iPix211\n<RECORD>\ufffd<RECORD>iPix211
NaN
634,1296
{ "responses": [ { "faceAnnotations": [ { "bou...
2726
20170528014500
http://www.dailymail.co.uk/tvshowbiz/article-4...
http://i.dailymail.co.uk/i/pix/2017/05/28/00/4...
clothing<FIELD>0.9017568<FIELD>/m/09j2d<RECORD...
NaN
NaN
0<FIELD>0<FIELD>-1<FIELD>-1
0.58002996<FIELD>-0.71319866<FIELD>-3.4116998<...
worse m\n<RECORD>worse<RECORD>m
NaN
634,979
{ "responses": [ { "faceAnnotations": [ { "bou...
2727
20170528014500
http://www.dailymail.co.uk/tvshowbiz/article-4...
http://i.dailymail.co.uk/i/pix/2017/05/28/00/4...
fashion<FIELD>0.627963<FIELD>/m/032tl
NaN
NaN
0<FIELD>0<FIELD>-1<FIELD>0
0.999986<FIELD>-4.710405<FIELD>4.8086815<FIELD...
All Access Photo Splash News\n<RECORD>All<RECO...
NaN
634,951
{ "responses": [ { "faceAnnotations": [ { "bou...
2728
20170528014500
http://www.dailymail.co.uk/tvshowbiz/article-4...
http://i.dailymail.co.uk/i/pix/2017/05/28/00/4...
clothing<FIELD>0.90442944<FIELD>/m/09j2d<RECOR...
NaN
NaN
-1<FIELD>0<FIELD>0<FIELD>0
0.998587<FIELD>-0.068537615<FIELD>-2.3363955<F...
\ufffd startraks Photo/REX/Shutterstock\n<RECO...
NaN
634,941
{ "responses": [ { "faceAnnotations": [ { "bou...
2729
20170528014500
https://rg.ru/2017/05/28/v-iuzhnoj-koree-nacha...
http://cdnimg.rg.ru/img/content/140/83/14/mun_...
ceremony<FIELD>0.65913576<FIELD>/m/016c4t<RECO...
NaN
NaN
-1<FIELD>0<FIELD>0<FIELD>0
0.91946614<FIELD>4.603237<FIELD>-9.320389<FIEL...
NaN
en,ru
650,433
{ "responses": [ { "faceAnnotations": [ { "bou...
2730
20170528014500
https://www.kocpc.com.tw/archives/148043
https://pic.pimg.tw/tu0925399900/1495925457-23...
mobile phone<FIELD>0.9645424<FIELD>/m/050k8<RE...
NaN
NaN
0<FIELD>-1<FIELD>0<FIELD>0
NaN
RI\nOll\nOO\nOO\n<RECORD>RI<RECORD>Oll<RECORD>...
zh-CN,en,zh-TW
600,413
{ "responses": [ { "labelAnnotations": [ { "mi...
2731
20170528014500
https://rg.ru/2017/05/28/v-iuzhnoj-koree-nacha...
http://cdnimg.rg.ru/img/content/140/83/14/mun_...
official<FIELD>0.51020384<FIELD>/m/035y33
NaN
NaN
-1<FIELD>0<FIELD>0<FIELD>0
0.96441567<FIELD>5.3498645<FIELD>-9.122228<FIE...
NaN
en,ru
1001,667
{ "responses": [ { "faceAnnotations": [ { "bou...
2732
20170528014500
https://www.kocpc.com.tw/archives/148043
https://pic.pimg.tw/tu0925399900/1495833789-30...
line<FIELD>0.7294735<FIELD>/m/03scnj<RECORD>dr...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
NaN
Flash\nArtifacts\nNoise\nExposure and contrast...
zh-CN,en,zh-TW
600,394
{ "responses": [ { "labelAnnotations": [ { "mi...
2733
20170528014500
https://www.kocpc.com.tw/archives/148043
https://pic.pimg.tw/tu0925399900/1495925319-30...
gadget<FIELD>0.6057044<FIELD>/m/02mf1n
Kaminarimon<FIELD>0.28010663<FIELD>/m/01k4r_<F...
NaN
0<FIELD>-1<FIELD>-1<FIELD>-1
NaN
NaN
zh-CN,en,zh-TW
600,450
{ "responses": [ { "landmarkAnnotations": [ { ...
2734
20170528014500
https://www.kocpc.com.tw/archives/148043
https://pic.pimg.tw/tu0925399900/1495833924-28...
fauna<FIELD>0.8455444<FIELD>/m/035qhg<RECORD>f...
NaN
NaN
0<FIELD>-1<FIELD>0<FIELD>0
NaN
\u8cc0\u798e\u798e\n\u6628\u59293:10 a\n\u5679...
zh-CN,en,zh-TW
594,600
{ "responses": [ { "labelAnnotations": [ { "mi...
2735
20170528014500
https://www.kocpc.com.tw/archives/148043
https://pic.pimg.tw/tu0925399900/1495924257-40...
text<FIELD>0.91702706<FIELD>/m/07s6nbt<RECORD>...
NaN
NaN
0<FIELD>0<FIELD>0<FIELD>0
NaN
SPEEDTEST\nPING\n2017/5/15\n13.79 16.22 21\nal...
zh-CN,en,zh-TW
337,600
{ "responses": [ { "labelAnnotations": [ { "mi...
2736 rows × 12 columns
In [ ]:
Content source: linwoodc3/gdeltPyR
Similar notebooks: