Skip to content

Instantly share code, notes, and snippets.

@AashishTiwari
Created March 24, 2017 18:28
Show Gist options
  • Save AashishTiwari/fe1345df751a1b686ea63c98a592157f to your computer and use it in GitHub Desktop.
Save AashishTiwari/fe1345df751a1b686ea63c98a592157f to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Mining Drug Recall Reasons from OpenFDA.\n",
"#### Topic Mining: Visualizing topics in text with LDA\n",
"\n",
"#### Aashish Tiwari ( **AI LAB TEAM** - Persistent Systems Ltd.)\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Table of contents\n",
"\n",
"\n",
"1. [Step 1: Environment Setup](#Step-1:-Environment-Setup)\n",
"\n",
"2. [Step 2: Data acquisition from OpenFDA](#Step-2:-Data-acquisition-from-OpenFDA)\n",
"\n",
"3. [Step 3: Data analysis](#Step-3:-Data-analysis)\n",
" - [Data discovery](#Data-discovery)\n",
" - [Text processing : tokenization](#Text-processing-:-tokenization)\n",
" - [Text processing : tf-idf](#Text-processing-:-tf-idf)\n",
"\n",
"4. [Step 4: Clustering](#Step-4:-Clustering)\n",
" - [KMeans](#KMeans)\n",
" - [Latent Dirichlet Allocation](#Latent-Dirichlet-Allocation)\n",
" - [Visualization of the topics using pyLDAvis](#Visualization-of-the-topics-using-pyLDAvis)\n",
"\n",
"5. [Step 5: Conclusion](#Step-5:-Conclusion)\n",
"\n",
"6. [Step 6: References](#Step-6:-References)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Introduction"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 1: Environment Setup"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"[[ go back to the top ]](#Table-of-contents)\n",
"\n",
"We suggest downloading the Anaconda distribution for python 3.6 from this <a href=\"https://www.continuum.io/downloads\">link</a>. This distribution wraps python with the necessary packages used in data science like Numpy, Pandas, Scipy or Scikit-learn.\n",
"\n",
"For the purpose of this tutorial we'll also have to download external packages:\n",
"\n",
"- **tqdm** (a progress bar python utility) from this command: pip install tqdm\n",
"- **nltk** (for natural language processing) from this command: conda install -c anaconda nltk=3.2.2\n",
"- **bokeh** (for interactive data viz) from this command: conda install bokeh\n",
"- **lda** (the python implementation of Latent Dirichlet Allocation) from this command: pip install lda\n",
"- **pyldavis** (python package to visualize lda topics): pip install pyldavis\n",
"\n",
"To connect to the Newsapi service you'll have to create an account at https://newsapi.org/register to get a key. It's totally free. Then you'll have to put your key in the code and run the script on your own if you want to. "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 2: Data acquisition from OpenFDA"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"[[ go back to the top ]](#Table-of-contents)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"https://open.fda.gov/downloads/\n",
"The JSON file resulting from this response download is pretty straightforward:"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"```\n",
"{\n",
" \"classification\": \"Class II\",\n",
" \"center_classification_date\": \"20170315\",\n",
" \"report_date\": \"20170322\",\n",
" \"postal_code\": \"92117-7310\",\n",
" \"recall_initiation_date\": \"20170210\",\n",
" \"recall_number\": \"D-0546-2017\",\n",
" \"city\": \"San Diego\",\n",
" \"event_id\": \"76472\",\n",
" \"distribution_pattern\": \"Nationwide within the United States\",\n",
" \"openfda\": {},\n",
" \"recalling_firm\": \"Synergy Rx\",\n",
" \"voluntary_mandated\": \"Voluntary: Firm Initiated\",\n",
" \"state\": \"CA\",\n",
" \"reason_for_recall\": \"Lack of Assurance of Sterility: There are also CGMP Deviations. \",\n",
" \"initial_firm_notification\": \"Telephone\",\n",
" \"status\": \"Ongoing\",\n",
" \"product_type\": \"Drugs\",\n",
" \"country\": \"United States\",\n",
" \"product_description\": \"VITAMIN K OXIDE 5%, HQ 4%, Rx only, Synergy RX, 4901 Morena Blvd # 504-A San Diego, CA 92117 (855) 792-6676\",\n",
" \"code_info\": \" All Lots\",\n",
" \"address_1\": \"4901 Morena Blvd Ste 504A\",\n",
" \"address_2\": \"\",\n",
" \"product_quantity\": \"\"\n",
" }\n",
"```"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's get into the code to see how to manage this data acquisition:"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# import packages\n",
"import requests\n",
"import pandas as pd\n",
"from datetime import datetime\n",
"from tqdm import tqdm\n",
"from matplotlib import pyplot as plt\n",
"import json"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def get_reason_for_recall():\n",
" all_recalls = []\n",
" with open('drug-enforcement-0001-of-0001.json') as data_file: \n",
" data = json.load(data_file)\n",
" for res in data['results']:\n",
" recalls = [uniq_reason for uniq_reason in res['reason_for_recall'].split(';')]\n",
" all_recalls.extend(recalls)\n",
" return set(all_recalls)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"number of unique reasons : 2602\n"
]
}
],
"source": [
"all_uniq_reasons = get_reason_for_recall()\n",
"print('number of unique reasons :', len(all_uniq_reasons))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now that the data has been collected, we will start anlayzing it :\n",
"\n",
"- We'll have a look at the dataset and inspect it\n",
"- We'll apply some preoprocessings on the texts: tokenization, tf-idf\n",
"- We'll cluster the articles using two different algorithms (Kmeans and LDA)\n",
"- We'll visualize the clusters using Bokeh and pyldavis"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 3: Data analysis"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"[[ go back to the top ]](#Table-of-contents)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Data discovery\n",
"[[ go back to the top ]](#Table-of-contents)"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"%matplotlib inline\n",
"# pandas for data manipulation\n",
"import pandas as pd\n",
"pd.options.mode.chained_assignment = None\n",
"# nltk for nlp\n",
"from nltk.tokenize import word_tokenize, sent_tokenize\n",
"from nltk.corpus import stopwords\n",
"# list of stopwords like articles, preposition\n",
"stop = set(stopwords.words('english'))\n",
"from string import punctuation\n",
"from collections import Counter\n",
"import re\n",
"import numpy as np"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"with open('drug-enforcement-0001-of-0001.json') as data_file: \n",
" drug_data = json.load(data_file)"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"data = pd.DataFrame.from_records(drug_data['results'])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The data is now ingested in a Pandas DataFrame.\n",
"\n",
"Let's see how it looks like."
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>address_1</th>\n",
" <th>address_2</th>\n",
" <th>center_classification_date</th>\n",
" <th>city</th>\n",
" <th>classification</th>\n",
" <th>code_info</th>\n",
" <th>country</th>\n",
" <th>distribution_pattern</th>\n",
" <th>event_id</th>\n",
" <th>initial_firm_notification</th>\n",
" <th>...</th>\n",
" <th>product_type</th>\n",
" <th>reason_for_recall</th>\n",
" <th>recall_initiation_date</th>\n",
" <th>recall_number</th>\n",
" <th>recalling_firm</th>\n",
" <th>report_date</th>\n",
" <th>state</th>\n",
" <th>status</th>\n",
" <th>termination_date</th>\n",
" <th>voluntary_mandated</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>7050 Camp Hill Rd</td>\n",
" <td></td>\n",
" <td>20120702</td>\n",
" <td>Fort Washington</td>\n",
" <td>Class III</td>\n",
" <td>Lot #CMF023, Expiration 07/13.</td>\n",
" <td>United States</td>\n",
" <td>Nationwide</td>\n",
" <td>61872</td>\n",
" <td>Letter</td>\n",
" <td>...</td>\n",
" <td>Drugs</td>\n",
" <td>Defective Container; damaged blister units</td>\n",
" <td>20120517</td>\n",
" <td>D-1404-2012</td>\n",
" <td>Mcneil Consumer Healthcare, Div Of Mcneil-ppc,...</td>\n",
" <td>20120711</td>\n",
" <td>PA</td>\n",
" <td>Terminated</td>\n",
" <td>20130411</td>\n",
" <td>Voluntary: Firm Initiated</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>600 N Field Dr Bldg J45</td>\n",
" <td></td>\n",
" <td>20120620</td>\n",
" <td>Lake Forest</td>\n",
" <td>Class III</td>\n",
" <td>Lot #: 04510KL*, Exp 01OCT2012; *lot number m...</td>\n",
" <td>United States</td>\n",
" <td>Nationwide</td>\n",
" <td>62053</td>\n",
" <td>Letter</td>\n",
" <td>...</td>\n",
" <td>Drugs</td>\n",
" <td>Superpotent (Single Ingredient) Drug: Above sp...</td>\n",
" <td>20120405</td>\n",
" <td>D-1390-2012</td>\n",
" <td>Hospira, Inc.</td>\n",
" <td>20120627</td>\n",
" <td>IL</td>\n",
" <td>Terminated</td>\n",
" <td>20130808</td>\n",
" <td>Voluntary: Firm Initiated</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>12515 E 55th St Ste 100</td>\n",
" <td></td>\n",
" <td>20120618</td>\n",
" <td>Tulsa</td>\n",
" <td>Class I</td>\n",
" <td>PTC Drug Number: 4033. PTC Batch Number: 65I...</td>\n",
" <td>United States</td>\n",
" <td>FL</td>\n",
" <td>61233</td>\n",
" <td>FAX</td>\n",
" <td>...</td>\n",
" <td>Drugs</td>\n",
" <td>Labeling: Label mix-up; Bottles labeled to con...</td>\n",
" <td>20101110</td>\n",
" <td>D-1385-2012</td>\n",
" <td>Physicians Total Care, Inc</td>\n",
" <td>20120627</td>\n",
" <td>OK</td>\n",
" <td>Terminated</td>\n",
" <td>20120724</td>\n",
" <td>Voluntary: Firm Initiated</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>150 Signet Drive</td>\n",
" <td></td>\n",
" <td>20120802</td>\n",
" <td>Toronto</td>\n",
" <td>Class II</td>\n",
" <td>Lot #s: JN1060, JN1061, JN1062, Exp 06/12</td>\n",
" <td>Canada</td>\n",
" <td>Nationwide and Puerto Rico</td>\n",
" <td>62574</td>\n",
" <td>Letter</td>\n",
" <td>...</td>\n",
" <td>Drugs</td>\n",
" <td>Presence of Particulate Matter: Lots identifi...</td>\n",
" <td>20120430</td>\n",
" <td>D-1439-2012</td>\n",
" <td>Apotex Inc.</td>\n",
" <td>20120808</td>\n",
" <td></td>\n",
" <td>Terminated</td>\n",
" <td>20130919</td>\n",
" <td>Voluntary: Firm Initiated</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>200 Somerset Corporate Blvd Fl 7th</td>\n",
" <td></td>\n",
" <td>20120731</td>\n",
" <td>Bridgewater</td>\n",
" <td>Class II</td>\n",
" <td>C201293 Exp Date 08/2013</td>\n",
" <td>United States</td>\n",
" <td>Nationwide and Puerto Rico</td>\n",
" <td>62591</td>\n",
" <td>Letter</td>\n",
" <td>...</td>\n",
" <td>Drugs</td>\n",
" <td>Adulterated Presence of Foreign Tablets: Dr. R...</td>\n",
" <td>20120409</td>\n",
" <td>D-1434-2012</td>\n",
" <td>Dr. Reddy's Laboratories, Inc.</td>\n",
" <td>20120808</td>\n",
" <td>NJ</td>\n",
" <td>Terminated</td>\n",
" <td>20130124</td>\n",
" <td>Voluntary: Firm Initiated</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>5 rows × 25 columns</p>\n",
"</div>"
],
"text/plain": [
" address_1 address_2 center_classification_date \\\n",
"0 7050 Camp Hill Rd 20120702 \n",
"1 600 N Field Dr Bldg J45 20120620 \n",
"2 12515 E 55th St Ste 100 20120618 \n",
"3 150 Signet Drive 20120802 \n",
"4 200 Somerset Corporate Blvd Fl 7th 20120731 \n",
"\n",
" city classification \\\n",
"0 Fort Washington Class III \n",
"1 Lake Forest Class III \n",
"2 Tulsa Class I \n",
"3 Toronto Class II \n",
"4 Bridgewater Class II \n",
"\n",
" code_info country \\\n",
"0 Lot #CMF023, Expiration 07/13. United States \n",
"1 Lot #: 04510KL*, Exp 01OCT2012; *lot number m... United States \n",
"2 PTC Drug Number: 4033. PTC Batch Number: 65I... United States \n",
"3 Lot #s: JN1060, JN1061, JN1062, Exp 06/12 Canada \n",
"4 C201293 Exp Date 08/2013 United States \n",
"\n",
" distribution_pattern event_id initial_firm_notification \\\n",
"0 Nationwide 61872 Letter \n",
"1 Nationwide 62053 Letter \n",
"2 FL 61233 FAX \n",
"3 Nationwide and Puerto Rico 62574 Letter \n",
"4 Nationwide and Puerto Rico 62591 Letter \n",
"\n",
" ... product_type \\\n",
"0 ... Drugs \n",
"1 ... Drugs \n",
"2 ... Drugs \n",
"3 ... Drugs \n",
"4 ... Drugs \n",
"\n",
" reason_for_recall recall_initiation_date \\\n",
"0 Defective Container; damaged blister units 20120517 \n",
"1 Superpotent (Single Ingredient) Drug: Above sp... 20120405 \n",
"2 Labeling: Label mix-up; Bottles labeled to con... 20101110 \n",
"3 Presence of Particulate Matter: Lots identifi... 20120430 \n",
"4 Adulterated Presence of Foreign Tablets: Dr. R... 20120409 \n",
"\n",
" recall_number recalling_firm \\\n",
"0 D-1404-2012 Mcneil Consumer Healthcare, Div Of Mcneil-ppc,... \n",
"1 D-1390-2012 Hospira, Inc. \n",
"2 D-1385-2012 Physicians Total Care, Inc \n",
"3 D-1439-2012 Apotex Inc. \n",
"4 D-1434-2012 Dr. Reddy's Laboratories, Inc. \n",
"\n",
" report_date state status termination_date voluntary_mandated \n",
"0 20120711 PA Terminated 20130411 Voluntary: Firm Initiated \n",
"1 20120627 IL Terminated 20130808 Voluntary: Firm Initiated \n",
"2 20120627 OK Terminated 20120724 Voluntary: Firm Initiated \n",
"3 20120808 Terminated 20130919 Voluntary: Firm Initiated \n",
"4 20120808 NJ Terminated 20130124 Voluntary: Firm Initiated \n",
"\n",
"[5 rows x 25 columns]"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"data.head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"It's cool to have all these features. In this article, we will be mainly focusing on the description column.\n",
"\n",
"Let's look at the data shape."
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"data shape: (7002, 25)\n"
]
}
],
"source": [
"print('data shape:', data.shape)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Number of Recalling Firms : 659\n"
]
}
],
"source": [
"print(\"Number of Recalling Firms : \", len(data.recalling_firm.unique()))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's check the distribution of the different categories across the dataset."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Recalling Firms with more than 20 Drug recalls"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"<matplotlib.axes._subplots.AxesSubplot at 0x24044ab5898>"
]
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAA6gAAANRCAYAAADu3JH5AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3Xm4ZVdZJ+DfR4ohJEBAoISAFENAaQJKAsR2wECrDAqI\nOECLQEPHARVbUGK3KGLbRGmkwRYEQQggBhSBkAiIoQBBEBOmhKkJEJCIQTQgkUGjq/9Y+6ZO3Zy5\nbt3adet9n2c/95x99rfXumeP395rr1OttQAAAMChdo1DXQEAAABIJKgAAACMhAQVAACAUZCgAgAA\nMAoSVAAAAEZBggoAAMAoSFABAAAYBQkqAAAAoyBBBQAAYBR2HeoKJMmNb3zjtmfPnqmf/fM//3OO\nOeaYleYnZr2Y7SxLjGW0U2O2sywx21uWGMtop8ZsZ1liLKPDIWY7yzqSYi644ILPtdZusnAmrbVD\nPpx00kltlr179878TMzWxmxnWWIso50as51lidnessRYRjs1ZjvLEmMZHQ4x21nWkRST5Py2RG6o\niS8AAACjIEEFAABgFCSoAAAAjIIEFQAAgFGQoAIAADAKElQAAABGQYIKAADAKEhQAQAAGAUJKgAA\nAKMgQQUAAGAUJKgAAACMggQVAACAUZCgAgAAMAoSVAAAAEZBggoAAMAoSFABAAAYBQkqAAAAoyBB\nBQAAYBQkqAAAAIyCBBUAAIBRkKACAAAwCrsOdQU223P6ufu9f/yJV+aRw7hLzrj/oagSAAAA28Ad\nVAAAAEZBggoAAMAoSFABAAAYBQkqAAAAoyBBBQAAYBQkqAAAAIyCBBUAAIBRkKACAAAwChJUAAAA\nRkGCCgAAwChIUAEAABgFCSoAAACjIEEFAABgFCSoAAAAjIIEFQAAgFGQoAIAADAKElQAAABGQYIK\nAADAKEhQAQAAGAUJKgAAAKMgQQUAAGAUJKgAAACMggQVAACAUZCgAgAAMAoSVAAAAEZBggoAAMAo\nSFABAAAYBQkqAAAAoyBBBQAAYBSWSlCr6pKqurCq3ltV5w/jblRVb6yqjw5/bziMr6p6VlVdXFXv\nr6q7Hsx/AAAAgJ1hlTuop7bWvrG1dvLw/vQk57XWTkhy3vA+Se6b5IRhOC3Jc7aqsgAAAOxcB9LE\n94FJzhxen5nkQRPjX9y6dyY5rqpudgDlAAAAcASo1triiao+keTyJC3Jc1trz6uqz7fWjhs+rySX\nt9aOq6pzkpzRWnvb8Nl5SZ7YWjt/0zxPS7/Dmt27d5901llnJUkuvPQL+5W9++jksi/31ycef4Ol\n/qkrrrgixx577FLTijk0ZYmxjHZqzHaWJWZ7yxJjGe3UmO0sS4xldDjEbGdZR1LMqaeeesFEa9zZ\nWmsLhyTHD39vmuR9Sb49yec3TXP58PecJN86Mf68JCfPm/9JJ53UNtzqiefsNzzrpa++6vWy9u7d\nu/S0Yg5NWWIso50as51lidnessRYRjs1ZjvLEmMZHQ4x21nWkRST5Py2RO65VBPf1tqlw9/PJnlV\nkrsnuWyj6e7w97PD5JcmueVE+C2GcQAAADDTwgS1qo6pquttvE7yXUkuSnJ2kkcMkz0iyWuG12cn\n+dGhN99TknyhtfaZLa85AAAAO8quJabZneRV/THT7Erystba66vqr5O8oqoeneSTSX5wmP5Pk9wv\nycVJvpTkUVteawAAAHachQlqa+3jSe4yZfw/JLn3lPEtyWO3pHYAAAAcMQ7kZ2YAAABgy0hQAQAA\nGAUJKgAAAKMgQQUAAGAUJKgAAACMggQVAACAUZCgAgAAMAoSVAAAAEZBggoAAMAoSFABAAAYBQkq\nAAAAoyBBBQAAYBQkqAAAAIyCBBUAAIBRkKACAAAwChJUAAAARkGCCgAAwChIUAEAABgFCSoAAACj\nIEEFAABgFHYd6gpshT2nn7vf+8efeGUeOYy75Iz7H4oqAQAAsCJ3UAEAABgFCSoAAACjIEEFAABg\nFCSoAAAAjIIEFQAAgFGQoAIAADAKElQAAABGQYIKAADAKEhQAQAAGAUJKgAAAKMgQQUAAGAUJKgA\nAACMggQVAACAUZCgAgAAMAoSVAAAAEZBggoAAMAoSFABAAAYBQkqAAAAoyBBBQAAYBQkqAAAAIyC\nBBUAAIBRkKACAAAwChJUAAAARkGCCgAAwChIUAEAABgFCSoAAACjIEEFAABgFCSoAAAAjIIEFQAA\ngFGQoAIAADAKElQAAABGQYIKAADAKEhQAQAAGAUJKgAAAKMgQQUAAGAUJKgAAACMggQVAACAUZCg\nAgAAMAoSVAAAAEZBggoAAMAoSFABAAAYBQkqAAAAoyBBBQAAYBQkqAAAAIyCBBUAAIBRkKACAAAw\nChJUAAAARkGCCgAAwChIUAEAABgFCSoAAACjIEEFAABgFCSoAAAAjIIEFQAAgFGQoAIAADAKElQA\n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\nm7Pvmdq3pF8omdqUeJ2YLajnNdPPJe+UOY+fTfm+J2/2HDXvex2mWXsfmRXOadas24eSXGfi/dGZ\ncRFqYpp1tr3vTb8h8onh/TdmxvPsyw7zmq5uq9ba/6ve2+TD0lempK+8P9aGZkJTPH3eLDOnyU5V\nnZK+YL/YWntL9R7lvim9s5cDrlvrzWdW0lr75yQPrarbJNnoGfUDrbWPV9XNk1wxJ/zjVfUzSZ4z\nvP/JLG4CkQzNIFpr706WbgZxx6p6T2vt80PMDZM8tLX27BnTP6aqfnPT9I9vrf3SrAJaaxelX5nc\nT1X979baE+bU7e+r6gGttbOH6ZdpNrHRXOby4e/tqup2rbW3zoubUudZzd6OrqqjWm8yPFnurixo\nuj3M9/xNccdl/2bj0/ynJF9tQ1PgocnXtVtrX2mtvWhGzKOTfHP6Vdok+Y70K3y3r6qntNZeMiXm\n85loAj/U7Ttaa69urc1qWvXs9DtZ90q/M/zF9BPEu836Z6rq2umd2uxJbwKXJGmtPWVOzO3T79Tt\nmaxjm9MUtPWmsE9J8pTqvSs+ND1BufWMMn47fV8za34/M+uzJP9eVV/XWvvUMK9bzZvX4D1VdUpr\n7Z1DzD3SL0bMc/8kX95Y/4Zmb9dprX1pxjJN1thms+J+obX2u0l+d2jWm9baF4e472+tvXLB/3Tj\n1torquoXh9grq+rf5gVU1XmttXsvGrfJ76U/N/fcoZz3V9XLkvzPOTHr7FNX3m+tWc4669w1quqG\nrbXLh5gbZf5jL1cZ1oFbpm/jX0w/fr57Tsjvp5+Efdvw/m+T/FH6BYlZ1vke/rG1dkX6MfVRi/6P\nwaXVexTek/33JzP3QevUbdhvPSe91c2dhmbFD2itzVvnvlRVd2mtvW+YxzdmicczWmuvr/7ozNcP\noz7cWpva3LS1dmWS06vqV9MvHCTJxa21Lw/7oaudO038T6ekX/jbk/7dVZ9lu/2c6h3sbeJ758yn\npd9dn/5hPwP/42FYxbvTn13eNdTvqm1xjq+01r5SVVc1la+qLX8cbZXjZevNm/9jVZ2afefE57bW\nZj7+sU7MRN1ukuS/Tqnbf1kQereJmLtWVVprL14Q8/okL6+q5w7vf2wYN8+/V9UtWmufHuq76Pxs\nrXOaNet2SfoFjo39wbXTb4LNs8629+Qkd0+/AJHW2nuHXGZ9B5LdbteQ5O0HYZ5rNYldtW5JTknv\npe2K9Gfa/i1rNCtL8qkFn6/cBGKIW7kZRFZsZjDts3W+6yW/h3WaTbx2Ynhj+jMrizpcWbrZW3rP\noc/PxB2s9MT0eZnThDj9xO556U2JHjPEPD39qvUzF9Rv5SZfWa/jh3WanLx783RZfHXu9emdefxC\n+l3Nx6cnTPNi3pfkJ9J3midtDEuuZzdMP4G5y4LpHjEMzxu2n40WFm9N8owFsRt3L16S5KXpdxCn\n3r2YiPlQenJ/yTD8e/rd3gsz40591mtmuPI2u866MGM+c7fxYZo3pzcN31iXTknylhnTXmeY9n3D\ncr3RMOxJPyGfV85fT1lXl7k7t+o+dZ391jrlrLPO/Wh6j6O/lp6YfzgLWnAMcb82/C9vyfIdWZ2/\nTd/3W4aYs5I8Nsu1zllnH7Ru3e6+6TtY1BnjPdIvSO8dto2PZYlWKenHlF9K8nvD+xOSfM+iuCnz\nWXRc/lD6/vTm6ceV3Zny2Muh2CbWGdLvsn40/VxhqccF0o8Ln0vvOPP9mbPP3hR3UB9Hm5hm7ePl\nKuvCmuvPOj2wv2SIe3Z6r9G/nSU67UnPBX4i+y5A/FiG5t9zYu6fvi99YXpLy0uyuOXHOvuTder2\n6vSLIi8a6vfp9P3ezE6M1tz23jn8ndxvHVDnrqO5g7rAMlcj7pT+HNJVD/a2+VdKqg3f4DDtv9eU\nDgC2oG7/N8kPp18FPjn9YH+1DoCWUPM+bK19dihnJa21v66qr8++zis+0lqb9ZD/hqOq6qrvr3on\nOfM6NjlquPL31WH6o9Ov4qxj0ffwsSSnVNWxw/t5d503Yva7klpVt0zymwvC7tyGO0XDPC6vqm+a\nMe3/SG8G9amq2rirfev0nnX/+5wyXpx+svLK9BPLd6Yf3E5srf3dgvod3YY7UkP9vliLfwNsT5vR\n8UNVzVonpnW0tmg7+tdhndlYf26SxZ0k3aK1dp8F02x2ZWvtOYsnS6rq1elNNy+q/hth704/YO+p\nqme31n57Wlxr7cwh/pHpTVz/dXj/u+k/LzVT63cv7pqeXCXJz7bWFl2lXPU7SPrd0qu2g9baFUus\nC+tss6vuF2aZu40Pfi79eanbVtXbk9wk/dm9aX4syc+mnxxP3r37p/T98zyfq/4bfRv/00OSfGZe\nwDr71DX3W+uUs/I611p7cVVdkP7Mc9KbP35wUf3STyZv21pbpbOxf6neOcfG933rLOisbM3v4Z7V\nf5fzbuktRc6tqmNba/N+X3LlfdCax9frttbeVbXfZjC3g5vW2l9V/+3rjd+//uCS3/sL05vqfvPw\n/tL0c5VVO3pbtM3+U1uuY62rbNc2kSRVdf/0VmuT54/z7mT9ZvojPR9aNO8Jj0s/nv7DCjFprX3f\n8PLJVbU3vZf0WXfN/lt6p08/mH0d1JycvnwX/V7m0sfLBZbZf68ac93W2hNXnOfJSe44eZ6/jNZb\nnT0n+1ojLhNzblXdPfu2o18YzsnnWWd/snLd0i9wvGri/ZuXKGflbS/JB4YWJkcNrTJ+Jj2xXdvh\nkqDOXcGq6lfSDzJ3TPKn6VeL3pZ+gj/Luk1iV6pbkrTWLq59TTxfWFXrLLRF38G6TSCS1ZtBrNrM\n4A/Se8d74fD+Uel3IKeq2T9CXVmwI1uz2cRmn86+JiizLN3srfWmUU+oqidn38WJjy6x0d+o9d4l\nk97b7WVJ7tZmNMHaZJ0mX39RVeekn6Ak/Xt8a/XeVj8/I+b86r3j/s7w/rFZ3HPbs9J3mDetql9P\nf35nXtPRJPnLqjqxtXbhgukmvbZ6D3evykQvia33tLjZCa03K0/6+nlea+3h1Zv+vy396us8N0+/\nS70x72OHcYtce4jZld5ENm1G0/Ih4Tu3tbZo3dxsnSaQK22zg3WaH02zzAnFB9Kfa7xD+j7hI5l+\nsSSttWcmeWZV/fSsCw1zPDb97vjXV9Wl6Z2p/cgScSvtUw9gv7VOE7al17kJH05/BGKVpokXpd/5\nWXSiNukp6evMLarqzPRl/Ogl4lb9vr81vRnxtw11PCf9rts86+yDVq5b1rgoMrjLRDkby/VlC2Ju\n21r7oap6aJK01r5UmzLjJS3aZt9UVU9NbzY7uS+e9YsG27ZNDBcTr5t+Aeb56cejRT2wXrZicpr0\nO1Er97JdB/lxtAmrHC/nWSkhXDLmnKq6X2vtT1eY50Xpv9G7zLZzlar6lvS71bfK/s3RFzVXrfRH\nEnZl32Ni8871V96frFq34ZzhO1tryxyzJuPW2fZ+Ov1mzFfT+9J5Q3ormrXVihcXDpqa/XMHleR3\nW2s3mRN7YfrO+T2ttbtU1e4kz998Z2xTzE3TT5Tvlb5xnJd+NflqB9MDrNtb058HfH6Sv0vfWB7Z\nWrvLlGlnPc9WSR7RWrv+nHL+Mv0Ae0F6M+IkSVvwLFdVvST9dv57J+Jam/PsXPVn2H4svQOdpDeL\nfX7b9Izlppj7Tk7fWnvDnGk/kf49TD1QttamPg84xL4+/SCw+XuY+bzypu/9GukPd18yb6Ouqh9N\nv/v5R9nXYcKvt9nP9M2az41n3cGoqvelX3jZ+B72Tr6fd+Co/kzQH6Y3O6n05sIPbXO6Ph9OTL4/\nybcMo96e3nvkzJ3EkLw+KX0dT/q68D9bf556puEq972Hup236GBfVR9Mf+7pE+k7wI0d853nxHxi\nyuipO/Oqem9r7RuH13+e5AWttT/c/Nmcsh6VfuDYO9Tt29N7dZ53IeY3kvxQerK1cQe5tdYeMCfm\nD5L84hLJwWTM3dKb9PztULevTfJDbfFP2iy9zQ7TL71fGPbZs/Z1d2itzb3zWlXvbq3dddG4YfzM\nn9JJktbazGfNJuZxTPpvD39xiWnX2aeus99ap5x11rmfTu919LKhnIXb3hB3cnpzxIuy/wnvzLKG\nuJsk+Y9DOX+56E7Emt/Dlenf9VPTm0suvNu45j5onbrdJv2iyH9MvyjwifTeby+ZE/Oi9Av0m8uZ\n+xMUw3nDvdMfVbrrkBj/YWvt7lOmfW1mb7P3aq1d7WejJmKnJf+ttTb151KGmO3aJt7fWrvzxN9j\n03tl/q45Mc9M34++Ovuv2zP3JVX1gvQLauduivmtWTFD3HvSO/3cuGBxjfSm8At/LmQVKx4vf27W\nbNJ7Z77aTYZ1YiZiv5jeiehX03+eZ2Pbm3dOvDf9XO5dWW3/8+H0O9Gb17uZd76r6n+lX7jceARn\nCGkzf9Zszf3JOnV7Q/rd/qVbsqyz7R0MY0pQXzjv89bazI4MqupdrbW7175mSF9Mf2bjP8yK2ca6\n3Sr9wH6t9BXrBkl+p/Vb6JunfcSCcuad7C48iZ4R96Gs0QziUKmq41trl875/KK24h2mTd/7lenJ\n6aKOZ1L9t8U2mr29qS3X7G3zPF7fZjTzqKpL0nd20xL1hVf0hqtgqzb5OugmrwgP76+f5Btaa/M6\n2bjVtPGttU9uUZ3OTb+L8un0lhe3ab3Z9nXSn3O82m/LTZnH16Y/C5Ykf9UWNMOuqo+kNxVf+rd2\nq+pN6XcI3pXkqosASxx0r5kVm70dTLOW54ZZy3X4jo9Pf37yYdm3bVw//WLh10+Jmbf/bm1KK5M5\nJ1MbQTNPKtfZp66531qnnHXWuYuT3GPeSdCMuA+kdy51YSaa8Lc5HQhW/13At7Shg7Xqna59a2tt\nZpPTNb+H49IvxH17+vb070ne0Vp70pyYlfdBB3J8XfGiyIeHchb+PvamuO9Kv+txx/RHEr4lyaNa\na3unTHvPefOat1zXsY3bxF+11u5RVe9Mf7b0H9LPH2c+ijVjnzJ1XzIR8yvTxrfWfnVB/a52breR\nTE+ZduPi/oyi2m3nlbWsWf/LREFX+5/WiTkQs9bXRevpxvqwYlkfSe+vYmHHZBMx6+xP1qnbc9N/\n2eTs7H/OMO8YtvS2N+fC1UY5c89N5hlNE98FSd73Lwg/fzjg/F56xn9FZjTRqKpfaK39Zs24Wznt\nStuB1G1iZftK+m8Qpapenn4Ve/O08xLQ/z2vnKzXBCJZoxlE9fblT83Vn/md1czglPQmkt+Qnqgf\nleSf5139muMdmf/c70rNJmrNJhCDdZq97WdWcjp8tmeNOk26dfpvmV0nSzT5Gq5SbmwT10rv9W/u\nchrudvxCrv78zrwfvX9O+g5zwxVTxm3Mf+Oq6sKTtImYde6YPTq9A5jvSfKwNjTdTr+Lsahp64aj\n0juw2pXe8/Ht2/ymkx9P/46XThYy7EPWcIfs216Xafa28ja7yn5hwUH47dl3F3+z707/feRbJJk8\nwH4xM57nnrf/nuN6w987pCcwZw/vvze9o5J51mlatk7z0XXKWWedW6tpYpLPtdaetWLMUyZPxltr\nn6+qX8v8ZyJX/h6G+X48vWXJLdK387m9nG6ss9VbX11n3rQHUreqelz6s6FfTPJ71Z8ZPr21Nu+Z\n9g+kP4d92Zxprqa19mfDhf1T0i/2PK7NaNGz4MLCy9Obks76/HrpLW027pi+Jb2lzbz9+nZtE+cM\n549PS39GvaW3eJtpnX3KASRgqzyOdvKm99dIfxb8Cekdg840XMT8iexbRm9O8txpFzPn/S9V9bPT\nxq8TM6z7M7XhsZUZn617wWRvVT0tV2+OPq/38U+kHyMXWuec5gDr9rfDcI3sO64tssq2t5GbPDh9\n23vp8P6h6Z1FrW00d1DnqapPtdYWdpQ0TLsnyfXbjGcbqup7W2uvnXW3cl6SeKB1O5gx6zSBGOJW\nbgZRVW9Lb/L1jPQTtkelr0tTr5BV1fm5ekdRt2ut/Y95dZsxr79prd1yzufrNJtYpwnE0s3ehrtw\nPz7U68L05qNzO704UFX1S0m+K/3nA96QfmL/ttba3ORtIr7SfxP27q21mR05VdWfpfdE94T0//ER\nSf6+zenQYM0rwkvfRV7njtmBqvWaTr4y/dGE87L/tjfvp2lS/RGGjZ/keVdb3ARy6jP6rbWHzIlZ\neZtddb8wZz5zt/FhmmV+imZa3EqdoQzr9/e3fXf7r5fkj+ZdWFpzn7rOfmudclZe52r9pom/NUx/\ndpY8maqq97VNj79U1YWttRPnxKzzPXw8/QLj29IvOLxr0f5/uLv79PRnyz+b/hzYh9qcllpr1u19\nrT+q9N3pz0A/KckL25wmndUfS/im9I70JsuZu7+v9X56adp8Fp2f/FH678ZvnF89PL3VzLx90LZs\nE5vir53eqdzUCzLr3OCoqv/TWvvZWXeaFtWtVngcbSLmGunf8c+nN3f+X21BC6+qen76RZrJZfRv\nrbXHzIubMp8tO78dlucsbdqF8E0X2vf7KMufEy9V1kTMH6X/RvafZ//17motcdY5pzmQuk3ELt3h\n0Zrb3lvbpib708atYjR3UBdY1DHO96U3sfxCa+2Sqjquqh7UWnv15mmH5PSoJHdqrf38wa7bFlrU\ne+2yV0Y2e/IaMUe31s6rqhquKj+5+jMmM09E29Z0FJXMaUowuO8a87wkyduraukmEFmtR74z0y8a\n/MVQvzsO8QfTD6UfqN/demc/N8vwW47LaP3K1aur6vQFk35Na+0FVfW44YrlW6pq0ZXLpa8ItznP\nG8+yztXtqnpV9l+3WvpPAuxtrZ21xCwelL4+rHJn6uzsuzO3lOq9Mz4t/ep2Jfntqvr51tq83+N7\nSPY9o/+oIcGde4cgWWubXXm/MKvoJaY5p1b8TcparzOUr8v+vcj+y1DmPE9e8Pk06+y31iln5XUu\n/acGPpV+J32VXpk3ejU/ZWJcy5zfJ0//nd/fzL5O134qC+78ZL3v4XZtxeaw6R1+nJLkz1tr31T9\n9xwfehDqtnGsv196Yvq+4YLhPE9dqYB+0fS6SW5c/bdqJ5vKH7/KvJZ0QmttspftJ1XVexfEbMs2\nUVWPTfIHrbXPt9a+WlXXraqfbNN/v3mjr4Tzp3w2y0a/FItawU3VVviFhuEu6H9Jf5zsbUke1Fq7\neMmi7rbp4tCbqveDsap1zoln9Tdy6rTx8xzAufDaZaZ37LZUh4DrnNNMxK5ct+q/cPKS9J9WS1V9\nLsmPttY+MCdsnW3vJlV1m9bax4dybp3eqmNth0uCuuiE5Vdaa1d1o9x6851fSX+A/eoza+3fqvdk\n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\nRU5ErkJggg==\n",
"text/plain": [
"<matplotlib.figure.Figure at 0x24044a8e828>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"df1 = data.groupby('recalling_firm').filter(lambda x: len(x) > 20)\n",
"df1.recalling_firm.value_counts().plot(kind='bar', grid=True, figsize=(16, 9))"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"collapsed": false,
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"<matplotlib.axes._subplots.AxesSubplot at 0x24044e2cc88>"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/png": "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\n6LwAAAAASUVORK5CYII=\n",
"text/plain": [
"<matplotlib.figure.Figure at 0x24044df2630>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"data.classification.value_counts().plot(kind='bar', grid=True, figsize=(16, 9))"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"<matplotlib.axes._subplots.AxesSubplot at 0x24044f7d780>"
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAA64AAAJtCAYAAAA2DS3cAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3XvYbWVdN/rvD/EUpOBphWBib7y6McLDSlHfcqFtPKVY\nWkqU4KZwX1lZemXYe/BV872stlraaaPYq2aZmSYeSolcagcU8AAquiWFgFBSPKFpor/9xxxLn5Zr\nsZ61WGuOez7r87mueT1j3GPMOX7zuddhfue4xz2quwMAAACjOmDuAgAAAOCGCK4AAAAMTXAFAABg\naIIrAAAAQxNcAQAAGJrgCgAAwNAEVwAAAIYmuAIAADA0wRUAAIChCa4AAAAM7cC5C7ght7vd7frI\nI4+cu4x95ktf+lIOOuiguctgD+m/1aXvVpv+W236b3Xpu9Wm/1bXRu+7Cy+88NPdfftd7Td0cD3y\nyCNzwQUXzF3GPrN169Zs2bJl7jLYQ/pvdem71ab/Vpv+W136brXpv9W10fuuqi5fz36GCgMAADA0\nwRUAAIChCa4AAAAMTXAFAABgaIIrAAAAQxNcAQAAGJrgCgAAwNAEVwAAAIYmuAIAADA0wRUAAICh\nCa4AAAAMTXAFAABgaIIrAAAAQxNcAQAAGJrgCgAAwNAEVwAAAIYmuAIAADA0wRUAAIChCa4AAAAM\nTXAFAABgaIIrAAAAQztw7gJGcuQZb17q8Z52zPU5dYnHvOx5j1jasQAAAPYWZ1wBAAAYmuAKAADA\n0ARXAAAAhia4AgAAMDTBFQAAgKEJrgAAAAxNcAUAAGBogisAAABDE1wBAAAYmuAKAADA0ARXAAAA\nhia4AgAAMDTBFQAAgKEJrgAAAAxNcAUAAGBogisAAABDE1wBAAAYmuAKAADA0ARXAAAAhia4AgAA\nMDTBFQAAgKEJrgAAAAxNcAUAAGBogisAAABDE1wBAAAYmuAKAADA0ARXAAAAhia4AgAAMDTBFQAA\ngKGtK7hW1SFV9dqq+khVXVJV96uq21TVOVX1sennodO+VVUvqqpLq+qiqrrXmtc5Zdr/Y1V1yr56\nUwAAAGwc6z3j+jtJ/rq775bk2CSXJDkjybndfVSSc6f1JHlYkqOmx+lJ/iBJquo2SZ6Z5L5J7pPk\nmdvCLgAAAOzMLoNrVd06yQ8lOStJuvvfu/tzSU5M8vJpt5cnefS0fGKSV/TCeUkOqarDkjwkyTnd\nfW13fzbJOUkeulffDQAAABvOes643iXJvyb5o6p6X1W9tKoOSrKpu6+e9vlkkk3T8uFJrljz/Cun\ntp21AwAAwE5Vd9/wDlWbk5yX5AHd/e6q+p0kX0jyC919yJr9Ptvdh1bVm5I8r7v/bmo/N8mvJtmS\n5Bbd/etT+39P8m/d/f9sd7zTsxhinE2bNt371a9+9d55p+tw8VWfX9qxkmTTLZNP/dvyjnfM4bde\n3sH2A9ddd10OPvjguctgD+i71ab/Vpv+W136brXpv9W10fvu+OOPv7C7N+9qvwPX8VpXJrmyu989\nrb82i+tZP1VVh3X31dNQ4Gum7VcludOa5x8xtV2VRXhd2751+4N195lJzkySzZs395YtW7bfZZ85\n9Yw3L+1YSfK0Y67P8y9eTxfsHZedvGVpx9ofbN26Ncv888neo+9Wm/5bbfpvdem71ab/Vpe+W9jl\nUOHu/mSSK6rqrlPTg5N8OMnZSbbNDHxKkjdMy2cnecI0u/BxST4/DSl+a5ITqurQaVKmE6Y2AAAA\n2Kn1nu77hSSvqqqbJfl4kidmEXpfU1WnJbk8yU9M+74lycOTXJrky9O+6e5rq+o5Sc6f9nt2d1+7\nV94FAAAAG9a6gmt3vz/JjsYdP3gH+3aSJ+/kdV6W5GW7UyAAAAD7t/XexxUAAABmIbgCAAAwNMEV\nAACAoQmuAAAADE1wBQAAYGiCKwAAAEMTXAEAABia4AoAAMDQBFcAAACGJrgCAAAwNMEVAACAoQmu\nAAAADE1wBQAAYGiCKwAAAEMTXAEAABia4AoAAMDQBFcAAACGJrgCAAAwNMEVAACAoQmuAAAADE1w\nBQAAYGiCKwAAAEMTXAEAABia4AoAAMDQBFcAAACGJrgCAAAwNMEVAACAoQmuAAAADE1wBQAAYGiC\nKwAAAEMTXAEAABia4AoAAMDQBFcAAACGJrgCAAAwNMEVAACAoQmuAAAADE1wBQAAYGiCKwAAAEMT\nXAEAABia4AoAAMDQBFcAAACGJrgCAAAwNMEVAACAoQmuAAAADE1wBQAAYGiCKwAAAEMTXAEAABia\n4AoAAMDQBFcAAACGJrgCAAAwNMEVAACAoQmuAAAADE1wBQAAYGiCKwAAAEMTXAEAABia4AoAAMDQ\nBFcAAACGJrgCAAAwNMEVAACAoQmuAAAADE1wBQAAYGiCKwAAAEMTXAEAABjauoJrVV1WVRdX1fur\n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\n3+3ur1WVU96r4zlJjkvyN919z6o6PslJM9fE+r0qyZ8leUQWIx9OSfKvs1bEeum71VZVdb8kJyc5\nbWq7yYz1sA7d/ay5a2DPdPcTk6Sq3pTFSZOrp/XDkvzenLXBjeEa1+X6f5NcluSgJO+sqjsn+cKs\nFbE7vtbdn0lyQFUd0N1vT3KPuYti3W7b3Wdl0Y/v6O7/K4svIhifvlttv5TkGUle390fqqrvSfL2\nmWtinabrks+tqg9O699fVf9t7rpYlyO3hdbJp5L857mKgRvLGdcl6u4XJXnRmqbLp7N2rIbPVdXB\nSd6Z5FVVdU2S62euifX72vTz6qp6RJJ/SXLEjPWwfvpuhXX3O5K8o6q+Y1r/eJJfnLcqdsNLkvxK\nFl++p7svmubs+PVZq2I9tlbVW5P86bT+uPjSiBVmcqYlqqpNSf5Xkjt298Oq6ugk95vOJDC4qjoo\nyVeSVBZD3m6d5FXTWVgGV1U/kuRdSe6U5MVJbpXkWd199qyFsUv6brVNw4TPSnJwd393VR2b5End\n/XMzl8Y6VNX53f0DVfW+7r7n1Pb+7jbiaAVMEzX94LT6zu5+/Zz1wI0huC5RVf1Vkj9K8l+7+9iq\nOjDJ+7r7mJlLA4B9oqreneSxSc5eE3w+2N3fN29lrMf02eXnk/x5d9+rqh6b5LTuftjMpQH7GUOF\nl+t23f2aqnpGknT39VX19bmL4oZV1ReT7PQbnu52P96BVdXTp1lMX5wd9GN3G7I4uGlW4Z9NcmTW\n/L81XevKCujuK6pqbZP/+1bHk5OcmeRuVXVVkk8k+al5S2I9prOtv5HF7MI1PdrnFlaV4LpcX6qq\n22b68FxVxyX5/LwlsSvd/Z1JUlXPTvLJJK/Mt4YLu13A+C6Zfl4waxXcGG/IYqjw30TgWUVXVNX9\nk/Q0s/5T8q2/lwxuuib5h6fLZQ7o7i/OXRPr9ptJHtnd/r6xIRgqvERVda8srs/6viQfTHL7JD/e\n3R+YtTDWpare3d333VUbsHe5nm61VdXtkvxOkh/O4ku/tyX5xe6+dtbCWLdpUrS75z/eR/nZ81XE\nelTV33f3A+auA/YWZ1yX60NJHpjkrln85/3RuCXRKvl6VZ2c5NVZnDU/Kc7+DK+q3pgbHur9qCWW\nw555U1U9vLvfMnch7JG7dvfJaxuq6gFJ/n6metgNVfWHSb4jyfFJXprF9crvmbUo1uuCqvqzJH+Z\n5KvbGrv7dfOVBHvOGdclqqr3dve9dtXGmKrqyCzOGjwgiyD090l+qbsvm68qdqWqHjgt/liS70ry\nx9P6SUkkcAxVAAASWElEQVQu6+5fm6Uw1m26zvygLD54fS2u01op/u9bbVV1UXd//5qfByd5XXef\nMHdt3LCq+qMdNLf5AVhVzrguQVV9V5LDk9yyqu6ZxYeuZHFLh++YrTB2yxRQT5y7DnbPdA/JVNVz\nuvuH1mx6Y1W9c6ay2A3brjNntUy3wbl/kttX1VPXbLpVkpvMUxV74CvTzy9X1R2TfCbJXWash3Xq\n7ifOXQPsTYLrcjwkyalJjkjygjXtX0zibM+KqKpbJDkt336dj28uV8Ptq+p7polGUlV3yeI6c1ZA\nVR2a5Kj8x797vngY282SHJzFZ421Xz58IYvhpqyGN1bVIUl+K8l7sxhx9JJ5S2I9fG5hozFUeImq\n6jHd/Rdz18Geqao/T/KRJD+Z5NlZzCp8SXc/ZdbCWJeqemgWt3T4eBajHu6c5End/dZZC2OXqupn\nspiJ9ogk709yXJJ/7O4HzVoY61JVd+7uy+eug91XVQckOa67/2Fav3mSW3S3OyKsAJ9b2GgE1yUz\nM9/qqqr3dfc911znc9Mkb/XheXVMH7ruNq1+pLu/ekP7M4aqujjJDyQ5r7vvUVV3S/Ks7n7czKWx\nDtN9eJ+eb/+/z7+dK6Cq/rG77zd3Hew+n1vYaMxou0TTzHyPS/ILWZzx+fEszvqwGr42/fxcVX1f\nklsnOXK+ctgD987iw/OxSR5XVU+YuR7W5yvd/ZVk8eVDd38ki9nZWQ2vyuKsz12SPCvJZUnOn7Mg\ndsvbquoxVVW73pXB+NzChuIa1+W6/5qZ+Z5VVc9PYkry1XHmdJ3df09ydhbXbv2PeUtivarqlUn+\nUxZDTbfdxqiTvGK2olivK6dr7P4yyTlV9dkk/zJzTazfbbv7rKp6yjRZ2juq6h1zF8W6PTWLWb2v\nr6qvxKzeq8TnFjYUQ4WXqKre3d33rarzsrg1x2eSfLC7j5q5NNjwquqSJEe3f/RW2nR7o1sn+evu\n/ve562HXquq87j6uqt6a5EVZfOnw2u7+TzOXBsAKccZ1ud60g5n5XjpvSazXdH3kY7IYZvPNvzuu\nUV4ZH8ziPq5Xz10Iu2canXJWd3942+2NWCm/XlW3TvK0JC/O4nY4vzxvSaxXVT0gyfu7+0tV9VNJ\n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\n",
"text/plain": [
"<matplotlib.figure.Figure at 0x2404528b1d0>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"data.country.value_counts().plot(kind='bar', grid=True, figsize=(16, 9))"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# remove duplicate description columns\n",
"data = data.drop_duplicates('reason_for_recall')"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# remove rows with empty descriptions\n",
"data = data[~data['reason_for_recall'].isnull()]"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"(2067, 25)"
]
},
"execution_count": 15,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"data.shape"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"data['len'] = data['reason_for_recall'].map(len)"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"(2067, 26)"
]
},
"execution_count": 17,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"data.shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Text processing : tokenization\n",
"[[ go back to the top ]](#Table-of-contents)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now we start by building a tokenizer. This will, for every description:\n",
"\n",
"- break the descriptions into sentences and then break the sentences into tokens\n",
"- remove punctuation and stop words\n",
"- lowercase the tokens"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"def tokenizer(text):\n",
" try:\n",
" tokens_ = [word_tokenize(sent) for sent in sent_tokenize(text)]\n",
" \n",
" tokens = []\n",
" for token_by_sent in tokens_:\n",
" tokens += token_by_sent\n",
"\n",
" tokens = list(filter(lambda t: t.lower() not in stop, tokens))\n",
" tokens = list(filter(lambda t: t not in punctuation, tokens))\n",
" tokens = list(filter(lambda t: t not in [u\"'s\", u\"n't\", u\"...\", u\"''\", u'``', \n",
" u'\\u2014', u'\\u2026', u'\\u2013'], tokens))\n",
" filtered_tokens = []\n",
" for token in tokens:\n",
" if re.search('[a-zA-Z]', token):\n",
" filtered_tokens.append(token)\n",
"\n",
" filtered_tokens = list(map(lambda token: token.lower(), filtered_tokens))\n",
"\n",
" return filtered_tokens\n",
" except Error as e:\n",
" print(e)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"A new column 'tokens' can be easily created using the map method applied to the 'description' column."
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"data['tokens'] = data['reason_for_recall'].map(tokenizer)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The tokenizer has been applied to each description through all rows. Each resulting value is then put into the 'tokens' column that is created after the assignment. Let's check what the tokenization looks like for the first 5 descriptions:"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"reason_for_recall: Defective Container; damaged blister units \n",
"tokens: ['defective', 'container', 'damaged', 'blister', 'units']\n",
"\n",
"reason_for_recall: Superpotent (Single Ingredient) Drug: Above specification assay results for percentage of magnesium sulfate.\n",
"tokens: ['superpotent', 'single', 'ingredient', 'drug', 'specification', 'assay', 'results', 'percentage', 'magnesium', 'sulfate']\n",
"\n",
"reason_for_recall: Labeling: Label mix-up; Bottles labeled to contain Morphine Sulfate IR may contain Morphine Sulfate ER and vice-versa. \n",
"tokens: ['labeling', 'label', 'mix-up', 'bottles', 'labeled', 'contain', 'morphine', 'sulfate', 'ir', 'may', 'contain', 'morphine', 'sulfate', 'er', 'vice-versa']\n",
"\n",
"reason_for_recall: Presence of Particulate Matter: Lots identified in this recall notification may contain small particulates. \n",
"tokens: ['presence', 'particulate', 'matter', 'lots', 'identified', 'recall', 'notification', 'may', 'contain', 'small', 'particulates']\n",
"\n",
"reason_for_recall: Adulterated Presence of Foreign Tablets: Dr. Reddy's Laboratories has received complaints of mislabeled bottles of Amlodipine Besylate and Benazepril Hydrochloride Capsules and Ciprofloxacin Tablets.\n",
"tokens: ['adulterated', 'presence', 'foreign', 'tablets', 'dr.', 'reddy', 'laboratories', 'received', 'complaints', 'mislabeled', 'bottles', 'amlodipine', 'besylate', 'benazepril', 'hydrochloride', 'capsules', 'ciprofloxacin', 'tablets']\n",
"\n"
]
}
],
"source": [
"for descripition, tokens in zip(data['reason_for_recall'].head(5), data['tokens'].head(5)):\n",
" print('reason_for_recall:', descripition)\n",
" print('tokens:', tokens)\n",
" print() "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's group the tokens by category, apply a word count and display the top 10 most frequent tokens. "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"def keywords(category):\n",
" tokens = data[data['reason_for_recall'] == category]['tokens']\n",
" alltokens = []\n",
" for token_list in tokens:\n",
" alltokens += token_list\n",
" counter = Counter(alltokens)\n",
" return counter.most_common(10)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"reason_for_recall : Subpotent Drug: Avobenzone 3%, one of the active sunscreen ingredients may be subpotent and sunscreen effectiveness may be less than labeled\n",
"top 10 keywords: [('subpotent', 2), ('sunscreen', 2), ('may', 2), ('labeled', 1), ('active', 1), ('drug', 1), ('less', 1), ('effectiveness', 1), ('avobenzone', 1), ('one', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: CapsuleTOPRIL, Tablet, 25 mg may have potentially been mislabeled as the following drug: DULoxetine HCl DR, Capsule, 20 mg, NDC 00002323560, Pedigree AD54587_4, EXP: 5/21/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('ad54587_4', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('dr', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 112 mcg may have potentially been mislabeled as the following drug: MULTIVITAMIN/MULTIMINERAL, Tablet, 0 mg, NDC 00536406001, Pedigree: AD22865_13, EXP: 5/2/2014. \n",
"top 10 keywords: [('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('levothyroxine', 1), ('multivitamin/multimineral', 1), ('ad22865_13', 1), ('mcg', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Failed stability testing for dissolution test at 18 months.\n",
"top 10 keywords: [('failed', 2), ('dissolution', 2), ('specifications', 1), ('stability', 1), ('test', 1), ('testing', 1), ('months', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; tiZANidine HCL Tablet, 2 mg may be potentially mislabeled as NICOTINE POLACRILEX, Lozenge, 2 mg, NDC 37205098769, Pedigree: AD70700_4, EXP: 5/29/2014; NIFEdipine ER, Tablet, 60 mg, NDC 00591319401, Pedigree: W003729, EXP: 6/26/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('tizanidine', 1), ('mixup', 1), ('hcl', 1), ('w003729', 1)]\n",
"---\n",
"reason_for_recall : cGMP Deviations: Oral products were not manufactured in accordance with Good Manufacturing Practices.\n",
"top 10 keywords: [('good', 1), ('manufactured', 1), ('deviations', 1), ('accordance', 1), ('practices', 1), ('products', 1), ('manufacturing', 1), ('cgmp', 1), ('oral', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Package Insert - Xarelto prescribing information outserts may be affixed to the exterior of Invokamet bottles in place of the Invokamet prescribing information outsert.\n",
"top 10 keywords: [('prescribing', 2), ('invokamet', 2), ('information', 2), ('insert', 1), ('bottles', 1), ('package', 1), ('xarelto', 1), ('may', 1), ('labeling', 1), ('place', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; COLESEVELAM HCL Tablet, 625 mg may be potentially mislabeled as lamoTRIgine Tablet, 50 mg (1/2 of 100 mg), NDC 13668004701, Pedigree: AD46265_31, EXP: 5/15/2014.\n",
"top 10 keywords: [('mg', 3), ('tablet', 2), ('mislabeled', 1), ('colesevelam', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('pedigree', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Error on Declared Strength-The recalled product has a misprint on the Amoldipine 10 mg label, 5 mg is listed in the USP description. Tablet strength is 10 mg.\n",
"top 10 keywords: [('mg', 3), ('label', 2), ('error', 1), ('declared', 1), ('strength', 1), ('strength-the', 1), ('recalled', 1), ('labeling', 1), ('listed', 1), ('tablet', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; MISOPROSTOL Tablet, 200 mcg may be potentially mislabeled as PROPRANOLOL HCL, Tablet, 10 mg, NDC 23155011001, Pedigree: AD21790_34, EXP: 5/1/2014; SODIUM CHLORIDE, Tablet, 1 mg, NDC 00223176001, Pedigree: W003115, EXP: 6/13/2014. \n",
"top 10 keywords: [('tablet', 3), ('exp', 2), ('pedigree', 2), ('ndc', 2), ('mg', 2), ('mislabeled', 1), ('misoprostol', 1), ('chloride', 1), ('mixup', 1), ('hcl', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; QUETIAPINE FUMARATE Tablet, 12.5 mg (1/2 of 25 mg) may be potentially mislabeled as SIMVASTATIN, Tablet, 40 mg, NDC 00093715598, Pedigree: AD22845_4, EXP: 5/2/2014.\n",
"top 10 keywords: [('mg', 3), ('tablet', 2), ('mislabeled', 1), ('pedigree', 1), ('simvastatin', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1), ('ad22845_4', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Firm is recalling a small number of vials with very small reflective flakes consistent with delamination of the glass vial.\n",
"top 10 keywords: [('small', 2), ('presence', 1), ('glass', 1), ('vials', 1), ('firm', 1), ('recalling', 1), ('particulate', 1), ('flakes', 1), ('vial', 1), ('number', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: Red Silicone Rubber Particulates are Present in Drug.\n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('red', 1), ('drug', 1), ('silicone', 1), ('present', 1), ('rubber', 1), ('foreign', 1), ('particulates', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Tablets: A product complaint was received by a pharmacist who discovered an Atorvastatin 20 mg tablet inside a sealed bottle of 90-count Atorvastatin 10 mg.\n",
"top 10 keywords: [('atorvastatin', 2), ('mg', 2), ('received', 1), ('sealed', 1), ('tablets', 1), ('tablet', 1), ('complaint', 1), ('discovered', 1), ('pharmacist', 1), ('foreign', 1)]\n",
"---\n",
"reason_for_recall : Does Not Meet Monograph: Budesonide may be slightly above or below the specification range.\n",
"top 10 keywords: [('range', 1), ('meet', 1), ('specification', 1), ('monograph', 1), ('budesonide', 1), ('may', 1), ('slightly', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: SOTALOL HCL, Tablet, 120 mg may have potentially been mislabeled as the following drug: NEOMYCIN SULFATE, Tablet, 500 mg, NDC 51991073801, Pedigree: AD49448_17, EXP: 5/17/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('neomycin', 1), ('ad49448_17', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specification; at the 6-month stability time point\n",
"top 10 keywords: [('failed', 1), ('stability', 1), ('time', 1), ('specification', 1), ('dissolution', 1), ('6-month', 1), ('point', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: Presence of split or broken tablets.\n",
"top 10 keywords: [('tablets', 1), ('specifications', 1), ('failed', 1), ('broken', 1), ('tablet/capsule', 1), ('split', 1), ('presence', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an approved NDA/ANDA: Samantha Lynn Inc. is recalling Reumofan Plus Tablets because it contains undeclared drug ingredients making it an unapproved drug. \n",
"top 10 keywords: [('drug', 2), ('marketed', 1), ('tablets', 1), ('approved', 1), ('without', 1), ('nda/anda', 1), ('inc.', 1), ('unapproved', 1), ('ingredients', 1), ('undeclared', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: PYRIDOXINE HCL, Tablet, 50 mg may have potentially been mislabeled as one of the following drugs: LACTOBACILLUS GG, Capsule, 15 Billion Cells, NDC 49100036374, Pedigree: W003787, EXP: 6/27/2014; LEVOTHYROXINE/ LIOTHYRONINE, Tablet, 19 mcg/4.5 mcg, NDC 42192032901, Pedigree: AD30197_19, EXP: 3/31/2014; CALCIUM/ CHOLECALCIFEROL/ SODIUM, Tablet, 600 mg/400 units/5 mg, NDC 00\n",
"top 10 keywords: [('tablet', 3), ('ndc', 3), ('pedigree', 2), ('exp', 2), ('mg', 2), ('potentially', 1), ('liothyronine', 1), ('mixup', 1), ('mcg', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an approved NDA/ANDA: Product contains undeclared sibutramine and desmethylsibutramine.\n",
"top 10 keywords: [('marketed', 1), ('sibutramine', 1), ('undeclared', 1), ('approved', 1), ('nda/anda', 1), ('without', 1), ('product', 1), ('desmethylsibutramine', 1), ('contains', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: product produced on a day there was an excursion in environmental monitoring data.\n",
"top 10 keywords: [('day', 1), ('monitoring', 1), ('produced', 1), ('excursion', 1), ('lack', 1), ('assurance', 1), ('product', 1), ('environmental', 1), ('data', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; NAPROXEN, Tablet, 500 mg may be potentially mislabeled as THIOTHIXENE, Capsule, 1 mg, NDC 00378100101, Pedigree: AD54549_22, EXP: 5/20/2014; HYDROCHLOROTHIAZIDE, Tablet, 12.5 mg, NDC 00228282011, Pedigree: AD67989_13, EXP: 5/28/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('ad54549_22', 1), ('mixup', 1), ('hydrochlorothiazide', 1), ('naproxen', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; PROPRANOLOL HCL Tablet, 5 mg (1/2 of 10 mg) may be potentially mislabeled as LITHIUM CARBONATE ER, Tablet, 225 mg (1/2 of 450 mg), NDC 00054002025, Pedigree: AD73525_16, EXP: 5/30/2014.\n",
"top 10 keywords: [('mg', 4), ('tablet', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or missing Lot and/or Exp Date: Printing error caused an overlap in the \"y\" and \"3\" making the actual \"Use By 3/2015\" date appear to read \"Use By8/2015\".\n",
"top 10 keywords: [('date', 2), ('use', 2), ('error', 1), ('printing', 1), ('exp', 1), ('by8/2015', 1), ('overlap', 1), ('read', 1), ('appear', 1), ('missing', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: Broken tablets found in sealed bottles.\n",
"top 10 keywords: [('sealed', 1), ('tablets', 1), ('failed', 1), ('found', 1), ('tablet/capsule', 1), ('broken', 1), ('bottles', 1), ('specifications', 1)]\n",
"---\n",
"reason_for_recall : Failed Lozenge Specifications; Lozenges are overly thick, overly soft, and sub and superpotent.\n",
"top 10 keywords: [('overly', 2), ('sub', 1), ('soft', 1), ('specifications', 1), ('failed', 1), ('thick', 1), ('superpotent', 1), ('lozenges', 1), ('lozenge', 1)]\n",
"---\n",
"reason_for_recall : Failed Content Uniformity Specifications: resulting in both superpotent and subpotent tablets.\n",
"top 10 keywords: [('subpotent', 1), ('specifications', 1), ('content', 1), ('tablets', 1), ('resulting', 1), ('failed', 1), ('superpotent', 1), ('uniformity', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; QUEtiapine FUMARATE, Tablet, 25 mg may be potentially mislabeled as MULTIVITAMIN/MULTIMINERAL, Chew Tablet, NDC 58914001460, Pedigree: AD32325_1, EXP: 5/9/2014; ASPIRIN DR EC, Tablet, 81 mg, NDC 00182106105, Pedigree: W003094, EXP: 6/13/2014. \n",
"top 10 keywords: [('tablet', 3), ('pedigree', 2), ('exp', 2), ('mg', 2), ('ndc', 2), ('mislabeled', 1), ('mixup', 1), ('multivitamin/multimineral', 1), ('aspirin', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Potential presence of glass particulate matter in the vials. \n",
"top 10 keywords: [('presence', 2), ('particulate', 2), ('matter', 2), ('vials', 1), ('glass', 1), ('potential', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: An Out of Specification (OOS) result was generated for the 18 month stability time point for ketone cilexetil impurity and total impurities.\n",
"top 10 keywords: [('impurities/degradation', 1), ('generated', 1), ('result', 1), ('cilexetil', 1), ('specification', 1), ('total', 1), ('oos', 1), ('specifications', 1), ('failed', 1), ('stability', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Bausch & Lomb, Inc. is recalling 7 Lots of Murocel Methylcellulose Lubricant Opthalmic Solution 1% (15 mL). Product was found to be OOS for Antimicrobial Effectiveness testing (AET) at the 12 month stability time point. \n",
"top 10 keywords: [('antimicrobial', 1), ('lack', 1), ('murocel', 1), ('bausch', 1), ('inc.', 1), ('time', 1), ('aet', 1), ('lots', 1), ('sterility', 1), ('lubricant', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; LISINOPRIL Tablet, 2.5 mg may be potentially mislabeled as RANOLAZINE ER, Tablet, 500 mg, NDC 61958100301, Pedigree: AD23087_1, EXP: 5/2/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375701, Pedigree: W003358, EXP: 6/19/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('capsule', 1), ('mixup', 1), ('ranolazine', 1), ('docusate', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System: Inhalers do not spray properly, emitting either no spray or a short transient spray.\n",
"top 10 keywords: [('spray', 3), ('emitting', 1), ('transient', 1), ('properly', 1), ('delivery', 1), ('system', 1), ('short', 1), ('either', 1), ('defective', 1), ('inhalers', 1)]\n",
"---\n",
"reason_for_recall : Defective Container; Small micro fracture observed in the 2-Liter bottle at the fill line resulting in a small leak when patient reconstitutes the bulk powder\n",
"top 10 keywords: [('small', 2), ('fill', 1), ('powder', 1), ('leak', 1), ('container', 1), ('observed', 1), ('reconstitutes', 1), ('defective', 1), ('2-liter', 1), ('bulk', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Units of this lot may have visible metal particles embedded in the vial and in the solution causing the product to be discolored. \n",
"top 10 keywords: [('presence', 1), ('metal', 1), ('units', 1), ('embedded', 1), ('particulate', 1), ('causing', 1), ('may', 1), ('particles', 1), ('visible', 1), ('discolored', 1)]\n",
"---\n",
"reason_for_recall : Failed pH specification\n",
"top 10 keywords: [('ph', 1), ('specification', 1), ('failed', 1)]\n",
"---\n",
"reason_for_recall : Chemical Contamination: This product is being recalled because trace amounts of a plasticizer (Di-Octyl Phthalate) may be present in the product.\n",
"top 10 keywords: [('product', 2), ('phthalate', 1), ('amounts', 1), ('may', 1), ('plasticizer', 1), ('contamination', 1), ('present', 1), ('chemical', 1), ('di-octyl', 1), ('trace', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: Product has an an out of specification in iron assay analysis found during 18 month stability testing.\n",
"top 10 keywords: [('assay', 1), ('subpotent', 1), ('month', 1), ('analysis', 1), ('found', 1), ('testing', 1), ('drug', 1), ('product', 1), ('specification', 1), ('iron', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Not elsewhere classified - Product label incorrectly lists Scopolamine Hydrocodone as an active ingredient on the side panel instead of Scopolamine Hydrobromide.\n",
"top 10 keywords: [('scopolamine', 2), ('incorrectly', 1), ('classified', 1), ('active', 1), ('elsewhere', 1), ('side', 1), ('labeling', 1), ('hydrocodone', 1), ('lists', 1), ('hydrobromide', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations; Stored/dispensed in a non-GMP compliant warehouse at S.I.M.S., Italy.\n",
"top 10 keywords: [('s.i.m.s.', 1), ('deviations', 1), ('non-gmp', 1), ('cgmp', 1), ('warehouse', 1), ('italy', 1), ('stored/dispensed', 1), ('compliant', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: NIACIN TR, Capsule, 250 mg may have potentially been mislabeled as the following drug: METHYLERGONOVINE MALEATE, Tablet, 0.2 mg, NDC 43386014028, Pedigree: W003477, EXP: 6/20/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('methylergonovine', 1), ('exp', 1), ('mixup', 1), ('maleate', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Discoloration: Reconstituted solution may appear pink instead of colorless to pale yellow when stored per the labeled conditions.\n",
"top 10 keywords: [('discoloration', 1), ('pale', 1), ('labeled', 1), ('conditions', 1), ('yellow', 1), ('reconstituted', 1), ('appear', 1), ('stored', 1), ('instead', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: Par Pharmaceutical, Inc. is recalling one lot of HydrALAZINE Hydrochloride tablets due to the presence of small aluminum particles. \n",
"top 10 keywords: [('presence', 2), ('substance', 1), ('aluminum', 1), ('due', 1), ('hydrochloride', 1), ('hydralazine', 1), ('foreign', 1), ('one', 1), ('pharmaceutical', 1), ('tablets', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an approved NDA/ANDA: The distributed units of Monistat 1 Simple Cure include only the 1200 mg vaginal suppository; the approved NDA requires both a 1200 mg vaginal suppository and the 2% topical cream. \n",
"top 10 keywords: [('vaginal', 2), ('approved', 2), ('suppository', 2), ('mg', 2), ('marketed', 1), ('units', 1), ('nda/anda', 1), ('include', 1), ('requires', 1), ('cream', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; PROPRANOLOL HCL Tablet, 10 mg may be potentially mislabeled as LACTOBACILLUS ACIDOPHILUS, Capsule, NDC 54629011101, Pedigree: AD65311_4, EXP: 5/24/2014.\n",
"top 10 keywords: [('mislabeled', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('mg', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; PANCRELIPASE DR Capsule may be potentially mislabeled as MELATONIN, Tablet, 1 mg, NDC 35046000391, Pedigree: W003317, EXP: 6/18/2014; VERAPAMIL HCL, Tablet, 40 mg, NDC 00591040401, Pedigree: W003170, EXP: 6/13/2014. \n",
"top 10 keywords: [('pedigree', 2), ('tablet', 2), ('exp', 2), ('mg', 2), ('ndc', 2), ('mislabeled', 1), ('melatonin', 1), ('mixup', 1), ('w003317', 1), ('dr', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Hospira, Inc is voluntarily recalling the products due to possible leaking bags.\n",
"top 10 keywords: [('hospira', 1), ('lack', 1), ('assurance', 1), ('due', 1), ('bags', 1), ('products', 1), ('leaking', 1), ('voluntarily', 1), ('inc', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Nova Products, Inc. of Aston, Pennsylvania is voluntarily recalling XZone 1200because FDA laboratory analysis determined that they contain undeclared amounts of sildenafil and tadalafil, active ingredients of FDA-approved drugs used to treat erectile dysfunction. \n",
"top 10 keywords: [('1200because', 1), ('analysis', 1), ('without', 1), ('nda/anda', 1), ('inc.', 1), ('nova', 1), ('dysfunction', 1), ('undeclared', 1), ('fda-approved', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; RIVAROXABAN Tablet, 20 mg may be potentially mislabeled as VENLAFAXINE HCL, Tablet, 100 mg, NDC 00093738301, Pedigree: W002619, EXP: 6/4/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('rivaroxaban', 1), ('mislabeled', 1), ('pedigree', 1), ('w002619', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; NIACIN TR, Tablet, 500 mg may be potentially mislabeled as LACTOBACILLUS GG, Capsule, NDC 49100036374, Pedigree: W002968, EXP: 6/11/2014.\n",
"top 10 keywords: [('mislabeled', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('gg', 1), ('mg', 1), ('potentially', 1), ('may', 1), ('tr', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: CALCIUM/ CHOLECALCIFEROL/ SODIUM, Tablet, 600 mg/400 units/5 mg may have potentially been mislabeled as one of the following drugs: CALCIUM ACETATE, Capsule, 667 mg, NDC 00054008826, Pedigree: W003460, EXP: 6/20/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 40985022921, Pedigree: AD60240_1, EXP: 5/22/2014. \n",
"top 10 keywords: [('mg', 3), ('capsule', 2), ('pedigree', 2), ('exp', 2), ('ndc', 2), ('omega-3', 1), ('mixup', 1), ('may', 1), ('labeling', 1), ('fatty', 1)]\n",
"---\n",
"reason_for_recall : Defective Container: Lids on unit dose cups are not fully qualified.\n",
"top 10 keywords: [('cups', 1), ('fully', 1), ('lids', 1), ('qualified', 1), ('unit', 1), ('container', 1), ('dose', 1), ('defective', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; traZODone HCl Tablet, 50 mg may be potentially mislabeled as AMANTADINE HCL, Tablet, 100 mg, NDC 00832011100, Pedigree: AD54475_1, EXP: 5/20/2014.\n",
"top 10 keywords: [('tablet', 2), ('hcl', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Crimp defects during visual inspection could affect container closure integrity.\n",
"top 10 keywords: [('affect', 1), ('assurance', 1), ('inspection', 1), ('container', 1), ('integrity', 1), ('could', 1), ('sterility', 1), ('defects', 1), ('visual', 1), ('closure', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurity/Degradation Specification; 12-month stability time point\n",
"top 10 keywords: [('failed', 1), ('stability', 1), ('12-month', 1), ('impurity/degradation', 1), ('specification', 1), ('time', 1), ('point', 1)]\n",
"---\n",
"reason_for_recall : Defective Container: Defective bottles may not have tamper evident seals properly seated, and therefore it may be difficult to determine if the product had been opened or tampered with. \n",
"top 10 keywords: [('defective', 2), ('may', 2), ('seals', 1), ('bottles', 1), ('therefore', 1), ('tamper', 1), ('container', 1), ('properly', 1), ('tampered', 1), ('evident', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: process-related particulates which may be associated with the raw materials were observed \n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('process-related', 1), ('associated', 1), ('materials', 1), ('raw', 1), ('observed', 1), ('foreign', 1), ('may', 1), ('particulates', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; SENNOSIDES Tablet, 8.6 mg may be potentially mislabeled as SACCHAROMYCES BOULARDII LYO, Capsule, 250 mg, NDC 00414200007, Pedigree: AD37063_7, EXP: 5/13/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1), ('saccharomyces', 1)]\n",
"---\n",
"reason_for_recall : Discoloration: there were customer reports of yellow discolored solution. The yellow coloration is the result of oxidation of the amino acid tryptophan due to a damaged overpouch. \n",
"top 10 keywords: [('yellow', 2), ('discoloration', 1), ('due', 1), ('result', 1), ('damaged', 1), ('coloration', 1), ('overpouch', 1), ('reports', 1), ('tryptophan', 1), ('amino', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; PSEUDOEPHEDRINE HCL, Tablet, 60 mg may be potentially mislabeled as REPAGLINIDE, Tablet, 1 mg, NDC 00169008281, Pedigree: W002855, EXP: 6/7/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('pseudoephedrine', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Lack of assurance of sterility: Potential channel leaks near the threaded vial port.\n",
"top 10 keywords: [('port', 1), ('lack', 1), ('assurance', 1), ('vial', 1), ('leaks', 1), ('threaded', 1), ('channel', 1), ('potential', 1), ('near', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: DUTASTERIDE, Capsule, 0.5 mg may have potentially been mislabeled as one of the following drugs: DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375701, Pedigree: AD65457_19, EXP: 5/24/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00904789159, Pedigree: AD56924_1, EXP: 5/21/2014; PYRIDOXINE HCL, Tablet, 50 mg, NDC 00904052060, Pedigree: W003257, EXP: 6/17/2014. \n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('capsule', 3), ('ndc', 3), ('docusate', 2), ('sodium', 2), ('w003257', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: fungal contamination due to leaking containers.\n",
"top 10 keywords: [('due', 1), ('non-sterility', 1), ('contamination', 1), ('leaking', 1), ('fungal', 1), ('containers', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Some single-use vials may be filled with water rather than the product solution and the firm cannot guarantee the sterility of the water-filled vials.\n",
"top 10 keywords: [('vials', 2), ('sterility', 2), ('guarantee', 1), ('lack', 1), ('assurance', 1), ('firm', 1), ('filled', 1), ('may', 1), ('solution', 1), ('single-use', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: Drug potency was compromised during shipment.\n",
"top 10 keywords: [('drug', 2), ('subpotent', 1), ('shipment', 1), ('compromised', 1), ('potency', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; CILOSTAZOL Tablet, 100 mg may be potentially mislabeled as DUTASTERIDE, Capsule, 0.5 mg, NDC 00173071204, Pedigree: AD65475_1, EXP: 5/28/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('cilostazol', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('ad65475_1', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; CALCIUM CITRATE, Tablet, 950 mg (200 mg Elem Calcium) may be potentially mislabeled as tiZANidine HCL, Tablet, 2 mg, NDC 57664050289, Pedigree: W003750, EXP: 6/26/2014.\n",
"top 10 keywords: [('mg', 3), ('tablet', 2), ('calcium', 2), ('mislabeled', 1), ('pedigree', 1), ('tizanidine', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: RALOXIFENE HCL, Tablet, 60 mg may be potentially mis-labeled as following drug: ISOSORBIDE MONONITRATE, Tablet, 20 mg, NDC 62175010701; Pedigree: W002656, EXP: 6/4/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('drug', 1), ('pedigree', 1), ('isosorbide', 1), ('mixup', 1), ('hcl', 1), ('raloxifene', 1), ('potentially', 1), ('mononitrate', 1)]\n",
"---\n",
"reason_for_recall : Tablet Thickness: Recall was initiated due to the presence of one slightly oversized tablet in a bottle of the identified lot.\n",
"top 10 keywords: [('tablet', 2), ('recall', 1), ('due', 1), ('thickness', 1), ('initiated', 1), ('presence', 1), ('one', 1), ('lot', 1), ('oversized', 1), ('bottle', 1)]\n",
"---\n",
"reason_for_recall : Impurities/Degradation Products: The product was found to contain a slightly out of specification level of bromides, exceeding the bromides limit for USP Sodium Chloride. \n",
"top 10 keywords: [('bromides', 2), ('chloride', 1), ('impurities/degradation', 1), ('found', 1), ('products', 1), ('contain', 1), ('level', 1), ('sodium', 1), ('limit', 1), ('usp', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; LACTOBACILLUS GG Capsule may be potentially mislabeled as VITAMIN B COMPLEX W/C, Capsule, NDC 54629008001, Pedigree: AD39560_4, EXP: 5/13/2014; DOCUSATE SODIUM, Capsule, 50 mg, NDC 67618010060, Pedigree: AD65457_13, EXP: 5/24/2014; VITAMIN B COMPLEX WITH C/FOLIC ACID, Tablet, NDC 60258016001, Pedigree: AD70655_17, EXP: 5/28/2014; TACROLIMUS, Capsule, 1 mg, NDC 00781210\n",
"top 10 keywords: [('capsule', 4), ('ndc', 4), ('exp', 3), ('pedigree', 3), ('b', 2), ('complex', 2), ('vitamin', 2), ('mg', 2), ('ad65457_13', 1), ('docusate', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance(s): A product complaint was received from a pharmacist who discovered that several tablets displayed brown specks. The same complainant also reported that metal shaving like material was observed on the surface of one tablet. \n",
"top 10 keywords: [('presence', 1), ('metal', 1), ('complaint', 1), ('discovered', 1), ('material', 1), ('observed', 1), ('specks', 1), ('foreign', 1), ('product', 1), ('like', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 88 mcg may have potentially been mislabeled as one of the following drugs: NEBIVOLOL HCL, Tablet, 5 mg, NDC 00456140530, Pedigree: AD73611_7, EXP: 5/30/2014; MELATONIN, Tablet, 3 mg, NDC 08770140813, Pedigree: W003022, EXP: 6/12/2014; ISOSORBIDE DINITRATE, Tablet, 5 mg, NDC 00781163501, Pedigree: W003474, EXP: 6/20/2014; HYDROCORTISONE, Tabl\n",
"top 10 keywords: [('tablet', 4), ('exp', 3), ('pedigree', 3), ('mg', 3), ('ndc', 3), ('w003022', 1), ('isosorbide', 1), ('levothyroxine', 1), ('mcg', 1), ('dinitrate', 1)]\n",
"---\n",
"reason_for_recall : cGMP Deviations; Clonidine hydrochloride drug substance used in the manufacturing of this product, was dispensed in unauthorized rooms by the drug substance manufacturer\n",
"top 10 keywords: [('drug', 2), ('substance', 2), ('dispensed', 1), ('unauthorized', 1), ('cgmp', 1), ('hydrochloride', 1), ('clonidine', 1), ('rooms', 1), ('deviations', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; CRANBERRY EXTRACT/VITAMIN C Capsule, 450 mg/125 mg may be potentially mislabeled as MULTIVITAMIN/MULTIMINERAL, Tablet, NDC 00536406001, Pedigree: W002653, EXP: 6/5/2014; MODAFINIL, Tablet, 200 mg, NDC 00603466216, Pedigree: W003779, EXP: 6/26/2014; NIACIN ER, Tablet, 500 mg, NDC 00074307490, Pedigree: W003739, EXP: 6/26/2014; GLUCOSAMINE/CHONDROITIN, Capsule, 500 mg/40\n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('tablet', 3), ('mg', 3), ('ndc', 3), ('capsule', 2), ('mg/40', 1), ('modafinil', 1), ('multivitamin/multimineral', 1), ('cranberry', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix-up: The affected units were labeled incorrectly describing the product as \"ointment\" instead of \"solution.\"\n",
"top 10 keywords: [('incorrectly', 1), ('labeled', 1), ('units', 1), ('solution', 1), ('labeling', 1), ('affected', 1), ('describing', 1), ('instead', 1), ('product', 1), ('ointment', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; IBUPROFEN, Tablet, 400 mg may be potentially mislabeled as ASPIRIN, Tablet, 325 mg, NDC 00536330501, Pedigree: W002573, EXP: 6/3/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('ibuprofen', 1), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('w002573', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 88 mcg may have potentially been mislabeled as the following drug: guanFACINE HCl, Tablet, 1 mg, NDC 00378116001, Pedigree: W003007, EXP: 6/12/2014. \n",
"top 10 keywords: [('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('levothyroxine', 1), ('mcg', 1), ('potentially', 1), ('w003007', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: Pharmacy Creations is recalling Ascorbic Acid 500 mg/mL 50 mL vials due to mold contamination.\n",
"top 10 keywords: [('pharmacy', 1), ('due', 1), ('vials', 1), ('ascorbic', 1), ('recalling', 1), ('mold', 1), ('creations', 1), ('contamination', 1), ('non-sterility', 1), ('acid', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Products: Lot in question had an elevated microbial count outside of specifications and E. Coli contamination.\n",
"top 10 keywords: [('microbial', 2), ('contamination', 2), ('elevated', 1), ('count', 1), ('non-sterile', 1), ('products', 1), ('specifications', 1), ('question', 1), ('outside', 1), ('e.', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Firm did not adequately investigate customer complaints.\n",
"top 10 keywords: [('adequately', 1), ('deviations', 1), ('investigate', 1), ('cgmp', 1), ('customer', 1), ('firm', 1), ('complaints', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: product marketed as a dietary supplement was found to be tainted with undeclared sibutramine, a previously approved controlled substance that was removed from the U.S. market in October 2010 for safety reasons, in this tainted product renders it an unapproved drug.\n",
"top 10 keywords: [('product', 2), ('marketed', 2), ('approved', 2), ('tainted', 2), ('drug', 1), ('previously', 1), ('found', 1), ('without', 1), ('nda/anda', 1), ('october', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: PANTOPRAZOLE SODIUM DR, Tablet, 20 mg may be potentially mislabeled as one of the following drugs: HYOSCYAMINE SULFATE SL, Tablet, 0.125 mg, NDC 00574025001, Pedigree: AD60272_16, EXP: 5/22/2014; MULTIVITAMIN/MULTIMINERAL, Tablet, 0 mg, NDC 65162066810, Pedigree: AD73646_13, EXP: 5/30/2014. \n",
"top 10 keywords: [('tablet', 3), ('mg', 3), ('exp', 2), ('pedigree', 2), ('ndc', 2), ('hyoscyamine', 1), ('multivitamin/multimineral', 1), ('may', 1), ('labeling', 1), ('ad73646_13', 1)]\n",
"---\n",
"reason_for_recall : Subpotent; Hydrochlorothiazide at the 9 month time point.\n",
"top 10 keywords: [('subpotent', 1), ('month', 1), ('time', 1), ('point', 1), ('hydrochlorothiazide', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Product excipient was not re-tested at the appropriate date.\n",
"top 10 keywords: [('deviations', 1), ('date', 1), ('appropriate', 1), ('re-tested', 1), ('product', 1), ('cgmp', 1), ('excipient', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Exp Date: Bottled product is labeled with an expiration date of Apr 2015. The correct expiration is Apr 2013. \n",
"top 10 keywords: [('date', 2), ('apr', 2), ('expiration', 2), ('exp', 1), ('labeled', 1), ('missing', 1), ('labeling', 1), ('incorrect', 1), ('bottled', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an approved NDA/ANDA - Product contains undeclared sibutramine, desmethylsibutramine and phenolphthalein.\n",
"top 10 keywords: [('marketed', 1), ('sibutramine', 1), ('undeclared', 1), ('phenolphthalein', 1), ('approved', 1), ('nda/anda', 1), ('without', 1), ('product', 1), ('desmethylsibutramine', 1), ('contains', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: presence of undeclared Sibutramine and Phenolphthalein.\n",
"top 10 keywords: [('marketed', 1), ('sibutramine', 1), ('presence', 1), ('undeclared', 1), ('phenolphthalein', 1), ('approved', 1), ('without', 1), ('nda/anda', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; some lots failed Antimicrobial Effectiveness Testing on stability\n",
"top 10 keywords: [('antimicrobial', 1), ('failed', 1), ('stability', 1), ('lack', 1), ('assurance', 1), ('testing', 1), ('effectiveness', 1), ('lots', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Superpotent and Subpotent drugs \n",
"top 10 keywords: [('subpotent', 1), ('drugs', 1), ('superpotent', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility. Complaints were receive of missing closures and/or leaks which may compromise product sterility. \n",
"top 10 keywords: [('sterility', 2), ('lack', 1), ('assurance', 1), ('closures', 1), ('leaks', 1), ('may', 1), ('receive', 1), ('missing', 1), ('product', 1), ('and/or', 1)]\n",
"---\n",
"reason_for_recall : Presence of particulate matter: A returned customer sample was evaluated and found to have human hair attached to a pinched area of the stopper.\n",
"top 10 keywords: [('presence', 1), ('found', 1), ('human', 1), ('attached', 1), ('stopper', 1), ('particulate', 1), ('area', 1), ('returned', 1), ('customer', 1), ('hair', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: Out Of Specification results for assay at the stability time-point of 24 months.\n",
"top 10 keywords: [('results', 1), ('subpotent', 1), ('months', 1), ('assay', 1), ('stability', 1), ('drug', 1), ('specification', 1), ('time-point', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: Product exceeds specification for tablet weight and tablet thickness.\n",
"top 10 keywords: [('tablet', 2), ('specifications', 1), ('failed', 1), ('weight', 1), ('exceeds', 1), ('thickness', 1), ('product', 1), ('specification', 1), ('tablet/capsule', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: The API for these products had an out of specification result for an organic impurity.\n",
"top 10 keywords: [('api', 1), ('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('products', 1), ('result', 1), ('impurity', 1), ('specification', 1), ('organic', 1)]\n",
"---\n",
"reason_for_recall : Microbial contamination of Non-Sterile Products; positive findings of Burkholderia cepacia\n",
"top 10 keywords: [('cepacia', 1), ('findings', 1), ('burkholderia', 1), ('products', 1), ('microbial', 1), ('non-sterile', 1), ('contamination', 1), ('positive', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Dissolution failures found during testing of control samples at the four hour time point.\n",
"top 10 keywords: [('dissolution', 2), ('control', 1), ('found', 1), ('failures', 1), ('testing', 1), ('four', 1), ('samples', 1), ('specifications', 1), ('failed', 1), ('time', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; OMEGA-3 FATTY ACID Capsule, 1000 mg may be potentially mislabeled as PYRIDOXINE HCL, Tablet, 50 mg, NDC 00904052060, Pedigree: AD22865_19, EXP: 5/2/2014; CHOLECALCIFEROL, Capsule, 2000 units, NDC 00536379001, Pedigree: AD30028_7, EXP: 5/8/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375710, Pedigree: W003054, EXP: 6/12/2014; CHOLECALCIFEROL, Capsule, 2000 units, ND\n",
"top 10 keywords: [('capsule', 4), ('exp', 3), ('pedigree', 3), ('mg', 3), ('ndc', 3), ('cholecalciferol', 2), ('units', 2), ('nd', 1), ('omega-3', 1), ('docusate', 1)]\n",
"---\n",
"reason_for_recall : Chemical Contamination: Complaints of an uncharacteristic odor identified as 2,4,6 tribromoanisole. \n",
"top 10 keywords: [('uncharacteristic', 1), ('contamination', 1), ('tribromoanisole', 1), ('chemical', 1), ('complaints', 1), ('odor', 1), ('identified', 1)]\n",
"---\n",
"reason_for_recall : Penicillin Cross Contamination: All lots of all products repackaged and distributed between 01/05/12 and 02/12/15 are being recalled because they were repackaged in a facility with penicillin products without adequate separation which could introduce the potential for cross contamination with penicillin.\n",
"top 10 keywords: [('penicillin', 3), ('products', 2), ('cross', 2), ('contamination', 2), ('repackaged', 2), ('could', 1), ('without', 1), ('adequate', 1), ('potential', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications; The identification codes on some tablets may be unreadable\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('unreadable', 1), ('tablet/capsule', 1), ('identification', 1), ('tablets', 1), ('may', 1), ('codes', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: Uncharacteristic blacks spots were found in tablets.\n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('uncharacteristic', 1), ('tablets', 1), ('found', 1), ('blacks', 1), ('foreign', 1), ('spots', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate; lot being recalled as a precaution due to the discovery of 2 particles found in a lot which preceded the recalled lot\n",
"top 10 keywords: [('lot', 3), ('recalled', 2), ('precaution', 1), ('presence', 1), ('preceded', 1), ('due', 1), ('discovery', 1), ('particulate', 1), ('particles', 1), ('found', 1)]\n",
"---\n",
"reason_for_recall : Subpotent; 24 month stability test station\n",
"top 10 keywords: [('subpotent', 1), ('month', 1), ('stability', 1), ('station', 1), ('test', 1)]\n",
"---\n",
"reason_for_recall : Superpotent (Single Ingredient) Drug: All BiCNU lots within expiration which contain carmustine vial lots manufactured by BenVenue Laboratories (BVL) are being recalled because of an overfilled vial discovered during stability testing for a single carmustine lot. \n",
"top 10 keywords: [('carmustine', 2), ('lots', 2), ('vial', 2), ('single', 2), ('bvl', 1), ('drug', 1), ('manufactured', 1), ('laboratories', 1), ('lot', 1), ('overfilled', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System: Out of Specification (OOS) results for the mechanical peel force (MPF) and and/or the z-statistic values.\n",
"top 10 keywords: [('peel', 1), ('mpf', 1), ('specification', 1), ('z-statistic', 1), ('defective', 1), ('force', 1), ('results', 1), ('mechanical', 1), ('delivery', 1), ('and/or', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 137 mcg may have potentially been mislabeled as the following drug: OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 40985022921, Pedigree: AD21846_1, EXP: 5/1/2014.\n",
"top 10 keywords: [('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('levothyroxine', 1), ('mcg', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Confirmed customer complaints received for the presence of blue plastic, identified as fragments of the frangible from the vial adapter.\n",
"top 10 keywords: [('presence', 2), ('received', 1), ('blue', 1), ('confirmed', 1), ('adapter', 1), ('fragments', 1), ('particulate', 1), ('frangible', 1), ('vial', 1), ('customer', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System: Some Lupron Depot Kits may containin a syringe with a potentially defective LuproLoc needle stick protection device.\n",
"top 10 keywords: [('defective', 2), ('containin', 1), ('kits', 1), ('needle', 1), ('potentially', 1), ('device', 1), ('may', 1), ('lupron', 1), ('depot', 1), ('stick', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ESCITALOPRAM, Tablet, 5 mgmay have potentially been mislabeled as the following drug: SODIUM CHLORIDE, Tablet, 1 gm, NDC 00223176001, Pedigree: W003707, EXP: 6/25/2014. \n",
"top 10 keywords: [('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('chloride', 1), ('exp', 1), ('mixup', 1), ('gm', 1), ('mgmay', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: The recalled acetaminophen tablet lot was not manufactured under current good manufacturing practices as noted by a recent inspection of the manufacturing firm.\n",
"top 10 keywords: [('manufacturing', 2), ('recent', 1), ('manufactured', 1), ('tablet', 1), ('cgmp', 1), ('inspection', 1), ('firm', 1), ('good', 1), ('recalled', 1), ('current', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Nova Products, Inc. of Aston, Pennsylvania is voluntarily recalling Black Ant because FDA laboratory analysis determined they contain undeclared amounts of sildenafil an active ingredient of FDA-approved drugs used to treat erectile dysfunction. \n",
"top 10 keywords: [('analysis', 1), ('without', 1), ('nda/anda', 1), ('inc.', 1), ('nova', 1), ('dysfunction', 1), ('ant', 1), ('undeclared', 1), ('black', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: Product did not conform to the 18-month stability test specification for active Free Benzocaine.\n",
"top 10 keywords: [('subpotent', 1), ('test', 1), ('18-month', 1), ('stability', 1), ('active', 1), ('drug', 1), ('benzocaine', 1), ('product', 1), ('specification', 1), ('conform', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: there is a potential for solution to leak at the administrative port of the primary container.\n",
"top 10 keywords: [('primary', 1), ('lack', 1), ('assurance', 1), ('port', 1), ('container', 1), ('sterility', 1), ('leak', 1), ('potential', 1), ('administrative', 1), ('solution', 1)]\n",
"---\n",
"reason_for_recall : Subpotent (Single Ingredient Drug): Low assay at the 6-month test interval.\n",
"top 10 keywords: [('assay', 1), ('subpotent', 1), ('interval', 1), ('drug', 1), ('low', 1), ('ingredient', 1), ('test', 1), ('6-month', 1), ('single', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; CAFFEINE Tablet, 200 mg may be potentially mislabeled as CALCIUM CITRATE, Tablet, 950 mg (200 mg ELEMENTAL Ca), NDC 00904506260, Pedigree: AD21846_24, EXP: 5/1/2014; CHOLECALCIFEROL, Capsule, 2000 units, NDC 00536379001, Pedigree: AD60240_4, EXP: 5/22/2014; FEXOFENADINE HCL, Tablet, 60 mg, NDC 45802042578, Pedigree: W003020, EXP: 6/12/2014; MELATONIN, Tablet, 3 mg, ND\n",
"top 10 keywords: [('mg', 5), ('tablet', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('nd', 1), ('ad60240_4', 1), ('may', 1), ('labeling', 1), ('cholecalciferol', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: tiZANidine HCl, Tablet, 2 mg may have potentially been mislabeled as the following drug: NIACIN TR, Tablet, 500 mg, NDC 00904434260, Pedigree: W002969, EXP: 6/11/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('tizanidine', 1), ('w002969', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility:Solution leaking through the port cover of the primary container, which was identified during a retain sample visual inspection.\n",
"top 10 keywords: [('port', 1), ('sample', 1), ('lack', 1), ('assurance', 1), ('retain', 1), ('inspection', 1), ('leaking', 1), ('container', 1), ('primary', 1), ('cover', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Exp Date: incorrect expiration date of 02/0218 is printed on the container label instead of the correct expiration date of 02/2018.\n",
"top 10 keywords: [('date', 3), ('incorrect', 2), ('expiration', 2), ('lot', 1), ('exp', 1), ('container', 1), ('printed', 1), ('labeling', 1), ('missing', 1), ('and/or', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility:The product lots are being recalled due to laboratory results (from a contract lab) indicating microbial contamination. The FDA was concerned test results obtained from the recalling firm's contract testing lab may not be reliable. Hence the sterility of the products cannot be assured. \n",
"top 10 keywords: [('sterility', 2), ('lab', 2), ('results', 2), ('contract', 2), ('assured', 1), ('microbial', 1), ('test', 1), ('firm', 1), ('contamination', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: Teva Pharmaceuticals USA, Inc. is voluntarily recalling one lot of Fluvastatin Capsules USP, 20 mg due to a customer complaint trend regarding capsule breakage. \n",
"top 10 keywords: [('complaint', 1), ('pharmaceuticals', 1), ('inc.', 1), ('recalling', 1), ('capsules', 1), ('specifications', 1), ('failed', 1), ('one', 1), ('due', 1), ('teva', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: Failing sterility results were obtained from the recalling firm's contract testing facility indicating that the products may not be sterile.\n",
"top 10 keywords: [('contract', 1), ('products', 1), ('failing', 1), ('non-sterility', 1), ('firm', 1), ('may', 1), ('sterility', 1), ('results', 1), ('obtained', 1), ('recalling', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; BENZOCAINE/MENTHOL Lozenge, 15 mg/3.6 mg may be potentially mislabeled as LUBIPROSTONE, Capsule, 24 mcg, NDC 64764024060, Pedigree: AD21811_1, EXP: 5/1/2014; LOSARTAN POTASSIUM, Tablet, 50 mg, NDC 00093736598, Pedigree: W003268, EXP: 6/17/2014. \n",
"top 10 keywords: [('pedigree', 2), ('mg', 2), ('ndc', 2), ('exp', 2), ('mislabeled', 1), ('w003268', 1), ('tablet', 1), ('mixup', 1), ('lubiprostone', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup:quiNIDine SULFATE, Tablet, 200 mg may have potentially been mislabeled as the following drug: QUINAPRIL, Tablet, 40 mg, NDC 31722027090, Pedigree: AD52778_76, EXP: 5/21/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; container closure issues with the bulk batch. \n",
"top 10 keywords: [('closure', 1), ('lack', 1), ('assurance', 1), ('issues', 1), ('container', 1), ('bulk', 1), ('batch', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; OXcarbazepine Tablet, 150 mg may be potentially mislabeled as traZODone HCl, Tablet, 50 mg, NDC 50111043301, Pedigree: AD54562_1, EXP: 5/20/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('oxcarbazepine', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Exp Date: This recall is being conducted because the product was given 36 month expiration dates instead of the filed 24 months.\n",
"top 10 keywords: [('recall', 1), ('dates', 1), ('exp', 1), ('month', 1), ('expiration', 1), ('months', 1), ('missing', 1), ('labeling', 1), ('incorrect', 1), ('given', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Confirmed customer report of visible particulate in the form of an orange or rust colored ring embedded in between the plastic layers of the plastic vial.\n",
"top 10 keywords: [('particulate', 2), ('plastic', 2), ('confirmed', 1), ('orange', 1), ('embedded', 1), ('vial', 1), ('presence', 1), ('layers', 1), ('form', 1), ('visible', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Product was found to contain undeclared active pharmaceutical ingredients: Sibutramine and Phenolphthalein .\n",
"top 10 keywords: [('marketed', 1), ('phenolphthalein', 1), ('found', 1), ('approved', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('ingredients', 1), ('pharmaceutical', 1), ('undeclared', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: A recent FDA inspection found that this product was not being compounded in an area appropriate for lyophilization which may lead to a lack of sterility assurance. \n",
"top 10 keywords: [('lack', 2), ('assurance', 2), ('sterility', 2), ('recent', 1), ('lyophilization', 1), ('found', 1), ('inspection', 1), ('appropriate', 1), ('area', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Tablet Separation: Possibility of cracked or split coating on the tablets.\n",
"top 10 keywords: [('cracked', 1), ('tablets', 1), ('tablet', 1), ('coating', 1), ('possibility', 1), ('split', 1), ('separation', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA: This recall is being initiated because of changes to the dissolution profile in distributed lots resulting from a manufacturing site change. There is currently no approved application supporting the alternate manufacturing site.\n",
"top 10 keywords: [('approved', 2), ('site', 2), ('manufacturing', 2), ('marketed', 1), ('supporting', 1), ('recall', 1), ('changes', 1), ('initiated', 1), ('without', 1), ('nda/anda', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; CITALOPRAM Tablet, 10 mg may be potentially mislabeled as OXYBUTYNIN CHLORIDE, Tablet, 5 mg, NDC 00603497521, Pedigree: AD52778_61, EXP: 5/20/2014; COENZYME Q-10, Capsule, 30 mg, NDC 00904501546, Pedigree: W002814, EXP: 6/7/2014. \n",
"top 10 keywords: [('mg', 3), ('tablet', 2), ('exp', 2), ('pedigree', 2), ('ndc', 2), ('mislabeled', 1), ('ad52778_61', 1), ('citalopram', 1), ('chloride', 1), ('mixup', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; hydrALAZINE HCl Tablet, 100 mg may be potentially mislabeled as DOXEPIN HCL, Capsule, 150 mg, NDC 49884022201, Pedigree: AD46312_10, EXP: 5/16/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375701, Pedigree: AD73652_1, EXP: 5/29/2014; LEVOTHYROXINE SODIUM, Tablet, 112 mcg, NDC 00378181101, Pedigree: AD30197_13, EXP: 5/9/2014. \n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('mg', 3), ('ndc', 3), ('tablet', 2), ('hcl', 2), ('sodium', 2), ('capsule', 2), ('levothyroxine', 1), ('docusate', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Products are underdosed or have an incorrect dosage regime. \n",
"top 10 keywords: [('incorrect', 1), ('underdosed', 1), ('deviations', 1), ('products', 1), ('regime', 1), ('dosage', 1), ('cgmp', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; MELATONIN, Tablet, 1 mg may be potentially mislabeled as QUETIAPINE FUMARATE, Tablet, 12.5 MG (1/2 of 25 MG), NDC 47335090288, Pedigree: AD21790_79, EXP: 5/1/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375710, Pedigree: AD73521_13, EXP: 5/30/2014. \n",
"top 10 keywords: [('mg', 4), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('melatonin', 1), ('mixup', 1), ('docusate', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup:predniSONE, Tablet, 20 mg may have potentially been mislabeled as the following drug: methylPREDNISolone, Tablet, 4 mg, NDC 00781502201, Pedigree: AD54587_7, EXP: 5/21/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Incorrect/Undeclared Excipients: Product contains undeclared FD&C Yellow No. 5 in the capsule shell.\n",
"top 10 keywords: [('shell', 1), ('undeclared', 1), ('c', 1), ('incorrect/undeclared', 1), ('excipients', 1), ('product', 1), ('yellow', 1), ('capsule', 1), ('fd', 1), ('contains', 1)]\n",
"---\n",
"reason_for_recall : Presence of Precipitate; white substance confirmed as Guaifenesin, an active ingredient was observed in some bottles. If the product is shaken or warmed the white particles goes into the solution.\n",
"top 10 keywords: [('white', 2), ('goes', 1), ('substance', 1), ('presence', 1), ('bottles', 1), ('active', 1), ('observed', 1), ('confirmed', 1), ('shaken', 1), ('solution', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot And/or Exp Date: Bottles labeled with the incorrect expiration date of 03/18 rather than 09/17.\n",
"top 10 keywords: [('incorrect', 2), ('date', 2), ('rather', 1), ('bottles', 1), ('expiration', 1), ('missing', 1), ('exp', 1), ('and/or', 1), ('labeled', 1), ('lot', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Error on Declared Strength: Label incorrectly identifies product dose as 5ml instead of 10 ml.\n",
"top 10 keywords: [('label', 2), ('error', 1), ('incorrectly', 1), ('5ml', 1), ('declared', 1), ('dose', 1), ('instead', 1), ('identifies', 1), ('strength', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: A recent FDA inspection of Vann Healthcare Services facility revealed deficiencies that raise concerns about the pharmacy's ability to consistently assure sterility of their products. \n",
"top 10 keywords: [('sterility', 2), ('recent', 1), ('services', 1), ('lack', 1), ('assurance', 1), ('products', 1), ('vann', 1), ('revealed', 1), ('assure', 1), ('consistently', 1)]\n",
"---\n",
"reason_for_recall : Adulterated Presence of Foreign Tablets: Pharmaceutical manufacturer may have distributed foreign tablets in bottles of Levetiracetam Tablets, USP 500 mg.\n",
"top 10 keywords: [('tablets', 3), ('foreign', 2), ('levetiracetam', 1), ('bottles', 1), ('mg', 1), ('presence', 1), ('may', 1), ('pharmaceutical', 1), ('usp', 1), ('distributed', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; amLODIPine BESYLATE, Tablet, 10 mg may be potentially mislabeled as FINASTERIDE, Tablet, 5 mg, NDC 16714052201, Pedigree: AD62846_1, EXP: 2/28/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('besylate', 1), ('ad62846_1', 1), ('potentially', 1), ('amlodipine', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Sigma-Tau PharmaSource, Inc. is conducting a voluntary recall of five lots of Oncaspar Injection, because of a crack under the crimp seal which caused a leak. \n",
"top 10 keywords: [('oncaspar', 1), ('recall', 1), ('pharmasource', 1), ('lack', 1), ('assurance', 1), ('crimp', 1), ('inc.', 1), ('crack', 1), ('leak', 1), ('lots', 1)]\n",
"---\n",
"reason_for_recall : Failed Impuities/Degradation Specifications\n",
"top 10 keywords: [('impuities/degradation', 1), ('failed', 1), ('specifications', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specification: Out of a specification result occurred during the 3-month stability testing. Dissolution result at the 4-hour time point was 41% (specification: 20-40%). \n",
"top 10 keywords: [('specification', 3), ('result', 2), ('dissolution', 2), ('time', 1), ('failed', 1), ('3-month', 1), ('occurred', 1), ('4-hour', 1), ('testing', 1), ('point', 1)]\n",
"---\n",
"reason_for_recall : Failed Content Uniformity Specifications: out of specification test result for spray content uniformity. \n",
"top 10 keywords: [('content', 2), ('uniformity', 2), ('specifications', 1), ('spray', 1), ('result', 1), ('test', 1), ('specification', 1), ('failed', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; QUEtiapine FUMARATE Tablet, 100 mg may be potentially mislabeled as DOCUSATE CALCIUM, Capsule, 240 mg, NDC 00536375501, Pedigree: W002776, EXP: 6/6/2014; NICOTINE POLACRILEX, Lozenge, 2 mg, NDC 37205098769, Pedigree: W003823, EXP: 6/27/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375710, Pedigree: AD60578_5, EXP: 5/29/2014. \n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('docusate', 2), ('capsule', 2), ('may', 1), ('labeling', 1), ('quetiapine', 1), ('w003823', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; LEFLUNOMIDE Tablet, 10 mg may be potentially mislabeled as DOXYCYCLINE HYCLATE, Capsule, 100 mg, NDC 00143314250, Pedigree: W002645, EXP: 6/5/2014; SEVELAMER CARBONATE, Tablet, 800 mg, NDC 58468013001, Pedigree: W002623, EXP: 6/4/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('sevelamer', 1), ('hyclate', 1), ('mixup', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: The product contains undeclared sibutramine and phenolphthalein. Sibutramine and phenolphthalein are not currently marketed in the United States, making this product an unapproved new drug.\n",
"top 10 keywords: [('marketed', 2), ('phenolphthalein', 2), ('sibutramine', 2), ('product', 2), ('approved', 1), ('drug', 1), ('without', 1), ('nda/anda', 1), ('unapproved', 1), ('states', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: THYROID, Tablet, 60 mg may have potentially been mislabeled as the following drug: THYROID, Tablet, 30 mg, NDC 00456045801, Pedigree: W002847, EXP: 6/7/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('thyroid', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: tainted product marketed as a dietary supplement. Product found to be tainted with undeclared phenolphthalein, an ingredient found in over-the-counter laxative products that was withdrawn from the US market due to concerns of carcinogenicity, making it an unapproved drug.\n",
"top 10 keywords: [('product', 2), ('found', 2), ('marketed', 2), ('tainted', 2), ('phenolphthalein', 1), ('drug', 1), ('without', 1), ('nda/anda', 1), ('carcinogenicity', 1), ('undeclared', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: IMIPRAMINE HCL, Tablet, 25 mg may have potentially been mislabeled as the following drug: FENOFIBRATE, Tablet, 54 mg, NDC 00115551110, Pedigree: AD49448_7, EXP: 5/17/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('fenofibrate', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix-up: Product was incorrectly labeled,\"Tabs\" instead of \"Capsules.\"\u001d",
"\n",
"top 10 keywords: [('incorrectly', 1), ('tabs', 1), ('capsules', 1), ('labeled', 1), ('product', 1), ('mix-up', 1), ('instead', 1), ('label', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; improperly crimped fliptop vials\n",
"top 10 keywords: [('vials', 1), ('lack', 1), ('assurance', 1), ('fliptop', 1), ('crimped', 1), ('improperly', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: The Mentholatum Company has recalled Rohto Arctic, Rohto Ice, Rohto Hydra, Rohto Relief and Rohto Cool eye drops, due to concerns related to the quality assurance of sterility controls. \n",
"top 10 keywords: [('rohto', 5), ('assurance', 2), ('sterility', 2), ('hydra', 1), ('company', 1), ('lack', 1), ('due', 1), ('related', 1), ('drops', 1), ('ice', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System: out of specification result for droplet size distribution at the d90 measurement testing during the 6 month time point..\n",
"top 10 keywords: [('d90', 1), ('measurement', 1), ('specification', 1), ('size', 1), ('droplet', 1), ('defective', 1), ('point..', 1), ('result', 1), ('month', 1), ('distribution', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of a Non-Sterile Products: The product had a positive Staphylococcus aureus test result. \n",
"top 10 keywords: [('aureus', 1), ('test', 1), ('result', 1), ('product', 1), ('products', 1), ('microbial', 1), ('non-sterile', 1), ('contamination', 1), ('positive', 1), ('staphylococcus', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; MULTIVITAMIN/MULTIMINERAL W/FLUORIDE, Chew Tablet, 1 mg (F) may be potentially mislabeled as ISOMETHEPTENE MUCATE/ DICHLORALPHENAZONE/APAP, Capsule, 65 mg/100 mg/325 mg, NDC 44183044001, Pedigree: AD22858_1, EXP: 3/31/2014.\n",
"top 10 keywords: [('mg', 2), ('mg/100', 1), ('mixup', 1), ('multivitamin/multimineral', 1), ('mucate/', 1), ('ad22858_1', 1), ('may', 1), ('labeling', 1), ('w/fluoride', 1), ('mislabeled', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: There is a potential for the solution to leak from the administration port of the primary container.\n",
"top 10 keywords: [('administration', 1), ('primary', 1), ('lack', 1), ('assurance', 1), ('port', 1), ('container', 1), ('sterility', 1), ('leak', 1), ('potential', 1), ('solution', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: unspecified degradation product\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('product', 1), ('unspecified', 1), ('degradation', 1)]\n",
"---\n",
"reason_for_recall : GMP deviation; Sr-82 levels exceeded alert limit specification \n",
"top 10 keywords: [('levels', 1), ('exceeded', 1), ('gmp', 1), ('alert', 1), ('limit', 1), ('specification', 1), ('sr-82', 1), ('deviation', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Products: Elevated counts of bacteria was found, Serratia liquefaciens.\n",
"top 10 keywords: [('liquefaciens', 1), ('counts', 1), ('bacteria', 1), ('elevated', 1), ('products', 1), ('microbial', 1), ('non-sterile', 1), ('serratia', 1), ('contamination', 1), ('found', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: During review of retain samples, the manufacturer observed low fill in some capsules, which was related to an issue detected with the encapsulating equipment.\n",
"top 10 keywords: [('subpotent', 1), ('review', 1), ('related', 1), ('detected', 1), ('issue', 1), ('low', 1), ('samples', 1), ('retain', 1), ('observed', 1), ('fill', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; LACTOBACILLUS ACIDOPHILUS, Capsule, 500 Million CFU may be potentially mislabeled as DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375710, Pedigree: W002694, EXP: 6/5/2014\n",
"top 10 keywords: [('capsule', 2), ('mislabeled', 1), ('pedigree', 1), ('million', 1), ('exp', 1), ('mixup', 1), ('docusate', 1), ('acidophilus', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Product was found to contain undeclared active pharmaceutical ingredient: N-desmethylsibutramine, benzylsibutramine, and sibutramine\n",
"top 10 keywords: [('marketed', 1), ('n-desmethylsibutramine', 1), ('sibutramine', 1), ('found', 1), ('approved', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('pharmaceutical', 1), ('undeclared', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: METOPROLOL TARTRATE, Tablet, 50 mg may have potentially been mislabeled as one of the following drugs: METOPROLOL TARTRATE, Tablet, 25 mg, NDC 57664050652, Pedigree: W003843, EXP: 6/27/2014; ATORVASTATIN CALCIUM, Tablet, 20 mg, NDC 60505257909, Pedigree: W003846, EXP: 6/27/2014; OXYBUTYNIN CHLORIDE, Tablet, 5 mg, NDC 00603497521, Pedigree: W003898, EXP: 6/27/2014. \n",
"top 10 keywords: [('tablet', 4), ('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('metoprolol', 2), ('tartrate', 2), ('chloride', 1), ('oxybutynin', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/1110 mg may be potentially mislabeled as LACTOBACILLUS GG, Capsule, NDC 49100036374, Pedigree: AD70655_8, EXP: 5/29/2014; PYRIDOXINE HCL, Tablet, 100 mg, NDC 00536440901, Pedigree: AD73627_32, EXP: 5/30/2014. \n",
"top 10 keywords: [('pedigree', 2), ('exp', 2), ('mg', 2), ('ndc', 2), ('capsule', 2), ('mislabeled', 1), ('bicarbonate', 1), ('tablet', 1), ('mixup', 1), ('gg', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Products; Selected lots of Badger Baby and Kids Sunscreen Lotion were recalled due to microbial contamination.\n",
"top 10 keywords: [('contamination', 2), ('microbial', 2), ('due', 1), ('kids', 1), ('products', 1), ('badger', 1), ('baby', 1), ('lots', 1), ('selected', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: Reports of gray smudges identified as minute stainless steel particulates were found in the recalled tablets by the manufacturer\n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('found', 1), ('foreign', 1), ('manufacturer', 1), ('steel', 1), ('gray', 1), ('particulates', 1), ('tablets', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: The products were below specification for potency at the expiry stability point.\n",
"top 10 keywords: [('point', 1), ('subpotent', 1), ('stability', 1), ('drug', 1), ('products', 1), ('specification', 1), ('expiry', 1), ('potency', 1)]\n",
"---\n",
"reason_for_recall : Penicillin Cross Contamination: potentially contaminated with penicillin\n",
"top 10 keywords: [('penicillin', 2), ('contamination', 1), ('potentially', 1), ('contaminated', 1), ('cross', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; FEXOFENADINE HCL Tablet, 60 mg may be potentially mislabeled as PYRIDOXINE HCL, Tablet, 50 mg, NDC 51645090901, Pedigree: W003019, EXP: 6/12/2014; NIACIN TR, Capsule, 500 mg, NDC 00904063160, Pedigree: AD60240_17, EXP: 5/22/2014; CRANBERRY EXTRACT/VITAMIN C, Capsule, 450 mg/125 mg, NDC 31604014271, Pedigree: AD46257_13, EXP: 5/15/2014. \n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('tablet', 2), ('hcl', 2), ('capsule', 2), ('ad60240_17', 1), ('cranberry', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Package Insert; Product is being recalled because the birth control packs were distributed with out-dated package inserts. \n",
"top 10 keywords: [('package', 2), ('insert', 1), ('inserts', 1), ('control', 1), ('birth', 1), ('recalled', 1), ('labeling', 1), ('incorrect', 1), ('missing', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: The products were found to contain FDA approved ingredients and analogues of FDA approved ingredients used to treat male erectile dysfunction, making them unapproved new drugs.\n",
"top 10 keywords: [('approved', 3), ('ingredients', 2), ('fda', 2), ('marketed', 1), ('analogues', 1), ('found', 1), ('products', 1), ('without', 1), ('nda/anda', 1), ('contain', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: CALCIUM CARBONATE/CHOLECALCIFEROL, Tablet, 600 mg/800 units may be potentially mis-labeled as the following drug: REPAGLINIDE, Tablet, 1 mg, NDC 00169008281, Pedigree: AD52387_1, EXP: 5/17/2014. \n",
"top 10 keywords: [('tablet', 2), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('mg/800', 1), ('units', 1), ('carbonate/cholecalciferol', 1), ('potentially', 1), ('calcium', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: Miracle Diet 30 was found to contain undeclared phenolphthalein, a drug product once contained in over-the-counter laxatives but was taken off the U.S. market due to safety concerns, making this product an unapproved drug. \n",
"top 10 keywords: [('drug', 2), ('product', 2), ('phenolphthalein', 1), ('diet', 1), ('without', 1), ('nda/anda', 1), ('undeclared', 1), ('making', 1), ('safety', 1), ('miracle', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: CHOLECALCIFEROL, Capsule, 2000 units may have potentially been mislabeled as one of the following drugs: DOXYCYCLINE HYCLATE, Tablet, 100 mg, NDC 53489012002, Pedigree: AD30993_8, EXP: 5/9/2014; VITAMIN B COMPLEX PROLONGED RELEASE, Tablet, 50 mg, NDC 40985022251, Pedigree: AD60211_20, EXP: 5/21/2014; lamoTRIgine, Tablet, 50 mg (1/2 of 100 mg), NDC 13668004701, Pedigree: A\n",
"top 10 keywords: [('mg', 4), ('pedigree', 3), ('tablet', 3), ('ndc', 3), ('exp', 2), ('ad60211_20', 1), ('labeling', 1), ('may', 1), ('ad30993_8', 1), ('lamotrigine', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: Lightning Rod capsules are being recalled because FDA analysis found it to contain an undeclared analogue of sildenafil. Sildenafil is the active ingredient in an FDA-approved product indicated for the treatment of male erectile dysfunction (ED), making this product an unapproved new drug.\n",
"top 10 keywords: [('product', 2), ('sildenafil', 2), ('lightning', 1), ('drug', 1), ('analysis', 1), ('without', 1), ('nda/anda', 1), ('active', 1), ('rod', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; PROPRANOLOL HCL, Tablet, 10 mg may be potentially mislabeled as PERPHENAZINE, Tablet, 16 mg, NDC 00781104901, Pedigree: AD21790_31, EXP: 5/1/2014; buPROPion HCl ER (XL), Tablet, 150 mg, NDC 67767014130, Pedigree: AD52412_4, EXP: 4/30/2014; MULTIVITAMIN/MULTIMINERAL LOW IRON, Tablet, NDC 64376081601, Pedigree: AD60272_31, EXP: 5/22/2014; PERPHENAZINE, Tablet, 16 mg, NDC\n",
"top 10 keywords: [('tablet', 5), ('mg', 4), ('ndc', 4), ('exp', 3), ('pedigree', 3), ('perphenazine', 2), ('hcl', 2), ('ad60272_31', 1), ('potentially', 1), ('multivitamin/multimineral', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Fallon Pharmacy recalled Bevacizumab 25mg/mL due to sterility assurance concerns based on testing of this lot by a third party lab, indicating that test results reported as passing sterility may have been inaccurate.\n",
"top 10 keywords: [('sterility', 3), ('assurance', 2), ('inaccurate', 1), ('test', 1), ('based', 1), ('recalled', 1), ('25mg/ml', 1), ('may', 1), ('lab', 1), ('reported', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; ORPHENADRINE CITRATE ER Tablet, 100 mg may be potentially mislabeled as OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 40985022921, Pedigree: W002965, EXP: 6/10/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('fatty', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Package Insert: Product is packaged with the incorrect version of the package outset\n",
"top 10 keywords: [('package', 2), ('incorrect', 2), ('insert', 1), ('version', 1), ('product', 1), ('outset', 1), ('packaged', 1), ('missing', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA; product found to contain sulfoaildenafil, an analogue of sildenafil, the active ingredient in a FDA approved product used for erectile dysfunction, making it an unapproved new drug\n",
"top 10 keywords: [('approved', 2), ('product', 2), ('marketed', 1), ('drug', 1), ('analogue', 1), ('found', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('sulfoaildenafil', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Error on Declared Strength; Listed active ingredient strength is inaccurate. \n",
"top 10 keywords: [('strength', 2), ('error', 1), ('inaccurate', 1), ('active', 1), ('listed', 1), ('ingredient', 1), ('declared', 1), ('label', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance; heavy metals (chromium, titanium etc) and inactive components of the product were visually observed during routine stability testing\n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('heavy', 1), ('titanium', 1), ('chromium', 1), ('observed', 1), ('foreign', 1), ('etc', 1), ('inactive', 1), ('visually', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Error on Declared Strength: Labeled 3.1% Amino Acids but contains 3.3% Amino Acids\n",
"top 10 keywords: [('acids', 2), ('amino', 2), ('error', 1), ('strength', 1), ('labeled', 1), ('contains', 1), ('declared', 1), ('label', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Not elsewhere classified: On 12/12/11, DEA published a final rule in the Federal Register making this product a schedule IV (C-IV)controlled substance. This product is being recalled because this controlled product was not relabeled with the required \"C-IV\" imprint on the label for products distributed after the 06/11/12 deadline.\n",
"top 10 keywords: [('product', 3), ('c-iv', 2), ('controlled', 2), ('deadline', 1), ('classified', 1), ('elsewhere', 1), ('final', 1), ('register', 1), ('federal', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Products are underdosed or have an incorrect dosage regime. \n",
"top 10 keywords: [('incorrect', 1), ('underdosed', 1), ('deviations', 1), ('products', 1), ('regime', 1), ('dosage', 1), ('cgmp', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Not Elsewhere Classified: This product is misbranded because the product is not sterile and the labeling is misleading in relation to sterility claims. \n",
"top 10 keywords: [('product', 2), ('labeling', 2), ('misleading', 1), ('classified', 1), ('sterile', 1), ('elsewhere', 1), ('sterility', 1), ('relation', 1), ('claims', 1), ('misbranded', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: Confirmed customer complaint of particulate matter floating within the solution of the primary container, consistent with mold.\n",
"top 10 keywords: [('confirmed', 1), ('complaint', 1), ('non-sterility', 1), ('container', 1), ('primary', 1), ('particulate', 1), ('within', 1), ('mold', 1), ('solution', 1), ('consistent', 1)]\n",
"---\n",
"reason_for_recall : Defective delivery system: Softgel capsules are leaking.\n",
"top 10 keywords: [('capsules', 1), ('delivery', 1), ('system', 1), ('leaking', 1), ('softgel', 1), ('defective', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: High out of specification impurity test results were obtained during stability testing. \n",
"top 10 keywords: [('results', 1), ('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('obtained', 1), ('testing', 1), ('test', 1), ('impurity', 1), ('specification', 1), ('high', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter; single visible particulate was identified during a retain sample inspection identified as stainless steel\n",
"top 10 keywords: [('identified', 2), ('particulate', 2), ('visible', 1), ('retain', 1), ('inspection', 1), ('stainless', 1), ('steel', 1), ('sample', 1), ('presence', 1), ('single', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; guanFACINE HCl Tablet, 2 mg may be potentially mislabeled as buPROPion HCl ER, Tablet, 200 mg, NDC 47335073886, Pedigree: AD21790_4, EXP: 5/1/2014; AMANTADINE HCL, Capsule, 100 mg, NDC 00781204801, Pedigree: W002997, EXP: 6/11/2014; glyBURIDE, Tablet, 1.25 mg, NDC 00093834201, Pedigree: W003677, EXP: 2/28/2014; ACYCLOVIR, Capsule, 200 mg, NDC 00093894001, Pedigree: AD60\n",
"top 10 keywords: [('mg', 5), ('pedigree', 4), ('ndc', 4), ('exp', 3), ('tablet', 3), ('hcl', 3), ('capsule', 2), ('ad21790_4', 1), ('potentially', 1), ('w002997', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: CALCITRIOL, Capsule, 0.25 mcg may be potentially as one of the following drugs: ANAGRELIDE HCL, Capsule, 0.5 mg, NDC 00172524160, Pedigree: AD46414_7, EXP: 5/16/2014; BENAZEPRIL HCL, Tablet, 5 mg, NDC 65162075110, Pedigree: AD52778_7, EXP: 5/20/2014; CINACALCET HCL, Tablet, 30 mg, NDC 55513007330, Pedigree: W003615, EXP: 6/25/2014. \n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('hcl', 3), ('mg', 3), ('ndc', 3), ('tablet', 2), ('capsule', 2), ('potentially', 1), ('mcg', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specification: Teva is recalling certain lots of Propanolol HCl Tablets, 10 mg due to the potential of some tablets not conforming to weight specification.\n",
"top 10 keywords: [('tablets', 2), ('specification', 2), ('due', 1), ('certain', 1), ('weight', 1), ('hcl', 1), ('teva', 1), ('mg', 1), ('tablet/capsule', 1), ('conforming', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; MIRTAZAPINE Tablet, 7.5 mg may be potentially mislabeled as BROMOCRIPTINE MESYLATE, Tablet, 2.5 mg, NDC 00574010603, Pedigree: AD73525_40, EXP: 5/30/2014; DULoxetine HCl DR, Capsule, 20 mg, NDC 00002323560, Pedigree: W003005, EXP: 6/11/2014; carBAMazepine ER, Tablet, 100 mg, NDC 00078051005, Pedigree: W003330, EXP: 6/18/2014. \n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('tablet', 3), ('ndc', 3), ('mesylate', 1), ('w003330', 1), ('may', 1), ('labeling', 1), ('ad73525_40', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: PHENobarbital, Tablet, 97.2 mg may have potentially been mislabeled as the following drug: PHENobarbital, Tablet, 64.8 mg, NDC 00603516721, Pedigree: AD73518_7, EXP: 5/31/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('phenobarbital', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('ad73518_7', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Potential for small black particles to be present in individual vials, the potential for missing lot number and/or expiry date on the outer carton and the potential for illegible/missing lot number and expiry on individual vials. \n",
"top 10 keywords: [('potential', 3), ('vials', 2), ('number', 2), ('individual', 2), ('expiry', 2), ('lot', 2), ('presence', 1), ('outer', 1), ('and/or', 1), ('particulate', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Out of specification for a known degradant.\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('degradant', 1), ('known', 1), ('specification', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ACETAMINOPHEN/ BUTALBITAL/ CAFFEINE, Tablet, 325 mg/50 mg/40 mg may have potentially been mislabeled as the following drug: ASPIRIN, Tablet, 325 mg, NDC 49348000123, Pedigree: W002640, EXP: 6/4/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mg/40', 1), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('drug', 1), ('aspirin', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: FDA inspection findings resulted in concerns regarding quality control processes\n",
"top 10 keywords: [('control', 1), ('lack', 1), ('assurance', 1), ('inspection', 1), ('regarding', 1), ('processes', 1), ('sterility', 1), ('resulted', 1), ('quality', 1), ('concerns', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ACYCLOVIR, Capsule, 200 mg may have potentially been mislabeled as one of the following drugs: CYANOCOBALAMIN, Tablet, 1000 mcg, NDC 00904421713, Pedigree: AD60240_51, EXP: 5/22/2014; METOPROLOL TARTRATE, Tablet, 25 mg, NDC 57664050652, Pedigree: W002841, EXP: 6/7/2014; METOPROLOL TARTRATE, Tablet, 50 mg, NDC 00093073301, Pedigree: W003900, EXP: 6/27/2014; acetaZOLAMIDE\n",
"top 10 keywords: [('pedigree', 3), ('tablet', 3), ('exp', 3), ('mg', 3), ('ndc', 3), ('metoprolol', 2), ('tartrate', 2), ('ad60240_51', 1), ('mixup', 1), ('mcg', 1)]\n",
"---\n",
"reason_for_recall : Superpotent (Single Ingredient) Drug: Some of the prefilled cartridge units have been found to be overfilled and contain more than the 1 mL labeled fill volume.\n",
"top 10 keywords: [('drug', 1), ('fill', 1), ('found', 1), ('overfilled', 1), ('units', 1), ('contain', 1), ('labeled', 1), ('volume', 1), ('ingredient', 1), ('prefilled', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System: United Therapeutics is voluntarily recalling a small number of Tyvaso Inhalation Systems with Optineb ON-100/7 and TD-100/A medical devices. These devices may have been programmed with a different software version than intended for the device. If the device has the incorrect software, it may not operate as indicated in the Instructions for Use.\n",
"top 10 keywords: [('device', 2), ('may', 2), ('devices', 2), ('software', 2), ('optineb', 1), ('medical', 1), ('programmed', 1), ('instructions', 1), ('operate', 1), ('number', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; COENZYME Q-10 Capsule, 100 mg may be potentially mislabeled as ASPIRIN EC, Tablet, 325 mg, NDC 00904201360, Pedigree: AD30180_13, EXP: 5/9/2014; ASPIRIN, Chew Tablet, 81 mg, NDC 00536329736, Pedigree: AD33897_1, EXP: 5/9/2014; TACROLIMUS, Capsule, 1 mg, NDC 00781210301, Pedigree: AD37056_1, EXP: 5/10/2014; METOPROLOL TARTRATE, Tablet, 12.5 mg (1/2 of 25 mg), NDC 576640\n",
"top 10 keywords: [('mg', 6), ('ndc', 4), ('exp', 3), ('pedigree', 3), ('tablet', 3), ('aspirin', 2), ('capsule', 2), ('ad30180_13', 1), ('tartrate', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('dissolution', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: 50% dextrose is being recalled after particulate matter, later identified as mold, was found floating in the product.\n",
"top 10 keywords: [('dextrose', 1), ('identified', 1), ('product', 1), ('mold', 1), ('floating', 1), ('non-sterility', 1), ('later', 1), ('particulate', 1), ('matter', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Cross Contamination w/Other Products: This active pharmaceutical ingredient is being recalled due to cross contamination with another product.\n",
"top 10 keywords: [('cross', 2), ('contamination', 2), ('due', 1), ('pharmaceutical', 1), ('another', 1), ('product', 1), ('active', 1), ('products', 1), ('ingredient', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; VERAPAMIL HCL ER, Tablet, 240 mg may be potentially mislabeled as TRIFLUOPERAZINE HCL, Tablet, 1 mg, NDC 00781103001, Pedigree: AD52778_91, EXP: 5/21/2014.\n",
"top 10 keywords: [('tablet', 2), ('hcl', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('trifluoperazine', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Error on Declared Strength- Bottles containing 500 mg acetaminophen tablets mislabeled to contain 325 mg tablets.\n",
"top 10 keywords: [('tablets', 2), ('mg', 2), ('error', 1), ('mislabeled', 1), ('bottles', 1), ('declared', 1), ('acetaminophen', 1), ('contain', 1), ('strength-', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; ISOMETHEPTENE MUCATE/ DICHLORALPHENAZONE/APAP Capsule, 65 mg/100 mg/325 mg may be potentially mislabeled as ALBUTEROL SULFATE ER, Tablet, 4 mg, NDC 00378412201, Pedigree: W003578, EXP: 6/24/2014; LOSARTAN POTASSIUM, Tablet, 25 mg, NDC 16714058102, Pedigree: AD22616_7, EXP: 5/2/2014. \n",
"top 10 keywords: [('mg', 3), ('exp', 2), ('pedigree', 2), ('tablet', 2), ('ndc', 2), ('mg/100', 1), ('mucate/', 1), ('may', 1), ('labeling', 1), ('ad22616_7', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Out of Specification for an impurity at the 18 month stability time point.\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurity', 1), ('stability', 1), ('time', 1), ('impurities/degradation', 1), ('specification', 1), ('month', 1), ('point', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; ZINC GLUCONATE, Tablet, 50 mg may be potentially mis-labeled as ASCORBIC ACID, Chew Tablet, 500 mg, NDC 00904052660, Pedigree: AD60240_54, EXP: 5/22/2014 and ASCORBIC ACID, Chew Tablet, 250 mg, NDC 00904052260, Pedigree: W003027, EXP: 6/12/2014. \n",
"top 10 keywords: [('tablet', 3), ('mg', 3), ('pedigree', 2), ('exp', 2), ('ascorbic', 2), ('chew', 2), ('acid', 2), ('ndc', 2), ('w003027', 1), ('ad60240_54', 1)]\n",
"---\n",
"reason_for_recall : cGMP Deviations; products being recalled in response to a recall notice from the manufacturer, Wockhardt Limited, following a FDA inspection which noted inadequate investigation of market complaints, resulting in unsuccessful identification of root causes, and the investigation not being expanded to prevent repeat failure\n",
"top 10 keywords: [('investigation', 2), ('notice', 1), ('limited', 1), ('recall', 1), ('cgmp', 1), ('inspection', 1), ('recalled', 1), ('deviations', 1), ('resulting', 1), ('expanded', 1)]\n",
"---\n",
"reason_for_recall : Labeling: label error on declared strength. \n",
"top 10 keywords: [('error', 1), ('strength', 1), ('declared', 1), ('label', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Non Sterility; microbial contamination identified as Aspergillus species\n",
"top 10 keywords: [('aspergillus', 1), ('species', 1), ('non', 1), ('contamination', 1), ('microbial', 1), ('identified', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: tainted product marketed as a dietary supplement. Product found to be tainted with undeclared sibutramine, an appetite suppressant that was withdrawn from the US market for safety reasons, making it an unapproved drug.\n",
"top 10 keywords: [('marketed', 2), ('tainted', 2), ('product', 2), ('appetite', 1), ('reasons', 1), ('supplement', 1), ('approved', 1), ('suppressant', 1), ('without', 1), ('nda/anda', 1)]\n",
"---\n",
"reason_for_recall : Chemical Contamination: QS Plus wipes were found to be contaminated with different substance (7820, Graffiti Remover).\n",
"top 10 keywords: [('wipes', 1), ('substance', 1), ('graffiti', 1), ('contaminated', 1), ('found', 1), ('qs', 1), ('contamination', 1), ('remover', 1), ('different', 1), ('chemical', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; SODIUM BICARBONATE Tablet, 650 mg may be potentially mislabeled as NICOTINE POLACRILEX, Lozenge, 2 mg, NDC 00135051001, Pedigree: W002974, EXP: 6/11/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('bicarbonate', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Pharmaceuticals were produced and distributed with active ingredients not manufactured according to Good Manufacturing Practices.\n",
"top 10 keywords: [('manufactured', 1), ('active', 1), ('according', 1), ('good', 1), ('pharmaceuticals', 1), ('cgmp', 1), ('deviations', 1), ('ingredients', 1), ('produced', 1), ('practices', 1)]\n",
"---\n",
"reason_for_recall : Defective Container: Product lacks tamper evident breakaway band on cap.\n",
"top 10 keywords: [('cap', 1), ('evident', 1), ('band', 1), ('tamper', 1), ('breakaway', 1), ('product', 1), ('container', 1), ('lacks', 1), ('defective', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; ARIPiprazole, Tablet, 15 mg may be potentially mislabeled as ATOMOXETINE HCL, Capsule, 40 mg, NDC 00002322930, Pedigree: AD21790_82, EXP: 5/1/2014; PRAMIPEXOLE DI-HCL, Tablet, 0.125 mg, NDC 13668009190, Pedigree: AD25264_10, EXP: 5/3/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('ad21790_82', 1), ('aripiprazole', 1), ('mixup', 1), ('hcl', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: PROPRANOLOL HCL, Tablet, 10 mg may have potentially been mislabeled as one of the following drugs: LORazepam, Tablet, 0.25 mg (1/2 of 0.5 mg), NDC 00591024001, Pedigree: AD60243_1, EXP: 5/22/2014; PROPRANOLOL HCL, Tablet, 10 mg, NDC 23155011001, Pedigree: W003068, EXP: 6/12/2014. \n",
"top 10 keywords: [('mg', 4), ('tablet', 3), ('ndc', 2), ('exp', 2), ('hcl', 2), ('pedigree', 2), ('propranolol', 2), ('mislabeled', 1), ('w003068', 1), ('mixup', 1)]\n",
"---\n",
"reason_for_recall : Failed Content Uniformity Specifications: Recall is being carried out due to an out-of-specification result for content uniformity.\n",
"top 10 keywords: [('content', 2), ('uniformity', 2), ('out-of-specification', 1), ('specifications', 1), ('due', 1), ('result', 1), ('failed', 1), ('recall', 1), ('carried', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: B. Braun Medical Inc. is recalling several injectable products due to visible particulate matter found in reserve sample units.\n",
"top 10 keywords: [('particulate', 2), ('matter', 2), ('b.', 1), ('medical', 1), ('reserve', 1), ('found', 1), ('products', 1), ('units', 1), ('inc.', 1), ('due', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: High out-of-specification results for a related compound obtained during routine stability testing.\n",
"top 10 keywords: [('out-of-specification', 1), ('impurities/degradation', 1), ('compound', 1), ('testing', 1), ('related', 1), ('high', 1), ('results', 1), ('specifications', 1), ('failed', 1), ('obtained', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Not Elsewhere Classified: Product is labeled \"Dye Free\" on front panel but contains Red Dye 40.\n",
"top 10 keywords: [('dye', 2), ('free', 1), ('red', 1), ('classified', 1), ('elsewhere', 1), ('labeled', 1), ('product', 1), ('panel', 1), ('front', 1), ('contains', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: A glass defect was found on the interior neck of the vial during a retain sample inspection where the glass vial contained visible embedded metallic particulate and free floating metallic particulates were also found in solution.\n",
"top 10 keywords: [('found', 2), ('particulate', 2), ('metallic', 2), ('vial', 2), ('glass', 2), ('defect', 1), ('presence', 1), ('neck', 1), ('retain', 1), ('inspection', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; COLCHICINE Tablet, 0.6 mg may be potentially mislabeled as CHOLECALCIFEROL, Tablet, 2000 units, NDC 00904615760, Pedigree: AD46312_37, EXP: 5/16/2014; PSEUDOEPHEDRINE HCL, Tablet, 30 mg, NDC 00904505360, Pedigree: AD52993_37, EXP: 5/20/2014; SENNOSIDES, Tablet, 8.6 mg, NDC 00182109301, Pedigree: AD62992_14, EXP: 5/23/2014; CHOLECALCIFEROL, Tablet, 1000 units, NDC 00904\n",
"top 10 keywords: [('tablet', 5), ('ndc', 4), ('pedigree', 3), ('mg', 3), ('exp', 3), ('units', 2), ('cholecalciferol', 2), ('mislabeled', 1), ('ad46312_37', 1), ('mixup', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; MESALAMINE CR, Capsule, 250 mg may be potentially mislabeled as ASPIRIN EC, Tablet, 325 mg, NDC 00904201360, Pedigree: AD52378_1, EXP: 5/17/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('ndc', 1), ('cr', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('ad52378_1', 1), ('pedigree', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: REPAGLINIDE, Tablet, 1 mg may have potentially been mislabeled as one of the following drugs: VALSARTAN, Tablet, 40 mg, NDC 00078042315, Pedigree: AD52372_1, EXP: 5/17/2014; GUAIFENESIN, Tablet, 200 mg, NDC 00904515460, Pedigree: W002853, EXP: 6/7/2014; MAGNESIUM CHLORIDE, Tablet, 64 mg, NDC 68585000575, Pedigree: W003923, EXP: 6/28/2014. \n",
"top 10 keywords: [('tablet', 4), ('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('chloride', 1), ('magnesium', 1), ('valsartan', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ATORVASTATIN CALCIUM, Tablet, 80 mg may have potentially been mislabeled as one of the following drugs: OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 11845014882, Pedigree: AD70700_7, EXP: 5/29/2014; TACROLIMUS, Capsule, 0.5 mg, NDC 00781210201, Pedigree: W003169, EXP: 6/13/2014; LEVOTHYROXINE SODIUM, Tablet, 88 mcg, NDC 00378180701, Pedigree: AD42584_1, EXP: 5/14/2014. \n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('mg', 3), ('ndc', 3), ('tablet', 2), ('capsule', 2), ('omega-3', 1), ('atorvastatin', 1), ('levothyroxine', 1), ('mcg', 1)]\n",
"---\n",
"reason_for_recall : Superpotent Drug: Confirmed customer complaint of a single unit dose blister cavity containing 2 OXYCODONE HCl 5 mg tablets.\n",
"top 10 keywords: [('drug', 1), ('confirmed', 1), ('cavity', 1), ('complaint', 1), ('unit', 1), ('mg', 1), ('hcl', 1), ('dose', 1), ('blister', 1), ('tablets', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; OMEGA-3 FATTY ACID, Capsule, 1000 mg may be potentially mis-labeled as DOCUSATE CALCIUM, Capsule, 240 mg, NDC 00536375501, Pedigree: AD33897_16, EXP: 5/9/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 00904404360, Pedigree: AD33897_19, EXP: 5/9/2014; PSEUDOEPHEDRINE HCL, Tablet, 60 mg, NDC 00904512559, Pedigree: W002856, EXP: 6/7/2014; DOCUSATE SODIUM, Capsule, 50 mg, N\n",
"top 10 keywords: [('mg', 5), ('capsule', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('omega-3', 2), ('docusate', 2), ('fatty', 2), ('acid', 2), ('may', 1)]\n",
"---\n",
"reason_for_recall : Non-sterility: due to a failed sterility test \n",
"top 10 keywords: [('non-sterility', 1), ('test', 1), ('failed', 1), ('sterility', 1), ('due', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: Complaints of leaks and particulate matter identified as mold in the solution bag and the overpouch.\n",
"top 10 keywords: [('bag', 1), ('overpouch', 1), ('mold', 1), ('leaks', 1), ('non-sterility', 1), ('solution', 1), ('particulate', 1), ('matter', 1), ('identified', 1), ('complaints', 1)]\n",
"---\n",
"reason_for_recall : Unit Dose Mispackaging: This recall event is due to a random undetected packaging issue which could increase the potential for a small number of individual unit dose blisters to be packed with more than one tablet.\n",
"top 10 keywords: [('unit', 2), ('dose', 2), ('mispackaging', 1), ('packaging', 1), ('recall', 1), ('tablet', 1), ('could', 1), ('undetected', 1), ('due', 1), ('increase', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: TACROLIMUS, Capsule, 0.5 mg may have potentially been mislabeled as one of the following drugs: CINACALCET HCL, Tablet, 30 mg, NDC 55513007330, Pedigree: W003168, EXP: 6/13/2014; ISOSORBIDE MONONITRATE ER, Tablet, 30 mg, NDC 62175012837, Pedigree: W003350, EXP: 6/18/2014. \n",
"top 10 keywords: [('mg', 3), ('exp', 2), ('pedigree', 2), ('tablet', 2), ('ndc', 2), ('isosorbide', 1), ('er', 1), ('w003168', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: methylPREDNISolone, Tablet, 4 mg may have potentially been mislabeled as the following drug: OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/110 mg, NDC 11523726503, Pedigree: AD42584_15, EXP: 5/14/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('ndc', 1), ('omeprazole/sodium', 1), ('tablet', 1), ('ad42584_15', 1), ('mixup', 1), ('mg/110', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations; no identity or purity testing on incoming oxygen gas, and lack of documentation\n",
"top 10 keywords: [('purity', 1), ('gas', 1), ('deviations', 1), ('identity', 1), ('oxygen', 1), ('cgmp', 1), ('incoming', 1), ('testing', 1), ('documentation', 1), ('lack', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Defective container resulting in the lack of sterility assurance. ok thanks\n",
"top 10 keywords: [('lack', 2), ('assurance', 2), ('sterility', 2), ('thanks', 1), ('resulting', 1), ('container', 1), ('ok', 1), ('defective', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Product failed Impurity content (Butylated Hydroxy Anisole Content) against shelf life specification.\n",
"top 10 keywords: [('content', 2), ('failed', 2), ('hydroxy', 1), ('impurity', 1), ('specification', 1), ('impurities/degradation', 1), ('butylated', 1), ('life', 1), ('specifications', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; LETROZOLE Tablet, 2.5 mg may be potentially mislabeled as METOPROLOL TARTRATE, Tablet, 50 mg, NDC 00093073301, Pedigree: W003848, EXP: 6/27/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('tartrate', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('w003848', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: PANCRELIPASE DR, Capsule, 12000 /38000 /60000 USP units may be potentially mislabeled as one of the following drugs: ASCORBIC ACID, Tablet, 250 mg, NDC 00904052260, Pedigree: W003726, EXP: 6/26/2014; LANTHANUM CARBONATE, CHEW Tablet, 500 mg, NDC 54092025290, Pedigree: W002790, EXP: 6/6/2014; CITALOPRAM, Tablet, 10 mg, NDC 57664050788, Pedigree: W002844, EXP: 6/7/2014; AT\n",
"top 10 keywords: [('pedigree', 3), ('tablet', 3), ('exp', 3), ('mg', 3), ('ndc', 3), ('w002790', 1), ('mixup', 1), ('lanthanum', 1), ('ascorbic', 1), ('w002844', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Exp Date: This recall is being carried out due to an incorrect expiration date assigned to a lot of physicians samples.\n",
"top 10 keywords: [('incorrect', 2), ('date', 2), ('lot', 2), ('recall', 1), ('exp', 1), ('due', 1), ('samples', 1), ('carried', 1), ('labeling', 1), ('physicians', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: potential for leaking containers which lacks the assurance of sterility.\n",
"top 10 keywords: [('assurance', 2), ('sterility', 2), ('lacks', 1), ('lack', 1), ('containers', 1), ('leaking', 1), ('potential', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; traZODone HCl Tablet, 150 mg may be potentially mislabeled as NICOTINE POLACRILEX, Lozenge, 2 mg, NDC 00135051001, Pedigree: AD21858_1, EXP: 5/1/2014; SENNOSIDES, Tablet, 8.6 mg, NDC 00182109301, Pedigree: W003256, EXP: 6/17/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('w003256', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; CALCITRIOL, Capsule, 0.5 mcg may be potentially mislabeled as NIACIN TR, Tablet, 250 mg, NDC 10939043533, Pedigree: W003756, EXP: 5/31/2014; ISONIAZID, Tablet, 300 mg, NDC 00555007102, Pedigree: AD32757_28, EXP: 5/13/2014. \n",
"top 10 keywords: [('pedigree', 2), ('tablet', 2), ('exp', 2), ('ndc', 2), ('mg', 2), ('mislabeled', 1), ('mixup', 1), ('ad32757_28', 1), ('mcg', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Fresenius Kabi is recalling three lots of Haloperidol Decanoate Injection due to an out-of-specification result.\n",
"top 10 keywords: [('three', 1), ('out-of-specification', 1), ('haloperidol', 1), ('impurities/degradation', 1), ('due', 1), ('fresenius', 1), ('decanoate', 1), ('lots', 1), ('result', 1), ('specifications', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: Product is being recalled due to receiving an elevated number of patient complaints related to a visible presence of medical grade silicone oil essential to the functionality of the syringe and plunger stopper system.\n",
"top 10 keywords: [('presence', 2), ('medical', 1), ('silicone', 1), ('foreign', 1), ('recalled', 1), ('number', 1), ('functionality', 1), ('receiving', 1), ('product', 1), ('patient', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Tablets/Capsules; possibility of Glipizide 10 mg tablets commingled\n",
"top 10 keywords: [('tablets', 1), ('presence', 1), ('glipizide', 1), ('possibility', 1), ('tablets/capsules', 1), ('mg', 1), ('commingled', 1), ('foreign', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug and Failed Impurities/Degradation Specifications\n",
"top 10 keywords: [('subpotent', 1), ('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('drug', 1)]\n",
"---\n",
"reason_for_recall : Lack of assurance of sterility; equipment failure led to potential breach in asceptic process.\n",
"top 10 keywords: [('breach', 1), ('failure', 1), ('asceptic', 1), ('lack', 1), ('assurance', 1), ('led', 1), ('equipment', 1), ('process', 1), ('potential', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Particulate matter was found in some vials of Vistide (cidofovir injection).\n",
"top 10 keywords: [('particulate', 2), ('matter', 2), ('vistide', 1), ('presence', 1), ('found', 1), ('cidofovir', 1), ('vials', 1), ('injection', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; NITROFURANTOIN MONOHYDRATE/ MACROCRYSTALS, Capsule, 100 mg may be potentially mislabeled as MINOCYCLINE HCL, Capsule, 50 mg, NDC 00591569401, Pedigree: AD52778_46, EXP: 5/20/2014.\n",
"top 10 keywords: [('mg', 2), ('capsule', 2), ('mislabeled', 1), ('pedigree', 1), ('monohydrate/', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Products: Fagron is recalling six lots due to the presence of mold. \n",
"top 10 keywords: [('six', 1), ('fagron', 1), ('presence', 1), ('recalling', 1), ('due', 1), ('mold', 1), ('products', 1), ('microbial', 1), ('non-sterile', 1), ('contamination', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Bacai, Inc. DBA Ky Duyen House is voluntarily recalling Lite Fit USA, lot 13165, due to undeclared sibutramine, making it an unapproved new drug.\n",
"top 10 keywords: [('drug', 1), ('ky', 1), ('nda/anda', 1), ('inc.', 1), ('undeclared', 1), ('making', 1), ('fit', 1), ('sibutramine', 1), ('lite', 1), ('marketed', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA; Product contains unapproved hHCG.\n",
"top 10 keywords: [('marketed', 1), ('hhcg', 1), ('approved', 1), ('nda/anda', 1), ('without', 1), ('product', 1), ('unapproved', 1), ('contains', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: Affected lot numbers may contain chipped or broken tablets.\n",
"top 10 keywords: [('broken', 1), ('specifications', 1), ('failed', 1), ('tablets', 1), ('may', 1), ('affected', 1), ('contain', 1), ('tablet/capsule', 1), ('chipped', 1), ('lot', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix up; product labeled to contain Docusate Sodium 240mg instead of Docusate Calcium 240mg\n",
"top 10 keywords: [('240mg', 2), ('docusate', 2), ('mix', 1), ('sodium', 1), ('labeled', 1), ('calcium', 1), ('product', 1), ('contain', 1), ('instead', 1), ('label', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Discolored solution due to a chip in the glass at the neck of the vial, also glass particulate was found within the solution. \n",
"top 10 keywords: [('particulate', 2), ('solution', 2), ('glass', 2), ('presence', 1), ('found', 1), ('due', 1), ('within', 1), ('chip', 1), ('also', 1), ('vial', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Glass particulate found in sterile injectable product\n",
"top 10 keywords: [('particulate', 2), ('presence', 1), ('found', 1), ('product', 1), ('glass', 1), ('injectable', 1), ('matter', 1), ('sterile', 1)]\n",
"---\n",
"reason_for_recall : Failed USP Dissolution Test Requirements: The recalled lots do not meet the specification for dissolution.\n",
"top 10 keywords: [('dissolution', 2), ('failed', 1), ('usp', 1), ('lots', 1), ('requirements', 1), ('test', 1), ('specification', 1), ('meet', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Labeling Illegible: Portions of the product labeling in the area of the dosing directions, the warnings & other information sections is obscured.\n",
"top 10 keywords: [('labeling', 2), ('portions', 1), ('illegible', 1), ('directions', 1), ('dosing', 1), ('obscured', 1), ('sections', 1), ('product', 1), ('information', 1), ('warnings', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Exp Date. The lot number and/or expiration date may be illegible.\n",
"top 10 keywords: [('date', 2), ('and/or', 2), ('lot', 2), ('incorrect', 1), ('number', 1), ('expiration', 1), ('missing', 1), ('exp', 1), ('illegible', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/ Degradation Specifications: OOS for related compound (levofloxacin n-oxide) at the 18 month stability time point.\n",
"top 10 keywords: [('related', 1), ('n-oxide', 1), ('month', 1), ('compound', 1), ('point', 1), ('specifications', 1), ('degradation', 1), ('impurities/', 1), ('stability', 1), ('levofloxacin', 1)]\n",
"---\n",
"reason_for_recall : Failed Stability Specifications: Unable to meet shelf life expiry.\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('expiry', 1), ('stability', 1), ('unable', 1), ('meet', 1), ('shelf', 1), ('life', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; CALCIUM CITRATE, Tablet, 950 mg (200 mg Elem Ca) may be potentially mislabeled as VALSARTAN, Tablet, 160 mg, NDC 00078035934, Pedigree: W002767, EXP: 6/6/2014; LACTOBACILLUS ACIDOPHILUS, Capsule, 500 MILLION CFU, NDC 43292050022, Pedigree: AD60240_20, EXP: 5/22/2014; PYRIDOXINE HCL, Tablet, 50 mg, NDC 51645090901, Pedigree: AD73521_25, EXP: 5/30/2014. \n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('tablet', 3), ('ndc', 3), ('million', 1), ('valsartan', 1), ('ad73521_25', 1), ('w002767', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : The product lots are being recalled due to laboratory results indicating microbial contamination. The FDA was concerned test results obtained from the recalling firm's contract testing lab may not be reliable.\n",
"top 10 keywords: [('results', 2), ('contract', 1), ('laboratory', 1), ('due', 1), ('microbial', 1), ('test', 1), ('firm', 1), ('fda', 1), ('may', 1), ('lots', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix-Up: Bottles labeled as Naproxen Tablets USP, 500 mg, 100-count may contain 90-count Pravastatin Sodium Tablets, 40 mg.\n",
"top 10 keywords: [('tablets', 2), ('mg', 2), ('bottles', 1), ('labeled', 1), ('sodium', 1), ('naproxen', 1), ('100-count', 1), ('may', 1), ('labeling', 1), ('contain', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: The firm was notified that there was a dissolution out of specification result on the 6 month stability samples.\n",
"top 10 keywords: [('dissolution', 2), ('notified', 1), ('specifications', 1), ('failed', 1), ('month', 1), ('stability', 1), ('result', 1), ('samples', 1), ('firm', 1), ('specification', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: FDA analysis found the product to contain undeclared active ingredient, tadalafil, thus making these products unapproved drugs.\n",
"top 10 keywords: [('marketed', 1), ('analysis', 1), ('found', 1), ('approved', 1), ('thus', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('products', 1), ('unapproved', 1)]\n",
"---\n",
"reason_for_recall : Cross contamination with other products: Sandoz is recalling certain lots of Ropinirole Extended Release Tablets 2 mg due to the potential presence of carryover coming from the previously manufactured product, mycophenolate mofetil.\n",
"top 10 keywords: [('mycophenolate', 1), ('manufactured', 1), ('previously', 1), ('contamination', 1), ('ropinirole', 1), ('tablets', 1), ('lots', 1), ('potential', 1), ('coming', 1), ('sandoz', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Due to lack of documentation of proper environmental monitoring during the time in which the medication was produced.\n",
"top 10 keywords: [('lack', 2), ('proper', 1), ('monitoring', 1), ('time', 1), ('medication', 1), ('produced', 1), ('assurance', 1), ('due', 1), ('environmental', 1), ('documentation', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or missing lot and or Exp Date: The bottles were labeled with an incorrect expiry date 11/2016. The correct expiry date is 09/2016. \n",
"top 10 keywords: [('date', 3), ('incorrect', 2), ('expiry', 2), ('bottles', 1), ('missing', 1), ('exp', 1), ('correct', 1), ('labeled', 1), ('lot', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Failed pH Specifications: 12 month stability testing\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('stability', 1), ('ph', 1), ('month', 1), ('testing', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; damage to the internal portion of the dropper tip portion of the container\n",
"top 10 keywords: [('portion', 2), ('damage', 1), ('lack', 1), ('assurance', 1), ('dropper', 1), ('container', 1), ('tip', 1), ('internal', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: CapsuleTOPRIL, Tablet, 12.5 mg may have potentially been mislabeled as the following drug:, CALCITRIOL, Capsule, 0.25 mcg, NDC 00054000725, Pedigree: AD52778_13, EXP: 5/20/2014. \n",
"top 10 keywords: [('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('mg', 1), ('potentially', 1), ('calcitriol', 1), ('capsuletopril', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; GLUCOSAMINE/CHONDROITIN Capsule, 500 mg/400 mg may be potentially mislabeled as FEXOFENADINE HCL, Tablet, 60 mg, NDC 45802042578, Pedigree: AD60240_30, EXP: 5/22/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('glucosamine/chondroitin', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Error on Declared Strength. Product has correct label on the syringe and the case but some units are incorrectly labeled as .4 mg/10 mL (40 mcg/ml) on the light protective overwrap of each syringe. \n",
"top 10 keywords: [('syringe', 2), ('label', 2), ('error', 1), ('incorrectly', 1), ('labeled', 1), ('units', 1), ('mg/10', 1), ('declared', 1), ('labeling', 1), ('strength', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; PANTOPRAZOLE SODIUM DR Tablet, 20 mg may be potentially mislabeled as FOSINOPRIL SODIUM, Tablet, 20 mg, NDC 60505251102, Pedigree: AD70690_1, EXP: 5/29/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('sodium', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('dr', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Correct Labeled Product Mispacked; correct labeled bottles of Assured Ibuprofen softgels were packaged into cartons of Assured Naproxen Sodium Tablets, USP\n",
"top 10 keywords: [('assured', 2), ('labeled', 2), ('correct', 2), ('ibuprofen', 1), ('tablets', 1), ('bottles', 1), ('naproxen', 1), ('softgels', 1), ('sodium', 1), ('usp', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: A small number of pre-filled syringes may contain needles which protrude through the needle shield.\n",
"top 10 keywords: [('needles', 1), ('protrude', 1), ('assurance', 1), ('contain', 1), ('may', 1), ('sterility', 1), ('number', 1), ('shield', 1), ('pre-filled', 1), ('small', 1)]\n",
"---\n",
"reason_for_recall : Chemical Contamination: Product recalled due to an elevated level of a residual solvent impurity in the API that exceeds the Threshold of Toxicological Concern (TTC) calculation for the impurity.\n",
"top 10 keywords: [('impurity', 2), ('api', 1), ('elevated', 1), ('due', 1), ('concern', 1), ('exceeds', 1), ('chemical', 1), ('residual', 1), ('level', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved ANDA/NDA: presence of sibutramine\n",
"top 10 keywords: [('marketed', 1), ('sibutramine', 1), ('presence', 1), ('approved', 1), ('without', 1), ('anda/nda', 1)]\n",
"---\n",
"reason_for_recall : Labeling; Label Mixup; outer packaging is incorrectly labeled as Buffered Lidocaine 1% instead of correctly as Buffered Lidocaine 0.9%\n",
"top 10 keywords: [('buffered', 2), ('lidocaine', 2), ('incorrectly', 1), ('packaging', 1), ('correctly', 1), ('mixup', 1), ('outer', 1), ('labeled', 1), ('instead', 1), ('label', 1)]\n",
"---\n",
"reason_for_recall : Chemical contamination: emission of strong odor after package was opened.\n",
"top 10 keywords: [('package', 1), ('odor', 1), ('contamination', 1), ('opened', 1), ('chemical', 1), ('emission', 1), ('strong', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Out of Specification (OOS) test results for Hour-4 at the 32 month CRT Stability Level.\n",
"top 10 keywords: [('crt', 1), ('test', 1), ('specification', 1), ('level', 1), ('results', 1), ('specifications', 1), ('failed', 1), ('oos', 1), ('dissolution', 1), ('month', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; MELATONIN Tablet, 1 mg may be potentially mislabeled as CRANBERRY EXTRACT/VITAMIN C, Capsule, 450 mg/125 mg, NDC 31604014271, Pedigree: W002692, EXP: 6/5/2014; GLYCOPYRROLATE, Tablet, 2 mg, NDC 00603318121, Pedigree: W003252, EXP: 6/17/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('melatonin', 1), ('mixup', 1), ('w003252', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ATOMOXETINE HCL, Capsule, 40 mg may be potentially mis-labeled as OLANZAPINE, Tablet, 7.5 mg, NDC 60505311203, Pedigree: AD21790_76, EXP: 5/1/2014; ARIPiprazole, Tablet, 2 mg, NDC 59148000613, Pedigree: AD46265_19, EXP: 5/15/2014; OLANZapine, Tablet, 7.5 mg, NDC 55111016530, Pedigree: AD60272_79, EXP: 5/22/2014; OLANZapine, Tablet, 7.5 mg, NDC 55111016530, Pedigree: AD73\n",
"top 10 keywords: [('mg', 5), ('pedigree', 4), ('tablet', 4), ('ndc', 4), ('olanzapine', 3), ('exp', 3), ('ad73', 1), ('aripiprazole', 1), ('ad21790_76', 1), ('mixup', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: out of specification test results for the norethindrone impurity.\n",
"top 10 keywords: [('results', 1), ('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('norethindrone', 1), ('impurity', 1), ('test', 1), ('specification', 1)]\n",
"---\n",
"reason_for_recall : cGMP Deviations; trailer may not have met GMP requirements prior to filling\n",
"top 10 keywords: [('filling', 1), ('deviations', 1), ('gmp', 1), ('requirements', 1), ('trailer', 1), ('cgmp', 1), ('met', 1), ('prior', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; FERROUS SULFATE, Tablet, 325 mg (65 mg Elem Fe) may be potentially mislabeled as COENZYME Q-10, Capsule, 100 mg, NDC 37205055065, Pedigree: W002711, EXP: 6/6/2014; VENLAFAXINE HCL, Tablet, 25 mg, NDC 00093019901, Pedigree: W002825, EXP: 12/31/2013; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375710, Pedigree: AD60236_1, EXP: 5/22/2014. \n",
"top 10 keywords: [('mg', 5), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('tablet', 2), ('capsule', 2), ('ferrous', 1), ('mislabeled', 1), ('ad60236_1', 1), ('docusate', 1)]\n",
"---\n",
"reason_for_recall : Cross Contamination with Other Products: findings of carryover of trace amounts of a previously manufactured product fluvastatin\n",
"top 10 keywords: [('manufactured', 1), ('findings', 1), ('amounts', 1), ('contamination', 1), ('previously', 1), ('carryover', 1), ('fluvastatin', 1), ('cross', 1), ('products', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Lack of sterility assurance in compounded aseptically filled injectable products.\n",
"top 10 keywords: [('lack', 2), ('assurance', 2), ('sterility', 2), ('aseptically', 1), ('products', 1), ('injectable', 1), ('filled', 1), ('compounded', 1)]\n",
"---\n",
"reason_for_recall : GMP deficiencies \n",
"top 10 keywords: [('gmp', 1), ('deficiencies', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: PROPRANOLOL HCL ER, Capsule, 60 mg may have potentially been mislabeled as the following drug: CINACALCET HCL, Tablet, 30 mg, NDC 55513007330, Pedigree: AD52778_82, EXP: 5/21/2014.\n",
"top 10 keywords: [('hcl', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('ad52778_82', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: All compounded products.\n",
"top 10 keywords: [('products', 1), ('compounded', 1), ('lack', 1), ('assurance', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Loose crimp applied to the fliptop vial\n",
"top 10 keywords: [('applied', 1), ('crimp', 1), ('assurance', 1), ('vial', 1), ('fliptop', 1), ('sterility', 1), ('loose', 1), ('lack', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; GLUCOSAMINE/CHONDROITIN DS, Tablet, 500 mg/400 mg may be potentially mislabeled as DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375701, Pedigree: AD60211_11, EXP: 5/22/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('ds', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('ad60211_11', 1), ('docusate', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: SIMVASTATIN, Tablet, 5 mg may have potentially been mislabeled as the following drug: LOSARTAN POTASSIUM, Tablet, 25 mg, NDC 13668011390, Pedigree: AD65323_10, EXP: 5/29/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('simvastatin', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: tainted product marketed as a dietary supplement. Product found to be tainted with undeclared fluoxetine, an FDA approved drug used to treat depression, anxiety, panic attacks, obsessive-compulsive disorder, or bulimia and phenolphthalein, an ingredient found in over-the-counter laxative products that was withdrawn from the US market due to concerns of carcinogenicity, making it an unapproved drug.\n",
"top 10 keywords: [('drug', 2), ('found', 2), ('product', 2), ('marketed', 2), ('approved', 2), ('tainted', 2), ('phenolphthalein', 1), ('without', 1), ('nda/anda', 1), ('obsessive-compulsive', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Firm received fentanyl from a supplier who recalled it because fliptop vial crimps were loose or missing. \n",
"top 10 keywords: [('received', 1), ('missing', 1), ('crimps', 1), ('lack', 1), ('assurance', 1), ('firm', 1), ('recalled', 1), ('sterility', 1), ('loose', 1), ('vial', 1)]\n",
"---\n",
"reason_for_recall : Cross Contamination w/Other Products: During stability testing chromatographic review revealed extraneous peaks identified as acetaminophen and codeine. \n",
"top 10 keywords: [('review', 1), ('chromatographic', 1), ('extraneous', 1), ('products', 1), ('revealed', 1), ('testing', 1), ('contamination', 1), ('peaks', 1), ('w/other', 1), ('stability', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: The required reduction of endotoxin was not met during the annual revalidation of the vial washer.\n",
"top 10 keywords: [('annual', 1), ('required', 1), ('endotoxin', 1), ('lack', 1), ('assurance', 1), ('vial', 1), ('met', 1), ('washer', 1), ('sterility', 1), ('revalidation', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations; laboratory testing was not followed in accordance with GMP requirements\n",
"top 10 keywords: [('deviations', 1), ('accordance', 1), ('laboratory', 1), ('requirements', 1), ('cgmp', 1), ('gmp', 1), ('testing', 1), ('followed', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: AMANTADINE HCL, Tablet, 100 mg may have potentially been mislabeled as one of the following drugs: MAGNESIUM CHLORIDE, Tablet, 64 mg, NDC 68585000575, Pedigree: AD52993_4, EXP: 5/17/2014; QUEtiapine FUMARATE, Tablet, 25 mg, NDC 65862048901, Pedigree: AD49582_22, EXP: 4/30/2014. \n",
"top 10 keywords: [('mg', 3), ('tablet', 3), ('pedigree', 2), ('exp', 2), ('ndc', 2), ('ad49582_22', 1), ('chloride', 1), ('magnesium', 1), ('mixup', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling; Error on Declared Strength; product description incorrectly states HCG 7500 units instead of 5000 units. The primary panel is correct \n",
"top 10 keywords: [('units', 2), ('error', 1), ('incorrectly', 1), ('declared', 1), ('primary', 1), ('states', 1), ('instead', 1), ('hcg', 1), ('strength', 1), ('description', 1)]\n",
"---\n",
"reason_for_recall : Failed USP Dissolution Test Requirements: This sub-recall is in response to Prometheus Laboratories Inc. recall for Mercaptopurine USP 50mg because the lot does not meet the specification for dissolution.\n",
"top 10 keywords: [('usp', 2), ('dissolution', 2), ('recall', 1), ('response', 1), ('sub-recall', 1), ('requirements', 1), ('prometheus', 1), ('test', 1), ('inc.', 1), ('meet', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: Tainted product marketed as a dietary supplement. Product found to be tainted with sibutramine, an appetite suppressant that was withdrawn from the U.S. market in October 2010 for safety reasons, and diclofenac, a prescription non-steroidal anti-inflammatory drug, making this an unapproved drug.\n",
"top 10 keywords: [('product', 2), ('marketed', 2), ('tainted', 2), ('drug', 2), ('appetite', 1), ('suppressant', 1), ('without', 1), ('nda/anda', 1), ('october', 1), ('diclofenac', 1)]\n",
"---\n",
"reason_for_recall : Cross Contamination With Other Products: The firm recalled Zovia, Lutera, Necon, and Zenchent, because certain lots could potentially be contaminated with trace amounts of Hydrochlorothiazide (HCTZ).\n",
"top 10 keywords: [('certain', 1), ('potentially', 1), ('could', 1), ('hctz', 1), ('products', 1), ('hydrochlorothiazide', 1), ('zovia', 1), ('firm', 1), ('contamination', 1), ('lots', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: consumer complaint for foreign matter embedded in the tablet identified as a broken piece of wire rope from the manufacturing equipment.\n",
"top 10 keywords: [('foreign', 2), ('substance', 1), ('presence', 1), ('tablet', 1), ('piece', 1), ('complaint', 1), ('broken', 1), ('wire', 1), ('matter', 1), ('equipment', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; PIMOZIDE Tablet, 2 mg may be potentially mislabeled as DULoxetine HCl DR, Capsule, 20 mg, NDC 00002323560, Pedigree: AD30140_31, EXP: 5/7/2014.\n",
"top 10 keywords: [('mg', 2), ('pimozide', 1), ('mislabeled', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('dr', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; PRAMIPEXOLE DI-HCL, Tablet, 1 mg may be potentially mislabel as MISOPROSTOL, Tablet, 200 mcg, NDC 59762500801, Pedigree: W003117, EXP: 6/13/2014.\n",
"top 10 keywords: [('tablet', 2), ('misoprostol', 1), ('w003117', 1), ('exp', 1), ('mixup', 1), ('mg', 1), ('potentially', 1), ('pedigree', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: METHOCARBAMOL, Tablet, 500 mg may have potentially been mislabeled as the following drug: LOSARTAN POTASSIUM, Tablet, 25 mg, NDC 00093736498, Pedigree: AD46312_16, EXP: 5/16/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: This product is being recalled due to the discovery of particles in the stability samples and retain samples.\n",
"top 10 keywords: [('samples', 2), ('retain', 1), ('presence', 1), ('stability', 1), ('due', 1), ('product', 1), ('discovery', 1), ('particulate', 1), ('matter', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specification; 9 month stability\n",
"top 10 keywords: [('specification', 1), ('failed', 1), ('impurities/degradation', 1), ('month', 1), ('stability', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; BENZOCAINE/MENTHOL Lozenge, 15 mg/2.6 mg may be potentially mislabeled as CHOLECALCIFEROL/ CALCIUM/ PHOSPHORUS, Tablet, 120 units/105 mg/81 mg, NDC 64980015001, Pedigree: AD32345_1, EXP: 5/14/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('calcium/', 1), ('pedigree', 1), ('tablet', 1), ('mg/81', 1), ('mixup', 1), ('phosphorus', 1), ('potentially', 1), ('mg/2.6', 1)]\n",
"---\n",
"reason_for_recall : Chemical Contamination: Potential for contamination of the products with an aromatic hydrocarbon resin.\n",
"top 10 keywords: [('contamination', 2), ('resin', 1), ('products', 1), ('aromatic', 1), ('hydrocarbon', 1), ('chemical', 1), ('potential', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Illegible label. Writing is rubbing off of labels.\n",
"top 10 keywords: [('rubbing', 1), ('illegible', 1), ('writing', 1), ('labels', 1), ('label', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Subpotent; 18 month time point\n",
"top 10 keywords: [('subpotent', 1), ('month', 1), ('point', 1), ('time', 1)]\n",
"---\n",
"reason_for_recall : Tablets/Capsules Imprinted With Wrong ID: incorrect imprint debossed on the tablets.\n",
"top 10 keywords: [('wrong', 1), ('incorrect', 1), ('tablets', 1), ('id', 1), ('imprint', 1), ('debossed', 1), ('tablets/capsules', 1), ('imprinted', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; RAMIPRIL, Capsule, 2.5 mg, Rx only may be potentially mislabeled as PROPAFENONE HCL, Tablet, 150 mg, NDC 00591058201, Pedigree: AD54549_13, EXP: 5/20/2014; CALCIUM POLYCARBOPHIL, Tablet, 625 mg, NDC 00536430611, Pedigree: AD73592_11, EXP: 5/31/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('ndc', 2), ('exp', 2), ('mislabeled', 1), ('ramipril', 1), ('rx', 1), ('mixup', 1), ('hcl', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: One lot of N-Acetyl Cysteine vials tested positive for Herbaspirillum huttiense.\n",
"top 10 keywords: [('n-acetyl', 1), ('tested', 1), ('huttiense', 1), ('positive', 1), ('vials', 1), ('non-sterility', 1), ('herbaspirillum', 1), ('one', 1), ('lot', 1), ('cysteine', 1)]\n",
"---\n",
"reason_for_recall : Contraceptive Tablets Out of Sequence: This recall has been initiated due to the potential that some regimen packages may not contain placebo tablets.\n",
"top 10 keywords: [('tablets', 2), ('recall', 1), ('initiated', 1), ('contain', 1), ('due', 1), ('potential', 1), ('may', 1), ('placebo', 1), ('packages', 1), ('sequence', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: A mold like substance was discovered on the surface of an unopened bag of Sodium Chloride 0.9% while prepping the bag for production. \n",
"top 10 keywords: [('bag', 2), ('substance', 1), ('chloride', 1), ('lack', 1), ('assurance', 1), ('discovered', 1), ('production', 1), ('prepping', 1), ('sodium', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specification; out of specification results for carbon dioxide\n",
"top 10 keywords: [('specification', 2), ('results', 1), ('failed', 1), ('impurities/degradation', 1), ('dioxide', 1), ('carbon', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Active Pharmaceutical Ingredient (API) used for manufacture was stored in a non-GMP compliant warehouse at S.I.M.S., Italy.\n",
"top 10 keywords: [('api', 1), ('s.i.m.s.', 1), ('non-gmp', 1), ('active', 1), ('cgmp', 1), ('italy', 1), ('warehouse', 1), ('stored', 1), ('pharmaceutical', 1), ('deviations', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Out of specification for unknown impurities.\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('specification', 1), ('unknown', 1), ('impurities', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; carBAMazepine ER, Capsule, 200 mg may be potentially mislabeled as ACAMPROSATE CALCIUM DR, Tablet, 333 mg, NDC 00456333001, Pedigree: AD46333_1, EXP: 5/15/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('carbamazepine', 1), ('exp', 1), ('mixup', 1), ('dr', 1), ('potentially', 1), ('calcium', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; PROPRANOLOL HCL Tablet, 80 mg may be potentially mislabeled as LACTOBACILLUS GG, Capsule, NDC 49100036374, Pedigree: AD42584_12, EXP: 5/14/2014.\n",
"top 10 keywords: [('mislabeled', 1), ('gg', 1), ('pedigree', 1), ('ad42584_12', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('mg', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particular Matter: Potential vendor glass issue - glass spiticules (glass strands) were identified during site inspection of the vials.\n",
"top 10 keywords: [('glass', 3), ('particular', 1), ('vendor', 1), ('strands', 1), ('inspection', 1), ('site', 1), ('presence', 1), ('potential', 1), ('spiticules', 1), ('issue', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an approved NDA/ANDA - New Life Nutritional Center is recalling SUPER FAT BURNER, MAXI GOLD WEIGHT LOSS PILL and Esmeralda products marketed as Dietary Supplements due to the presence of undeclared and unapproved drugs.\n",
"top 10 keywords: [('marketed', 2), ('due', 1), ('presence', 1), ('gold', 1), ('weight', 1), ('without', 1), ('nda/anda', 1), ('life', 1), ('undeclared', 1), ('center', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; DOCUSATE SODIUM, Capsule, 50 mg may be potentially mislabeled as LEVOTHYROXINE SODIUM, Tablet, 112 mcg, NDC 00378181101, Pedigree: AD60211_1, EXP: 5/21/2014; MEXILETINE HCL, Capsule, 150 mg, NDC 00093873901, Pedigree: AD62865_7, EXP: 5/23/2014; CHOLECALCIFEROL, Tablet, 5000 units, NDC 00761017840, Pedigree: AD65457_10, EXP: 5/24/2014. \n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('ndc', 3), ('tablet', 2), ('mg', 2), ('sodium', 2), ('capsule', 2), ('levothyroxine', 1), ('docusate', 1), ('mcg', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA: Laboratory analysis conducted by the FDA has determined that J.R. Jack Rabbit Male Enhancement product was found to contain two undeclared active pharmaceutical ingredients: sildenafil and tadalafil.\n",
"top 10 keywords: [('analysis', 1), ('without', 1), ('nda/anda', 1), ('j.r.', 1), ('pharmaceutical', 1), ('undeclared', 1), ('two', 1), ('fda', 1), ('male', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: out of specification result for Clonazepam Related Compound (RC) A (a known impurity) at 16 month timepoint.\n",
"top 10 keywords: [('impurities/degradation', 1), ('known', 1), ('compound', 1), ('result', 1), ('timepoint', 1), ('specification', 1), ('related', 1), ('clonazepam', 1), ('specifications', 1), ('failed', 1)]\n",
"---\n",
"reason_for_recall : cGMP deviations; After quality review of stability failures in previous lots, there is insufficient data to determine that other lots are not affected.\n",
"top 10 keywords: [('lots', 2), ('review', 1), ('data', 1), ('cgmp', 1), ('failures', 1), ('insufficient', 1), ('affected', 1), ('previous', 1), ('quality', 1), ('deviations', 1)]\n",
"---\n",
"reason_for_recall : Defective container: products are packaged in pouches which may not have been fully sealed\n",
"top 10 keywords: [('fully', 1), ('sealed', 1), ('may', 1), ('products', 1), ('container', 1), ('pouches', 1), ('packaged', 1), ('defective', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications; 12 month stability time point\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('stability', 1), ('time', 1), ('month', 1), ('dissolution', 1), ('point', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA \n",
"top 10 keywords: [('marketed', 1), ('without', 1), ('approved', 1), ('nda/anda', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix up; product labeled to contain Sulfamethoxazole and Trimethoprim Tablets, 400 mg/80 mg instead of Sulfamethoxazole and Trimethoprim Tablets, 800 mg/160 mg\n",
"top 10 keywords: [('sulfamethoxazole', 2), ('tablets', 2), ('mg', 2), ('trimethoprim', 2), ('labeled', 1), ('labeling', 1), ('mix', 1), ('mg/80', 1), ('mg/160', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: VITAMIN B COMPLEX W/C, Tablet, 0 mg may have potentially been mislabeled as one of the following drugs: MULTIVITAMIN/ MULTIMINERAL/ LUTEIN, Capsule, 0 mg, NDC 24208063210, Pedigree: AD21846_40, EXP: 5/2/2014; CALCIUM CARBONATE/CHOLECALCIFEROL, Tablet, 600 mg/800 units, NDC 00005550924, Pedigree: AD52993_1, EXP: 5/17/2014; MULTIVITAMIN/ MULTIMINERAL/ LUTEIN, Capsule, 0, ND\n",
"top 10 keywords: [('multimineral/', 2), ('lutein', 2), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('mg', 2), ('multivitamin/', 2), ('capsule', 2), ('ndc', 2), ('nd', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: During stability testing an unknown impurity was found to be above the specification limit at 36 month test interval\n",
"top 10 keywords: [('impurities/degradation', 1), ('found', 1), ('interval', 1), ('specification', 1), ('testing', 1), ('limit', 1), ('specifications', 1), ('failed', 1), ('stability', 1), ('test', 1)]\n",
"---\n",
"reason_for_recall : Failed Stability Specifications: Out of specification result for preservative sodium benzoate.\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('stability', 1), ('result', 1), ('benzoate', 1), ('specification', 1), ('preservative', 1), ('sodium', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; HYOSCYAMINE SULFATE ER Tablet, 0.375 mg may be potentially mislabeled as SERTRALINE HCL, Tablet, 50 mg, NDC 16714061204, Pedigree: W003575, EXP: 6/24/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('hyoscyamine', 1), ('w003575', 1), ('sertraline', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('pedigree', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: A confirmed customer complaint reported the presence of a brown, rust-colored particle embedded at the bottom of the glass vial. \n",
"top 10 keywords: [('presence', 2), ('rust-colored', 1), ('particle', 1), ('confirmed', 1), ('brown', 1), ('complaint', 1), ('particulate', 1), ('embedded', 1), ('vial', 1), ('reported', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: NIFEdipine ER, Tablet, 60 mg may have potentially been mislabeled as the following drug: NICOTINE POLACRILEX, LOZENGE, 2 mg, NDC 00135051001, Pedigree: W003749, EXP: 6/26/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('ndc', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('pedigree', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; HYDRALAZINE HCL Tablet, 25 mg may be potentially mislabeled as DOCUSATE CALCIUM, Capsule, 240 mg, NDC 00536375501, Pedigree: AD49582_16, EXP: 5/16/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('hydralazine', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('docusate', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: The product has the potential for solution to leak at the administrative port.\n",
"top 10 keywords: [('lack', 1), ('assurance', 1), ('port', 1), ('product', 1), ('solution', 1), ('leak', 1), ('potential', 1), ('administrative', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurity/Degradation Specifications; an impurity identified as N-Butyl-Benzene Sulfonamide (NBBS) detected during impurity testing \n",
"top 10 keywords: [('impurity', 2), ('specifications', 1), ('failed', 1), ('nbbs', 1), ('impurity/degradation', 1), ('n-butyl-benzene', 1), ('detected', 1), ('sulfonamide', 1), ('testing', 1), ('identified', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: NIACIN TR, Tablet, 750 mg may have potentially been mislabeled as the following drug: NORTRIPTYLINE HCL, Capsule, 50 mg, NDC 00093081201, Pedigree: AD46414_47, EXP: 5/16/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('ad46414_47', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Products: bulk solution tested positive for the presence of the bacteria, Burkholderia cepacia. \n",
"top 10 keywords: [('cepacia', 1), ('presence', 1), ('burkholderia', 1), ('products', 1), ('tested', 1), ('non-sterile', 1), ('bulk', 1), ('solution', 1), ('microbial', 1), ('bacteria', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Illegible Label: Sandoz Inc. is recalling of one lot of Fluoxetine Capsules due to an illegible logo on the capsule.\n",
"top 10 keywords: [('illegible', 2), ('due', 1), ('label', 1), ('inc.', 1), ('labeling', 1), ('capsules', 1), ('fluoxetine', 1), ('sandoz', 1), ('recalling', 1), ('logo', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Confirmed customer report of visible particulate embedded in the glass vial.\n",
"top 10 keywords: [('particulate', 2), ('visible', 1), ('confirmed', 1), ('embedded', 1), ('glass', 1), ('customer', 1), ('report', 1), ('vial', 1), ('presence', 1), ('matter', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA: FDA has determined that the products are unapproved new drugs and misbranded. \n",
"top 10 keywords: [('marketed', 1), ('misbranded', 1), ('approved', 1), ('fda', 1), ('without', 1), ('nda/anda', 1), ('drugs', 1), ('products', 1), ('unapproved', 1), ('determined', 1)]\n",
"---\n",
"reason_for_recall : Failed Stability Specifications: Out of Specification results obtained for preservative butylparaben.\n",
"top 10 keywords: [('results', 1), ('specifications', 1), ('failed', 1), ('stability', 1), ('butylparaben', 1), ('specification', 1), ('preservative', 1), ('obtained', 1)]\n",
"---\n",
"reason_for_recall : Presence of Precipitate; potential for incomplete constitution upon addition of diluent. \n",
"top 10 keywords: [('presence', 1), ('incomplete', 1), ('upon', 1), ('constitution', 1), ('precipitate', 1), ('potential', 1), ('diluent', 1), ('addition', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ATOMOXETINE HCL, Capsule, 80 mg may be potentially mis-labeled as one of the following drugs: ATOMOXETINE HCL, Capsule, 18 mg, NDC 00002323830, Pedigree: AD30140_16, EXP: 5/7/2014; PRENATAL MULTIVITAMIN/MULTIMINERAL, Tablet, 0 mg, NDC 00904531360, Pedigree: W003706, EXP: 6/25/2014; RANOLAZINE ER, Tablet, 500 mg, NDC 61958100301, Pedigree: AD60272_40, EXP: 5/22/2014; PRO\n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('tablet', 2), ('hcl', 2), ('atomoxetine', 2), ('capsule', 2), ('multivitamin/multimineral', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Failed dissolution specifications; 18 month CRT\n",
"top 10 keywords: [('crt', 1), ('specifications', 1), ('failed', 1), ('dissolution', 1), ('month', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: During routine stability testing at the 12 month time point, one product lot was found to be out of specification for dissolution.\n",
"top 10 keywords: [('dissolution', 2), ('month', 1), ('lot', 1), ('found', 1), ('specification', 1), ('testing', 1), ('specifications', 1), ('failed', 1), ('routine', 1), ('time', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: glyBURIDE, Tablet, 2.5 mg may have potentially been mislabeled as one of the following drugs: sulfaSALAzine, Tablet, 500 mg, NDC 59762500001, Pedigree: AD46265_13, EXP: 5/15/2014; ENTECAVIR, Tablet, 0.5 mg, NDC 00003161112, Pedigree: W003687, EXP: 6/26/2014; RALTEGRAVIR, Tablet, 400 mg, NDC 00006022761, Pedigree: AD21790_22, EXP: 5/1/2014; carBAMazepine ER, Tablet, 100 m\n",
"top 10 keywords: [('tablet', 5), ('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('er', 1), ('ad21790_22', 1), ('may', 1), ('labeling', 1), ('entecavir', 1)]\n",
"---\n",
"reason_for_recall : Labeling -label error on declared strength: unopened, sealed bottle of Terazosin Hydrochloride (HCl) 10mg Capsules contained Terazosin HCl 5 mg Capsules\n",
"top 10 keywords: [('capsules', 2), ('hcl', 2), ('terazosin', 2), ('error', 1), ('-label', 1), ('hydrochloride', 1), ('10mg', 1), ('declared', 1), ('labeling', 1), ('strength', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: Uncharacteristic spots identified as steel corrosion, degraded tablet material and hydrocarbon oil with trace amounts of iron were found in tablets.\n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('oil', 1), ('tablet', 1), ('found', 1), ('spots', 1), ('steel', 1), ('corrosion', 1), ('foreign', 1), ('tablets', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: A product complaint was received from a pharmacist who discovered that 3 tablets in a 1000-count bottle were oversized.\n",
"top 10 keywords: [('received', 1), ('tablets', 1), ('complaint', 1), ('discovered', 1), ('pharmacist', 1), ('specifications', 1), ('failed', 1), ('1000-count', 1), ('tablet/capsule', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: NEBIVOLOL HCL, Tablet, 5 mg may have potentially been mislabeled as one of the following drugs: THYROID, Tablet, 30 mg, NDC 00456045801, Pedigree: AD73611_1, EXP: 5/30/2014; RASAGILINE MESYLATE, Tablet, 0.5 mg, NDC 68546014256, Pedigree: W002929, EXP: 6/10/2014. \n",
"top 10 keywords: [('tablet', 3), ('mg', 3), ('pedigree', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('w002929', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Baxter is issuing a voluntary recall for these IV solutions due to particulate matter found in the solution identified as polyester and cotton fibers, adhesive-like mixture, polyacetal particles, thermally degraded PVC, black polypropylene and human hair embedded in the plastic bag\n",
"top 10 keywords: [('particulate', 2), ('matter', 2), ('bag', 1), ('polyacetal', 1), ('recall', 1), ('solutions', 1), ('human', 1), ('embedded', 1), ('cotton', 1), ('presence', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: black specks comprised of degraded organic material found on tablets\n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('comprised', 1), ('tablets', 1), ('found', 1), ('black', 1), ('degraded', 1), ('material', 1), ('organic', 1), ('specks', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: CHLORTHALIDONE, Tablet, 12.5 mg (1/2 of 25 mg) may have potentially been mislabeled as the following drug: PROPRANOLOL HCL, Tablet, 5 mg (1/2 of 10 mg), NDC 23155011001, Pedigree: AD73525_25, EXP: 5/30/2014.\n",
"top 10 keywords: [('mg', 4), ('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: DICYCLOMINE HCL, Tablet, 20 mg may have potentially been mislabeled as the following drug: RAMIPRIL, Capsule, 2.5 mg, NDC 68180058901, Pedigree: AD76639_1, EXP: 5/31/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('dicyclomine', 1), ('pedigree', 1), ('ramipril', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Chemical Contamination: The IV solutions were packaged in AVIVA containers which may contain trace levels of cumene hydroperoxide (CHP).\n",
"top 10 keywords: [('levels', 1), ('solutions', 1), ('contain', 1), ('chemical', 1), ('may', 1), ('packaged', 1), ('iv', 1), ('cumene', 1), ('hydroperoxide', 1), ('aviva', 1)]\n",
"---\n",
"reason_for_recall : Failed dissolution specifications - low dissolution results at S3 stage.\n",
"top 10 keywords: [('dissolution', 2), ('results', 1), ('low', 1), ('specifications', 1), ('failed', 1), ('s3', 1), ('stage', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: The recall is being initiated due to the lack of sterility assurance and concerns associated with the quality control processes identified during an FDA inspection.\n",
"top 10 keywords: [('lack', 2), ('assurance', 2), ('sterility', 2), ('due', 1), ('recall', 1), ('control', 1), ('associated', 1), ('inspection', 1), ('initiated', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : Incorrect/Undeclared Excipients: The firm recalled specific lots of Walgreens brand Aspirin Free Tension Headache Caplets due to the presence of sucralose, which was not declared on the label.\n",
"top 10 keywords: [('free', 1), ('presence', 1), ('headache', 1), ('walgreens', 1), ('brand', 1), ('due', 1), ('firm', 1), ('declared', 1), ('sucralose', 1), ('lots', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; CYPROHEPTADINE HCL Tablet, 4 mg may be potentially mislabeled as ACARBOSE, Tablet, 25 mg, NDC 00054014025, Pedigree: W003673, EXP: 6/25/2014; AMANTADINE HCL, Capsule, 100 mg, NDC 00781204801, Pedigree: W003323, EXP: 6/18/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('hcl', 2), ('ndc', 2), ('mislabeled', 1), ('mixup', 1), ('w003673', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Defective Container; leaking around the cap\n",
"top 10 keywords: [('cap', 1), ('container', 1), ('leaking', 1), ('around', 1), ('defective', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; SERTRALINE HCL Tablet, 50 mg may be potentially mislabeled as NORTRIPTYLINE HCL, Capsule, 10 mg, NDC 00093081001, Pedigree: AD70585_4, EXP: 5/29/2014; guaiFENesin ER, Tablet, 600 mg, NDC 63824000834, Pedigree: W003574, EXP: 6/24/2014; OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/1,110 mg, NDC 11523726503, Pedigree: AD46300_17, EXP: 5/15/2014; CHOLECALCIFEROL, Tablet, \n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('tablet', 3), ('ndc', 3), ('hcl', 2), ('capsule', 2), ('mg/1,110', 1), ('bicarbonate', 1), ('mixup', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Process deficiencies were observed in the sterile ophthalmic and injectable products that could have compromised the sterility of the product.\n",
"top 10 keywords: [('sterility', 2), ('process', 1), ('lack', 1), ('assurance', 1), ('products', 1), ('observed', 1), ('deficiencies', 1), ('product', 1), ('injectable', 1), ('ophthalmic', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Package Insert: Package insert is missing updates compared with reference drug insert.\n",
"top 10 keywords: [('insert', 3), ('package', 2), ('missing', 2), ('reference', 1), ('drug', 1), ('incorrect', 1), ('updates', 1), ('compared', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Correct Labeled Product Miscart/Mispack: The shipper label displayed \"5 mL x 50,\" instead of \"10 mL x 50,\"\n",
"top 10 keywords: [('x', 2), ('ml', 2), ('displayed', 1), ('miscart/mispack', 1), ('labeled', 1), ('product', 1), ('correct', 1), ('shipper', 1), ('instead', 1), ('label', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: glyBURIDE MICRONIZED, Tablet, 3 mg may have potentially been mislabeled as the following drug: DIGOXIN, Tablet, 0.125 mg, NDC 00115981101, Pedigree: W003154, EXP: 6/13/2014. \n",
"top 10 keywords: [('mg', 2), ('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('glyburide', 1), ('exp', 1), ('mixup', 1), ('digoxin', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Error on Declared Strength: Some bottles miss a color coded panel where the strength of the product is typically displayed. \n",
"top 10 keywords: [('strength', 2), ('error', 1), ('bottles', 1), ('typically', 1), ('displayed', 1), ('labeling', 1), ('declared', 1), ('miss', 1), ('coded', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Product was out of specification (OOS) at the 12 month long term stability testing point.\n",
"top 10 keywords: [('month', 1), ('point', 1), ('testing', 1), ('term', 1), ('long', 1), ('specifications', 1), ('failed', 1), ('stability', 1), ('product', 1), ('dissolution', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ACARBOSE, Tablet, 25 mg may be potentially mislabeled as one of the following drugs: ZINC GLUCONATE, Tablet, 50 mg, NDC 00904319160, Pedigree: AD60240_57, EXP: 5/22/2014; TOLTERODINE TARTRATE ER, Capsule, 2 mg, NDC 00009519001, Pedigree: W002724, EXP: 6/6/2014; SILDENAFIL CITRATE, Tablet, 25 mg, NDC 00069420030, Pedigree: W003646, EXP: 6/25/2014; SEVELAMER CARBONATE, Tab\n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('tablet', 3), ('ndc', 3), ('sevelamer', 1), ('may', 1), ('labeling', 1), ('tolterodine', 1), ('carbonate', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: chlorproMAZINE HCl, Tablet, 100 mg may have potentially been mislabeled as one of the following drugs: ACYCLOVIR, Tablet, 800 mg, NDC 00093894701, Pedigree: AD70629_1, EXP: 5/29/2014; TRIMETHOBENZAMIDE HCL, Capsule, 300 mg, NDC 53489037601, Pedigree: AD70625_1, EXP: 5/29/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('hcl', 2), ('ndc', 2), ('mislabeled', 1), ('capsule', 1), ('mixup', 1), ('chlorpromazine', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: thick tablets exceeding specifications were found. \n",
"top 10 keywords: [('specifications', 2), ('tablets', 1), ('failed', 1), ('found', 1), ('tablet/capsule', 1), ('thick', 1), ('exceeding', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an approved NDA/ANDA: Product contains undeclared sibutramine and phenolphthalein.\n",
"top 10 keywords: [('marketed', 1), ('sibutramine', 1), ('undeclared', 1), ('phenolphthalein', 1), ('approved', 1), ('nda/anda', 1), ('without', 1), ('product', 1), ('contains', 1)]\n",
"---\n",
"reason_for_recall : Label Mix up; side panel of sticker label applied by Dispensing Solutions Inc. incorrectly indicates product name as Ventolin HFA 90 mcg instead of correctly as Atrovent HFA 12.9 grams Inhalation Aerosol \n",
"top 10 keywords: [('hfa', 2), ('label', 2), ('incorrectly', 1), ('inhalation', 1), ('sticker', 1), ('solutions', 1), ('name', 1), ('inc.', 1), ('atrovent', 1), ('dispensing', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: the active ingredient, fluocinolone acetonide, was found to be subpotent during the firm's routine testing.\n",
"top 10 keywords: [('subpotent', 2), ('routine', 1), ('acetonide', 1), ('active', 1), ('drug', 1), ('ingredient', 1), ('firm', 1), ('testing', 1), ('fluocinolone', 1), ('found', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup:PROGESTERONE, Capsule, 100 mg may have potentially been mislabeled as the following drug: ASCORBIC ACID, Tablet, 250 mg, NDC 00904052260, Pedigree: AD73623_10, EXP: 5/30/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('ad73623_10', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('ascorbic', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: out of specification results for a related compound - a degradant of fexofenadine. \n",
"top 10 keywords: [('results', 1), ('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('degradant', 1), ('fexofenadine', 1), ('compound', 1), ('specification', 1), ('related', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LITHIUM CARBONATE ER, Tablet, 300 mg may be potentially mislabled as the following drug: VITAMIN B COMPLEX PROLONGED RELEASE, Tablet, 50 mg, NDC 40985022251, Pedigree: AD39588_10, EXP: 5/13/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('drug', 1), ('ad39588_10', 1), ('mixup', 1), ('er', 1), ('lithium', 1), ('may', 1), ('labeling', 1), ('carbonate', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Testing: Failed 24 month dissolution testing.\n",
"top 10 keywords: [('testing', 2), ('failed', 2), ('dissolution', 2), ('month', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specification: Corepharma Inc. is recalling Pyridostigmine Bromide Tablets USP 60 mg due to an out of specification dissolution test generated at the 30 month stability time point.\n",
"top 10 keywords: [('dissolution', 2), ('specification', 2), ('time', 1), ('tablets', 1), ('due', 1), ('pyridostigmine', 1), ('mg', 1), ('generated', 1), ('corepharma', 1), ('bromide', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Products: Failed S.aureus test.\n",
"top 10 keywords: [('s.aureus', 1), ('test', 1), ('failed', 1), ('products', 1), ('microbial', 1), ('non-sterile', 1), ('contamination', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LORazepam, Tablet, 0.25 mg (1/2 of 0.5 mg) may have potentially been mislabeled as the following drug: traMADol HCl, Tablet, 25 mg (1/2 of 50 mg), NDC 57664037708, Pedigree: AD60272_92, EXP: 5/22/2014. \n",
"top 10 keywords: [('mg', 4), ('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('ad60272_92', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Error On Declared Strength; Some bottles of product were missing the color-coded strength on the primary display panel of the label.\n",
"top 10 keywords: [('strength', 2), ('label', 2), ('error', 1), ('bottles', 1), ('primary', 1), ('declared', 1), ('missing', 1), ('labeling', 1), ('color-coded', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: TOLTERODINE TARTRATE ER, Capsule, 4 mg may be potentially mislabeled as one of the following drugs: HYDRALAZINE HCL, Tablet, 25 mg, NDC 50111032701, Pedigree: AD49610_4, EXP: 5/16/2014; PRENATAL MULTIVITAMIN/ MULTIMINERAL, Tablet, 0 mg, NDC 51991056601, Pedigree: AD73597_1, EXP: 5/31/2014. \n",
"top 10 keywords: [('mg', 3), ('exp', 2), ('pedigree', 2), ('tablet', 2), ('ndc', 2), ('multimineral', 1), ('er', 1), ('hydralazine', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; FDA inspection revealed poor aseptic practices and conditions potentially affecting the sterility of their compounded sterile products\n",
"top 10 keywords: [('sterility', 2), ('aseptic', 1), ('lack', 1), ('assurance', 1), ('products', 1), ('inspection', 1), ('conditions', 1), ('potentially', 1), ('sterile', 1), ('practices', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: In the course of inspecting retention samples visual particles were observed.\n",
"top 10 keywords: [('presence', 1), ('visual', 1), ('particles', 1), ('course', 1), ('samples', 1), ('inspecting', 1), ('particulate', 1), ('matter', 1), ('observed', 1), ('retention', 1)]\n",
"---\n",
"reason_for_recall : Temperature Abuse: One shipment was inadvertantly stored refrigerated rather than the labeled room temperature recommendation at McKesson Medical-Surgical Inc., one of the distributing wholesalers.\n",
"top 10 keywords: [('temperature', 2), ('one', 2), ('wholesalers', 1), ('inadvertantly', 1), ('inc.', 1), ('labeled', 1), ('stored', 1), ('distributing', 1), ('rather', 1), ('mckesson', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Products: Suspensions made from these lots of Amoxicillin 125 mg/5 mL showed yeast and mold growth at the 14 day time point.\n",
"top 10 keywords: [('day', 1), ('time', 1), ('suspensions', 1), ('made', 1), ('yeast', 1), ('amoxicillin', 1), ('microbial', 1), ('non-sterile', 1), ('products', 1), ('mg/5', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; guaiFENesin ER, Tablet, 600 mg may be potentially mislabeled as FENOFIBRATE, Tablet, 54 mg, NDC 00378710077, Pedigree: AD21790_52, EXP: 5/1/2014; FENOFIBRATE, Tablet, 54 mg, NDC 00378710077, Pedigree: W002733, EXP: 6/6/2014; glyBURIDE, Tablet, 2.5 mg, NDC 00093834301, Pedigree: W003688, EXP: 5/31/2014; glyBURIDE, Tablet, 2.5 mg, NDC 00093834301, Pedigree: AD30140_34, E\n",
"top 10 keywords: [('tablet', 5), ('mg', 5), ('pedigree', 4), ('ndc', 4), ('exp', 3), ('fenofibrate', 2), ('glyburide', 2), ('mislabeled', 1), ('mixup', 1), ('ad30140_34', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA: Dietary supplement may contain amounts of an active ingredient found in some FDA-approved drugs for erectile dysfunction (ED) making the dietary supplement an unapproved drug. \n",
"top 10 keywords: [('supplement', 2), ('dietary', 2), ('marketed', 1), ('drug', 1), ('approved', 1), ('found', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('unapproved', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications; 6 month time point\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('time', 1), ('month', 1), ('dissolution', 1), ('point', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: FAMCICLOVIR, Tablet, 500 mg may have potentially been mislabeled as one of the following drugs: TOLTERODINE TARTRATE ER, Capsule, 4 mg, NDC 00009519101, Pedigree: AD49448_1, EXP: 5/17/2014; THIAMINE HCL, Tablet, 100 mg, NDC 00904054460, Pedigree: AD54559_1, EXP: 5/20/2014. \n",
"top 10 keywords: [('mg', 3), ('exp', 2), ('pedigree', 2), ('tablet', 2), ('ndc', 2), ('thiamine', 1), ('ad49448_1', 1), ('may', 1), ('labeling', 1), ('tolterodine', 1)]\n",
"---\n",
"reason_for_recall : Defective container: Product distributed without inner seal on bottles.\n",
"top 10 keywords: [('bottles', 1), ('inner', 1), ('distributed', 1), ('without', 1), ('product', 1), ('container', 1), ('defective', 1), ('seal', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: Ink identification had rubbed off tablets in transit making them illegible to pharmacists and consumers.\n",
"top 10 keywords: [('pharmacists', 1), ('illegible', 1), ('transit', 1), ('consumers', 1), ('tablets', 1), ('rubbed', 1), ('specifications', 1), ('failed', 1), ('making', 1), ('tablet/capsule', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: An FDA inspection at the facility raised concerns that product sterility was potentially impacted.\n",
"top 10 keywords: [('sterility', 2), ('raised', 1), ('concerns', 1), ('lack', 1), ('assurance', 1), ('fda', 1), ('inspection', 1), ('product', 1), ('potentially', 1), ('facility', 1)]\n",
"---\n",
"reason_for_recall : Discoloration: presence of scuffing marks on tablets. \n",
"top 10 keywords: [('tablets', 1), ('presence', 1), ('scuffing', 1), ('marks', 1), ('discoloration', 1)]\n",
"---\n",
"reason_for_recall : Lack of assurance of sterility: ineffective crimp on fliptop vials that may result in leaking at the neck of the vials.\n",
"top 10 keywords: [('vials', 2), ('result', 1), ('neck', 1), ('crimp', 1), ('assurance', 1), ('fliptop', 1), ('leaking', 1), ('sterility', 1), ('may', 1), ('ineffective', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: DOXYCYCLINE HYCLATE, Capsule, 100 mg may have potentially been mislabeled as the following drug: RALOXIFENE HCL, Tablet, 60 mg, NDC 00002416530, Pedigree: W002644, EXP: 6/5/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('hyclate', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('raloxifene', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: Out of specification results for the sterility test for microbial contamination.\n",
"top 10 keywords: [('results', 1), ('test', 1), ('microbial', 1), ('non-sterility', 1), ('specification', 1), ('contamination', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: BUPRENORPHINE HCL SL, Tablet, 2 mg may be potentially mislabeled as one of the following drugs: DOCUSATE SODIUM, Capsule, 250 mg, NDC 00904789159, Pedigree: AD37072_4, EXP: 5/13/2014; MAGNESIUM CHLORIDE DR, Tablet, 64 mg, NDC 00904791152, Pedigree: AD54510_1, EXP: 2/28/2014. \n",
"top 10 keywords: [('mg', 3), ('exp', 2), ('pedigree', 2), ('tablet', 2), ('ndc', 2), ('chloride', 1), ('magnesium', 1), ('mixup', 1), ('docusate', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Leiter Pharmacy is recalling due bacterial contamination found after investigation at contract testing laboratory discovered that OOS/failed results were reported to customers as passing. Hence the sterility of the products cannot be assured. \n",
"top 10 keywords: [('sterility', 2), ('found', 1), ('discovered', 1), ('contamination', 1), ('laboratory', 1), ('customers', 1), ('leiter', 1), ('pharmacy', 1), ('results', 1), ('bacterial', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA: Laboratory analysis conducted by the FDA has determined that the products was found to contain sildenafil, an undeclared active pharmaceutical ingredient.\n",
"top 10 keywords: [('marketed', 1), ('active', 1), ('analysis', 1), ('laboratory', 1), ('approved', 1), ('products', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('determined', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System: Out of Specification (OOS) results for the mechanical peel force (MPF) and z-statistic value which relates to the patients and caregiver ability to remove the release liner from the patch adhesive prior to administration. \n",
"top 10 keywords: [('peel', 1), ('ability', 1), ('remove', 1), ('value', 1), ('force', 1), ('mechanical', 1), ('system', 1), ('adhesive', 1), ('oos', 1), ('mpf', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: An FDA inspection identified inadequate investigations of past market complaints.\n",
"top 10 keywords: [('past', 1), ('inadequate', 1), ('deviations', 1), ('market', 1), ('fda', 1), ('inspection', 1), ('cgmp', 1), ('complaints', 1), ('identified', 1), ('investigations', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Either a loose crimp or no crimp was applied to the fliptop vials.\n",
"top 10 keywords: [('crimp', 2), ('vials', 1), ('applied', 1), ('loose', 1), ('assurance', 1), ('fliptop', 1), ('sterility', 1), ('either', 1), ('lack', 1)]\n",
"---\n",
"reason_for_recall : Lack Of Assurance Of Sterility: Confirmed customer complaints of glass product container vials that may be broken or cracked.\n",
"top 10 keywords: [('cracked', 1), ('customer', 1), ('confirmed', 1), ('lack', 1), ('assurance', 1), ('vials', 1), ('container', 1), ('may', 1), ('sterility', 1), ('glass', 1)]\n",
"---\n",
"reason_for_recall : Subpotent (Single Ingredient) Drug: This product was found to be subpotent for the benzoyl peroxide active ingredient. Additionally, this product is mislabeled because the label either omits or erroneously added inactive ingredients to the label. \n",
"top 10 keywords: [('subpotent', 2), ('label', 2), ('ingredient', 2), ('product', 2), ('mislabeled', 1), ('found', 1), ('active', 1), ('drug', 1), ('peroxide', 1), ('additionally', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ALBUTEROL SULFATE ER, Tablet, 4 mg may have potentially been mislabeled as one of the following drugs: SIMVASTATIN, Tablet, 20 mg, NDC 16714068303, Pedigree: W003580, EXP: 6/24/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('simvastatin', 1), ('mixup', 1), ('w003580', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Presence of Precipitate; white substance confirmed as Guaifenesin, an active ingredient was observed in some bottles. \n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('bottles', 1), ('active', 1), ('guaifenesin', 1), ('ingredient', 1), ('white', 1), ('precipitate', 1), ('observed', 1), ('confirmed', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specification \n",
"top 10 keywords: [('specification', 1), ('failed', 1), ('dissolution', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: Captomer and Captomer-250 are marketed as dietary supplements and labeled to be sourced from Dimercaptosuccinic Acid (DMSA) which is the active ingredient in an FDA approved drug making these products unapproved new drugs.\n",
"top 10 keywords: [('marketed', 2), ('approved', 2), ('captomer', 1), ('labeled', 1), ('without', 1), ('nda/anda', 1), ('captomer-250', 1), ('making', 1), ('supplements', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviation: Poor container closure of the bulk storage container \n",
"top 10 keywords: [('container', 2), ('closure', 1), ('storage', 1), ('cgmp', 1), ('bulk', 1), ('poor', 1), ('deviation', 1)]\n",
"---\n",
"reason_for_recall : Superpotent (Multiple Ingredient) Drug: There is the potential for oversized and superpotent tablets.\n",
"top 10 keywords: [('superpotent', 2), ('drug', 1), ('tablets', 1), ('ingredient', 1), ('multiple', 1), ('potential', 1), ('oversized', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Tablets/Capsules; possibility of Glipizide 10 mg tablet in bottle\n",
"top 10 keywords: [('presence', 1), ('glipizide', 1), ('tablet', 1), ('possibility', 1), ('tablets/capsules', 1), ('mg', 1), ('foreign', 1), ('bottle', 1)]\n",
"---\n",
"reason_for_recall : Contraceptive Tablets out of Sequence: A placebo tablet was found in a row of active tablets.\n",
"top 10 keywords: [('tablets', 2), ('placebo', 1), ('tablet', 1), ('found', 1), ('active', 1), ('sequence', 1), ('row', 1), ('contraceptive', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: NEFAZODONE HCL, Tablet, 150 mg may have potentially been mislabeled as the following drug: LIOTHYRONINE SODIUM, Tablet, 25 mcg, NDC 42794001902, Pedigree: AD46414_35, EXP: 5/16/2014.\n",
"top 10 keywords: [('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('liothyronine', 1), ('mixup', 1), ('hcl', 1), ('ad46414_35', 1), ('mg', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: The firm expanded the recall to other injectable products due to lack of assurance of sterility from poor aseptic practices observed at the firm.\n",
"top 10 keywords: [('lack', 2), ('assurance', 2), ('firm', 2), ('sterility', 2), ('recall', 1), ('aseptic', 1), ('products', 1), ('due', 1), ('observed', 1), ('practices', 1)]\n",
"---\n",
"reason_for_recall : Failed Content Uniformity Specifications: Failed Uniformity of Dosage Units specifications.\n",
"top 10 keywords: [('specifications', 2), ('failed', 2), ('uniformity', 2), ('content', 1), ('units', 1), ('dosage', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance; heavy metals (chromium, titanium etc) and inactive components of the product were visually observed during routine stability testing. \n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('heavy', 1), ('titanium', 1), ('chromium', 1), ('observed', 1), ('foreign', 1), ('etc', 1), ('inactive', 1), ('visually', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: PIOGLITAZONE, Tablet, 15 mg may have potentially been mislabeled as one of the following drugs: LACTASE ENZYME, Tablet, 3000 units, NDC 24385014976, Pedigree: AD21846_31, EXP: 5/1/2014; PHOSPHORUS, Tablet, 250 mg, NDC 64980010401, Pedigree: AD25452_7, EXP: 5/3/2014; ARIPiprazole, Tablet, 15 mg, NDC 59148000913, Pedigree: AD28322_1, EXP: 5/6/2014. \n",
"top 10 keywords: [('tablet', 4), ('exp', 3), ('pedigree', 3), ('mg', 3), ('ndc', 3), ('aripiprazole', 1), ('enzyme', 1), ('labeling', 1), ('ad28322_1', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: This product is being recalled because FDA issued a final rule establishing that all over-the-counter (OTC) drug products containing colloidal silver ingredients or silver salts for internal or external use are not generally recognized as safe and effective and are misbranded.\n",
"top 10 keywords: [('silver', 2), ('establishing', 1), ('drug', 1), ('final', 1), ('without', 1), ('nda/anda', 1), ('effective', 1), ('safe', 1), ('recalled', 1), ('colloidal', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; MESALAMINE CR, Capsule, 500 mg may be potentially mislabeled as clomiPRAMINE HCl, Capsule, 50 mg, NDC 51672401205, Pedigree: AD21790_7, EXP: 5/1/2014.\n",
"top 10 keywords: [('mg', 2), ('capsule', 2), ('mislabeled', 1), ('clomipramine', 1), ('pedigree', 1), ('cr', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: out of specification for unknown impurity\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('impurity', 1), ('specification', 1), ('unknown', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Martin Avenue Pharmacy, Inc. is conducting a voluntary recall of all compounded sterile preparations within expiry. The recall is being initiated in connection with a recent FDA inspection due to observations associated with certain quality control procedures that present a risk to sterility assurance.\n",
"top 10 keywords: [('recall', 2), ('sterility', 2), ('assurance', 2), ('recent', 1), ('lack', 1), ('procedures', 1), ('control', 1), ('initiated', 1), ('inspection', 1), ('inc.', 1)]\n",
"---\n",
"reason_for_recall : Impurities/Degradation Products: This lot of product will not meet the impurity specification over shelf life\n",
"top 10 keywords: [('impurities/degradation', 1), ('life', 1), ('products', 1), ('impurity', 1), ('product', 1), ('specification', 1), ('meet', 1), ('shelf', 1), ('lot', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: A small cut in the solution bag may have been introduced during the manufacturing process, resulting in a leak of the bag into the overpouch.\n",
"top 10 keywords: [('bag', 2), ('process', 1), ('introduced', 1), ('lack', 1), ('assurance', 1), ('leak', 1), ('may', 1), ('solution', 1), ('overpouch', 1), ('cut', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: REPAGLINIDE, Tablet, 2 mg may have potentially been mislabeled as one of the following drugs: COLCHICINE, Tablet, 0.6 mg, NDC 64764011907, Pedigree: AD46419_1, EXP: 5/16/2014; PANCRELIPASE DR, Capsule, 12000 /38000 /60000 USP units, NDC 00032121207, Pedigree: AD70639_7, EXP: 5/29/2014; DARUNAVIR, Tablet, 800 mg, NDC 59676056630, Pedigree: W003929, EXP: 7/1/2014. \n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('tablet', 3), ('mg', 3), ('ndc', 3), ('may', 1), ('labeling', 1), ('following', 1), ('one', 1), ('drugs', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: a recent FDA inspection at the manufacturing firm raised concerns that product sterility may be compromised.\n",
"top 10 keywords: [('sterility', 2), ('recent', 1), ('raised', 1), ('lack', 1), ('assurance', 1), ('inspection', 1), ('firm', 1), ('may', 1), ('concerns', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Pfizer Inc. (Pfizer) is recalling PREMPRO (conjugated estrogens/medroxyprogesterone acetate tablets) because certain lots for this product may not meet the specification for conjugated estrogens dissolution.\n",
"top 10 keywords: [('pfizer', 2), ('conjugated', 2), ('dissolution', 2), ('certain', 1), ('tablets', 1), ('inc.', 1), ('meet', 1), ('prempro', 1), ('estrogens/medroxyprogesterone', 1), ('estrogens', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: OXYBUTYNIN CHLORIDE, Tablet, 2.5 mg (1/2 of 5 mg) may have potentially been mislabeled as the following drug: PIMOZIDE, Tablet, 1 mg (1/2 of 2 mg), NDC 57844018701, Pedigree: AD73525_61, EXP: 5/30/2014. \n",
"top 10 keywords: [('mg', 4), ('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('chloride', 1), ('exp', 1), ('mixup', 1), ('oxybutynin', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: VALSARTAN, Tablet, 160 mg may have potentially been mislabeled as one of the following drugs: PROGESTERONE, Capsule, 100 mg, NDC 00032170801, Pedigree: AD46320_1, EXP: 5/15/2014; CapsuleTOPRIL, Tablet, 6.25 mg (1/2 of 12.5 mg), NDC 00143117101, Pedigree: AD46312_4, EXP: 5/16/2014; MYCOPHENOLATE MOFETIL, Tablet, 500 mg, NDC 00004026001, Pedigree: AD49414_4, EXP: 5/17/2014;\n",
"top 10 keywords: [('mg', 5), ('exp', 3), ('pedigree', 3), ('tablet', 3), ('ndc', 3), ('mycophenolate', 1), ('ad46320_1', 1), ('valsartan', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug; confirmed results by FDA analysis after customer complaints of discoloration \n",
"top 10 keywords: [('results', 1), ('subpotent', 1), ('confirmed', 1), ('analysis', 1), ('discoloration', 1), ('drug', 1), ('fda', 1), ('customer', 1), ('complaints', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; DOCUSATE SODIUM, Capsule, 250 mg may be potentially mislabeled as ATROPINE SULFATE/DIPHENOXYLATE HCL, Tablet, 0.025 mg/2.5 mg, NDC 00378041501, Pedigree: AD65475_13, EXP: 5/28/2014; VALSARTAN, Tablet, 80 mg, NDC 00078035834, Pedigree: AD68025_1, EXP: 5/28/2014; PANTOPRAZOLE SODIUM DR, Tablet, 40 mg, NDC 64679043402, Pedigree: AD37063_10, EXP: 5/13/2014; DOCUSATE SODIUM\n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('tablet', 3), ('sodium', 3), ('ndc', 3), ('docusate', 2), ('sulfate/diphenoxylate', 1), ('valsartan', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: These products are being recalled because they were manufactured with active pharmaceutical ingredients (APIs) that were not manufactured with good manufacturing practices.\n",
"top 10 keywords: [('manufactured', 2), ('apis', 1), ('cgmp', 1), ('active', 1), ('products', 1), ('good', 1), ('recalled', 1), ('ingredients', 1), ('pharmaceutical', 1), ('deviations', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Package Insert: the package insert for the potassium chloride 8 mEq and 10 mEq strength instead of the potassium chloride 10 mEq and 20 mEq strength was packaged with the product. \n",
"top 10 keywords: [('meq', 4), ('insert', 2), ('chloride', 2), ('package', 2), ('potassium', 2), ('strength', 2), ('labeling', 1), ('missing', 1), ('instead', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an approved NDA/ANDA\n",
"top 10 keywords: [('marketed', 1), ('without', 1), ('approved', 1), ('nda/anda', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Out of specification (OOS) results for related compound G were obtained at 12-month (at expiry) stability time-point for room temperature sample(s). \n",
"top 10 keywords: [('stability', 1), ('temperature', 1), ('related', 1), ('impurities/degradation', 1), ('compound', 1), ('sample', 1), ('specification', 1), ('12-month', 1), ('results', 1), ('specifications', 1)]\n",
"---\n",
"reason_for_recall : Products failed the Antimicrobial Effectiveness Test\n",
"top 10 keywords: [('antimicrobial', 1), ('test', 1), ('effectiveness', 1), ('failed', 1), ('products', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Exp Date: some vials may be mislabeled with an incorrect \"Compounded\"\u001d",
" date, lot number, and \u001c",
"\"Do Not Use Beyond\u001d",
"\" date or BUD (Before Use Date) that may be longer than intended.\n",
"top 10 keywords: [('date', 4), ('incorrect', 2), ('may', 2), ('use', 2), ('lot', 2), ('mislabeled', 1), ('beyond', 1), ('exp', 1), ('longer', 1), ('vials', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: FDA analysis found Rhino 5 which is marketed as a dietary supplement to contain undeclared desmethyl carbondenafil and dapoxetine. Desmethyl carbondenafil is a phosphodiesterase (PDE)-5 inhibitors which is a class of drugs used to treat male erectile dysfunction, making this product an unapproved new drug. Dapoxetine is an active ingredient not approved by \n",
"top 10 keywords: [('desmethyl', 2), ('marketed', 2), ('approved', 2), ('dapoxetine', 2), ('carbondenafil', 2), ('analysis', 1), ('drug', 1), ('without', 1), ('nda/anda', 1), ('active', 1)]\n",
"---\n",
"reason_for_recall : Subpotent (Single Ingredient) Drug: This product was found to be subpotent for the salicylic acid ingredient. Additionally, this product is mislabeled because the label either omits or erroneously added inactive ingredients to the label. \n",
"top 10 keywords: [('subpotent', 2), ('ingredient', 2), ('label', 2), ('product', 2), ('mislabeled', 1), ('found', 1), ('added', 1), ('drug', 1), ('salicylic', 1), ('omits', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications; 18 month stability time point \n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('stability', 1), ('time', 1), ('month', 1), ('dissolution', 1), ('point', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter; The firm received two product complaints for small, dark particulate matter identified in solution post reconstitution.\n",
"top 10 keywords: [('particulate', 2), ('matter', 2), ('received', 1), ('presence', 1), ('dark', 1), ('two', 1), ('post', 1), ('reconstitution', 1), ('product', 1), ('small', 1)]\n",
"---\n",
"reason_for_recall : Failed Stability Specification; out of specification result for particle size distribution during stability testing\n",
"top 10 keywords: [('stability', 2), ('specification', 2), ('particle', 1), ('failed', 1), ('result', 1), ('size', 1), ('testing', 1), ('distribution', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: MEXILETINE HCL, Capsule, 200 mg may have potentially been mislabeled as the following drug: ISOSORBIDE DINITRATE, Tablet, 10 mg, NDC 00781155601, Pedigree: AD25264_1, EXP: 5/3/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('dinitrate', 1), ('tablet', 1), ('isosorbide', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: MIDODRINE HCL, Tablet, 2.5 mg may have potentially been mislabeled as the following drug: PIOGLITAZONE HCL, Tablet, 15 mg, NDC 00093204856, Pedigree: W003264, EXP: 6/17/2014.\t\n",
"top 10 keywords: [('tablet', 2), ('hcl', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('pioglitazone', 1)]\n",
"---\n",
"reason_for_recall : Failed Content Uniformity Specifications\n",
"top 10 keywords: [('specifications', 1), ('content', 1), ('failed', 1), ('uniformity', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: OMEGA-3-ACID ETHYL ESTERS, Capsule, 1000 mg may have potentially been mislabeled as one of the following drugs: SEVELAMER CARBONATE, Tablet, 800 mg, NDC 58468013001, Pedigree: AD39858_4, EXP: 5/15/2014; hydrOXYzine PAMOATE, Capsule, 100 mg, NDC 00555032402, Pedigree: W002735, EXP: 6/6/2014; PROPRANOLOL HCL, Tablet, 10 mg, NDC 23155011001, Pedigree: W003229, EXP: 6/17/2014\n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('tablet', 2), ('capsule', 2), ('w002735', 1), ('may', 1), ('labeling', 1), ('carbonate', 1)]\n",
"---\n",
"reason_for_recall : Chemical Contamination: impurity failure due to chemical contamination of the active ingredient.\n",
"top 10 keywords: [('contamination', 2), ('chemical', 2), ('failure', 1), ('impurity', 1), ('active', 1), ('due', 1), ('ingredient', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: VERAPAMIL HCL, Tablet, 40 mg may have potentially been mislabeled as one of the following drugs: ATORVASTATIN CALCIUM, Tablet, 10 mg, NDC 00378201577, Pedigree: W003095, EXP: 6/12/2014; TACROLIMUS, Capsule, 1 mg, NDC 00781210301, Pedigree: W003352, EXP: 3/31/2014. \n",
"top 10 keywords: [('mg', 3), ('exp', 2), ('pedigree', 2), ('tablet', 2), ('ndc', 2), ('atorvastatin', 1), ('calcium', 1), ('may', 1), ('labeling', 1), ('following', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: PROPAFENONE HCL, Tablet, 150 mg may have potentially been mislabeled as the following drug: FOSINOPRIL SODIUM, Tablet, 10 mg, NDC 00185004109, Pedigree: AD54549_7, EXP: 5/20/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('fosinopril', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('pedigree', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: glass delamination\n",
"top 10 keywords: [('glass', 1), ('presence', 1), ('particulate', 1), ('matter', 1), ('delamination', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specification: Out of specification dissolution results when testing product stability.\n",
"top 10 keywords: [('specification', 2), ('dissolution', 2), ('results', 1), ('failed', 1), ('stability', 1), ('product', 1), ('testing', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviation: Discoloration; Product fails specification for appearance/color. A complaint was received regarding an abnormal appearance of children's ibuprofen suspension.\n",
"top 10 keywords: [('appearance/color', 1), ('received', 1), ('discoloration', 1), ('cgmp', 1), ('complaint', 1), ('specification', 1), ('children', 1), ('appearance', 1), ('fails', 1), ('suspension', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: Confirmed customer complaint of product contaminated with mold.\n",
"top 10 keywords: [('customer', 1), ('confirmed', 1), ('product', 1), ('complaint', 1), ('non-sterility', 1), ('contaminated', 1), ('mold', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: hydrOXYzine PAMOATE, Capsule, 100 mg may have potentially been mislabeled as one of the following drugs: CALCIUM CITRATE, Tablet, 950 mg (200 mg Elemental Calcium), NDC 00904506260, AD46257_43, EXP: 5/15/2014; guaiFENesin ER, Tablet, 600 mg, NDC 45802049878, Pedigree: W002734, EXP: 6/6/2014; guaiFENesin ER, Tablet, 600 mg, NDC 45802049878, Pedigree: W003689, EXP: 6/26/20\n",
"top 10 keywords: [('mg', 5), ('exp', 3), ('tablet', 3), ('ndc', 3), ('er', 2), ('pedigree', 2), ('calcium', 2), ('guaifenesin', 2), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect Or Missing Lot and/or Exp Date: Some expiries and lot numbers are missing.\n",
"top 10 keywords: [('missing', 2), ('lot', 2), ('incorrect', 1), ('expiries', 1), ('exp', 1), ('date', 1), ('and/or', 1), ('numbers', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : cGMP Deviations; does not meet in process specification requirements\n",
"top 10 keywords: [('process', 1), ('deviations', 1), ('requirements', 1), ('cgmp', 1), ('specification', 1), ('meet', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA: products were found to contain undeclared sildenafil\n",
"top 10 keywords: [('marketed', 1), ('undeclared', 1), ('found', 1), ('approved', 1), ('products', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('sildenafil', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; diphenhydrAMINE HCl, Tablet, 25 mg may be potentially mislabeled as ATORVASTATIN CALCIUM, Tablet, 40 mg, NDC 00378212177, Pedigree: AD33897_10, EXP: 5/9/2014; ATORVASTATIN CALCIUM, Tablet, 10 mg, NDC 00378201577, Pedigree: W002774, EXP: 6/6/2014; PRENATAL MULTIVITAMIN/ MULTIMINERAL, Tablet, NDC 51991056601, Pedigree: W003511, EXP: 6/21/2014; VENLAFAXINE, Tablet, 25 mg\n",
"top 10 keywords: [('tablet', 5), ('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('atorvastatin', 2), ('calcium', 2), ('potentially', 1), ('venlafaxine', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: The firm initiated the recall due to visible presence of particulate matter.\n",
"top 10 keywords: [('presence', 2), ('particulate', 2), ('matter', 2), ('recall', 1), ('visible', 1), ('initiated', 1), ('firm', 1), ('due', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: Tablets may contain dark blemishes identified as stainless steel.\n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('dark', 1), ('identified', 1), ('steel', 1), ('stainless', 1), ('contain', 1), ('blemishes', 1), ('tablets', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; RASAGILINE MESYLATE, Tablet, 0.5 mg may be potentially mislabeled as OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 40985022921, Pedigree: W002690, EXP: 6/5/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1), ('fatty', 1)]\n",
"---\n",
"reason_for_recall : Chemical contamination: emission of strong odor after package was opened..\n",
"top 10 keywords: [('package', 1), ('opened..', 1), ('odor', 1), ('contamination', 1), ('chemical', 1), ('emission', 1), ('strong', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Particulate matter includes wood, sodium citrate and dextrose.\n",
"top 10 keywords: [('particulate', 2), ('matter', 2), ('includes', 1), ('dextrose', 1), ('presence', 1), ('wood', 1), ('citrate', 1), ('sodium', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ISOSORBIDE DINITRATE, Tablet, 5 mg may have potentially been mislabeled as one of the following drugs: CILOSTAZOL, Tablet, 100 mg, NDC 00054004421, Pedigree: W003470, EXP: 6/20/2014; PERPHENAZINE, Tablet, 8 mg, NDC 00630506221, Pedigree: AD54605_1, EXP: 4/30/2014. \n",
"top 10 keywords: [('tablet', 3), ('mg', 3), ('pedigree', 2), ('ndc', 2), ('exp', 2), ('mislabeled', 1), ('dinitrate', 1), ('isosorbide', 1), ('mixup', 1), ('cilostazol', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: Recall due to complaints of split or broken tablets.\n",
"top 10 keywords: [('tablets', 1), ('specifications', 1), ('failed', 1), ('broken', 1), ('due', 1), ('split', 1), ('tablet/capsule', 1), ('complaints', 1), ('recall', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; all compounded products within expiry produced using recalled filters\n",
"top 10 keywords: [('using', 1), ('produced', 1), ('expiry', 1), ('filters', 1), ('lack', 1), ('assurance', 1), ('products', 1), ('sterility', 1), ('within', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Visible cellulose fibers were observed in a small number of prefilled syringes during a routine quality examination.\n",
"top 10 keywords: [('presence', 1), ('fibers', 1), ('examination', 1), ('cellulose', 1), ('particulate', 1), ('observed', 1), ('number', 1), ('quality', 1), ('visible', 1), ('routine', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: DUTASTERIDE, Capsule, 0.5 mg may have potentially been mislabeled as one of the following drugs: PHENOL, LOZENGE, 29 mg, NDC 00068021918, Pedigree: AD49582_13, EXP: 5/16/2014; REPAGLINIDE, Tablet, 2 mg, NDC 00169008481, Pedigree: AD70639_13, EXP: 5/29/2014; CHOLECALCIFEROL, Capsule, 5000 units, NDC 00904598660, Pedigree: AD52993_22, EXP: 5/20/2014. \n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('mg', 3), ('ndc', 3), ('capsule', 2), ('may', 1), ('labeling', 1), ('phenol', 1), ('dutasteride', 1), ('cholecalciferol', 1)]\n",
"---\n",
"reason_for_recall : Good Manufacturing Practices Deviations: The product has an active pharmaceutical ingredient from an unapproved source.\n",
"top 10 keywords: [('pharmaceutical', 1), ('deviations', 1), ('practices', 1), ('active', 1), ('good', 1), ('ingredient', 1), ('product', 1), ('unapproved', 1), ('source', 1), ('manufacturing', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: SIROLIMUS, Tablet, 1 mg may be potentially mislabeled as one of the following drugs: PROPRANOLOL HCL, Tablet, 10 mg, NDC 23155011001, Pedigree: AD60272_34, EXP: 5/22/2014; HYDROCORTISONE, Tablet, 5 mg, NDC 00603389919, Pedigree: W003325, EXP: 6/18/2014. \n",
"top 10 keywords: [('tablet', 3), ('mg', 3), ('pedigree', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('mixup', 1), ('hcl', 1), ('hydrocortisone', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; VENLAFAXINE HCL Tablet, 50 mg may be potentially mislabeled as sulfaSALAzine, Tablet, 500 mg, NDC 00603580121, Pedigree: AD65475_19, EXP: 5/28/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('ad65475_19', 1), ('potentially', 1), ('venlafaxine', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; LEVOTHYROXINE/ LIOTHYRONINE Tablet, 19 mcg/4.5 mcg may be potentially mislabeled as MAGNESIUM GLUCONATE DIHYDRATE, Tablet, 500 mg (27 mg Elemental Magnesium), NDC 60258017201, Pedigree: AD30197_16, EXP: 5/9/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('magnesium', 2), ('mislabeled', 1), ('elemental', 1), ('pedigree', 1), ('liothyronine', 1), ('mixup', 1), ('mcg', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: presence of undeclared morphine. \n",
"top 10 keywords: [('marketed', 1), ('presence', 1), ('undeclared', 1), ('approved', 1), ('morphine', 1), ('without', 1), ('nda/anda', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; FLUoxetine HCl, Capsule, 10 mg may be potentially mislabeled as PANCRELIPASE DR, Capsule, 24000 /76000 /120000 USP units, NDC 00032122401, Pedigree: AD70585_10, EXP: 5/29/2014.\n",
"top 10 keywords: [('capsule', 2), ('mislabeled', 1), ('pedigree', 1), ('ad70585_10', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('units', 1), ('dr', 1), ('mg', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: GABAPENTIN, Tablet, 600 mg may have potentially been mislabeled as the following drug: ARIPiprazole, Tablet, 15 mg, NDC 59148000913, Pedigree: AD21965_1, EXP: 5/1/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('gabapentin', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Cross Contamination with Other Products: Product contains Promacta (eltrombopag).\n",
"top 10 keywords: [('eltrombopag', 1), ('product', 1), ('products', 1), ('cross', 1), ('contamination', 1), ('promacta', 1), ('contains', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Presence of free-floating and embedded iron oxide particles. \n",
"top 10 keywords: [('presence', 2), ('iron', 1), ('oxide', 1), ('free-floating', 1), ('embedded', 1), ('particulate', 1), ('matter', 1), ('particles', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: Product was found to contain undeclared phenolphthalein and fluoxetine, making iNSANE an unapproved drug.\n",
"top 10 keywords: [('marketed', 1), ('phenolphthalein', 1), ('found', 1), ('approved', 1), ('drug', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('unapproved', 1), ('undeclared', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix-Up: Incorrect back labeling of the immediate container of eye drops (unit carton and front label are correct) which do not list three active ingredients: Dextran 70, PEG 400, and povidone. \n",
"top 10 keywords: [('labeling', 2), ('label', 2), ('three', 1), ('peg', 1), ('mix-up', 1), ('back', 1), ('active', 1), ('unit', 1), ('container', 1), ('list', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Stability lots cannot support dissolution past the 36 month time point.\n",
"top 10 keywords: [('dissolution', 2), ('point', 1), ('specifications', 1), ('failed', 1), ('stability', 1), ('time', 1), ('support', 1), ('month', 1), ('past', 1), ('lots', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Two lots failed specification for unknown impurity at the 24 month stability testing. \n",
"top 10 keywords: [('failed', 2), ('specifications', 1), ('impurities/degradation', 1), ('two', 1), ('testing', 1), ('impurity', 1), ('specification', 1), ('unknown', 1), ('month', 1), ('lots', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Exp Date: The expiration date of the Q Care Continue Care kit is printed with an expiration date of November 13, 2017; rather than the correct date of August 28, 2017 (date of expiration of the Corinz Antiseptic Cleansing & Moisturizing Oral Rinse). Note, the correct expiration date of August 28, 2017, is printed on the Corinz Oral Rinse package.\n",
"top 10 keywords: [('date', 6), ('expiration', 4), ('care', 2), ('printed', 2), ('oral', 2), ('corinz', 2), ('august', 2), ('rinse', 2), ('correct', 2), ('package', 1)]\n",
"---\n",
"reason_for_recall : cGMP Deviations; during the production process, CLENZIderm M.D. Daily Foam Cleanser was filled into some bottles labeled as CLENZIderm M.D. Pore Therapy\n",
"top 10 keywords: [('m.d', 2), ('clenziderm', 2), ('process', 1), ('labeled', 1), ('bottles', 1), ('daily', 1), ('cgmp', 1), ('filled', 1), ('therapy', 1), ('deviations', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; PHENobarbital/ HYOSCYAMINE/ ATROPINE/ SCOPOLAMINE, Tablet, 16.2 mg/0.1037 mg/0.0194 mg/0.0065 mg may be potentially mislabeled as VALSARTAN, Tablet, 160 mg, NDC 00078035934, Pedigree: W003639, EXP: 6/25/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('hyoscyamine/', 1), ('pedigree', 1), ('w003639', 1), ('valsartan', 1), ('mixup', 1), ('scopolamine', 1), ('mg/0.0194', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: A portion of the batch quantity was compounded outside of the firm's process media validation.\n",
"top 10 keywords: [('process', 1), ('validation', 1), ('lack', 1), ('batch', 1), ('assurance', 1), ('firm', 1), ('media', 1), ('sterility', 1), ('outside', 1), ('portion', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications; 12 month stability time point\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('stability', 1), ('time', 1), ('month', 1), ('point', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility \n",
"top 10 keywords: [('lack', 1), ('assurance', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: identified as cardboard.\n",
"top 10 keywords: [('cardboard', 1), ('presence', 1), ('particulate', 1), ('matter', 1), ('identified', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: manufactured under practices which may result in assay or content uniformity failures.\n",
"top 10 keywords: [('assay', 1), ('manufactured', 1), ('deviations', 1), ('practices', 1), ('cgmp', 1), ('result', 1), ('failures', 1), ('content', 1), ('may', 1), ('uniformity', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: A single visible particulate was observed and confirmed in sample bottles of the recalled lots during retain inspection.\n",
"top 10 keywords: [('particulate', 2), ('confirmed', 1), ('bottles', 1), ('retain', 1), ('inspection', 1), ('observed', 1), ('presence', 1), ('recalled', 1), ('visible', 1), ('lots', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: The 1g Cefepime for Injection USP and Dextrose Injection USP lot has been found to contain visible organic particulate matter in a reserve sample unit.\n",
"top 10 keywords: [('particulate', 2), ('usp', 2), ('injection', 2), ('matter', 2), ('presence', 1), ('sample', 1), ('1g', 1), ('found', 1), ('reserve', 1), ('unit', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; ISOSORBIDE DINITRATE ER Tablet, 40 mg may be potentially mislabeled as CILOSTAZOL, Tablet, 50 mg, NDC 60505252101, Pedigree: AD21811_7, EXP: 5/1/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('dinitrate', 1), ('isosorbide', 1), ('mixup', 1), ('cilostazol', 1), ('ad21811_7', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; ATORVASTATIN CALCIUM Tablet, 20 mg may be potentially mislabeled as guaiFENesin ER, Tablet, 600 mg, NDC 63824000834, Pedigree: W003850, EXP: 6/27/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('atorvastatin', 1), ('mixup', 1), ('potentially', 1), ('calcium', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Tablets/Capsules: Firm received a market complaint stating the presence of one foreign tablet (Montelukast Sodium Chewable Tab 4mg) in the product bottle of Pantoprazole. \n",
"top 10 keywords: [('presence', 2), ('foreign', 2), ('received', 1), ('tablet', 1), ('montelukast', 1), ('bottle', 1), ('complaint', 1), ('tablets/capsules', 1), ('firm', 1), ('sodium', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: CYCLOBENZAPRINE HCL, Tablet, 5 mg may have potentially been mislabeled as one of the following drugs: ASCORBIC ACID, Tablet, 250 mg, NDC 00904052260, Pedigree: AD46257_62, EXP: 5/15/2014; ATENOLOL, Tablet, 12.5 mg (1/2 of 25 mg), NDC 63304062101, Pedigree: AD73525_1, EXP: 5/30/2014. \n",
"top 10 keywords: [('mg', 4), ('tablet', 3), ('pedigree', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('atenolol', 1), ('mixup', 1), ('hcl', 1), ('ad46257_62', 1)]\n",
"---\n",
"reason_for_recall : Superpotent Drug: A complaint was reported by a pharmacist who stated several tablets were noticeably thicker in appearance.\n",
"top 10 keywords: [('drug', 1), ('pharmacist', 1), ('stated', 1), ('appearance', 1), ('complaint', 1), ('noticeably', 1), ('superpotent', 1), ('reported', 1), ('tablets', 1), ('thicker', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Product was made with an incorrect ingredient, Laureth-9 was mistakenly substituted for PEG.\n",
"top 10 keywords: [('incorrect', 1), ('deviations', 1), ('mistakenly', 1), ('made', 1), ('cgmp', 1), ('ingredient', 1), ('product', 1), ('laureth-9', 1), ('substituted', 1), ('peg', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; due to leaking vials\n",
"top 10 keywords: [('lack', 1), ('assurance', 1), ('due', 1), ('vials', 1), ('leaking', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: The product lots are being recalled due to laboratory results indicating microbial contamination. The FDA was concerned test results obtained from the recalling firm's contract testing lab may not be reliable.\n",
"top 10 keywords: [('results', 2), ('microbial', 1), ('test', 1), ('firm', 1), ('contamination', 1), ('may', 1), ('recalled', 1), ('sterility', 1), ('lots', 1), ('lab', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter; metal embedded in the glass vial and visible particles floating in the solution\n",
"top 10 keywords: [('visible', 1), ('presence', 1), ('solution', 1), ('metal', 1), ('floating', 1), ('glass', 1), ('embedded', 1), ('vial', 1), ('particulate', 1), ('matter', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Labeling Bears Unapproved Claims; Dermatend is not FDA approved and therefore has not been shown to be safe and effective for the uses suggested in the labeling.\n",
"top 10 keywords: [('labeling', 3), ('suggested', 1), ('approved', 1), ('unapproved', 1), ('claims', 1), ('effective', 1), ('safe', 1), ('dermatend', 1), ('shown', 1), ('therefore', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: glyBURIDE, Tablet, 1.25 mg may have potentially been mislabeled as one of the following drugs: CYPROHEPTADINE HCL, Tablet, 4 mg, NDC 60258085001, Pedigree: W003676, EXP: 6/25/2014; AMANTADINE HCL, Capsule, 100 mg, NDC 00781204801, Pedigree: AD21790_1, EXP: 5/1/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('hcl', 2), ('ndc', 2), ('mislabeled', 1), ('capsule', 1), ('mixup', 1), ('w003676', 1)]\n",
"---\n",
"reason_for_recall : Does Not Meet Monograph: NEW GPC INC. has recalled multiple Over-the-Counter Drug Products due to lack of drug listing, lack of OTC drug labeling requirements and labeled Not Approved for sale in U.S.A. \n",
"top 10 keywords: [('drug', 3), ('lack', 2), ('labeled', 1), ('otc', 1), ('over-the-counter', 1), ('due', 1), ('inc.', 1), ('meet', 1), ('requirements', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: SILDENAFIL CITRATE, Tablet, 25 mg may have potentially been mislabeled as the following drug: PHENobarbital/ HYOSCYAMINE/ ATROPINE/ SCOPOLAMINE, Tablet, 16.2 mg/0.1037 mg/0.0194 mg/0.0065 mg, NDC 66213042510, Pedigree: W003640, EXP: 6/25/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('drug', 1), ('mixup', 1), ('scopolamine', 1), ('w003640', 1), ('may', 1), ('labeling', 1), ('atropine/', 1), ('following', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Failure of the manufacturer, Wockhardt Ltd, to adequately investigate customer complaints.\n",
"top 10 keywords: [('wockhardt', 1), ('customer', 1), ('adequately', 1), ('failure', 1), ('ltd', 1), ('cgmp', 1), ('investigate', 1), ('complaints', 1), ('manufacturer', 1), ('deviations', 1)]\n",
"---\n",
"reason_for_recall : Defective Container; some of the outer laminate foil pouches allowed in air and moisture, which could potentially decrease the effectiveness or change the characteristics of the product.\n",
"top 10 keywords: [('characteristics', 1), ('air', 1), ('could', 1), ('container', 1), ('potentially', 1), ('defective', 1), ('pouches', 1), ('allowed', 1), ('change', 1), ('outer', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; COENZYME Q-10, Capsule, 30 mg may be potentially mislabeled as PANCRELIPASE DR, Capsule, 12000 /38000 /60000 USP units, NDC 00032121201, Pedigree: W002819, EXP: 6/7/2014.\n",
"top 10 keywords: [('capsule', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('units', 1), ('dr', 1), ('mg', 1), ('potentially', 1), ('q-10', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Glass particles found in the product after reconstitution.\n",
"top 10 keywords: [('presence', 1), ('found', 1), ('product', 1), ('glass', 1), ('reconstitution', 1), ('particulate', 1), ('matter', 1), ('particles', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Not Elsewhere Classified; Due to an error in the manufacturing procedure, a cylinder in liquid withdrawal service was not marked \u001c",
"Syphon Tube\u001d",
" indicating liquid withdrawal and shipped as a gas withdrawal cylinder.\n",
"top 10 keywords: [('withdrawal', 3), ('liquid', 2), ('cylinder', 2), ('error', 1), ('gas', 1), ('classified', 1), ('elsewhere', 1), ('due', 1), ('service', 1), ('tube', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specification; the bulk lot yielded an out of specification result at the 8 hr timepoint, 18 month interval\n",
"top 10 keywords: [('specification', 2), ('timepoint', 1), ('month', 1), ('failed', 1), ('interval', 1), ('hr', 1), ('result', 1), ('dissolution', 1), ('bulk', 1), ('yielded', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LOSARTAN POTASSIUM, Tablet, 50 mg may have potentially been mislabeled as the following drug: MIDODRINE HCL, Tablet, 2.5 mg, NDC 00185004001, Pedigree: W003265, EXP: 6/17/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('midodrine', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; MULTIVITAMIN/MULTIMINERAL Tablet may be potentially mislabeled as OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 00904404360, Pedigree: AD62865_13, EXP: 5/23/2014; guaiFENesin ER, Tablet, 600 mg, NDC 63824000834, Pedigree: W003514, EXP: 6/21/2014. \n",
"top 10 keywords: [('pedigree', 2), ('tablet', 2), ('exp', 2), ('mg', 2), ('ndc', 2), ('mislabeled', 1), ('mixup', 1), ('multivitamin/multimineral', 1), ('potentially', 1), ('w003514', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Pharmaceuticals were produced and distributed with active ingredients not manufactured according to Good Manufacturing Practices\n",
"top 10 keywords: [('manufactured', 1), ('active', 1), ('according', 1), ('good', 1), ('pharmaceuticals', 1), ('cgmp', 1), ('deviations', 1), ('ingredients', 1), ('produced', 1), ('practices', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; OLANZapine, Tablet, 7.5 mg may be potentially mislabeled as LEVOTHYROXINE SODIUM, Tablet, 175 mcg, NDC 00527135001, Pedigree: AD46265_37, EXP: 5/15/2014; LEVOTHYROXINE SODIUM, Tablet, 88 mcg, NDC 00781518392, Pedigree: AD60272_73, EXP: 5/22/2014; MIRTAZAPINE, Tablet, 7.5 mg, NDC 59762141503, Pedigree: AD73525_55, EXP: 5/30/2014. \n",
"top 10 keywords: [('tablet', 4), ('pedigree', 3), ('exp', 3), ('ndc', 3), ('levothyroxine', 2), ('mg', 2), ('sodium', 2), ('mcg', 2), ('mislabeled', 1), ('mixup', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: guanFACINE HCl, Tablet, 1 mg may have potentially been mislabeled as one of the following drugs: buPROPion HCl ER, Tablet, 200 mg, NDC 47335073886, Pedigree: W002727, EXP: 6/6/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 00904404360, Pedigree: AD39588_7, EXP: 5/13/2014; OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/1,100 mg, NDC 11523726503, Pedigree: W003873, EXP: 6/2\n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('capsule', 2), ('tablet', 2), ('hcl', 2), ('potentially', 1), ('omega-3', 1), ('bupropion', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; LUBIPROSTONE Capsule, 24 mcg may be potentially mislabeled as ARIPiprazole, Tablet, 2 mg, NDC 59148000613, Pedigree: AD21790_43, EXP: 5/1/2014; CYANOCOBALAMIN, Tablet, 1000 mcg, NDC 00904421713, Pedigree: AD21846_46, EXP: 5/1/2014; VALSARTAN, Tablet, 160 mg, NDC 00078035934, Pedigree: AD39858_1, EXP: 5/16/2014. \n",
"top 10 keywords: [('pedigree', 3), ('tablet', 3), ('ndc', 3), ('exp', 3), ('mcg', 2), ('mg', 2), ('mislabeled', 1), ('potentially', 1), ('lubiprostone', 1), ('mixup', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: The firm manufactured products using Hospira 0.9% Sodium Chloride, USP injection which were subsequently recalled due to the presence of particulate matter (human hair).\n",
"top 10 keywords: [('presence', 2), ('particulate', 2), ('matter', 2), ('hospira', 1), ('chloride', 1), ('human', 1), ('using', 1), ('products', 1), ('firm', 1), ('due', 1)]\n",
"---\n",
"reason_for_recall : Discoloration: Brown spots were noted embedded in Amlodipine Besylate Tablets, 10 mg, Lot # MP4344.\n",
"top 10 keywords: [('tablets', 1), ('discoloration', 1), ('mg', 1), ('brown', 1), ('mp4344', 1), ('embedded', 1), ('besylate', 1), ('amlodipine', 1), ('spots', 1), ('lot', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Failure of dissolution test observed at the 18 month time point.\n",
"top 10 keywords: [('dissolution', 2), ('specifications', 1), ('failed', 1), ('point', 1), ('time', 1), ('test', 1), ('month', 1), ('observed', 1), ('failure', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: tubing used for filling may interact with the nasal formulation of this product.\n",
"top 10 keywords: [('filling', 1), ('deviations', 1), ('product', 1), ('interact', 1), ('cgmp', 1), ('nasal', 1), ('tubing', 1), ('used', 1), ('may', 1), ('formulation', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; CHOLECALCIFEROL Capsule, 50000 units may be potentially mislabeled as FENOFIBRATE, Tablet, 54 mg, NDC 00378710077, Pedigree: AD60272_64, EXP: 5/22/2014.\n",
"top 10 keywords: [('mislabeled', 1), ('pedigree', 1), ('ad60272_64', 1), ('tablet', 1), ('fenofibrate', 1), ('mixup', 1), ('units', 1), ('mg', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: confirmed subpotency in one lot of this product that was packaged and stored in syringes.\n",
"top 10 keywords: [('subpotent', 1), ('confirmed', 1), ('stored', 1), ('drug', 1), ('subpotency', 1), ('product', 1), ('syringes', 1), ('one', 1), ('lot', 1), ('packaged', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: TOLTERODINE TARTRATE ER, Capsule, 2 mg may be potentially mislabeled as one of the following drugs: RANOLAZINE ER\t, Tablet, 500 mg, NDC 61958100301, Pedigree: AD62995_7, EXP: 5/29/2014; FERROUS SULFATE, Tablet, 325 mg (65 mg Elem Fe), NDC 00904759160, Pedigree: W002717, EXP: 6/6/2014. \n",
"top 10 keywords: [('mg', 4), ('exp', 2), ('er', 2), ('pedigree', 2), ('tablet', 2), ('ndc', 2), ('ferrous', 1), ('fe', 1), ('ranolazine', 1), ('elem', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Pfizer is recalling certain lots due to out of specification results for azithromycin N-oxide degradant.\n",
"top 10 keywords: [('certain', 1), ('impurities/degradation', 1), ('due', 1), ('azithromycin', 1), ('n-oxide', 1), ('lots', 1), ('results', 1), ('specifications', 1), ('failed', 1), ('pfizer', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Product was found to contain undeclared ingredient: N-di-desmethylsibutramine, an analog of sibutramine\n",
"top 10 keywords: [('marketed', 1), ('n-di-desmethylsibutramine', 1), ('found', 1), ('approved', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('sibutramine', 1), ('undeclared', 1), ('ingredient', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: out-of-specification results for individual unknown and total impurity at the 12th month room temperature stability test station\n",
"top 10 keywords: [('out-of-specification', 1), ('test', 1), ('impurities/degradation', 1), ('total', 1), ('12th', 1), ('month', 1), ('results', 1), ('specifications', 1), ('failed', 1), ('individual', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; TRIMETHOBENZAMIDE HCl, Capsule, 300 mg may be potentially mislabeled as GABAPENTIN, Tablet, 600 mg, NDC 00228263611, Pedigree: AD21965_7, EXP: 5/1/2014; CHOLECALCIFEROL, Capsule, 5000 units, NDC 00904598660, Pedigree: AD70629_19, EXP: 5/29/2014; SODIUM BICARBONATE, Tablet, 650 mg, NDC 64980018210, Pedigree: W002970, EXP: 6/11/2014. \n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('mg', 3), ('ndc', 3), ('tablet', 2), ('capsule', 2), ('gabapentin', 1), ('may', 1), ('labeling', 1), ('bicarbonate', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; NICOTINE POLACRILEX Lozenge, 2 mg may be potentially mislabeled as VITAMIN B COMPLEX WITH C/FOLIC ACID, Tablet, NDC 60258016001, Pedigree: W003361, EXP: 6/19/2014.\n",
"top 10 keywords: [('mislabeled', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('b', 1), ('vitamin', 1), ('mg', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Cross Contamination with Other Products: Product was mixed with another type of mouth wash. \n",
"top 10 keywords: [('another', 1), ('wash', 1), ('product', 1), ('products', 1), ('mixed', 1), ('cross', 1), ('mouth', 1), ('contamination', 1), ('type', 1)]\n",
"---\n",
"reason_for_recall : Stability Does Not Support Expiry: manufactured with an active ingredient that expired before the labeled Beyond Use Date. \n",
"top 10 keywords: [('date', 1), ('ingredient', 1), ('manufactured', 1), ('stability', 1), ('active', 1), ('expired', 1), ('support', 1), ('expiry', 1), ('use', 1), ('labeled', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Package Insert: Product is packaged with the incorrect version of the package insert.\n",
"top 10 keywords: [('insert', 2), ('package', 2), ('incorrect', 2), ('version', 1), ('product', 1), ('packaged', 1), ('missing', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Level of iron exceeds the limit set by the USP monograph for it (USP limit is NMT 0.5 ug/g (ppm)).\n",
"top 10 keywords: [('limit', 2), ('usp', 2), ('impurities/degradation', 1), ('ug/g', 1), ('ppm', 1), ('exceeds', 1), ('set', 1), ('level', 1), ('specifications', 1), ('failed', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: failed specification for unknown impurity at the 24 month stability testing. \n",
"top 10 keywords: [('failed', 2), ('specifications', 1), ('impurities/degradation', 1), ('stability', 1), ('impurity', 1), ('specification', 1), ('unknown', 1), ('month', 1), ('testing', 1)]\n",
"---\n",
"reason_for_recall : Incorrect/Undeclared Excipients: Specific drug products were compounded with an incorrect solvent.\n",
"top 10 keywords: [('drug', 1), ('solvent', 1), ('incorrect/undeclared', 1), ('products', 1), ('excipients', 1), ('incorrect', 1), ('specific', 1), ('compounded', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: EFAVIRENZ, Capsule, 200 mg may have potentially been mislabeled as the following drug: metFORMIN HCl, Tablet\t500 mg, NDC 23155010201, Pedigree: AD46312_25, EXP: 5/16/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('tablet', 1), ('ad46312_25', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Tablet; customer complaint of some tablets of Gabapentin found in a bottle of Metformin HCl ER\n",
"top 10 keywords: [('metformin', 1), ('tablets', 1), ('gabapentin', 1), ('tablet', 1), ('found', 1), ('hcl', 1), ('complaint', 1), ('presence', 1), ('foreign', 1), ('customer', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; BISOPROLOL FUMARATE Tablet, 5 mg may be potentially mislabeled as: ESTROPIPATE, Tablet, 0.75 mg, NDC 00591041401, Pedigree: AD34934_4, EXP: 5/10/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('estropipate', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('bisoprolol', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Does Not Meet Monograph: NEW GPC INC. has recalled multiple Over-the-Counter Drug Products due to lack of drug listing, lack of OTC drug labeling requirements and labeled Not Approved for sale in U.S.A.. \n",
"top 10 keywords: [('drug', 3), ('lack', 2), ('labeled', 1), ('otc', 1), ('u.s.a..', 1), ('over-the-counter', 1), ('due', 1), ('inc.', 1), ('meet', 1), ('requirements', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Product contains undeclared sibutramine.\n",
"top 10 keywords: [('marketed', 1), ('sibutramine', 1), ('undeclared', 1), ('approved', 1), ('nda/anda', 1), ('without', 1), ('product', 1), ('contains', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Tablets/Capsules: one foreign capsule identified as omeprazole 10 mg was found in the bottle\n",
"top 10 keywords: [('foreign', 2), ('presence', 1), ('bottle', 1), ('found', 1), ('mg', 1), ('omeprazole', 1), ('tablets/capsules', 1), ('capsule', 1), ('identified', 1), ('one', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; PIMOZIDE Tablet, 1 mg (1/2 of 2 mg) may be potentially mislabeled as METOPROLOL TARTRATE, Tablet, 12.5 mg (1/2 of 25 mg), NDC 63304057901, Pedigree: AD73525_52, EXP: 5/30/2014.\n",
"top 10 keywords: [('mg', 4), ('tablet', 2), ('pimozide', 1), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('tartrate', 1), ('ad73525_52', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specification: Out of Specification results for pseudobuprenorphine impurity at the 9-month stability time point.\n",
"top 10 keywords: [('specification', 2), ('results', 1), ('failed', 1), ('impurities/degradation', 1), ('stability', 1), ('time', 1), ('impurity', 1), ('point', 1), ('9-month', 1), ('pseudobuprenorphine', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility. A recent FDA inspection reported GMP violations potentially impacting product quality and sterility.\n",
"top 10 keywords: [('sterility', 2), ('recent', 1), ('lack', 1), ('assurance', 1), ('inspection', 1), ('potentially', 1), ('reported', 1), ('impacting', 1), ('quality', 1), ('gmp', 1)]\n",
"---\n",
"reason_for_recall : Defective Container: A lidding deformity allowed for the product to have out of specification results for assay and viscosity at the12 month stability timepoint.\n",
"top 10 keywords: [('lidding', 1), ('assay', 1), ('the12', 1), ('container', 1), ('viscosity', 1), ('defective', 1), ('results', 1), ('timepoint', 1), ('month', 1), ('deformity', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foriegn Substance: Plastic cap closure particulates may be present in the product.\n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('closure', 1), ('present', 1), ('cap', 1), ('product', 1), ('plastic', 1), ('foriegn', 1), ('particulates', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; WARFARIN SODIUM Tablet, 0.5 mg (1/2 of 1 mg) may be potentially mislabeled as SODIUM CHLORIDE, Tablet, 1 mg, NDC 00223176001, Pedigree: AD70636_1, EXP: 5/29/2014.\n",
"top 10 keywords: [('mg', 3), ('tablet', 2), ('sodium', 2), ('mislabeled', 1), ('pedigree', 1), ('chloride', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: TRIAMTERENE/HCTZ, Tablet, 37.5 mg/25 mg may have potentially been mislabeled as the following drug: CAFFEINE, Tablet, 100 mg (1/2 of 200 mg), NDC 24385060173, Pedigree: AD30028_31, EXP: 5/8/2014.\n",
"top 10 keywords: [('mg', 3), ('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('mg/25', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Lack of assurance of sterility\n",
"top 10 keywords: [('lack', 1), ('assurance', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Not Elsewhere Classified; foil label on immediate blister pack indicates active ingredient as Chlorpheniramine rather than Diphenhydramine \n",
"top 10 keywords: [('classified', 1), ('elsewhere', 1), ('active', 1), ('pack', 1), ('foil', 1), ('blister', 1), ('immediate', 1), ('labeling', 1), ('rather', 1), ('diphenhydramine', 1)]\n",
"---\n",
"reason_for_recall : Labeling; labeled with incorrect EXP Date; Incorrect expiration date printed on the outer packaging. Package incorrectly states 5/2014 should correctly state 4/2014\n",
"top 10 keywords: [('incorrect', 2), ('date', 2), ('incorrectly', 1), ('package', 1), ('packaging', 1), ('outer', 1), ('exp', 1), ('labeled', 1), ('states', 1), ('printed', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; DOXYCYCLINE MONOHYDRATE Capsule, 100 mg may be potentially mislabeled as diphenhydrAMINE HCl, Tablet, 25 mg, NDC 00904555159, Pedigree: AD67992_4, EXP: 5/28/2014; DUTASTERIDE, Capsule, 0.5 mg, NDC 00173071215, Pedigree: AD52778_4, EXP: 5/20/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('exp', 2), ('capsule', 2), ('ndc', 2), ('mislabeled', 1), ('ad52778_4', 1), ('monohydrate', 1), ('tablet', 1), ('mixup', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Leiter Pharmacy is recalling due bacterial contamination found after investigation at contract testing laboratory discovered that OOS results were reported to customers as passing. Hence the sterility of these products cannot be assured. \n",
"top 10 keywords: [('sterility', 2), ('found', 1), ('discovered', 1), ('contamination', 1), ('laboratory', 1), ('customers', 1), ('leiter', 1), ('oos', 1), ('pharmacy', 1), ('results', 1)]\n",
"---\n",
"reason_for_recall : Failed dissolution specifications\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('dissolution', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix-up: Units of Lot 201131320087 are packaged in cartons labelled for Needle-Free Head B, but contaiin Needle-Free Head A\n",
"top 10 keywords: [('needle-free', 2), ('head', 2), ('lot', 1), ('b', 1), ('units', 1), ('labeling', 1), ('contaiin', 1), ('labelled', 1), ('cartons', 1), ('mix-up', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Firm is recalling all unexpired lots of sterile compounded products after FDA inspection found concerns of lack of sterility assurance.\n",
"top 10 keywords: [('lack', 2), ('assurance', 2), ('sterility', 2), ('products', 1), ('inspection', 1), ('firm', 1), ('recalling', 1), ('found', 1), ('lots', 1), ('unexpired', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: low out-of-specification (OOS) results for dissolution were obtained at the nine-month stability point.\n",
"top 10 keywords: [('dissolution', 2), ('results', 1), ('low', 1), ('specifications', 1), ('failed', 1), ('obtained', 1), ('out-of-specification', 1), ('point', 1), ('stability', 1), ('oos', 1)]\n",
"---\n",
"reason_for_recall : cGMP Deviations: Active Pharmaceutical Ingredient (API) manufacturer is on FDA Import Alert. \n",
"top 10 keywords: [('api', 1), ('pharmaceutical', 1), ('deviations', 1), ('active', 1), ('cgmp', 1), ('ingredient', 1), ('import', 1), ('alert', 1), ('fda', 1), ('manufacturer', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specification:12 hour time point at 18 months of product shelf life.\n",
"top 10 keywords: [('specification:12', 1), ('hour', 1), ('life', 1), ('time', 1), ('product', 1), ('failed', 1), ('dissolution', 1), ('months', 1), ('point', 1), ('shelf', 1)]\n",
"---\n",
"reason_for_recall : Failed impurities/degradation specifications: Out of specification results noticed in related substance test during analysis of 24 months long term (25 degree Celsius /65% RH) stability samples of two batches.\n",
"top 10 keywords: [('substance', 1), ('months', 1), ('celsius', 1), ('impurities/degradation', 1), ('batches', 1), ('long', 1), ('test', 1), ('specification', 1), ('related', 1), ('noticed', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Presence of Undeclared Color Additive; The product is being recalled because several inactive ingredients were not included in the labeling for this product: Undeclared D&C Red #33, FD&C Blue #1, Titanium Dioxide Suspension, Purified Water USP. \n",
"top 10 keywords: [('labeling', 2), ('undeclared', 2), ('c', 2), ('product', 2), ('blue', 1), ('presence', 1), ('red', 1), ('water', 1), ('included', 1), ('titanium', 1)]\n",
"---\n",
"reason_for_recall : Subpotent (Single Ingredient Drug): out-of-specification result for coal tar content assay.\n",
"top 10 keywords: [('assay', 1), ('subpotent', 1), ('coal', 1), ('content', 1), ('result', 1), ('drug', 1), ('out-of-specification', 1), ('ingredient', 1), ('tar', 1), ('single', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Franck's Lab Inc. initiated a recall of all Sterile Human Drugs distributed between 11/21/2011 and 05/21/2012 because FDA environmental sampling revealed the presence of microorganisms and fungal growth in the clean room where sterile products were prepared. \n",
"top 10 keywords: [('sterile', 2), ('recall', 1), ('growth', 1), ('human', 1), ('initiated', 1), ('inc.', 1), ('microorganisms', 1), ('presence', 1), ('sterility', 1), ('clean', 1)]\n",
"---\n",
"reason_for_recall : Adulterated Presence of Foreign Tablets: Trizivir 300/150/300 mg tables, Lot 0ZP5128 may incorrectly contain Lexiva 700 mg tablets.\n",
"top 10 keywords: [('tablets', 2), ('mg', 2), ('incorrectly', 1), ('contain', 1), ('tables', 1), ('foreign', 1), ('may', 1), ('0zp5128', 1), ('presence', 1), ('lexiva', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: Product is being recalled due to excessive levels of lovastatin. Lovastatin is an FDA approved drug making this dietary supplement an unapproved new drug.\n",
"top 10 keywords: [('drug', 2), ('approved', 2), ('lovastatin', 2), ('marketed', 1), ('levels', 1), ('supplement', 1), ('due', 1), ('without', 1), ('nda/anda', 1), ('excessive', 1)]\n",
"---\n",
"reason_for_recall : Subpotent; 6 month stability time point\n",
"top 10 keywords: [('subpotent', 1), ('month', 1), ('stability', 1), ('point', 1), ('time', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: MULTIVITAMIN/MULTIMINERAL, Tablet, 0 mg may have potentially been mislabeled as one of the following drugs: sitaGLIPtin PHOSPHATE, Tablet, 50 mg, NDC 00006011231, Pedigree: AD62829_11, EXP: 5/23/2014; LORATADINE, Tablet, 10 mg, NDC 45802065078, Pedigree: W002652, EXP: 6/5/2014; LORATADINE, Tablet, 10 mg, NDC 45802065078, Pedigree: AD22865_7, EXP: 5/2/2014; MULTIVITAMIN/M\n",
"top 10 keywords: [('tablet', 4), ('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('loratadine', 2), ('sitagliptin', 1), ('multivitamin/multimineral', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LOSARTAN POTASSIUM, Tablet, 25 mg may have potentially been mislabeled as the following drug: PHYTONADIONE, Tablet, 5 mg, NDC 25010040515, Pedigree: AD46312_22, EXP: 4/30/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Subpotent; Cetylpyridinum Chloride\n",
"top 10 keywords: [('cetylpyridinum', 1), ('subpotent', 1), ('chloride', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA: Products found to contain undeclared sibutramine. Sibutramine was removed from the U.S. market for safety reasons, making these products unapproved new drugs.\n",
"top 10 keywords: [('products', 2), ('sibutramine', 2), ('marketed', 1), ('found', 1), ('approved', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('new', 1), ('unapproved', 1)]\n",
"---\n",
"reason_for_recall : Superpotent Drug: one ingredient was found to be above assay specification.\n",
"top 10 keywords: [('assay', 1), ('drug', 1), ('found', 1), ('ingredient', 1), ('specification', 1), ('superpotent', 1), ('one', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: during long-term stability testing. \n",
"top 10 keywords: [('long-term', 1), ('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('stability', 1), ('testing', 1)]\n",
"---\n",
"reason_for_recall : Does Not Meet Monograph: NEW GPC INC. has recalled multiple Over-the-Counter Drug Products due to lack of drug listing, lack of OTC drug labeling requirements and labeled Not Approved for sale in U.S.A..\n",
"top 10 keywords: [('drug', 3), ('lack', 2), ('labeled', 1), ('otc', 1), ('u.s.a..', 1), ('over-the-counter', 1), ('due', 1), ('inc.', 1), ('meet', 1), ('requirements', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: MODAFINIL, Tablet, 200 mg may have potentially been mislabeled as one of the following drugs: OMEGA-3-ACID ETHYL ESTERS, Capsule, 1000 mg, NDC 00173078302, Pedigree: W003692, EXP: 6/26/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('capsule', 1), ('ndc', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('esters', 1), ('potentially', 1), ('pedigree', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; PRENATAL MULTIVITAMIN/MULTIMINERAL, Tablet may be potentially mislabeled as CYANOCOBALAMIN, Tablet, 100 mcg, NDC 00536354201, Pedigree: AD62840_1, EXP: 5/24/2014.\n",
"top 10 keywords: [('tablet', 2), ('mislabeled', 1), ('cyanocobalamin', 1), ('exp', 1), ('mixup', 1), ('multivitamin/multimineral', 1), ('mcg', 1), ('potentially', 1), ('pedigree', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Specific lot numbers of these products have been identified for potential administration port leakage. The potential for leakage is the result of a manufacturing issue which occurred during the sealing of the closure assembly at the administration port. \n",
"top 10 keywords: [('administration', 2), ('port', 2), ('potential', 2), ('leakage', 2), ('lack', 1), ('products', 1), ('result', 1), ('assurance', 1), ('assembly', 1), ('numbers', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an approved NDA/ANDA - presence of undeclared sibutramine.\n",
"top 10 keywords: [('marketed', 1), ('sibutramine', 1), ('presence', 1), ('undeclared', 1), ('approved', 1), ('without', 1), ('nda/anda', 1)]\n",
"---\n",
"reason_for_recall : Failed Stability Specifications: Tagitol V Barium Sulfate Lot #65846 sampled at 10 months exhibited results above the upper specification for viscosity.\n",
"top 10 keywords: [('results', 1), ('months', 1), ('upper', 1), ('viscosity', 1), ('v', 1), ('exhibited', 1), ('tagitol', 1), ('sampled', 1), ('specifications', 1), ('failed', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Purified water used to manufacture the drug products may have been contaminated with Burkholderia cepacia.\n",
"top 10 keywords: [('cepacia', 1), ('drug', 1), ('burkholderia', 1), ('cgmp', 1), ('products', 1), ('may', 1), ('deviations', 1), ('manufacture', 1), ('purified', 1), ('contaminated', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; OXcarbazepine Tablet, 600 mg may be potentially mislabeled as LACTASE ENZYME, Tablet, 3000 units, NDC 24385014976, Pedigree: AD30028_25, EXP: 5/7/2014.\n",
"top 10 keywords: [('tablet', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('units', 1), ('oxcarbazepine', 1), ('mg', 1), ('potentially', 1), ('lactase', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Product is being recalled due to out of specification dissolution results obtained during routine stability testing.\n",
"top 10 keywords: [('dissolution', 2), ('due', 1), ('specification', 1), ('recalled', 1), ('results', 1), ('specifications', 1), ('failed', 1), ('obtained', 1), ('product', 1), ('routine', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: BISMUTH SUBSALICYLATE, CHEW Tablet, 262 mg may have potentially been mislabeled as the following drug: IRBESARTAN, Tablet, 150 mg, NDC 00093746556, Pedigree: AD42592_7, EXP: 5/14/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('bismuth', 1), ('potentially', 1), ('subsalicylate', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Due to potential for leaking bags. \n",
"top 10 keywords: [('lack', 1), ('assurance', 1), ('due', 1), ('bags', 1), ('leaking', 1), ('potential', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label mix-up. The inner packaging was properly labeled Omeprazole DR 40mg Capsules, but the outer secondary packaging was mislabeled Lansoprazole Delayed-Release 30mg Capsules. \n",
"top 10 keywords: [('packaging', 2), ('capsules', 2), ('mislabeled', 1), ('40mg', 1), ('labeled', 1), ('30mg', 1), ('dr', 1), ('delayed-release', 1), ('inner', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Subpotent (Single Ingredient) Drug: This product was found to be subpotent for the salicyclic acid active ingredient.\n",
"top 10 keywords: [('subpotent', 2), ('ingredient', 2), ('acid', 1), ('found', 1), ('active', 1), ('drug', 1), ('product', 1), ('single', 1), ('salicyclic', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; FOSINOPRIL SODIUM Tablet, 10 mg may be potentially mislabeled as CALCITRIOL, Capsule, 0.25 mcg, NDC 00054000725, Pedigree: AD46414_10, EXP: 5/16/2014.\n",
"top 10 keywords: [('mislabeled', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('mg', 1), ('potentially', 1), ('calcitriol', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ASPIRIN/ER DIPYRIDAMOLE, Capsule, 25 mg/200 mg may have potentially been mislabeled as the following drug: THIAMINE HCL, Tablet, 100 mg, NDC 00904054460, Pedigree: AD70639_1, EXP: 5/29/2014; LEVOTHYROXINE SODIUM, Tablet, 88 mcg, NDC 00781518392, Pedigree: W003439, EXP: 6/20/2014; ZINC SULFATE, Capsule, 220 mg, NDC 60258013101, Pedigree: W003641, EXP: 6/25/2014. \n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('mg', 3), ('ndc', 3), ('tablet', 2), ('capsule', 2), ('drug', 1), ('thiamine', 1), ('mixup', 1), ('ad70639_1', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Out-of-specification results in retained sample.\n",
"top 10 keywords: [('results', 1), ('out-of-specification', 1), ('specifications', 1), ('failed', 1), ('retained', 1), ('sample', 1), ('dissolution', 1)]\n",
"---\n",
"reason_for_recall : Presence of particulate matter: visible free floating and partially embedded particulate matter in the glass vials.\n",
"top 10 keywords: [('particulate', 2), ('matter', 2), ('free', 1), ('visible', 1), ('partially', 1), ('vials', 1), ('glass', 1), ('embedded', 1), ('floating', 1), ('presence', 1)]\n",
"---\n",
"reason_for_recall : Lack of Sterility Assurance; During a routine simulation of the manufacturing of AmBisome, a bacterial contamination was detected in some media fill units. No contaminated batches have actually been identified in the finished product, but there is a possibility of contamination.\n",
"top 10 keywords: [('contamination', 2), ('lack', 1), ('fill', 1), ('bacterial', 1), ('assurance', 1), ('simulation', 1), ('batches', 1), ('units', 1), ('detected', 1), ('media', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications; out-of-specification for color, impurity, and degradation\n",
"top 10 keywords: [('out-of-specification', 1), ('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('impurity', 1), ('degradation', 1), ('color', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: DULoxetine HCl DR, Capsule, 20 mg, may be potentially mis-labeled with one of the following drugs: ENTECAVIR, Tablet, 0.5 mg, NDC 00003161112, Pedigree: AD30140_28, EXP: 5/7/2014; CALCIUM ACETATE, Capsule, 667 mg, NDC 00054008826, Pedigree: AD54587_1, EXP: 5/21/2014; FLUoxetine HCl, Capsule, 10 mg\t, NDC 16714035103, Pedigree: AD70585_13, EXP: 5/29/2014; CHOLECALCIFEROL\n",
"top 10 keywords: [('mg', 4), ('pedigree', 3), ('exp', 3), ('capsule', 3), ('ndc', 3), ('hcl', 2), ('mis-labeled', 1), ('mixup', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: CARVEDILOL PHOSPHATE ER, Capsule, 20 mg may be potentially mislabeled as the following drug: BUMETANIDE, Tablet, 1 mg, NDC 00093423301, Pedigree: W003224, EXP: 6/17/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; HYDROXYCHLOROQUINE SULFATE, Tablet, 200 mg may be potentially mislabeled as guanFACINE HCl, Tablet, 1 mg, NDC 00378116001, Pedigree: AD70629_7, EXP: 5/29/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; ASCORBIC ACID Tablet, 500 mg may be potentially mislabeled as FEBUXOSTAT, Tablet, 40 mg, NDC 64764091830, Pedigree: AD23082_16, EXP: 11/1/2013.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('febuxostat', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('ascorbic', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Lack of Processing Controls\n",
"top 10 keywords: [('processing', 1), ('controls', 1), ('lack', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Out of specification (OOS) for total impurity and out of trend for known impurity results encountered during stability testing.\n",
"top 10 keywords: [('impurity', 2), ('impurities/degradation', 1), ('known', 1), ('total', 1), ('specification', 1), ('trend', 1), ('results', 1), ('specifications', 1), ('failed', 1), ('stability', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug.\n",
"top 10 keywords: [('subpotent', 1), ('drug', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: HYDROCHLOROTHIAZIDE, Tablet, 12.5 mg may have potentially been mislabeled as one of the following drugs: hydrALAZINE HCl, Tablet, 100 mg, NDC 23155000401, Pedigree: AD73652_4, EXP: 5/29/2014; CLINDAMYCIN HCL, Capsule, 300 mg, NDC 00591312001, Pedigree: AD67989_1, EXP: 5/28/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('ndc', 2), ('hcl', 2), ('mislabeled', 1), ('ad73652_4', 1), ('hydralazine', 1), ('mixup', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: FLECAINIDE ACETATE, Tablet, 100 mg may be potentially mislabeled as the following drug: COLESTIPOL HCL MICRONIZED, Tablet, 1 g, NDC 59762045001, Pedigree: AD56847_1, EXP: 5/21/2014. \n",
"top 10 keywords: [('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('flecainide', 1), ('ad56847_1', 1), ('mg', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: out of specification for thickness.\n",
"top 10 keywords: [('thickness', 1), ('specifications', 1), ('failed', 1), ('specification', 1), ('tablet/capsule', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Nova Products, Inc. of Aston, Pennsylvania is voluntarily recalling AFRICAN BLACK ANT because FDA laboratory analysis determined they contain undeclared amounts of sildenafil an active ingredient of FDA-approved drugs used to treat erectile dysfunction. \n",
"top 10 keywords: [('analysis', 1), ('without', 1), ('nda/anda', 1), ('inc.', 1), ('nova', 1), ('dysfunction', 1), ('ant', 1), ('undeclared', 1), ('black', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; ASPIRIN EC DR Tablet, 81 mg may be potentially mislabeled as MELATONIN, Tablet, 3 mg, NDC 51991001406, Pedigree: AD28322_7, EXP: 5/6/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00904789159, Pedigree: W003671, EXP: 6/25/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('melatonin', 1), ('w003671', 1), ('mixup', 1), ('dr', 1)]\n",
"---\n",
"reason_for_recall : Product Lacks Stability: These lots are being recalled due to the failure to meet the particle size distribution specification.\n",
"top 10 keywords: [('stability', 1), ('particle', 1), ('size', 1), ('due', 1), ('specification', 1), ('meet', 1), ('lacks', 1), ('lots', 1), ('failure', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Tablet: A pharmacist found a clopidogrel tablet in the 1000-count bottle of hydrochlorothiazide 25 mg tablets. \n",
"top 10 keywords: [('tablet', 2), ('tablets', 1), ('presence', 1), ('found', 1), ('mg', 1), ('bottle', 1), ('1000-count', 1), ('pharmacist', 1), ('hydrochlorothiazide', 1), ('foreign', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System: Some units have actuation counters set to a number other than 60.\n",
"top 10 keywords: [('number', 1), ('set', 1), ('actuation', 1), ('units', 1), ('delivery', 1), ('system', 1), ('counters', 1), ('defective', 1)]\n",
"---\n",
"reason_for_recall : cGMP Deviations; Clonidine hydrochloride drug substance used in the manufacturing of this product, was dispensed in unauthorized rooms by the drug substance manufacturer.\n",
"top 10 keywords: [('drug', 2), ('substance', 2), ('dispensed', 1), ('unauthorized', 1), ('cgmp', 1), ('hydrochloride', 1), ('clonidine', 1), ('rooms', 1), ('deviations', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Due to lack of documentation of proper environmental monitoring during the time in which the medication was produced..\n",
"top 10 keywords: [('lack', 2), ('proper', 1), ('monitoring', 1), ('time', 1), ('medication', 1), ('assurance', 1), ('due', 1), ('environmental', 1), ('documentation', 1), ('produced..', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: NIACIN TR, Capsule, 500 mg may have potentially been mislabeled as one of the following drugs: PERPHENAZINE, Tablet, 16 mg, NDC 00603506321, Pedigree: AD46265_49, EXP: 5/15/2014; MELATONIN, Tablet, 1 mg, NDC 47469000466, Pedigree: AD60240_14, EXP: 5/22/2014; CRANBERRY EXTRACT/VITAMIN C, Capsule, 450 mg/125 mg, NDC 31604014271, Pedigree: W002693, EXP: 6/5/2014; GLUCOSAMIN\n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('tablet', 2), ('capsule', 2), ('perphenazine', 1), ('glucosamin', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: incomplete or missing data regarding production.\n",
"top 10 keywords: [('production', 1), ('data', 1), ('incomplete', 1), ('assurance', 1), ('regarding', 1), ('sterility', 1), ('missing', 1), ('lack', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; LACTASE ENZYME Tablet, 3000 units may be potentially mislabeled as BENZOCAINE/MENTHOL, LOZENGE, 15 mg/3.6 mg, NDC 63824072016, Pedigree: AD21811_4, EXP: 5/1/2014; ACETAMINOPHEN/ ASPIRIN/ CAFFEINE, Tablet, 250 mg/250 mg/65 mg, NDC 46122010478, Pedigree: W003722, EXP: 4/30/2014; guaiFENesin ER, Tablet, 600 mg, NDC 45802049878, Pedigree: AD30140_37, EXP: 5/7/2014; CALCIUM\n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('tablet', 3), ('mg', 3), ('ndc', 3), ('ad30140_37', 1), ('enzyme', 1), ('labeling', 1), ('may', 1), ('mg/65', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurity/Degradation Specifications due to moisture ingress in individual bottles\n",
"top 10 keywords: [('bottles', 1), ('specifications', 1), ('failed', 1), ('individual', 1), ('ingress', 1), ('due', 1), ('impurity/degradation', 1), ('moisture', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: BUMETANIDE, Tablet, 0.5 mg, Rx only may have potentially been mislabeled as the following drug: ERYTHROMYCIN DR EC, Tablet, 250 mg, NDC 24338012213, Pedigree: AD46426_13, EXP: 5/15/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('rx', 1), ('mixup', 1), ('dr', 1), ('potentially', 1), ('erythromycin', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Tablets/Capsules; report of Amlodipine Tablets found in 1000 count bottles of Metformin Hydrochloride Tablets USP \n",
"top 10 keywords: [('tablets', 2), ('metformin', 1), ('bottles', 1), ('found', 1), ('count', 1), ('tablets/capsules', 1), ('hydrochloride', 1), ('amlodipine', 1), ('presence', 1), ('foreign', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: DEXAMETHASONE, Tablet, 1 mg may have potentially been mislabeled as the following drug: VENLAFAXINE HCL ER, Capsule, 150 mg, NDC 00093738656, Pedigree: AD30993_20, EXP: 5/9/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('tablet', 1), ('capsule', 1), ('mixup', 1), ('hcl', 1), ('ad30993_20', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: sitaGLIPtin PHOSPHATE, Tablet, 50 mg may be potentially mis-labeled as one of the following drugs: LACTOBACILLUS, Tablet, 0 mg, NDC 64980012950, Pedigree: AD62992_1, EXP: 5/23/2014; CYANOCOBALAMIN, Tablet, 500 mcg, NDC 00536355101, Pedigree: W002860, EXP: 6/7/2014. \n",
"top 10 keywords: [('tablet', 3), ('pedigree', 2), ('exp', 2), ('mg', 2), ('ndc', 2), ('sitagliptin', 1), ('mixup', 1), ('ad62992_1', 1), ('potentially', 1), ('w002860', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Tablets/Capsules: Product labeled TUMS Ultra Assorted Berries 1000mg Chewable tables, may contain EX TUMS Assorted Berries 750mg tablets\n",
"top 10 keywords: [('tums', 2), ('assorted', 2), ('berries', 2), ('1000mg', 1), ('750mg', 1), ('labeled', 1), ('tablets/capsules', 1), ('contain', 1), ('tables', 1), ('presence', 1)]\n",
"---\n",
"reason_for_recall : Penicillin Cross Contamination.\n",
"top 10 keywords: [('penicillin', 1), ('contamination', 1), ('cross', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Confirmed customer report of leakage of vial contents due to the breaking of the vial neck. \n",
"top 10 keywords: [('vial', 2), ('confirmed', 1), ('contents', 1), ('lack', 1), ('assurance', 1), ('due', 1), ('sterility', 1), ('leakage', 1), ('customer', 1), ('report', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; FINASTERIDE, Tablet, 5 mg may be potentially mislabeled as DIGOXIN, Tablet, 0.125 mg, NDC 00115981101, Pedigree: AD62829_8, EXP: 5/23/2014; PHYTONADIONE, Tablet, 5 mg, NDC 25010040515, Pedigree: W003061, EXP: 5/31/2014. \n",
"top 10 keywords: [('tablet', 3), ('mg', 3), ('pedigree', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('mixup', 1), ('digoxin', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Product; small number of tubes may include the presence of mold on the cap\n",
"top 10 keywords: [('presence', 1), ('microbial', 1), ('non-sterile', 1), ('include', 1), ('contamination', 1), ('mold', 1), ('number', 1), ('tubes', 1), ('small', 1), ('cap', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Product tested positive for Sibutramine, an appetite suppressant that was withdrawn from the U.S. market in October 2010 for safety reasons, making this product an unapproved new drug.\n",
"top 10 keywords: [('product', 2), ('marketed', 1), ('appetite', 1), ('approved', 1), ('suppressant', 1), ('tested', 1), ('nda/anda', 1), ('october', 1), ('safety', 1), ('without', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance; some bottles may contain debris that was swept up during cleaning\n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('bottles', 1), ('debris', 1), ('cleaning', 1), ('contain', 1), ('foreign', 1), ('may', 1), ('swept', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; PANTOPRAZOLE SODIUM DR, Tablet, 20 mg may be potentially mislabel as NORTRIPTYLINE HCL, Capsule, 75 mg, NDC 00093081301, Pedigree: W003694, EXP: 6/26/2014.\n",
"top 10 keywords: [('mg', 2), ('capsule', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('dr', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: an expired active ingredient was used in the manufacture of these recalled lots.\n",
"top 10 keywords: [('lots', 1), ('deviations', 1), ('manufacture', 1), ('active', 1), ('expired', 1), ('ingredient', 1), ('cgmp', 1), ('used', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: out of specification result for known impurity at 6 month timepoint.\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('known', 1), ('result', 1), ('impurity', 1), ('specification', 1), ('timepoint', 1), ('month', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; PRENATAL MULTIVITAMIN/ MULTIMINERAL, Tablet may be potentially mislabeled as COLCHICINE, Tablet, 0.6 mg, NDC 64764011907, Pedigree: AD65457_1, EXP: 5/23/2014; GALANTAMINE HBr ER, Capsule, 8 mg, NDC 10147089103, Pedigree: W003509, EXP: 6/21/2014; BROMOCRIPTINE MESYLATE, Tablet, 2.5 mg, NDC 00781532531, Pedigree: AD32579_7, EXP: 5/9/2014; CINACALCET HCL, Tablet, 30 mg, N\n",
"top 10 keywords: [('tablet', 4), ('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('potentially', 1), ('mesylate', 1), ('may', 1), ('labeling', 1), ('hbr', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particular Matter: Potential glass delamination and consistent with glass particulates observed in sample vials.\n",
"top 10 keywords: [('glass', 2), ('particular', 1), ('presence', 1), ('sample', 1), ('delamination', 1), ('vials', 1), ('consistent', 1), ('particulates', 1), ('potential', 1), ('observed', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; TORSEMIDE, Tablet, 10 mg may be potentially mislabeled as PYRIDOXINE HCL, Tablet, 50 mg, NDC 00536440801, Pedigree: AD30197_22, EXP: 5/9/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Crystallization: Formation of crystals observed in product.\n",
"top 10 keywords: [('crystallization', 1), ('formation', 1), ('crystals', 1), ('observed', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System: Some Lupron Depot Kits may contain a syringe with a potentially defective LuproLoc needle stick protection device.\n",
"top 10 keywords: [('defective', 2), ('kits', 1), ('needle', 1), ('contain', 1), ('potentially', 1), ('device', 1), ('may', 1), ('lupron', 1), ('depot', 1), ('stick', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; MULTIVITAMIN/MULTIMINERAL LOW IRON Tablet may be potentially mislabeled as LEVOTHYROXINE SODIUM, Tablet, 112 mcg, NDC 00527134601, Pedigree: AD60272_22, EXP: 5/22/2014; ATORVASTATIN CALCIUM, Tablet, 80 mg, NDC 00378212277, Pedigree: AD73627_1, EXP: 5/30/2014; MULTIVITAMIN/MULTIMINERAL, Tablet, NDC 37205018581, Pedigree: W002513, EXP: 6/3/2014. \n",
"top 10 keywords: [('tablet', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('multivitamin/multimineral', 2), ('levothyroxine', 1), ('mcg', 1), ('ad60272_22', 1), ('labeling', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: CANDESARTAN CILEXETIL, Tablet, 16 mg may have potentially been mislabeled as the following drug: IRBESARTAN, Tablet, 150 mg, NDC 65862063830, Pedigree: W003649, EXP: 6/25/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('candesartan', 1), ('mixup', 1), ('potentially', 1), ('cilexetil', 1), ('w003649', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; GLUCOSAMINE/CHONDROITIN DS, Capsule, 500 mg/400 mg may be potentially mislabeled as GLYCOPYRROLATE, Tablet, 2 mg, NDC 00603318121, Pedigree: AD22865_4, EXP: 5/2/2014; PREGABALIN, Capsule, 25 mg, NDC 00071101268, Pedigree: W003121, EXP: 6/13/2014; MULTIVITAMIN/MULTIMINERAL, Chew Tablet, NDC 00536344308, Pedigree: AD73521_10, EXP: 5/30/2014. \n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('mg', 3), ('ndc', 3), ('tablet', 2), ('capsule', 2), ('ad73521_10', 1), ('multivitamin/multimineral', 1), ('w003121', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: FDA analysis found the product to contain hydroxythiohomosildenafil, an analogue of sildenafil which is an ingredient in an FDA-approved drug for the treatment of male erectile dysfunction, making this an unapproved new drug.\n",
"top 10 keywords: [('drug', 2), ('analysis', 1), ('without', 1), ('nda/anda', 1), ('dysfunction', 1), ('making', 1), ('fda', 1), ('male', 1), ('product', 1), ('analogue', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; SIMVASTATIN Tablet, 20 mg may be potentially mislabeled as VITAMIN B COMPLEX WITH C/FOLIC ACID, Tablet, NDC 60258016001, Pedigree: W003591, EXP: 6/24/2014.\n",
"top 10 keywords: [('tablet', 2), ('mislabeled', 1), ('pedigree', 1), ('simvastatin', 1), ('mixup', 1), ('b', 1), ('vitamin', 1), ('mg', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: MESALAMINE DR, Capsule, 400 mg may have potentially been mislabeled as the following drug: CHLOROPHYLLIN COPPER COMPLEX, Tablet, 100 mg, NDC 11868000901, Pedigree: AD34928_1, EXP: 5/9/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('ndc', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('dr', 1), ('potentially', 1), ('pedigree', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: a recent FDA inspection at the manufacturing firm raised concerns that the product sterility may be compromised.\n",
"top 10 keywords: [('sterility', 2), ('recent', 1), ('raised', 1), ('lack', 1), ('assurance', 1), ('inspection', 1), ('firm', 1), ('may', 1), ('concerns', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: PERPHENAZINE, Tablet, 8 mg may have potentially been mislabeled as the following drug: NIFEdipine, Capsule, 10 mg, NDC 59762100401, Pedigree: AD52778_55, EXP: 5/20/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Failed Stability Specifications: Pyridostigmine Bromide tablets, is being recalled due to an out of specification test result during stablity testing.\n",
"top 10 keywords: [('tablets', 1), ('due', 1), ('result', 1), ('test', 1), ('specification', 1), ('recalled', 1), ('specifications', 1), ('failed', 1), ('stability', 1), ('pyridostigmine', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurites/Degradation Specifications: Test failure of single largest peak at 18 months.\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('largest', 1), ('test', 1), ('peak', 1), ('impurites/degradation', 1), ('months', 1), ('single', 1), ('failure', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: TERAZOSIN HCL, Capsule, 5 mg may have potentially been mislabeled as the following drug: DOXAZOSIN MESYLATE, Tablet, 1 mg, NDC 00093812001, Pedigree: W003912, EXP: 6/28/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('ndc', 1), ('mesylate', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('pedigree', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Products: Product is being recalled due to possible microbial contamination by C. difficile discovered in the raw material.\n",
"top 10 keywords: [('microbial', 2), ('contamination', 2), ('due', 1), ('difficile', 1), ('discovered', 1), ('material', 1), ('products', 1), ('recalled', 1), ('possible', 1), ('non-sterile', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: This recall is being conducted due to the potential for extrinsic foreign particles in the API used to manufacture SPIRIVA Handihaler\n",
"top 10 keywords: [('foreign', 2), ('api', 1), ('substance', 1), ('recall', 1), ('due', 1), ('extrinsic', 1), ('potential', 1), ('conducted', 1), ('manufacture', 1), ('presence', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: FDA sampling confirmed the presence of Salicylic acid in dietary supplements.\n",
"top 10 keywords: [('marketed', 1), ('confirmed', 1), ('approved', 1), ('without', 1), ('salicylic', 1), ('presence', 1), ('nda/anda', 1), ('sampling', 1), ('supplements', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: IRBESARTAN, Tablet, 150 mg may have potentially been mislabeled as the following drug: BENAZEPRIL HCL, Tablet, 40 mg, NDC 65162075410, Pedigree: AD32757_7, EXP: 5/13/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('irbesartan', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Products: Out-of-specification results for microbial count were observed at the initial stability interval for Lansoprazole Delayed Release Capsules.\n",
"top 10 keywords: [('microbial', 2), ('out-of-specification', 1), ('initial', 1), ('interval', 1), ('count', 1), ('non-sterile', 1), ('products', 1), ('observed', 1), ('release', 1), ('results', 1)]\n",
"---\n",
"reason_for_recall : Short Fill: Due to an error in the manufacturing process, cylinders in this lot may be empty and contain no medical oxygen.\n",
"top 10 keywords: [('error', 1), ('process', 1), ('fill', 1), ('medical', 1), ('empty', 1), ('due', 1), ('contain', 1), ('may', 1), ('short', 1), ('cylinders', 1)]\n",
"---\n",
"reason_for_recall : Failed pH specification: Product pH test value of 5.72 failed to meet its product specification of 6.0 to 7.5.\n",
"top 10 keywords: [('failed', 2), ('product', 2), ('ph', 2), ('specification', 2), ('test', 1), ('meet', 1), ('value', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: The recall is being initiated due to an out-of-specification result in the degradation product testing detected during stability monitoring. \n",
"top 10 keywords: [('out-of-specification', 1), ('recall', 1), ('detected', 1), ('impurities/degradation', 1), ('initiated', 1), ('result', 1), ('degradation', 1), ('testing', 1), ('due', 1), ('specifications', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: SIMVASTATIN, Tablet, 40 mg may have potentially been mislabeled as the following drug: METOPROLOL TARTRATE, Tablet, 12.5 mg (1/2 of 25 mg), NDC 63304057901, Pedigree: AD21790_67, EXP: 5/1/2014. \n",
"top 10 keywords: [('mg', 3), ('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('simvastatin', 1), ('mixup', 1), ('tartrate', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: DILTIAZEM HCL, Tablet, 120 mg, may have potentially been mislabeled as the following drug: NICOTINE POLACRILEX, LOZENGE, 2 mg, NDC 00135051001, Pedigree: AD329737, EXP: 5/9/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('diltiazem', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: The products were manufactured with raw material which contain unknown particles believed to be water and dirt.\n",
"top 10 keywords: [('manufactured', 1), ('believed', 1), ('dirt', 1), ('products', 1), ('contain', 1), ('cgmp', 1), ('material', 1), ('deviations', 1), ('raw', 1), ('unknown', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug; 15-month stability test station\n",
"top 10 keywords: [('subpotent', 1), ('15-month', 1), ('stability', 1), ('drug', 1), ('test', 1), ('station', 1)]\n",
"---\n",
"reason_for_recall : Impurity/Degradation; exceeded impurity specification at the 8 and 15 month time points (betacyclodextrin ester 1&amp;2)\n",
"top 10 keywords: [('betacyclodextrin', 1), ('ester', 1), ('exceeded', 1), ('impurity', 1), ('time', 1), ('impurity/degradation', 1), ('specification', 1), ('points', 1), ('month', 1), ('amp', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations; laboratory testing was not followed in accordance with GMP requirements.\n",
"top 10 keywords: [('deviations', 1), ('accordance', 1), ('laboratory', 1), ('requirements', 1), ('cgmp', 1), ('gmp', 1), ('testing', 1), ('followed', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; MAGNESIUM CHLORIDE, Tablet, 64 mg may be potentially mislabeled as VITAMIN B COMPLEX W/C, Tablet, NDC 00904026013, Pedigree: AD52993_31, EXP: 5/17/2014; ASPIRIN EC, Tablet, 325 mg, NDC 00904201360, Pedigree: W003526, EXP: 6/21/2014; NICOTINE POLACRILEX, LOZENGE, 2 mg, NDC 00135051001, Pedigree: W002766, EXP: 6/6/2014; THIAMINE HCL, Tablet, 100 mg, NDC 00904054460, Pedig\n",
"top 10 keywords: [('tablet', 4), ('mg', 4), ('ndc', 4), ('pedigree', 3), ('exp', 3), ('thiamine', 1), ('w002766', 1), ('chloride', 1), ('magnesium', 1), ('mixup', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Product was found to contain undeclared active pharmaceutical ingredients: N-desmethylsibutramine, benzylsibutramine, and sibutramine\n",
"top 10 keywords: [('marketed', 1), ('n-desmethylsibutramine', 1), ('found', 1), ('approved', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('ingredients', 1), ('pharmaceutical', 1), ('undeclared', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 175 mcg may have potentially been mislabeled as the following drug: PRAMIPEXOLE DI-HCL, Tablet, 1 mg, NDC 16714058701, Pedigree: W003150, EXP: 6/13/2014.\n",
"top 10 keywords: [('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('levothyroxine', 1), ('mcg', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: The pharmacy is recalling one lot of Hydroxocobalamin MDV 5mg/mL due to failed sterility results by a third party contract testing lab. Hence the sterility of the product cannot be assured. \n",
"top 10 keywords: [('sterility', 3), ('lack', 1), ('hence', 1), ('pharmacy', 1), ('assurance', 1), ('due', 1), ('testing', 1), ('party', 1), ('results', 1), ('contract', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: Presence of blue plastic floating in loratadine syrup.\n",
"top 10 keywords: [('presence', 2), ('substance', 1), ('loratadine', 1), ('syrup', 1), ('blue', 1), ('plastic', 1), ('foreign', 1), ('floating', 1)]\n",
"---\n",
"reason_for_recall : Lack of sterility assurance.\n",
"top 10 keywords: [('lack', 1), ('assurance', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Non Sterility: Microbial contamination \n",
"top 10 keywords: [('microbial', 1), ('contamination', 1), ('non', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Black particulate matter was identified as aggregate of silicone rubber pieces from a filler diaphragm and fluorouracil crystals. \n",
"top 10 keywords: [('particulate', 2), ('matter', 2), ('silicone', 1), ('presence', 1), ('crystals', 1), ('aggregate', 1), ('diaphragm', 1), ('black', 1), ('filler', 1), ('pieces', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA; this product is being recalled for containing an undeclared diuretic called Triamterene, an FDA approved prescription only medication used to treat edema, making it an unapproved new drug\n",
"top 10 keywords: [('approved', 2), ('marketed', 1), ('new', 1), ('triamterene', 1), ('drug', 1), ('without', 1), ('nda/anda', 1), ('fda', 1), ('unapproved', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: The firm received an out of specification result for Assay (potency was below specification) at the 9 month stability time point. \n",
"top 10 keywords: [('specification', 2), ('received', 1), ('subpotent', 1), ('assay', 1), ('drug', 1), ('result', 1), ('month', 1), ('potency', 1), ('stability', 1), ('time', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Products: Elevated counts of gram positive rods were found during environmental testing \n",
"top 10 keywords: [('elevated', 1), ('rods', 1), ('products', 1), ('microbial', 1), ('non-sterile', 1), ('testing', 1), ('counts', 1), ('gram', 1), ('contamination', 1), ('positive', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: guanFACINE HC, Tablet, 1 mg may have potentially been mislabeled as one of the following drugs: glyBURIDE, Tablet, 2.5 mg, NDC 00093834301, Pedigree: AD46265_22, EXP: 5/15/2014; FOSINOPRIL SODIUM, Tablet, 10 mg, NDC 60505251002, Pedigree: AD46414_19, EXP: 5/16/2014; chlorproMAZINE HCl, Tablet, 100 mg, NDC 00832030300, Pedigree: AD70629_4, EXP: 5/29/2014; guanFACINE HCl, \n",
"top 10 keywords: [('tablet', 4), ('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('hcl', 2), ('guanfacine', 2), ('ad46265_22', 1), ('potentially', 1), ('ad70629_4', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: OOS result during stability testing\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('stability', 1), ('result', 1), ('testing', 1), ('dissolution', 1), ('oos', 1)]\n",
"---\n",
"reason_for_recall : Crystallization: Product contains particulate identified to be crystallized active ingredient.\n",
"top 10 keywords: [('ingredient', 1), ('crystallized', 1), ('active', 1), ('crystallization', 1), ('product', 1), ('particulate', 1), ('identified', 1), ('contains', 1)]\n",
"---\n",
"reason_for_recall : Labeling; Incorrect or Missing Lot and/or Exp Date; incorrect expiration date on container label is 02/2019, correct expiration date should be 02/2018\n",
"top 10 keywords: [('date', 3), ('incorrect', 2), ('expiration', 2), ('correct', 1), ('missing', 1), ('exp', 1), ('label', 1), ('and/or', 1), ('container', 1), ('lot', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: CALCIUM ACETATE, Tablet, 667 mg may have potentially been mislabeled as one of the following drugs: ASCORBIC ACID, Tablet, 250 mg, NDC 00904052260, Pedigree: AD30028_34, EXP: 5/7/2014; HYOSCYAMINE SULFATE ODT, Tablet, 0.125 mg, NDC 00574024701, Pedigree: W003614, EXP: 6/25/2014. \n",
"top 10 keywords: [('tablet', 3), ('mg', 3), ('exp', 2), ('pedigree', 2), ('ndc', 2), ('hyoscyamine', 1), ('ascorbic', 1), ('w003614', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/110 mg may be potentially mislabeled as BENZOCAINE/MENTHOL, LOZENGE, 15 mg/2.6 mg, NDC 63824073116, Pedigree: AD42592_4, EXP: 5/14/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('bicarbonate', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('mg/2.6', 1), ('mg/110', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; VITAMIN B COMPLEX PROLONGED RELEASE, Tablet, 50 mg may be potentially mislabeled as COENZYME Q-10, Capsule, 100 mg, NDC 37205055065, Pedigree: AD30180_16, EXP: 5/9/2014; DOCUSATE SODIUM, Capsule, 50 mg, NDC 67618010060, Pedigree: AD60211_8, EXP: 5/21/2014; ASPIRIN EC, Tablet, 325 mg, NDC 00904201360, Pedigree: AD39588_1, EXP: 5/13/2014. \n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('tablet', 2), ('capsule', 2), ('docusate', 1), ('may', 1), ('labeling', 1), ('ec', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; QUINAPRIL Tablet, 40 mg may be potentially mislabeled as PROPRANOLOL HCL, Tablet, 10 mg, NDC 16714002104, Pedigree: AD52778_73, EXP: 5/21/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Adulterated Presence of Foreign Tablets: Customer complaint that some Endocet 10 mg/325 mg tablets were found mixed in a bottle with Endocet 10 mg/650 mg tablets.\n",
"top 10 keywords: [('tablets', 3), ('mg', 2), ('endocet', 2), ('found', 1), ('complaint', 1), ('presence', 1), ('foreign', 1), ('mixed', 1), ('customer', 1), ('mg/650', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; ISOSORBIDE MONONITRATE Tablet, 20 mg may be potentially mislabeled as COLCHICINE, Tablet, 0.6 mg, NDC 64764011907, Pedigree: AD52778_22, EXP: 5/20/2014; LOSARTAN POTASSIUM, Tablet, 25 mg, NDC 16714058102, Pedigree: AD67989_7, EXP: 5/28/2014; SODIUM CHLORIDE, Tablet, 1 mg, NDC 00223176001, Pedigree: W002611, EXP: 6/4/2014. \n",
"top 10 keywords: [('tablet', 4), ('mg', 4), ('pedigree', 3), ('exp', 3), ('ndc', 3), ('mislabeled', 1), ('chloride', 1), ('isosorbide', 1), ('mixup', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation specifications: out-of-specification results 14 & 15 month time point\n",
"top 10 keywords: [('results', 1), ('out-of-specification', 1), ('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('time', 1), ('month', 1), ('point', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; guaiFENesin ER Tablet, 600 mg may be potentially mislabeled as OMEGA-3-ACID ETHYL ESTERS, Capsule, 1000 mg, NDC 00173078302, Pedigree: W003243, EXP: 6/17/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('ndc', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('esters', 1), ('w003243', 1), ('potentially', 1), ('pedigree', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: Low out of specification results for both pH and assay obtained during routine stability testing after 36 months.\n",
"top 10 keywords: [('assay', 1), ('subpotent', 1), ('months', 1), ('drug', 1), ('ph', 1), ('specification', 1), ('results', 1), ('obtained', 1), ('low', 1), ('routine', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Report of a vial containing visible particulate matter embedded in the glass wall which has the potential to dislodge resulting in the presence of particulate matter in the product.\n",
"top 10 keywords: [('particulate', 3), ('matter', 3), ('presence', 2), ('dislodge', 1), ('product', 1), ('embedded', 1), ('potential', 1), ('containing', 1), ('visible', 1), ('wall', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix-Up: An incorrect book label for Sucrets Sore Throat, Cough & Dry Mouth Honey Lemon lozenges was applied to the underside of the Sucrets Sore Throat & Cough Vapor Cherry lozenges tin.\n",
"top 10 keywords: [('sore', 2), ('throat', 2), ('lozenges', 2), ('cough', 2), ('sucrets', 2), ('label', 2), ('vapor', 1), ('book', 1), ('tin', 1), ('underside', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: this product is being recalled because an FDA inspection revealed that it was not manufactured under current good manufacturing practices.\n",
"top 10 keywords: [('manufactured', 1), ('practices', 1), ('good', 1), ('inspection', 1), ('revealed', 1), ('cgmp', 1), ('recalled', 1), ('deviations', 1), ('current', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : Sub-potent Drug; firm's analysis revealed subpotent result for morphine sulfate assay.\n",
"top 10 keywords: [('sub-potent', 1), ('drug', 1), ('assay', 1), ('analysis', 1), ('morphine', 1), ('subpotent', 1), ('result', 1), ('revealed', 1), ('firm', 1), ('sulfate', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Error on Declared Strength- bottles missing colored coded panel where strength of the product is displayed.\n",
"top 10 keywords: [('error', 1), ('bottles', 1), ('displayed', 1), ('declared', 1), ('missing', 1), ('labeling', 1), ('strength', 1), ('coded', 1), ('product', 1), ('strength-', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: particulate matter identified as an insect in one vial.\n",
"top 10 keywords: [('particulate', 2), ('matter', 2), ('presence', 1), ('insect', 1), ('vial', 1), ('identified', 1), ('one', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications; partial tablet erosion resulting in tablet weights below specification in some tablets\n",
"top 10 keywords: [('tablet', 2), ('partial', 1), ('specifications', 1), ('failed', 1), ('resulting', 1), ('tablets', 1), ('tablet/capsule', 1), ('specification', 1), ('erosion', 1), ('weights', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: foreign material found in the bulk inventory.\n",
"top 10 keywords: [('foreign', 2), ('substance', 1), ('presence', 1), ('found', 1), ('material', 1), ('bulk', 1), ('inventory', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Due to customer complaints of small black particles, identified as part of the ointment tube cap, generated by the action of unscrewing the cap from the aluminum tube and potentially introducing the particle into the product.\n",
"top 10 keywords: [('cap', 2), ('tube', 2), ('presence', 1), ('generated', 1), ('particulate', 1), ('unscrewing', 1), ('black', 1), ('small', 1), ('matter', 1), ('identified', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect Package Insert; product packaged with outdated version of the insert\n",
"top 10 keywords: [('insert', 2), ('package', 1), ('incorrect', 1), ('product', 1), ('outdated', 1), ('packaged', 1), ('version', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Tablets/Capsules; 500 mg capsules were found in bottles labeled to contain 250 mg capsules\n",
"top 10 keywords: [('capsules', 2), ('mg', 2), ('presence', 1), ('bottles', 1), ('found', 1), ('labeled', 1), ('tablets/capsules', 1), ('contain', 1), ('foreign', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: GLYCOPYRROLATE, Tablet, 2 mg may have potentially been mislabeled as one of the following drugs: PARICALCITOL, Capsule, 1 mcg, NDC 00074431730, Pedigree: W002667, EXP: 6/5/2014; guaiFENesin ER, Tablet, 600 mg, NDC 63824000850, Pedigree: W003244, EXP: 6/17/2014; LACTOBACILLUS, Tablet, 0, NDC 64980012950, Pedigree: AD22865_1, EXP: 5/2/2014. \n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('tablet', 3), ('ndc', 3), ('mg', 2), ('mcg', 1), ('w003244', 1), ('may', 1), ('labeling', 1), ('ad22865_1', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: The affected lots may not meet the specifications for dissolution over the product shelf life. \n",
"top 10 keywords: [('specifications', 2), ('dissolution', 2), ('failed', 1), ('life', 1), ('may', 1), ('affected', 1), ('product', 1), ('meet', 1), ('shelf', 1), ('lots', 1)]\n",
"---\n",
"reason_for_recall : Defective Container: There is a potential for frangible components to be broken, resulting in a leak at the port when the closure is removed.\n",
"top 10 keywords: [('removed', 1), ('resulting', 1), ('closure', 1), ('broken', 1), ('port', 1), ('leak', 1), ('container', 1), ('components', 1), ('potential', 1), ('defective', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: out of specification result for Clonazepam Related Compound (RC) A (a known impurity) at 15 month timepoint.\n",
"top 10 keywords: [('impurities/degradation', 1), ('known', 1), ('compound', 1), ('result', 1), ('timepoint', 1), ('specification', 1), ('related', 1), ('clonazepam', 1), ('specifications', 1), ('failed', 1)]\n",
"---\n",
"reason_for_recall : Failed pH Specifications: Confirmed high out of specification (OOS) results for pH.\n",
"top 10 keywords: [('ph', 2), ('results', 1), ('specifications', 1), ('failed', 1), ('oos', 1), ('specification', 1), ('confirmed', 1), ('high', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; All lots of sterile products compounded by the pharmacy within expiry are subject to this recall. This recall is initiated due to concerns associated with quality control procedures observed during a recent FDA inspection.\n",
"top 10 keywords: [('recall', 2), ('recent', 1), ('control', 1), ('initiated', 1), ('inspection', 1), ('observed', 1), ('lots', 1), ('sterility', 1), ('fda', 1), ('expiry', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: FDA analysis detected the presence of sibutramine, N-Desmethylsibutramine and phenolphthalein. Sibutramine and phenolphthalein were previously available drug products but were removed from the U.S. market making these products unapproved new drugs.\n",
"top 10 keywords: [('sibutramine', 2), ('phenolphthalein', 2), ('products', 2), ('n-desmethylsibutramine', 1), ('drug', 1), ('presence', 1), ('analysis', 1), ('previously', 1), ('without', 1), ('nda/anda', 1)]\n",
"---\n",
"reason_for_recall : Customer complaints for failure to deliver the dose.\n",
"top 10 keywords: [('customer', 1), ('deliver', 1), ('failure', 1), ('complaints', 1), ('dose', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ASPIRIN EC, Tablet, 325 mg may have potentially been mislabeled as one of the following drugs: MULTIVITAMIN/MULTIMINERAL, CHEW Tablet, 0 mg, NDC 58914001460, Pedigree: AD30180_10, EXP: 5/9/2014; DILTIAZEM HCL ER, Capsule, 240 mg, NDC 49884083109, Pedigree: AD52375_1, EXP: 5/17/2014; ASPIRIN, Tablet, 325 mg, NDC 00536330501, Pedigree: W003355, EXP: 6/19/2014; ASPIRIN, Tab\n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('aspirin', 3), ('pedigree', 3), ('tablet', 3), ('ndc', 3), ('diltiazem', 1), ('multivitamin/multimineral', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Failed impurities/degradation specifications; out of specification for the known impurity 4-chlorobenzophenone. \n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('known', 1), ('impurity', 1), ('specification', 1), ('4-chlorobenzophenone', 1)]\n",
"---\n",
"reason_for_recall : Lack of Sterility Assurance: A recent FDA inspection revealed poor aseptic production practices that result in lack of sterility assurance of products intended to be sterile. \n",
"top 10 keywords: [('lack', 2), ('assurance', 2), ('sterility', 2), ('recent', 1), ('aseptic', 1), ('products', 1), ('inspection', 1), ('revealed', 1), ('production', 1), ('intended', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: NORTRIPTYLINE HCL, Capsule, 10 mg may have potentially been mislabeled as the following drug: VALSARTAN, Tablet, 80 mg, NDC 00078035834, Pedigree: AD70585_1, EXP: 5/29/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('capsule', 1), ('pedigree', 1), ('tablet', 1), ('valsartan', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('ad70585_1', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: Out of Specification (OOS) for potency at the 6-month stability time point.\n",
"top 10 keywords: [('point', 1), ('potency', 1), ('stability', 1), ('drug', 1), ('subpotent', 1), ('specification', 1), ('time', 1), ('6-month', 1), ('oos', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Products: A lot of raw material used in the manufacture of Ranitidine was positive for Pseudomonas sp. \n",
"top 10 keywords: [('sp', 1), ('products', 1), ('microbial', 1), ('non-sterile', 1), ('material', 1), ('pseudomonas', 1), ('ranitidine', 1), ('manufacture', 1), ('contamination', 1), ('positive', 1)]\n",
"---\n",
"reason_for_recall : Superpotent Drug: Product contains twice the stated amount of midazolam.\n",
"top 10 keywords: [('drug', 1), ('amount', 1), ('midazolam', 1), ('twice', 1), ('stated', 1), ('product', 1), ('superpotent', 1), ('contains', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility and Stability Data does not Support Expiry: recent inspection observations associated with certain quality control procedures that present a risk to sterility and quality assurance.\n",
"top 10 keywords: [('assurance', 2), ('sterility', 2), ('quality', 2), ('recent', 1), ('certain', 1), ('procedures', 1), ('data', 1), ('lack', 1), ('associated', 1), ('inspection', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: Green Valley Drugs received positive sterility results from their testing lab on two lots of Methylprednisolone Preservative Free 40 mg/mL injectable suspension and one lot of Cyanocobalamin 1000 mcg/mL injection, 30 mL MDV.\n",
"top 10 keywords: [('preservative', 1), ('mcg/ml', 1), ('lots', 1), ('sterility', 1), ('green', 1), ('lab', 1), ('suspension', 1), ('injection', 1), ('positive', 1), ('injectable', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: The product lots are being recalled due to laboratory results (from a contract lab) indicating microbial contamination. The FDA was concerned test results obtained from the recalling firm's contract testing lab may not be reliable. Hence the sterility of the products cannot be assured.\n",
"top 10 keywords: [('sterility', 2), ('lab', 2), ('results', 2), ('contract', 2), ('assured', 1), ('microbial', 1), ('test', 1), ('firm', 1), ('contamination', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; CHOLECALCIFEROL, Tablet, 2000 units may be potentially mislabeled as PYRIDOXINE HCL, Tablet, 50 mg, NDC 00904052060, Pedigree: AD46312_34, EXP: 5/16/2014; PRENATAL MULTIVITAMIN/MULTIMINERAL, Tablet, NDC 13811051410, Pedigree: AD65314_1, EXP: 5/24/2014; RANOLAZINE ER, Tablet, 500 mg, NDC 61958100301, Pedigree: W003538, EXP: 6/21/2014; LEVOTHYROXINE SODIUM, Tablet, 175 \n",
"top 10 keywords: [('tablet', 5), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('mg', 2), ('ad46312_34', 1), ('levothyroxine', 1), ('ranolazine', 1), ('w003538', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LIOTHYRONINE SODIUM, Tablet, 25 mcg may have potentially been mislabeled as one of the following drugs: LEVOTHYROXINE SODIUM, Tablet, 175 mcg, NDC 00378181701, Pedigree: W003151, EXP: 6/13/2014; HYOSCYAMINE SULFATE SL, Tablet, 0.125 mg, NDC 00574025001, Pedigree: W003000, EXP: 6/11/2014. \n",
"top 10 keywords: [('tablet', 3), ('mcg', 2), ('exp', 2), ('pedigree', 2), ('sodium', 2), ('ndc', 2), ('hyoscyamine', 1), ('liothyronine', 1), ('levothyroxine', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Failed Moisture Limit; Out of Specification (OOS) results were obtained for moisture content during stability testing at the 12 month time point, controlled room temperature conditions.\n",
"top 10 keywords: [('moisture', 2), ('temperature', 1), ('room', 1), ('controlled', 1), ('testing', 1), ('point', 1), ('conditions', 1), ('specification', 1), ('limit', 1), ('results', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: identified as dried skin.\n",
"top 10 keywords: [('presence', 1), ('dried', 1), ('skin', 1), ('particulate', 1), ('matter', 1), ('identified', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Not Elsewhere Classified: Label indicates that the product contains Vitamin B12 (12 micrograms) on the Supplement Facts panel, however, the formulation of this product does not contain Vitamin B12.\n",
"top 10 keywords: [('b12', 2), ('vitamin', 2), ('product', 2), ('however', 1), ('facts', 1), ('contain', 1), ('classified', 1), ('supplement', 1), ('elsewhere', 1), ('indicates', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Exp Date: Greenstone LLC is recalling Nifedipine Extended Release tablets (90mg). The expiration date on the package is 48 months instead of 36 months. \n",
"top 10 keywords: [('months', 2), ('date', 2), ('greenstone', 1), ('release', 1), ('tablets', 1), ('exp', 1), ('90mg', 1), ('missing', 1), ('labeling', 1), ('incorrect', 1)]\n",
"---\n",
"reason_for_recall : Temperature Abuse: Products experienced uncontrolled temperature excursions during transit.\n",
"top 10 keywords: [('temperature', 2), ('excursions', 1), ('transit', 1), ('uncontrolled', 1), ('abuse', 1), ('products', 1), ('experienced', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulates; may contain glass particles\n",
"top 10 keywords: [('presence', 1), ('glass', 1), ('contain', 1), ('particulates', 1), ('may', 1), ('particles', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: particulate matter identified as fibers and/or plastics\n",
"top 10 keywords: [('particulate', 2), ('matter', 2), ('presence', 1), ('fibers', 1), ('plastics', 1), ('and/or', 1), ('identified', 1)]\n",
"---\n",
"reason_for_recall : Failed dissolution specifications: Glipizide 2.5 mg ER Tablets exceeded dissolution specification rates for the 10 hour testing point.\n",
"top 10 keywords: [('dissolution', 2), ('rates', 1), ('tablets', 1), ('exceeded', 1), ('mg', 1), ('specification', 1), ('specifications', 1), ('glipizide', 1), ('hour', 1), ('er', 1)]\n",
"---\n",
"reason_for_recall : Crystallization; crystallized nimodipine\n",
"top 10 keywords: [('crystallization', 1), ('nimodipine', 1), ('crystallized', 1)]\n",
"---\n",
"reason_for_recall : Failed impurities/degradation: out of specification result for impurity secorapamycin.\n",
"top 10 keywords: [('secorapamycin', 1), ('failed', 1), ('impurity', 1), ('result', 1), ('impurities/degradation', 1), ('specification', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: FDA analyses detected the presence of phenolphthalein, N-di-Desmethylsibutramine, and trace amounts of sibutramine and N-Desmethylsibutramine. Sibutramine and phenolphthalein were previously available drug products but were removed from the U.S. market making these products unapproved new drugs.\n",
"top 10 keywords: [('phenolphthalein', 2), ('sibutramine', 2), ('products', 2), ('drug', 1), ('presence', 1), ('previously', 1), ('without', 1), ('nda/anda', 1), ('making', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: VALSARTAN, Tablet, 40 mg may have potentially been mislabeled as one of the following drugs: VALSARTAN, Tablet, 80 mg, NDC 00078035834, Pedigree: AD52372_4, EXP: 5/17/2014; ZINC SULFATE, Capsule, 50 mg, NDC 00904533260, Pedigree: AD30994_8, EXP: 5/9/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('valsartan', 2), ('ndc', 2), ('exp', 2), ('mislabeled', 1), ('capsule', 1), ('mixup', 1), ('ad30994_8', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Exp. Date\n",
"top 10 keywords: [('incorrect', 1), ('missing', 1), ('exp', 1), ('date', 1), ('and/or', 1), ('lot', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Pharmaceutical for injection was not manufactured according to Good Manufacturing Procedures.\n",
"top 10 keywords: [('pharmaceutical', 1), ('manufactured', 1), ('deviations', 1), ('procedures', 1), ('according', 1), ('cgmp', 1), ('injection', 1), ('good', 1), ('manufacturing', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; ZONISAMIDE Capsule, 100 mg may be potentially mislabeled as PHYTONADIONE, Tablet, 5 mg, NDC 25010040515, Pedigree: W003737, EXP: 5/31/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('zonisamide', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; ESTERIFIED ESTROGENS, Tablet, 0.625 mg may be potentially mislabeled as ETODOLAC, Tablet, 400 mg, NDC 51672401801, Pedigree: W003734, EXP: 6/26/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1), ('estrogens', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; LACTOBACILLUS ACIDOPHILUS Capsule may be potentially mislabeled as CHOLECALCIFEROL, Tablet, 2000 units, NDC 00904615760, Pedigree: AD65311_1, EXP: 5/24/2014; PANCRELIPASE DR, Capsule, 24000 /76000 /120000 USP units, NDC 00032122401, Pedigree: AD65457_4, EXP: 5/24/2014. \n",
"top 10 keywords: [('pedigree', 2), ('exp', 2), ('units', 2), ('capsule', 2), ('ndc', 2), ('mislabeled', 1), ('tablet', 1), ('mixup', 1), ('dr', 1), ('acidophilus', 1)]\n",
"---\n",
"reason_for_recall : Lack of Sterility Assurance: The product has the potential to leak at the administrative port.\n",
"top 10 keywords: [('lack', 1), ('assurance', 1), ('port', 1), ('product', 1), ('leak', 1), ('potential', 1), ('administrative', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; ATENOLOL, Tablet, 12.5 mg (1/2 of 25 mg) may be potentially mislabeled as VITAMIN B COMPLEX WITH C/FOLIC ACID, Tablet, NDC 60258016001, Pedigree: AD73652_19, EXP: 5/30/2014; PIROXICAM, Capsule, 10 mg, NDC 00093075601, Pedigree: AD21836_1, EXP: 3/31/2014. \n",
"top 10 keywords: [('mg', 3), ('pedigree', 2), ('tablet', 2), ('exp', 2), ('ndc', 2), ('atenolol', 1), ('mislabeled', 1), ('mixup', 1), ('b', 1), ('vitamin', 1)]\n",
"---\n",
"reason_for_recall : Failed impurities/degradation specifications: product was out of specification for unknown impurity at the 9 month stability time point\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('stability', 1), ('time', 1), ('impurity', 1), ('product', 1), ('specification', 1), ('unknown', 1), ('month', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications; 18 month stability time point\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('stability', 1), ('time', 1), ('month', 1), ('dissolution', 1), ('point', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; PHOSPHORUS Tablet, 250 mg may be potentially mislabeled as CITALOPRAM, Tablet, 10 mg, NDC 57664050788, Pedigree: AD56921_1, EXP: 5/21/2014; VENLAFAXINE HCL, Tablet, 75 mg, NDC 00093738201, Pedigree: W002533, EXP: 2/28/2014; NITROFURANTOIN MACROCRYSTALS, Capsule, 50 mg, NDC 47781030701, Pedigree: AD25452_4, EXP: 5/3/2014; traZODone HCl, Tablet, 50 mg, NDC 50111043303, P\n",
"top 10 keywords: [('mg', 5), ('tablet', 4), ('ndc', 4), ('exp', 3), ('pedigree', 3), ('hcl', 2), ('ad56921_1', 1), ('venlafaxine', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Impurities/Degradation Products: High Out of Specification results for a known impurity resulted at the 12-month room temperature time point.\n",
"top 10 keywords: [('resulted', 1), ('impurities/degradation', 1), ('known', 1), ('products', 1), ('specification', 1), ('12-month', 1), ('time', 1), ('results', 1), ('high', 1), ('temperature', 1)]\n",
"---\n",
"reason_for_recall : Glutathione 100 mg/mL injectable human drug is recalled due to Out Of Specification results or potential bacterial contamination and it was reported as passing by a contract laboratory. \n",
"top 10 keywords: [('drug', 1), ('bacterial', 1), ('mg/ml', 1), ('human', 1), ('due', 1), ('specification', 1), ('reported', 1), ('potential', 1), ('recalled', 1), ('results', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: Out of specification result for pramoxine hydrochloride\n",
"top 10 keywords: [('subpotent', 1), ('pramoxine', 1), ('drug', 1), ('result', 1), ('specification', 1), ('hydrochloride', 1)]\n",
"---\n",
"reason_for_recall : Subpotent; some patches may not contain fentanyl gel \n",
"top 10 keywords: [('subpotent', 1), ('patches', 1), ('contain', 1), ('gel', 1), ('fentanyl', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: Tablets are being recalled due to gray defects identified in the tablets.\n",
"top 10 keywords: [('tablets', 2), ('substance', 1), ('presence', 1), ('gray', 1), ('due', 1), ('defects', 1), ('identified', 1), ('recalled', 1), ('foreign', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility\n",
"top 10 keywords: [('lack', 1), ('assurance', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Cylinders filled using out of date gauges.\n",
"top 10 keywords: [('deviations', 1), ('date', 1), ('using', 1), ('cgmp', 1), ('gauges', 1), ('filled', 1), ('cylinders', 1)]\n",
"---\n",
"reason_for_recall : Incorrect/ Undeclared Excipients: NyQuil Liquid Original bottles were inadvertently overwrapped with NyQuil Liquid Cherry information as a result the outer wrap does not correctly identify color additives, particularly FD&C Yellow No. 6 and FD&C Yellow 10.\n",
"top 10 keywords: [('nyquil', 2), ('fd', 2), ('c', 2), ('yellow', 2), ('liquid', 2), ('bottles', 1), ('particularly', 1), ('wrap', 1), ('inadvertently', 1), ('incorrect/', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: Fragments of wood found when the product was extruded onto a toothbrush.\n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('wood', 1), ('found', 1), ('fragments', 1), ('product', 1), ('extruded', 1), ('onto', 1), ('foreign', 1), ('toothbrush', 1)]\n",
"---\n",
"reason_for_recall : Lack of Sterility Assurance.\n",
"top 10 keywords: [('lack', 1), ('assurance', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Failed Content Uniformity Specifications; Dry mix failed blend uniformity.\n",
"top 10 keywords: [('failed', 2), ('uniformity', 2), ('specifications', 1), ('content', 1), ('blend', 1), ('mix', 1), ('dry', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: All unexpired sterile compounded human and veterinary products are being recalled because they were compounded in the same environment and under the same practices as another product found to be non-sterile and therefore sterility cannot be assured.\n",
"top 10 keywords: [('sterility', 2), ('compounded', 2), ('assured', 1), ('another', 1), ('non-sterile', 1), ('lack', 1), ('human', 1), ('veterinary', 1), ('assurance', 1), ('products', 1)]\n",
"---\n",
"reason_for_recall : Cross contamination with other products: metronidazole\n",
"top 10 keywords: [('cross', 1), ('metronidazole', 1), ('products', 1), ('contamination', 1)]\n",
"---\n",
"reason_for_recall : Superpotent (Multiple Ingredient) Drug: Confirmed customer complaints of oversized tablets resulting in superpotent assays of both the hydrocodone and acetaminophen components. \n",
"top 10 keywords: [('superpotent', 2), ('drug', 1), ('confirmed', 1), ('components', 1), ('multiple', 1), ('tablets', 1), ('acetaminophen', 1), ('hydrocodone', 1), ('assays', 1), ('resulting', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; ETODOLAC, Tablet, 400 mg may be potentially mislabeled as PANCRELIPASE DR, Capsule, 12000 /38000 /60000 USP units, NDC 00032121201, Pedigree: W003731, EXP: 6/26/2014.\n",
"top 10 keywords: [('mislabeled', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('units', 1), ('dr', 1), ('mg', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: Pharmacist complaint of an excessive amount of broken and/or chipped tablets in the bottle. \n",
"top 10 keywords: [('tablets', 1), ('complaint', 1), ('broken', 1), ('amount', 1), ('excessive', 1), ('pharmacist', 1), ('chipped', 1), ('specifications', 1), ('failed', 1), ('tablet/capsule', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: This recall is being carried out due to an out of specification result for appearance.\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('tablet/capsule', 1), ('result', 1), ('specification', 1), ('due', 1), ('recall', 1), ('carried', 1), ('appearance', 1)]\n",
"---\n",
"reason_for_recall : Chemical Contamination: Recall due to a customer complaint trend regarding capsule odor. \n",
"top 10 keywords: [('recall', 1), ('contamination', 1), ('odor', 1), ('due', 1), ('complaint', 1), ('customer', 1), ('regarding', 1), ('chemical', 1), ('capsule', 1), ('trend', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System: Some canisters may not contain sufficient propellant to deliver the labeled claim of 200 actuations through the end of shelf life.\n",
"top 10 keywords: [('life', 1), ('actuations', 1), ('labeled', 1), ('deliver', 1), ('end', 1), ('propellant', 1), ('defective', 1), ('sufficient', 1), ('canisters', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility:All sterile products compounded, repackaged, and distributed by this compounding pharmacy due to lack of sterility assurance and concerns associated with the quality control processes. \n",
"top 10 keywords: [('assurance', 2), ('sterility', 2), ('lack', 2), ('control', 1), ('pharmacy', 1), ('due', 1), ('products', 1), ('compounding', 1), ('quality', 1), ('associated', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: all sterile products compounded, repackaged, and distributed by this compounding pharmacy due to lack of sterility assurance and concerns associated with the quality control processes.\n",
"top 10 keywords: [('assurance', 2), ('sterility', 2), ('lack', 2), ('control', 1), ('pharmacy', 1), ('due', 1), ('products', 1), ('compounding', 1), ('quality', 1), ('associated', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; LORATADINE Tablet, 10 mg may be potentially mislabeled as GLYCOPYRROLATE, Tablet, 2 mg, NDC 00603318121, Pedigree: W002650, EXP: 6/5/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 05445800022, Pedigree: AD21858_4, EXP: 5/1/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 00904404360, Pedigree: W003217, EXP: 6/14/2014. \n",
"top 10 keywords: [('mg', 4), ('pedigree', 3), ('exp', 3), ('ndc', 3), ('tablet', 2), ('acid', 2), ('fatty', 2), ('omega-3', 2), ('capsule', 2), ('mislabeled', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LOSARTAN POTASSIUM, Tablet, 50 mg may have potentially been mislabeled as the following drug: ATORVASTATIN CALCIUM, Tablet, 80 mg, NDC 60505267109, Pedigree: AD21965_4, EXP: 5/1/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('atorvastatin', 1), ('mixup', 1), ('potentially', 1), ('calcium', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; metFORMIN HCl Tablet, 500 mg may be potentially mislabeled as OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 40985022921, Pedigree: AD32742_1, EXP: 5/1/2014.\n",
"top 10 keywords: [('mg', 2), ('metformin', 1), ('mislabeled', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: TRI-BUFFERED ASPIRIN, Tablet, 325 mg may have potentially been mislabeled as the following drug: ISOMETHEPTENE MUCATE/ DICHLORALPHENAZONE/APAP, Capsule, 65 mg/100 mg/325 mg, NDC 44183044001, Pedigree: W003596, EXP: 5/31/2014. \n",
"top 10 keywords: [('mg', 2), ('drug', 1), ('mg/100', 1), ('mixup', 1), ('mucate/', 1), ('may', 1), ('labeling', 1), ('following', 1), ('aspirin', 1), ('mislabeled', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Exp Date: Incorrect lot number, 327B160012, appears on the case label, the correct lot number, 327B16002 appears on the immediate container.\n",
"top 10 keywords: [('lot', 3), ('appears', 2), ('incorrect', 2), ('number', 2), ('container', 1), ('immediate', 1), ('exp', 1), ('327b160012', 1), ('label', 1), ('327b16002', 1)]\n",
"---\n",
"reason_for_recall : Defective Container; damaged blister units \n",
"top 10 keywords: [('units', 1), ('container', 1), ('damaged', 1), ('blister', 1), ('defective', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Tablets/Capsules: Pfizer is recalling 50 mg Pristiq (desvenlafaxine) extended release tablets because a single Pristiq 100 mg tablet was found in a bottle of 50 mg Pristiq. \n",
"top 10 keywords: [('mg', 3), ('pristiq', 3), ('release', 1), ('presence', 1), ('tablet', 1), ('found', 1), ('tablets/capsules', 1), ('tablets', 1), ('pfizer', 1), ('foreign', 1)]\n",
"---\n",
"reason_for_recall : Good Manufacturing Practices Deviations: The product has an active pharmaceutical ingredient from an unapproved source.\n",
"top 10 keywords: [('pharmaceutical', 1), ('deviations', 1), ('practices', 1), ('active', 1), ('good', 1), ('ingredient', 1), ('product', 1), ('unapproved', 1), ('source', 1), ('manufacturing', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications; Out of specification for lactol and total impurities.\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('total', 1), ('specification', 1), ('impurities', 1), ('lactol', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: The known impurity went out of specification at 12 months stability point. \n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurity', 1), ('stability', 1), ('known', 1), ('point', 1), ('impurities/degradation', 1), ('specification', 1), ('went', 1), ('months', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: low out of specification dissolution results found during stability testing.\n",
"top 10 keywords: [('dissolution', 2), ('results', 1), ('low', 1), ('specifications', 1), ('failed', 1), ('found', 1), ('specification', 1), ('testing', 1), ('stability', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: identified as a cloth fiber.\n",
"top 10 keywords: [('presence', 1), ('fiber', 1), ('particulate', 1), ('matter', 1), ('identified', 1), ('cloth', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Product(s): The product was found to be contaminated with Bulkholderia sp.\n",
"top 10 keywords: [('product', 2), ('contaminated', 1), ('found', 1), ('sp', 1), ('microbial', 1), ('non-sterile', 1), ('bulkholderia', 1), ('contamination', 1)]\n",
"---\n",
"reason_for_recall : Super-Potent Drug: Out of Specification Assay test results were reported for stability samples.\n",
"top 10 keywords: [('super-potent', 1), ('drug', 1), ('assay', 1), ('stability', 1), ('results', 1), ('test', 1), ('specification', 1), ('reported', 1), ('samples', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Sterility of product is not assured.\n",
"top 10 keywords: [('sterility', 2), ('product', 1), ('assured', 1), ('lack', 1), ('assurance', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance: Uncharacteristic black spots identified as a food grade lubricant with trace amounts of foreign particulates and stainless steel inclusions have been found in the tablets.\n",
"top 10 keywords: [('foreign', 2), ('inclusions', 1), ('substance', 1), ('presence', 1), ('found', 1), ('steel', 1), ('amounts', 1), ('spots', 1), ('tablets', 1), ('grade', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; FLECAINIDE ACETATE Tablet, 50 mg may be potentially mislabeled as VITAMIN B COMPLEX W/C, Tablet, NDC 00904026013, Pedigree: AD46419_7, EXP: 5/16/2014.\n",
"top 10 keywords: [('tablet', 2), ('mislabeled', 1), ('ad46419_7', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('flecainide', 1), ('vitamin', 1), ('mg', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Superpotent Drug: Out Of Specification (OOS) result for Assay.\n",
"top 10 keywords: [('assay', 1), ('drug', 1), ('result', 1), ('specification', 1), ('superpotent', 1), ('oos', 1)]\n",
"---\n",
"reason_for_recall : Defective container; lidding deformity allows the contained product to transpire causing potential viscosity and assay failures. The viscosity and assay failures were due to the loss of moisture. The loss of moisture caused the viscosity to increase and assay to increase relative to the sample volume\n",
"top 10 keywords: [('assay', 3), ('viscosity', 3), ('failures', 2), ('increase', 2), ('moisture', 2), ('loss', 2), ('lidding', 1), ('causing', 1), ('due', 1), ('container', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: Products were found to contain undeclared sibutramine, the active ingredient in a previously approved FDA product indicated for weight loss but removed from the market for safety reasons, making these products unapproved new drugs.\n",
"top 10 keywords: [('approved', 2), ('products', 2), ('product', 1), ('previously', 1), ('without', 1), ('nda/anda', 1), ('active', 1), ('undeclared', 1), ('making', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; buPROPion HCl ER Tablet, 200 mg may be potentially mislabeled as AMANTADINE HCL, Capsule, 100 mg, NDC 00781204801, Pedigree: W002726, EXP: 6/6/2014.\n",
"top 10 keywords: [('hcl', 2), ('mg', 2), ('mislabeled', 1), ('ndc', 1), ('tablet', 1), ('w002726', 1), ('mixup', 1), ('bupropion', 1), ('potentially', 1), ('pedigree', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA: This recall is being initiated because of changes to the dissolution profile in distributed lots resulting from a manufacturing site change. There is currently no approved application supporting the alternate manufacturing site. \n",
"top 10 keywords: [('approved', 2), ('site', 2), ('manufacturing', 2), ('marketed', 1), ('supporting', 1), ('recall', 1), ('changes', 1), ('initiated', 1), ('without', 1), ('nda/anda', 1)]\n",
"---\n",
"reason_for_recall : Subpotent (Single Ingredient Drug): Distribution of product that did not meet specifications. \n",
"top 10 keywords: [('subpotent', 1), ('specifications', 1), ('distribution', 1), ('drug', 1), ('ingredient', 1), ('product', 1), ('meet', 1), ('single', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations; deficiencies at the manufacturer may result in assay or content uniformity failures\n",
"top 10 keywords: [('assay', 1), ('content', 1), ('deviations', 1), ('cgmp', 1), ('result', 1), ('failures', 1), ('uniformity', 1), ('manufacturer', 1), ('may', 1), ('deficiencies', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: chlordiazePOXIDE HCl, Capsule, 25 mg may have potentially been mislabeled as one of the following drugs: FLECAINIDE ACETATE, Tablet, 50 mg, NDC 65162064110, Pedigree: AD46414_16, EXP: 5/16/2014; CALCIUM ACETATE, Capsule, 667 mg, NDC 00054008826, Pedigree: AD49463_1, EXP: 5/16/2014; LACTOBACILLUS GG, Capsule, 0 mg, NDC 49100036374, Pedigree: W003173, EXP: 6/13/2014. \n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('capsule', 3), ('pedigree', 3), ('ndc', 3), ('acetate', 2), ('may', 1), ('labeling', 1), ('w003173', 1), ('following', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: VITAMIN B COMPLEX W/C, Tablet, 0 mg may have potentially been mislabeled as the following drug: CINACALCET HCL, Tablet, 30 mg, NDC 55513007330, Pedigree: AD54516_4, EXP: 5/20/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('b', 1), ('vitamin', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Pharmacy Creations is recalling Lidocaine 1% PF Sterile Injection and EDTA disodium 150 mg/mL due to lack of assurance of sterility.\n",
"top 10 keywords: [('assurance', 2), ('sterility', 2), ('lack', 2), ('lidocaine', 1), ('pharmacy', 1), ('edta', 1), ('due', 1), ('pf', 1), ('creations', 1), ('disodium', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: One lot Xanax (alprazolam) 0.25 mg tablets, was found to be below specification for assay (potency) at the 46 month time point.\n",
"top 10 keywords: [('assay', 1), ('subpotent', 1), ('alprazolam', 1), ('found', 1), ('drug', 1), ('specification', 1), ('tablets', 1), ('one', 1), ('xanax', 1), ('potency', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: particulate matter identified as fibers and/or plastics.\n",
"top 10 keywords: [('particulate', 2), ('matter', 2), ('presence', 1), ('fibers', 1), ('plastics', 1), ('and/or', 1), ('identified', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: During routine stability testing one tablet was found with tablet weight below specification.\n",
"top 10 keywords: [('tablet', 2), ('found', 1), ('subpotent', 1), ('stability', 1), ('weight', 1), ('drug', 1), ('specification', 1), ('testing', 1), ('one', 1), ('routine', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: There is potential that Abbott's third party manufacturer, Hospira, may have applied a foreign (incorrect) stopper to vials in a specific lot of Zemplar Injection.\n",
"top 10 keywords: [('hospira', 1), ('specific', 1), ('lot', 1), ('cgmp', 1), ('vials', 1), ('stopper', 1), ('foreign', 1), ('applied', 1), ('potential', 1), ('incorrect', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications:There is a potential for the tablets to be out of specification for impurities throughout shelf life. \n",
"top 10 keywords: [('tablets', 1), ('failed', 1), ('impurities/degradation', 1), ('throughout', 1), ('shelf', 1), ('specification', 1), ('impurities', 1), ('specifications', 1), ('life', 1), ('potential', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; D-ALPHA TOCOPHERYL ACETATE Capsule, 400 units may be potentially mislabeled as CYANOCOBALAMIN, Tablet, 500 mcg, NDC 00536355101, Pedigree: AD52993_19, EXP: 5/20/2014.\n",
"top 10 keywords: [('mislabeled', 1), ('d-alpha', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('units', 1), ('mcg', 1), ('potentially', 1), ('cyanocobalamin', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Product sterility cannot be guaranteed.\n",
"top 10 keywords: [('sterility', 2), ('product', 1), ('guaranteed', 1), ('lack', 1), ('assurance', 1)]\n",
"---\n",
"reason_for_recall : Discoloration: Ethambutol Tablets USP 400 mg have tablets cores that may be discolored.\n",
"top 10 keywords: [('tablets', 2), ('ethambutol', 1), ('discolored', 1), ('usp', 1), ('discoloration', 1), ('mg', 1), ('cores', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Firm is recalling product due to an impurity out-of-specification result.\n",
"top 10 keywords: [('out-of-specification', 1), ('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('result', 1), ('recalling', 1), ('impurity', 1), ('product', 1), ('firm', 1), ('due', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Nova Products, Inc. of Aston, Pennsylvania is voluntarily recalling XZEN GOLD because FDA laboratory analysis determined they contain undeclared amounts of sildenafil and tadalafil, active ingredients of FDA-approved drugs used to treat erectile dysfunction. \n",
"top 10 keywords: [('analysis', 1), ('without', 1), ('nda/anda', 1), ('inc.', 1), ('nova', 1), ('dysfunction', 1), ('undeclared', 1), ('fda-approved', 1), ('gold', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : Discoloration\n",
"top 10 keywords: [('discoloration', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: failed at the 3 and 6 month stability time points.\n",
"top 10 keywords: [('subpotent', 1), ('failed', 1), ('stability', 1), ('drug', 1), ('month', 1), ('time', 1), ('points', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter and Lack of Assurance of Sterility: The firm received a complaint for customer of presence of particulate matter, leaky containers, and missing port protectors. \n",
"top 10 keywords: [('presence', 2), ('particulate', 2), ('matter', 2), ('received', 1), ('lack', 1), ('assurance', 1), ('port', 1), ('complaint', 1), ('firm', 1), ('missing', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Products: Arthritis Relief Cream failed microbiological specifications.\n",
"top 10 keywords: [('microbiological', 1), ('specifications', 1), ('failed', 1), ('products', 1), ('microbial', 1), ('non-sterile', 1), ('contamination', 1), ('cream', 1), ('arthritis', 1), ('relief', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Capsules/Tablets: Benzonatate 100 mg co-mingled with benzonatate 200 mg capsules. \n",
"top 10 keywords: [('mg', 2), ('benzonatate', 2), ('capsules', 1), ('capsules/tablets', 1), ('co-mingled', 1), ('presence', 1), ('foreign', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; METOPROLOL SUCCINATE ER, Tablet, 200 mg may be potentially mislabeled as Pedigree: AD73652_13, EXP: 5/30/2014. \n",
"top 10 keywords: [('mislabeled', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('mg', 1), ('potentially', 1), ('may', 1), ('labeling', 1), ('ad73652_13', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: The product has the potential for solution to leak at or near the administrative port of the primary container.\n",
"top 10 keywords: [('lack', 1), ('assurance', 1), ('port', 1), ('container', 1), ('primary', 1), ('leak', 1), ('potential', 1), ('solution', 1), ('near', 1), ('product', 1)]\n",
"---\n",
"reason_for_recall : Stability Data Does Not Support Expiry: potential loss of potency in drugs packaged and stored in syringes.\n",
"top 10 keywords: [('potency', 1), ('data', 1), ('stability', 1), ('support', 1), ('syringes', 1), ('drugs', 1), ('expiry', 1), ('loss', 1), ('potential', 1), ('stored', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Error On Declared Strength: Trelstar 11.25 mg labeled carton/kit contained a vial labeled as 3.75 mg instead of a vial being labeled as 11.25mg.\n",
"top 10 keywords: [('labeled', 3), ('mg', 2), ('vial', 2), ('error', 1), ('trelstar', 1), ('declared', 1), ('labeling', 1), ('strength', 1), ('11.25mg', 1), ('label', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; PANTOPRAZOLE SODIUM DR Tablet, 40 mg may be potentially mislabeled as SENNOSIDES, Tablet, 8.6 mg, NDC 60258095001, Pedigree: AD37063_17, EXP: 5/13/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('dr', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: NIACIN ER, Tablet, 500 mg may have potentially been mislabeled as one of the following drugs: CHOLECALCIFEROL, Capsule, 50000 units, NDC 53191036201, Pedigree: AD60268_4, EXP: 5/22/2014; METAXALONE, Tablet, 800 mg, NDC 64720032110, Pedigree: W003738, EXP: 6/26/2014; CRANBERRY EXTRACT/VITAMIN C, Capsule, 450 mg/125 mg, NDC 31604014271, Pedigree: W003716, EXP: 6/26/2014; C\n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('mg', 3), ('ndc', 3), ('c', 2), ('tablet', 2), ('capsule', 2), ('cranberry', 1), ('w003738', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: out of specification impurity test results. \n",
"top 10 keywords: [('results', 1), ('specifications', 1), ('failed', 1), ('impurity', 1), ('test', 1), ('impurities/degradation', 1), ('specification', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Firm voluntarily recalled products due to out-of-specification results for an unknown impurity at or near the expiration (24-month).\n",
"top 10 keywords: [('out-of-specification', 1), ('impurities/degradation', 1), ('24-month', 1), ('products', 1), ('firm', 1), ('due', 1), ('voluntarily', 1), ('recalled', 1), ('results', 1), ('specifications', 1)]\n",
"---\n",
"reason_for_recall : Superpotent Drug: Qualitest Pharmaceuticals is initiating a recall of three flavors of Acetaminophen Oral Suspension Liquid 160mg/5mL for failure of the product assay at the 12 month timepoint. \n",
"top 10 keywords: [('three', 1), ('drug', 1), ('recall', 1), ('160mg/5ml', 1), ('assay', 1), ('flavors', 1), ('acetaminophen', 1), ('pharmaceuticals', 1), ('month', 1), ('oral', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; potential that a low level of endotoxins may be present in the diluent vials.\n",
"top 10 keywords: [('low', 1), ('present', 1), ('lack', 1), ('assurance', 1), ('diluent', 1), ('vials', 1), ('level', 1), ('endotoxins', 1), ('potential', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA; product found to contain dimethazine which is a steroid and/or steroid-like drug ingredient, making it an unapproved new drug\n",
"top 10 keywords: [('drug', 2), ('marketed', 1), ('found', 1), ('approved', 1), ('without', 1), ('steroid-like', 1), ('contain', 1), ('steroid', 1), ('unapproved', 1), ('making', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Lots identified in this recall notification may contain small particulates. \n",
"top 10 keywords: [('recall', 1), ('presence', 1), ('contain', 1), ('lots', 1), ('may', 1), ('small', 1), ('notification', 1), ('particulate', 1), ('matter', 1), ('identified', 1)]\n",
"---\n",
"reason_for_recall : Superpotent (Multiple Ingredient) Drug: Complaint received of oversized tablets.\n",
"top 10 keywords: [('received', 1), ('drug', 1), ('tablets', 1), ('complaint', 1), ('ingredient', 1), ('multiple', 1), ('superpotent', 1), ('oversized', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/1,110 mg may be potentially mislabeled as ACETAMINOPHEN, CHEW Tablet, 80 mg, NDC 00536323307, Pedigree: AD49399_1, EXP: 5/16/2014; LACTOBACILLUS GG, Capsule, NDC 49100036374, Pedigree: AD46300_11, EXP: 5/15/2014; MYCOPHENOLATE MOFETIL, Capsule, 250 mg, NDC 00781206701, Pedigree: AD65457_7, EXP: 5/24/2014. \n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('mg', 3), ('capsule', 3), ('ndc', 3), ('mycophenolate', 1), ('mg/1,110', 1), ('bicarbonate', 1), ('omeprazole/sodium', 1), ('ad65457_7', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter; report of visible particulates in the glass ampule\n",
"top 10 keywords: [('visible', 1), ('ampule', 1), ('glass', 1), ('report', 1), ('particulate', 1), ('presence', 1), ('particulates', 1), ('matter', 1)]\n",
"---\n",
"reason_for_recall : Superpotent Drug: High out of specification results for assay at the 6 month time point interval.\n",
"top 10 keywords: [('results', 1), ('drug', 1), ('high', 1), ('assay', 1), ('interval', 1), ('time', 1), ('specification', 1), ('superpotent', 1), ('month', 1), ('point', 1)]\n",
"---\n",
"reason_for_recall : Failed Stability Specification: out of specification result obtained for the Particle Size Distribution test during stability testing.\n",
"top 10 keywords: [('stability', 2), ('specification', 2), ('particle', 1), ('failed', 1), ('test', 1), ('result', 1), ('distribution', 1), ('size', 1), ('testing', 1), ('obtained', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Expiration Date; This recall is being initiated because the lot number and expiration date on the tube may not be legible.\n",
"top 10 keywords: [('expiration', 2), ('date', 2), ('lot', 2), ('recall', 1), ('initiated', 1), ('may', 1), ('missing', 1), ('labeling', 1), ('incorrect', 1), ('number', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; potential exposure to non-sterile lubricant during the filling process\n",
"top 10 keywords: [('filling', 1), ('process', 1), ('lubricant', 1), ('lack', 1), ('assurance', 1), ('non-sterile', 1), ('exposure', 1), ('potential', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: This product is being recalled due to an out of specification result for an impurity.\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('due', 1), ('result', 1), ('product', 1), ('specification', 1), ('impurity', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Tablet Separation: The manufacturer of Arthrotec had recalled the lots that were used to re-package this product because they may contain broken tablets.\n",
"top 10 keywords: [('broken', 1), ('tablet', 1), ('recalled', 1), ('arthrotec', 1), ('contain', 1), ('tablets', 1), ('may', 1), ('manufacturer', 1), ('lots', 1), ('re-package', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System: Firm recalled Guaifenesin liquid and Guaifenesin DM liquid due incorrect dose markings on the dosing cups. \n",
"top 10 keywords: [('liquid', 2), ('guaifenesin', 2), ('dosing', 1), ('due', 1), ('firm', 1), ('dose', 1), ('defective', 1), ('markings', 1), ('incorrect', 1), ('cups', 1)]\n",
"---\n",
"reason_for_recall : Crystallization; complaints received by the manufacturer of crystals forming in product\n",
"top 10 keywords: [('received', 1), ('product', 1), ('crystallization', 1), ('complaints', 1), ('forming', 1), ('crystals', 1), ('manufacturer', 1)]\n",
"---\n",
"reason_for_recall : Labeling; incorrect or missing insert; Warnings portion of the Package Insert is missing the warning statement: Anaphylaxis has been reported with urinary-derived hCG products.\u001d",
" \n",
"top 10 keywords: [('insert', 2), ('missing', 2), ('urinary-derived', 1), ('package', 1), ('products', 1), ('reported', 1), ('labeling', 1), ('statement', 1), ('incorrect', 1), ('warning', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Product is being recalled due to out of specification (above specification) result obtained at 6-hour dissolution time point during the 12-month stability testing.\n",
"top 10 keywords: [('specification', 2), ('dissolution', 2), ('due', 1), ('result', 1), ('12-month', 1), ('recalled', 1), ('specifications', 1), ('failed', 1), ('6-hour', 1), ('obtained', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications; 12 month stability testing.\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('stability', 1), ('month', 1), ('testing', 1)]\n",
"---\n",
"reason_for_recall : Failed pH Specification: It has been determined that the pH of the lots recalled, may not meet specification at expiry.\n",
"top 10 keywords: [('ph', 2), ('specification', 2), ('expiry', 1), ('failed', 1), ('determined', 1), ('recalled', 1), ('meet', 1), ('may', 1), ('lots', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Stainless steel in a chemical reactor dissolved into the API solution and was detected in the finished product.\n",
"top 10 keywords: [('dissolved', 1), ('api', 1), ('presence', 1), ('chemical', 1), ('detected', 1), ('particulate', 1), ('steel', 1), ('solution', 1), ('finished', 1), ('reactor', 1)]\n",
"---\n",
"reason_for_recall : Labeling Wrong Barcode; It may display wrong product code reflecting 0.9% Sodium Chloride Injection , USP 100 mL in MINI-BAG Plus container instead of 50 mL.\n",
"top 10 keywords: [('wrong', 2), ('ml', 2), ('plus', 1), ('chloride', 1), ('instead', 1), ('container', 1), ('mini-bag', 1), ('code', 1), ('sodium', 1), ('reflecting', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Shipment of product not approved for release.\n",
"top 10 keywords: [('release', 1), ('deviations', 1), ('approved', 1), ('product', 1), ('shipment', 1), ('cgmp', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: FDA lab results found undeclared API Fluoxetine in this dietary supplement.\n",
"top 10 keywords: [('marketed', 1), ('api', 1), ('found', 1), ('approved', 1), ('without', 1), ('nda/anda', 1), ('results', 1), ('undeclared', 1), ('fluoxetine', 1), ('lab', 1)]\n",
"---\n",
"reason_for_recall : Crystallization: Crystal precipitate formation and an increase in the number of complaints associated with a gritty, sand-like feeling in the eye.\n",
"top 10 keywords: [('associated', 1), ('formation', 1), ('sand-like', 1), ('gritty', 1), ('feeling', 1), ('crystal', 1), ('number', 1), ('increase', 1), ('crystallization', 1), ('precipitate', 1)]\n",
"---\n",
"reason_for_recall : Failed Stability Specifications; out of specification results at the 9 month stability time point for color, dissolution and related compounds. \n",
"top 10 keywords: [('stability', 2), ('compounds', 1), ('specification', 1), ('related', 1), ('results', 1), ('specifications', 1), ('failed', 1), ('time', 1), ('dissolution', 1), ('month', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: Product being recalled due to the potential presence of cracked or broken capsules. \n",
"top 10 keywords: [('cracked', 1), ('capsules', 1), ('specifications', 1), ('failed', 1), ('tablet/capsule', 1), ('presence', 1), ('product', 1), ('broken', 1), ('due', 1), ('potential', 1)]\n",
"---\n",
"reason_for_recall : Discoloration: presence of atypical yellow discoloration of the solution .\n",
"top 10 keywords: [('discoloration', 2), ('atypical', 1), ('presence', 1), ('yellow', 1), ('solution', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Product did not meet the criteria for container closure integrity testing during routine 24 month stability testing.\n",
"top 10 keywords: [('testing', 2), ('lack', 1), ('assurance', 1), ('integrity', 1), ('container', 1), ('meet', 1), ('sterility', 1), ('month', 1), ('closure', 1), ('routine', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix-Up: Bryant Ranch received Tevas venlafaxine hydrochloride extended-release tablets for repackaging, but labeled it incorrectly as the immediate release formulation. \n",
"top 10 keywords: [('received', 1), ('incorrectly', 1), ('tablets', 1), ('bryant', 1), ('release', 1), ('labeled', 1), ('hydrochloride', 1), ('venlafaxine', 1), ('ranch', 1), ('immediate', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Test Requirements\n",
"top 10 keywords: [('test', 1), ('failed', 1), ('dissolution', 1), ('requirements', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; ESZOPICLONE, Tablet, 3 mg may be potentially mislabeled as CHOLECALCIFEROL, Tablet, 1000 units, NDC 00904582460, Pedigree: W002779, EXP: 6/6/2014.\n",
"top 10 keywords: [('tablet', 2), ('mislabeled', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('eszopiclone', 1), ('units', 1), ('mg', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Products: Out of specification levels of the impurity m-chlorobenzoic acid were observed.\n",
"top 10 keywords: [('levels', 1), ('failed', 1), ('impurities/degradation', 1), ('products', 1), ('acid', 1), ('impurity', 1), ('specification', 1), ('observed', 1), ('m-chlorobenzoic', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; METOPROLOL TARTRATE, Tablet, 12.5 mg (1/2 of 25 mg) may be potentially mislabeled as PIOGLITAZONE, Tablet, 15 mg, NDC 00591320530, Pedigree: AD22845_1, EXP: 4/30/2014; LEVOTHYROXINE SODIUM, Tablet, 12.5 mcg (1/2 of 25 mcg), NDC 00527134101, Pedigree: AD73525_49, EXP: 5/30/2014. \n",
"top 10 keywords: [('tablet', 3), ('mg', 3), ('pedigree', 2), ('exp', 2), ('mcg', 2), ('ndc', 2), ('mislabeled', 1), ('tartrate', 1), ('ad73525_49', 1), ('mixup', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; FDA inspectional findings resulted in concerns associated with quality control procedures that impacted sterility assurance.\n",
"top 10 keywords: [('assurance', 2), ('sterility', 2), ('control', 1), ('lack', 1), ('associated', 1), ('procedures', 1), ('impacted', 1), ('resulted', 1), ('quality', 1), ('concerns', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; guaiFENesin ER, Tablet, 600 mg may be potentially mislabeled as MISOPROSTOL, Tablet, 200 mcg, NDC 59762500801, Pedigree: AD21965_13, EXP: 5/1/2014; TACROLIMUS, Capsule, 1 mg, NDC 00781210301, Pedigree: AD56917_7, EXP: 5/21/2014; LACTOBACILLUS GG, Capsule, NDC 49100036374, Pedigree: AD73627_17, EXP: 5/30/2014; LACTOBACILLUS GG, Capsule, NDC 49100036374, Pedigree: W003216\n",
"top 10 keywords: [('pedigree', 4), ('ndc', 4), ('exp', 3), ('capsule', 3), ('tablet', 2), ('gg', 2), ('mg', 2), ('lactobacillus', 2), ('misoprostol', 1), ('ad73627_17', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: TEMAZEPAM, Capsule, 7.5 mg may have potentially been mislabeled as one of the following drugs: CALCIUM CITRATE, Tablet, 200 mg Elemental Calcium, NDC 00904506260, Pedigree: AD28333_1, EXP: 5/8/2014; VALSARTAN, Tablet, 160 mg, NDC 00078035934, Pedigree: AD49414_7, EXP: 5/17/2014. \n",
"top 10 keywords: [('mg', 3), ('exp', 2), ('pedigree', 2), ('tablet', 2), ('calcium', 2), ('ndc', 2), ('ad28333_1', 1), ('valsartan', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect Instructions; RemedyRepack, Inc. a relabeler, is recalling these products due to incorrect storage instructions.\n",
"top 10 keywords: [('incorrect', 2), ('instructions', 2), ('due', 1), ('recalling', 1), ('products', 1), ('storage', 1), ('inc.', 1), ('relabeler', 1), ('remedyrepack', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix-Up; Some bottles of Tizanidine 4mg Tablets, had the incorrect manufacturer (Actavis) printed on the label.\n",
"top 10 keywords: [('label', 2), ('actavis', 1), ('mix-up', 1), ('tablets', 1), ('bottles', 1), ('manufacturer', 1), ('printed', 1), ('incorrect', 1), ('tizanidine', 1), ('4mg', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: SODIUM CHLORIDE, Tablet, 1 mg may have potentially been mislabeled as one of the following drugs: BISACODYL EC, Tablet, 5 mg, NDC 00904792760, Pedigree: AD34931_1, EXP: 5/9/2014; DUTASTERIDE, Capsule, 0.5 mg, NDC 00173071215, Pedigree: AD70633_1, EXP: 5/29/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 00904404360, Pedigree: W002509, EXP: 6/3/2014; SODIUM CHLORIDE, Tabl\n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('chloride', 2), ('tablet', 2), ('sodium', 2), ('capsule', 2), ('omega-3', 1), ('w002509', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: Dietary supplements contains undeclared sibutramine, desmethylsibutramine and phenolphthalein based on FDA sampling.\n",
"top 10 keywords: [('marketed', 1), ('phenolphthalein', 1), ('approved', 1), ('without', 1), ('nda/anda', 1), ('sampling', 1), ('undeclared', 1), ('dietary', 1), ('supplements', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: Product was found to contain undeclared diclofenac, a prescription non-steroidal anti-inflammatory drug, and chlorpheniramine, an over-the-counter antihistimine, making this an unapproved drug.\n",
"top 10 keywords: [('drug', 2), ('marketed', 1), ('found', 1), ('approved', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('unapproved', 1), ('diclofenac', 1), ('chlorpheniramine', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; PARoxetine HCl, Tablet, 10 mg may be potentially mislabeled as PANTOPRAZOLE SODIUM DR, Tablet, 20 mg, NDC 62175018046, Pedigree: AD52778_64, EXP: 5/20/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('paroxetine', 1), ('mislabeled', 1), ('pedigree', 1), ('ad52778_64', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('dr', 1)]\n",
"---\n",
"reason_for_recall : Misbranded\n",
"top 10 keywords: [('misbranded', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Missing Label; missing label on blister card \n",
"top 10 keywords: [('label', 2), ('missing', 2), ('blister', 1), ('card', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: PANCRELIPASE DR, Capsule, 24000 /76000 /120000 USP units may be potentially mislabeled as one of the following drugs: SERTRALINE HCL, Tablet, 50 mg, NDC 16714061204, Pedigree: AD70585_7, EXP: 5/29/2014; THYROID, Tablet, 60 mg, NDC 00456045901, Pedigree: W002848, EXP: 6/7/2014; CHOLECALCIFEROL, Tablet, 2000 units, NDC 00904615760, Pedigree: W003744, EXP: 6/26/2014; amLOD\n",
"top 10 keywords: [('pedigree', 3), ('tablet', 3), ('exp', 3), ('ndc', 3), ('units', 2), ('mg', 2), ('amlod', 1), ('mixup', 1), ('w003744', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA; FDA analysis found the product to contain Chlorzoxazone, Nefopam, Diclofenac, Ibuprofen, Naproxen, and Indomethacin \n",
"top 10 keywords: [('marketed', 1), ('chlorzoxazone', 1), ('analysis', 1), ('found', 1), ('approved', 1), ('ibuprofen', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('diclofenac', 1)]\n",
"---\n",
"reason_for_recall : Incorrect/ Undeclared Excipient: Contains undeclared benzyl alcohol.\n",
"top 10 keywords: [('undeclared', 2), ('incorrect/', 1), ('benzyl', 1), ('contains', 1), ('alcohol', 1), ('excipient', 1)]\n",
"---\n",
"reason_for_recall : Failed impurities/degradation specifications: Purity readings for oxygen were out of specification.\n",
"top 10 keywords: [('purity', 1), ('readings', 1), ('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('oxygen', 1), ('specification', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Missing Label\n",
"top 10 keywords: [('label', 1), ('missing', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System: Out of specification for z-statistic related to mechanical peel force.\n",
"top 10 keywords: [('peel', 1), ('mechanical', 1), ('delivery', 1), ('system', 1), ('related', 1), ('force', 1), ('specification', 1), ('defective', 1), ('z-statistic', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; METHYLERGONOVINE MALEATE Tablet, 0.2 mg may be potentially mislabeled as ISOSORBIDE MONONITRATE, Tablet, 20 mg, NDC 62175010701, Pedigree: AD52778_31, EXP: 5/20/2014; LEVOTHYROXINE SODIUM, Tablet, 88 mcg, NDC 00378180701, Pedigree: W003476, EXP: 6/20/2014. \n",
"top 10 keywords: [('tablet', 3), ('pedigree', 2), ('mg', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('maleate', 1), ('methylergonovine', 1), ('isosorbide', 1), ('mixup', 1)]\n",
"---\n",
"reason_for_recall : Failed Content Uniformity Specifications.\n",
"top 10 keywords: [('specifications', 1), ('content', 1), ('failed', 1), ('uniformity', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Not Elsewhere Classified: Lack of leaflets and approved labels on bottles.\n",
"top 10 keywords: [('approved', 1), ('bottles', 1), ('classified', 1), ('leaflets', 1), ('elsewhere', 1), ('labels', 1), ('labeling', 1), ('lack', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Citations given to API supplier by the Italian Health Agency AIFA for several critical deficiencies which caused a recall of the API lot used to manufacture Propanolo HCl Injection.\n",
"top 10 keywords: [('api', 2), ('recall', 1), ('aifa', 1), ('critical', 1), ('agency', 1), ('cgmp', 1), ('hcl', 1), ('deficiencies', 1), ('deviations', 1), ('caused', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: TRIAMTERENE/ HYDROCHLOROTHIAZIDE, Tablet, 37.5 mg/25 mg may have potentially been mislabeled as the following drug: SEVELAMER HCL, Tablet\t800 mg, NDC 58468002101, Pedigree: W002858, EXP: 6/7/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('mg/25', 1), ('mixup', 1), ('hydrochlorothiazide', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Cross Contamination with Other Products: Four lots of Liothyronine Sodium Tablets, USP 5 mcg are being recalled due to the finding of a potential carryover of trace amounts of a previously manufactured product.\n",
"top 10 keywords: [('tablets', 1), ('manufactured', 1), ('previously', 1), ('liothyronine', 1), ('products', 1), ('cross', 1), ('mcg', 1), ('due', 1), ('potential', 1), ('sodium', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: VERAPAMIL HCL ER, Capsule, 240 mg may have potentially been mislabeled as the following drug: FEBUXOSTAT, Tablet, 40 mg, NDC 64764091830, Pedigree: W002664, EXP: 6/5/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('tablet', 1), ('febuxostat', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Product did not meet dissolution specification at an intermediate time point.\n",
"top 10 keywords: [('dissolution', 2), ('specifications', 1), ('failed', 1), ('point', 1), ('time', 1), ('product', 1), ('specification', 1), ('meet', 1), ('intermediate', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix-Up: A complaint from a pharmacist was received that the entire contents of 1 bottle labeled as Rugby label Enteric Coated Aspirin 81 mg Tablets actually contained Acetaminophen 500 mg Tablets.\n",
"top 10 keywords: [('mg', 2), ('tablets', 2), ('label', 2), ('received', 1), ('rugby', 1), ('pharmacist', 1), ('contents', 1), ('entire', 1), ('labeled', 1), ('complaint', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: PHENobarbital, Tablet, 97.2 mg may have potentially been mislabeled as the following drug: EFAVIRENZ, Capsule, 200 mg, NDC 00056047492, Pedigree: AD46312_31, EXP: 5/16/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('tablet', 1), ('ad46312_31', 1), ('mixup', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix-Up; Containers of the Obagi Nu-Derm Clear pre-labeled bottles were inadvertently introduced into the Obagi Exfoderm Forte packaging line. Therefore customers which ordered Clear RX actually had contents of Exfoderm forte. \n",
"top 10 keywords: [('forte', 2), ('clear', 2), ('exfoderm', 2), ('obagi', 2), ('mix-up', 1), ('ordered', 1), ('bottles', 1), ('customers', 1), ('therefore', 1), ('packaging', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Eugene FDA laboratory analyses determined they contain undeclared sildenafil. \n",
"top 10 keywords: [('marketed', 1), ('laboratory', 1), ('approved', 1), ('without', 1), ('analyses', 1), ('contain', 1), ('determined', 1), ('nda/anda', 1), ('undeclared', 1), ('fda', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: METOPROLOL TARTRATE, Tablet, 25 mg may have potentially been mislabeled as the following drug: DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375710, Pedigree: AD76675_1, EXP: 6/3/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('tartrate', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('drug', 1), ('ad76675_1', 1), ('docusate', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ATORVASTATIN CALCIUM, Tablet, 10 mg may have potentially been mislabeled as one of the following drugs: PANCRELIPASE DR, Capsule, 12000 /38000 /60000 USP units, NDC 00032121201, Pedigree: AD30180_4, EXP: 5/8/2014; OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/1,110 mg, NDC 11523726503, Pedigree: AD49399_4, EXP: 5/16/2014; ASPIRIN, CHEW Tablet, 81 mg, NDC 00536329736, Pedi\n",
"top 10 keywords: [('mg', 3), ('ndc', 3), ('exp', 2), ('pedigree', 2), ('tablet', 2), ('capsule', 2), ('mg/1,110', 1), ('bicarbonate', 1), ('atorvastatin', 1), ('omeprazole/sodium', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility\n",
"top 10 keywords: [('non-sterility', 1)]\n",
"---\n",
"reason_for_recall : Defective Container: Confirmed customer complaints of leaking bottles. \n",
"top 10 keywords: [('confirmed', 1), ('bottles', 1), ('leaking', 1), ('customer', 1), ('container', 1), ('complaints', 1), ('defective', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; MAGNESIUM GLUCONATE DIHYDRATE Tablet, 500 mg (27 mg Elemental Magnesium) may be potentially mislabeled as hydrALAZINE HCl, Tablet, 100 mg, NDC 23155000401, Pedigree: AD30197_7, EXP: 5/9/2014.\n",
"top 10 keywords: [('mg', 3), ('tablet', 2), ('magnesium', 2), ('mislabeled', 1), ('pedigree', 1), ('hydralazine', 1), ('mixup', 1), ('elemental', 1), ('potentially', 1), ('dihydrate', 1)]\n",
"---\n",
"reason_for_recall : LABELING: Label Mix-up: 30 count Effervescent Potassium/Chloride Tablets, may be labeled as 30 count K Effervescent Tablets.\n",
"top 10 keywords: [('effervescent', 2), ('tablets', 2), ('count', 2), ('k', 1), ('may', 1), ('labeled', 1), ('potassium/chloride', 1), ('mix-up', 1), ('label', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix-Up: Some cartons of AHP Ibuprofen Tablets, USP, 600mg, lot #142588 that contain blister cards filled with Ibuprofen tablets, 600mg drug product, were found to be mis-labeled with blister card print identifying the product as AHP Oxcarbazepine Tablets, 300mg, lot #142544.\n",
"top 10 keywords: [('tablets', 3), ('blister', 2), ('ahp', 2), ('product', 2), ('ibuprofen', 2), ('600mg', 2), ('lot', 2), ('drug', 1), ('300mg', 1), ('oxcarbazepine', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; traMADol HCl Tablet, 25 mg (1/2 of 50 mg) may be potentially mislabeled as LEVOTHYROXINE SODIUM, Tablet, 137 mcg, NDC 00527163801, Pedigree: AD60272_76, EXP: 5/22/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('potentially', 1), ('exp', 1), ('mixup', 1), ('levothyroxine', 1), ('hcl', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved ANDA/NDA: presence of sildenafil. \n",
"top 10 keywords: [('marketed', 1), ('presence', 1), ('approved', 1), ('without', 1), ('sildenafil', 1), ('anda/nda', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: potential contamination of products manufactured on the same equipment and lines as the contaminated product.\n",
"top 10 keywords: [('manufactured', 1), ('deviations', 1), ('cgmp', 1), ('lines', 1), ('contamination', 1), ('equipment', 1), ('product', 1), ('products', 1), ('potential', 1), ('contaminated', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Error on Declared Strength; the label states that the product contains 62% ethyl alcohol, but the ethyl alcohol content is 20%.\n",
"top 10 keywords: [('ethyl', 2), ('alcohol', 2), ('label', 2), ('error', 1), ('strength', 1), ('content', 1), ('states', 1), ('product', 1), ('contains', 1), ('declared', 1)]\n",
"---\n",
"reason_for_recall : Short Fill: These products are being recalled because there is potential that vials with low fill volume were released into distribution.\n",
"top 10 keywords: [('fill', 2), ('low', 1), ('released', 1), ('products', 1), ('vials', 1), ('distribution', 1), ('volume', 1), ('potential', 1), ('recalled', 1), ('short', 1)]\n",
"---\n",
"reason_for_recall : Does Not Meet Monograph: Chlorhexidine Gluconate Surgical Scrub Brush is being recalled due to higher concentrations of available chlorhexidine gluconate.\n",
"top 10 keywords: [('chlorhexidine', 2), ('gluconate', 2), ('surgical', 1), ('concentrations', 1), ('due', 1), ('higher', 1), ('scrub', 1), ('meet', 1), ('recalled', 1), ('brush', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of Non-Sterile Products: CVS Pharmacy Pain Relieving Antiseptic Spray tested positive for microbial growth. \n",
"top 10 keywords: [('microbial', 2), ('pharmacy', 1), ('antiseptic', 1), ('products', 1), ('pain', 1), ('non-sterile', 1), ('tested', 1), ('spray', 1), ('contamination', 1), ('positive', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: Valeant's laboratory observed a positive microbial contamination of Virazole lot 340353F, during testing at the 12 month stability pull.\n",
"top 10 keywords: [('laboratory', 1), ('pull', 1), ('microbial', 1), ('non-sterility', 1), ('testing', 1), ('observed', 1), ('valeant', 1), ('month', 1), ('virazole', 1), ('contamination', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 175 mcg may have potentially been mislabeled as the following drug: CINACALCET HCL, Tablet, 60 mg, NDC 55513007430, Pedigree: W003742, EXP: 6/26/2014. \n",
"top 10 keywords: [('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('cinacalcet', 1), ('mixup', 1), ('levothyroxine', 1), ('mcg', 1), ('potentially', 1), ('w003742', 1)]\n",
"---\n",
"reason_for_recall : Lack of Sterility Assurance\n",
"top 10 keywords: [('lack', 1), ('assurance', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: DOXAZOSIN MESYLATE, Tablet, 1 mg may have potentially been mislabeled as the following drug: PYRIDOXINE HCL, Tablet, 100 mg, NDC 00536440901, Pedigree: W003872, EXP: 6/27/2014. \n",
"top 10 keywords: [('mg', 2), ('tablet', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('mesylate', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: CILOSTAZOL, Tablet, 100 mg may have potentially been mislabeled as the following drug: TRIAMTERENE/ HYDROCHLOROTHIAZIDE, Tablet, 37.5 mg/25 mg, NDC 00591042401, Pedigree: W002900, EXP: 6/10/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('cilostazol', 1), ('mg/25', 1), ('mixup', 1), ('hydrochlorothiazide', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: due to failed potency results of 74% (spec. 80-125%).\n",
"top 10 keywords: [('results', 1), ('subpotent', 1), ('failed', 1), ('drug', 1), ('due', 1), ('potency', 1), ('spec', 1)]\n",
"---\n",
"reason_for_recall : Labeling: incorrect or missing lot number and/or expiration date\n",
"top 10 keywords: [('incorrect', 1), ('number', 1), ('expiration', 1), ('missing', 1), ('date', 1), ('and/or', 1), ('lot', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Failed Stability Specifications: Out of specification results for viscosity in one lot of Glytone Acne Treatment Facial Cleanser.\n",
"top 10 keywords: [('acne', 1), ('specification', 1), ('viscosity', 1), ('one', 1), ('results', 1), ('specifications', 1), ('failed', 1), ('stability', 1), ('facial', 1), ('cleanser', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: The active pharmaceutical ingredient (API) intended for use in furosemide oral solution USP was inadvertently used to manufacture the recalled furosemide tablets USP. \n",
"top 10 keywords: [('usp', 2), ('furosemide', 2), ('api', 1), ('recalled', 1), ('active', 1), ('cgmp', 1), ('inadvertently', 1), ('tablets', 1), ('intended', 1), ('solution', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: Product was found to contain undeclared sildenafil, making AMPD GOLD an unapproved drug.\n",
"top 10 keywords: [('marketed', 1), ('drug', 1), ('found', 1), ('approved', 1), ('without', 1), ('ampd', 1), ('contain', 1), ('unapproved', 1), ('undeclared', 1), ('making', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter; Hospira has identified the particulate as a human hair, sealed in the bag at the additive port area.\n",
"top 10 keywords: [('particulate', 2), ('hospira', 1), ('bag', 1), ('presence', 1), ('human', 1), ('hair', 1), ('port', 1), ('area', 1), ('sealed', 1), ('additive', 1)]\n",
"---\n",
"reason_for_recall : Failed Stability Specifications: this product is below specification for preservative content.\n",
"top 10 keywords: [('content', 1), ('specifications', 1), ('failed', 1), ('stability', 1), ('product', 1), ('specification', 1), ('preservative', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; HYOSCYAMINE SULFATE SL Tablet, 0.125 mg may be potentially mislabeled as azaTHIOprine, Tablet, 50 mg, NDC 00054408425, Pedigree: AD56832_1, EXP: 5/21/2014; CHOLECALCIFEROL, Tablet, 1000 units, NDC 00904582460, Pedigree: W003464, EXP: 6/20/2014. \n",
"top 10 keywords: [('tablet', 3), ('exp', 2), ('mg', 2), ('pedigree', 2), ('ndc', 2), ('mislabeled', 1), ('hyoscyamine', 1), ('ad56832_1', 1), ('mixup', 1), ('units', 1)]\n",
"---\n",
"reason_for_recall : Failed impurities/Degradation specifications: out of specification results for individual unknown and total impurity at the 12th month room temperature stability test station\n",
"top 10 keywords: [('temperature', 1), ('impurities/degradation', 1), ('total', 1), ('12th', 1), ('specification', 1), ('results', 1), ('specifications', 1), ('failed', 1), ('individual', 1), ('stability', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: These products found to contain undeclared tadalafil. Tadalafil is an FDA-approved drug for the treatment of male Erectile Dysfunction (ED), making these products unapproved new drugs.\n",
"top 10 keywords: [('tadalafil', 2), ('products', 2), ('marketed', 1), ('drug', 1), ('found', 1), ('approved', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('unapproved', 1)]\n",
"---\n",
"reason_for_recall : CGMP Deviations: Eloxatin was manufactured by Ben Venue Laboratories, a contract manufacturer, which was recently inspected by the agency and revealed significant issues in Good Manufacturing Practices.\n",
"top 10 keywords: [('manufactured', 1), ('issues', 1), ('agency', 1), ('cgmp', 1), ('manufacturing', 1), ('revealed', 1), ('eloxatin', 1), ('venue', 1), ('contract', 1), ('recently', 1)]\n",
"---\n",
"reason_for_recall : Chemical contamination: emission of strong odor after package was opened\n",
"top 10 keywords: [('package', 1), ('odor', 1), ('contamination', 1), ('opened', 1), ('chemical', 1), ('emission', 1), ('strong', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System: One lot exceeded the mechanical peel specification\n",
"top 10 keywords: [('peel', 1), ('exceeded', 1), ('specification', 1), ('lot', 1), ('delivery', 1), ('system', 1), ('mechanical', 1), ('one', 1), ('defective', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label lacks warning or Rx legend; Certain information was inadvertently excluded from the product carton label.\n",
"top 10 keywords: [('label', 2), ('certain', 1), ('legend', 1), ('inadvertently', 1), ('lacks', 1), ('labeling', 1), ('warning', 1), ('carton', 1), ('product', 1), ('excluded', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Foreign particulate matter (tiny black specs) were observed at the bottom of the vial following reconstitution.\n",
"top 10 keywords: [('particulate', 2), ('matter', 2), ('presence', 1), ('black', 1), ('observed', 1), ('foreign', 1), ('specs', 1), ('bottom', 1), ('tiny', 1), ('vial', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LITHIUM CARBONATE ER, Tablet, 225 mg (1/2 of 450 mg) may be potentially mislabled as one of the following drugs: CYCLOBENZAPRINE HCL, Tablet, 5 mg, NDC 00591325601, Pedigree: AD73525_7, EXP: 5/30/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375710, Pedigree: AD21846_11, EXP: 5/1/2014. \n",
"top 10 keywords: [('mg', 4), ('exp', 2), ('pedigree', 2), ('tablet', 2), ('ndc', 2), ('er', 1), ('docusate', 1), ('lithium', 1), ('ad73525_7', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Superpotent (Single Ingredient) Drug: The prefilled cartridge unit has been found to be overfilled and contain more than the 1 mL labeled fill volume.\n",
"top 10 keywords: [('drug', 1), ('fill', 1), ('found', 1), ('overfilled', 1), ('unit', 1), ('contain', 1), ('labeled', 1), ('volume', 1), ('ingredient', 1), ('prefilled', 1)]\n",
"---\n",
"reason_for_recall : Tablets/Capsules Imprinted with Wrong ID: Some tablets incorrectly imprinted with an X on one side. \n",
"top 10 keywords: [('imprinted', 2), ('wrong', 1), ('incorrectly', 1), ('tablets', 1), ('id', 1), ('x', 1), ('tablets/capsules', 1), ('side', 1), ('one', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; potential for vial breakage\n",
"top 10 keywords: [('lack', 1), ('assurance', 1), ('vial', 1), ('potential', 1), ('breakage', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specification; at the 12 month time interval.\n",
"top 10 keywords: [('failed', 1), ('interval', 1), ('time', 1), ('specification', 1), ('dissolution', 1), ('month', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ISONIAZID, Tablet, 300 mg may have potentially been mislabeled as one of the following drugs: hydrOXYzine PAMOATE, Capsule, 100 mg, NDC 00555032402, Pedigree: W003690, EXP: 6/26/2014; CETIRIZINE HCL, Tablet, 5 mg, NDC 00378363501, Pedigree: AD32757_13, EXP: 5/13/2014; RANOLAZINE ER, Tablet, 500 mg, NDC 61958100301, Pedigree: AD32757_47, EXP: 5/13/2014; DULoxetine HCl DR,\n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('tablet', 3), ('ndc', 3), ('hcl', 2), ('ad32757_13', 1), ('ranolazine', 1), ('ad32757_47', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Error on Declared Strength. Product labeled to contain 150 mcg tablets actually contained 75 mcg tablets.\n",
"top 10 keywords: [('tablets', 2), ('mcg', 2), ('error', 1), ('strength', 1), ('labeled', 1), ('product', 1), ('contain', 1), ('actually', 1), ('declared', 1), ('contained', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; OLANZAPINE, Tablet 7.5 mg may be potentially mislabeled as NORTRIPTYLINE HCL, Capsule, 75 mg, NDC 00093081301, Pedigree: AD21790_73, EXP: 5/1/2014.\n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA; product contains analogues of sildenafil and tadalafil which are active pharmaceutical ingredients in FDA-approved drugs used to treat erectile dysfunction (ED) making this product an unapproved new drug. \n",
"top 10 keywords: [('product', 2), ('drug', 1), ('tadalafil', 1), ('without', 1), ('nda/anda', 1), ('dysfunction', 1), ('pharmaceutical', 1), ('making', 1), ('ed', 1), ('new', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurity/Degradation Specifications: Out of Specifications result obtained for a known impurity.\n",
"top 10 keywords: [('specifications', 2), ('result', 1), ('failed', 1), ('impurity', 1), ('obtained', 1), ('known', 1), ('impurity/degradation', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; Lack of Assurance of Sterility; product not manufactured under sterile conditions as required for ophthalmic drug products\n",
"top 10 keywords: [('lack', 2), ('assurance', 2), ('sterility', 2), ('drug', 1), ('manufactured', 1), ('required', 1), ('conditions', 1), ('product', 1), ('products', 1), ('ophthalmic', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA: Products contain undeclared active pharmaceutical ingredients; desmethyl carbondenafil and dapoxetine.\n",
"top 10 keywords: [('marketed', 1), ('desmethyl', 1), ('approved', 1), ('active', 1), ('products', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('carbondenafil', 1), ('dapoxetine', 1)]\n",
"---\n",
"reason_for_recall : Superpotent (Single Ingredient Drug): salicylic acid \n",
"top 10 keywords: [('drug', 1), ('acid', 1), ('ingredient', 1), ('salicylic', 1), ('superpotent', 1), ('single', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: There is the potential for the solution to leak from the administrative port to the fill tube seal.\n",
"top 10 keywords: [('fill', 1), ('tube', 1), ('lack', 1), ('assurance', 1), ('port', 1), ('seal', 1), ('sterility', 1), ('leak', 1), ('potential', 1), ('administrative', 1)]\n",
"---\n",
"reason_for_recall : cGMP Deviation; The incorrect amount of a raw material was added during the manufacture of two lots of Z-COTE HP 1.\n",
"top 10 keywords: [('lots', 1), ('cgmp', 1), ('material', 1), ('amount', 1), ('z-cote', 1), ('two', 1), ('incorrect', 1), ('manufacture', 1), ('added', 1), ('raw', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ASPIRIN, CHEW Tablet, 81 mg may have potentially been mislabeled as one of the following drugs: OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 40985022921, Pedigree: AD30028_4, EXP: 5/8/2014; MODAFINIL, Tablet, 200 mg, NDC 00603466216, Pedigree: W002760, EXP: 6/6/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 40985022921, Pedigree: W003015, EXP: 6/12/2014; VITAMIN B COMPLEX \n",
"top 10 keywords: [('mg', 4), ('exp', 3), ('pedigree', 3), ('ndc', 3), ('omega-3', 2), ('fatty', 2), ('acid', 2), ('tablet', 2), ('capsule', 2), ('w002760', 1)]\n",
"---\n",
"reason_for_recall : Chemical contamination: Product may be contaminated with a toxic compound.\n",
"top 10 keywords: [('contaminated', 1), ('compound', 1), ('contamination', 1), ('product', 1), ('chemical', 1), ('may', 1), ('toxic', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System: Defective stem valve causes leakage of the propellant in the spray canister delivering no drug or an inadequate amount of the drug to be delivered.\n",
"top 10 keywords: [('drug', 2), ('defective', 2), ('delivered', 1), ('stem', 1), ('inadequate', 1), ('spray', 1), ('amount', 1), ('propellant', 1), ('causes', 1), ('leakage', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; the firm's medical trays contain Hospira's 0.9% Sodium Chloride bags which were subject to recall due to leaking bags.\n",
"top 10 keywords: [('bags', 2), ('hospira', 1), ('recall', 1), ('medical', 1), ('lack', 1), ('assurance', 1), ('due', 1), ('leaking', 1), ('contain', 1), ('sodium', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Tablets/Capsules: Bottles of lansoprazole 30 mg delayed-release capsules may contain topiramate 100 mg tablets.\n",
"top 10 keywords: [('mg', 2), ('presence', 1), ('bottles', 1), ('tablets/capsules', 1), ('delayed-release', 1), ('contain', 1), ('foreign', 1), ('may', 1), ('capsules', 1), ('topiramate', 1)]\n",
"---\n",
"reason_for_recall : Failed USP Content Uniformity Requirements: OOS result reported on retained samples.\n",
"top 10 keywords: [('content', 1), ('usp', 1), ('retained', 1), ('requirements', 1), ('result', 1), ('samples', 1), ('failed', 1), ('reported', 1), ('uniformity', 1), ('oos', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Confirmed consumer report of fluid leaking from primary container of bag.\n",
"top 10 keywords: [('bag', 1), ('fluid', 1), ('confirmed', 1), ('lack', 1), ('assurance', 1), ('consumer', 1), ('report', 1), ('primary', 1), ('leaking', 1), ('container', 1)]\n",
"---\n",
"reason_for_recall : Presence of particulate matter: Confirmed customer report for the presence of particulate matter within a single vial.\n",
"top 10 keywords: [('particulate', 2), ('presence', 2), ('matter', 2), ('confirmed', 1), ('vial', 1), ('customer', 1), ('report', 1), ('within', 1), ('single', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Low Out-of-Specification results for the 8 hour timepoint.\n",
"top 10 keywords: [('results', 1), ('low', 1), ('specifications', 1), ('failed', 1), ('out-of-specification', 1), ('hour', 1), ('dissolution', 1), ('timepoint', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Sterility could not be assured for compounded sterile renal nutritional prescriptions.\n",
"top 10 keywords: [('sterility', 2), ('renal', 1), ('assured', 1), ('prescriptions', 1), ('could', 1), ('assurance', 1), ('nutritional', 1), ('compounded', 1), ('sterile', 1), ('lack', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: MYCOPHENOLATE MOFETIL, Capsule, 250 mg may have potentially been mislabeled as the following drug: PRAMIPEXOLE DI-HCL, Tablet, 0.25 mg, NDC 16714058501, Pedigree: W003761, EXP: 6/26/2014. \n",
"top 10 keywords: [('mg', 2), ('mycophenolate', 1), ('mislabeled', 1), ('pramipexole', 1), ('w003761', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('drug', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Stability data does not support expiry. \n",
"top 10 keywords: [('support', 1), ('expiry', 1), ('data', 1), ('stability', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specification: Out of Specification dissolution results at 12 month interval.\n",
"top 10 keywords: [('specification', 2), ('dissolution', 2), ('results', 1), ('failed', 1), ('interval', 1), ('month', 1)]\n",
"---\n",
"reason_for_recall : Crystallization: Potential to exhibit precipitation/crystallization in IV bag or IV line upon reconstitution.\n",
"top 10 keywords: [('iv', 2), ('precipitation/crystallization', 1), ('line', 1), ('exhibit', 1), ('crystallization', 1), ('upon', 1), ('bag', 1), ('potential', 1), ('reconstitution', 1)]\n",
"---\n",
"reason_for_recall : Impurities/Degradation Products: Out Of Specification levels of nitrogen dioxide.\n",
"top 10 keywords: [('levels', 1), ('nitrogen', 1), ('products', 1), ('impurities/degradation', 1), ('specification', 1), ('dioxide', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: Heparin raw material was found to have low potency \n",
"top 10 keywords: [('subpotent', 1), ('heparin', 1), ('found', 1), ('drug', 1), ('low', 1), ('material', 1), ('raw', 1), ('potency', 1)]\n",
"---\n",
"reason_for_recall : Failed USP Dissolution Test Requirements: During analysis of long term stability studies at 3 months time point, an OOS was reported for Quetiapine Fumarate Tablets, 25 mg. \n",
"top 10 keywords: [('studies', 1), ('months', 1), ('analysis', 1), ('requirements', 1), ('oos', 1), ('test', 1), ('mg', 1), ('reported', 1), ('tablets', 1), ('fumarate', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: all sterile compounded products within expiry \n",
"top 10 keywords: [('expiry', 1), ('lack', 1), ('assurance', 1), ('products', 1), ('sterility', 1), ('within', 1), ('sterile', 1), ('compounded', 1)]\n",
"---\n",
"reason_for_recall : Falied pH specification\n",
"top 10 keywords: [('ph', 1), ('specification', 1), ('falied', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Product was found to contain undeclared active pharmaceutical ingredient: sibutramine and N-desmethylsibutramine\n",
"top 10 keywords: [('marketed', 1), ('n-desmethylsibutramine', 1), ('sibutramine', 1), ('found', 1), ('approved', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('pharmaceutical', 1), ('undeclared', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: Direct evidence of contamination for 2 lots based on FDA samples.\n",
"top 10 keywords: [('evidence', 1), ('fda', 1), ('direct', 1), ('contamination', 1), ('non-sterility', 1), ('based', 1), ('samples', 1), ('lots', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: sulfaSALAzine, Tablet, 500 mg may have potentially been mislabeled as one of the following drugs: FLUCONAZOLE, Tablet, 200 mg, NDC 00172541360, Pedigree: AD65475_16, EXP: 5/28/2014; PHENYTOIN SODIUM ER, Capsule, 30 mg, NDC 00071374066, Pedigree: W003331, EXP: 6/19/2014. \n",
"top 10 keywords: [('mg', 3), ('exp', 2), ('pedigree', 2), ('tablet', 2), ('ndc', 2), ('w003331', 1), ('may', 1), ('labeling', 1), ('ad65475_16', 1), ('sulfasalazine', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect Or Missing Package Insert: Product is labeled with unapproved labeling.\n",
"top 10 keywords: [('labeling', 2), ('insert', 1), ('package', 1), ('incorrect', 1), ('product', 1), ('labeled', 1), ('unapproved', 1), ('missing', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: MYCOPHENOLATE MOFETIL, Capsule, 250 mg may be potentially mis-labeled as the following drug: CALCIUM ACETATE, Capsule, 667 mg, NDC 00054008826, Pedigree: AD52412_11, EXP: 5/17/2014. \n",
"top 10 keywords: [('mg', 2), ('capsule', 2), ('mycophenolate', 1), ('drug', 1), ('pedigree', 1), ('ad52412_11', 1), ('mis-labeled', 1), ('mixup', 1), ('potentially', 1), ('calcium', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation:Specifications:Unknown degradant found during stability testing.\n",
"top 10 keywords: [('stability', 1), ('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('degradant', 1), ('testing', 1), ('unknown', 1), ('found', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: PHENobarbital, Tablet, 64.8 mg may have potentially been mislabeled as the following drug: PREGABALIN, Capsule, 200 mg, NDC 00071101768, Pedigree: AD73518_4, EXP: 5/31/2014. \n",
"top 10 keywords: [('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('ad73518_4', 1), ('pregabalin', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Avella Specialty Pharmacy is recalling bevacizumab and vancomycin due to concerns of sterility assurance with the specialty pharmacy's independent testing laboratory.\n",
"top 10 keywords: [('pharmacy', 2), ('assurance', 2), ('specialty', 2), ('sterility', 2), ('avella', 1), ('due', 1), ('vancomycin', 1), ('testing', 1), ('independent', 1), ('laboratory', 1)]\n",
"---\n",
"reason_for_recall : Subpotent (Multiple Ingredient) Drug: Low out of specification assay results for the hydrocodone bitartrate ingredient was found.\n",
"top 10 keywords: [('ingredient', 2), ('assay', 1), ('subpotent', 1), ('results', 1), ('hydrocodone', 1), ('drug', 1), ('low', 1), ('multiple', 1), ('bitartrate', 1), ('specification', 1)]\n",
"---\n",
"reason_for_recall : Non Sterility; contaminated with Klebsiella pneumoniae\n",
"top 10 keywords: [('klebsiella', 1), ('contaminated', 1), ('pneumoniae', 1), ('non', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Subpotent; 9-month stability interval\n",
"top 10 keywords: [('subpotent', 1), ('9-month', 1), ('stability', 1), ('interval', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 88 mcg may have potentially been mislabeled as one of the following drugs: clomiPRAMINE HCl, Capsule, 50 mg, NDC 51672401205, Pedigree: AD46265_1, EXP: 5/15/2014; HYDROXYCHLOROQUINE SULFATE, Tablet, 200 mg, NDC 63304029601, Pedigree: AD70629_10, EXP: 5/29/2014; HYOSCYAMINE SULFATE SL, Tablet, 0.125 mg, NDC 76439030910, Pedigree: W003438, EXP:\n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('tablet', 3), ('mg', 3), ('ndc', 3), ('sulfate', 2), ('clomipramine', 1), ('hyoscyamine', 1), ('levothyroxine', 1), ('mcg', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; RIBAVIRIN, Capsule, 200 mg may be potentially mislabeled as MODAFINIL, Tablet, 50 mg (1/2 of 100 MG Tablet), NDC 55253080130, Pedigree: AD21787_4, EXP: 5/1/2014; DESIPRAMINE HCL, Tablet, 50 mg, NDC 45963034302, Pedigree: AD30140_7, EXP: 5/7/2014. \n",
"top 10 keywords: [('mg', 4), ('tablet', 3), ('pedigree', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('ribavirin', 1), ('modafinil', 1), ('mixup', 1), ('hcl', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: visible particles were identified floating in the primary container.\n",
"top 10 keywords: [('visible', 1), ('primary', 1), ('particles', 1), ('container', 1), ('floating', 1), ('particulate', 1), ('presence', 1), ('identified', 1), ('matter', 1)]\n",
"---\n",
"reason_for_recall : Defective Delivery System; may have a low frequency assembly fault which may result in pens block during the so-called \"air shot\" step\n",
"top 10 keywords: [('may', 2), ('so-called', 1), ('low', 1), ('pens', 1), ('result', 1), ('assembly', 1), ('block', 1), ('air', 1), ('fault', 1), ('defective', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Not Elsewhere Classified: correctly labeled bottles were packaged in cartons that were mislabeled with an incorrect active ingredient, phenylephrine rather than pseudoephedrine, on the carton face and carton top.\n",
"top 10 keywords: [('carton', 2), ('mislabeled', 1), ('bottles', 1), ('classified', 1), ('active', 1), ('elsewhere', 1), ('labeled', 1), ('top', 1), ('pseudoephedrine', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Superpotent drug: Out of specification test result for assay during stability testing.\n",
"top 10 keywords: [('assay', 1), ('drug', 1), ('stability', 1), ('result', 1), ('test', 1), ('specification', 1), ('superpotent', 1), ('testing', 1)]\n",
"---\n",
"reason_for_recall : Failed dissolution specifications - the out of specification result for dissolution was identified during 3 month stability testing. \n",
"top 10 keywords: [('dissolution', 2), ('specifications', 1), ('failed', 1), ('stability', 1), ('result', 1), ('specification', 1), ('month', 1), ('identified', 1), ('testing', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; rifAXIMin Tablet, 200 mg may be potentially mislabeled as CapsuleTOPRIL, Tablet, 25 mg, NDC 00143117201, Pedigree: AD52778_19, EXP: 5/20/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('ad52778_19', 1), ('exp', 1), ('mixup', 1), ('potentially', 1), ('capsuletopril', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: FDA analysis found MaXtremeZEN which is marketed as a dietary supplement to contain undeclared desmethyl carbondenafil and dapoxetine. Desmethyl carbondenafil is a phosphodiesterase (PDE)-5 inhibitors which is a class of drugs used to treat male erectile dysfunction, making this product an unapproved new drug. Dapoxetine is an active ingredient not approved\n",
"top 10 keywords: [('desmethyl', 2), ('marketed', 2), ('approved', 2), ('dapoxetine', 2), ('carbondenafil', 2), ('analysis', 1), ('drug', 1), ('without', 1), ('nda/anda', 1), ('active', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: POTASSIUM ACID PHOSPHATE, Tablet, 500 mg may have potentially been mislabeled as the following drug: predniSONE, Tablet, 20 mg, NDC 00591544301, Pedigree: AD56879_5, EXP: 5/21/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('prednisone', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; FERROUS SULFATE, Tablet, 325 mg (65 mg Elemental Iron) may be potentially mislabeled as RAMIPRIL, Capsule, 2.5 mg, NDC 68180058901, Pedigree: AD54549_16, EXP: 5/20/2014.\n",
"top 10 keywords: [('mg', 3), ('ferrous', 1), ('mislabeled', 1), ('pedigree', 1), ('ramipril', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('elemental', 1), ('ad54549_16', 1)]\n",
"---\n",
"reason_for_recall : Failed impurities/degradation specification: An out of specification results has been determined for an individual related substance during stability testing at the 18th month interval for the Famotidine 10 mg Tablet, USP.\n",
"top 10 keywords: [('specification', 2), ('substance', 1), ('famotidine', 1), ('impurities/degradation', 1), ('interval', 1), ('mg', 1), ('related', 1), ('determined', 1), ('results', 1), ('month', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; product linked to adverse event reports of endophthalimitis eye infections and FDA inspection findings resulted in concerns regarding quality control processes\n",
"top 10 keywords: [('endophthalimitis', 1), ('findings', 1), ('control', 1), ('lack', 1), ('assurance', 1), ('inspection', 1), ('regarding', 1), ('processes', 1), ('linked', 1), ('adverse', 1)]\n",
"---\n",
"reason_for_recall : Defective Container: Pump head detaching from the canister unit upon removal of the overcap.\n",
"top 10 keywords: [('pump', 1), ('overcap', 1), ('canister', 1), ('head', 1), ('unit', 1), ('container', 1), ('detaching', 1), ('upon', 1), ('defective', 1), ('removal', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: The firm's contract testing laboratory found sterility failures.\n",
"top 10 keywords: [('contract', 1), ('laboratory', 1), ('failures', 1), ('non-sterility', 1), ('firm', 1), ('sterility', 1), ('testing', 1), ('found', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: Glass defect located on the interior neck of the vial identified glass surface abrasions and visible embedded particulate matter which could result in the potential for small glass flakes or embedded metal particulate to become dislodged into the solution.\n",
"top 10 keywords: [('particulate', 3), ('glass', 3), ('embedded', 2), ('matter', 2), ('presence', 1), ('metal', 1), ('vial', 1), ('potential', 1), ('interior', 1), ('small', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: The firm received a complaint of a sterility failure using a non-validated sterility test on a medication cassette.\n",
"top 10 keywords: [('sterility', 3), ('received', 1), ('lack', 1), ('assurance', 1), ('complaint', 1), ('test', 1), ('firm', 1), ('medication', 1), ('non-validated', 1), ('failure', 1)]\n",
"---\n",
"reason_for_recall : Microbial Contamination of a Non-Sterile Product: Kit component is contaminated with Burkholderia multivorans.\n",
"top 10 keywords: [('component', 1), ('contaminated', 1), ('burkholderia', 1), ('product', 1), ('microbial', 1), ('non-sterile', 1), ('kit', 1), ('contamination', 1), ('multivorans', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance; metal particulates were visually observed in the tablets.\n",
"top 10 keywords: [('visually', 1), ('substance', 1), ('presence', 1), ('tablets', 1), ('metal', 1), ('observed', 1), ('particulates', 1), ('foreign', 1)]\n",
"---\n",
"reason_for_recall : Marketed without an Approved NDA/ANDA; IM and SQ injectable products are being recalled because the manufacturing firm is not registered with the FDA as a drug manufacturer \n",
"top 10 keywords: [('marketed', 1), ('drug', 1), ('approved', 1), ('im', 1), ('without', 1), ('nda/anda', 1), ('firm', 1), ('products', 1), ('recalled', 1), ('sq', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: During a review of retain samples, the firm found a glass particulate in one lot of Acetylcysteine Solution \n",
"top 10 keywords: [('particulate', 2), ('presence', 1), ('found', 1), ('retain', 1), ('firm', 1), ('acetylcysteine', 1), ('samples', 1), ('review', 1), ('one', 1), ('glass', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: Product recalled due to reports of breakage and leakage of Paricalcitol capsules.\n",
"top 10 keywords: [('paricalcitol', 1), ('specifications', 1), ('failed', 1), ('leakage', 1), ('tablet/capsule', 1), ('product', 1), ('capsules', 1), ('due', 1), ('reports', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: ACYCLOVIR, Tablet, 800 mg may have potentially been mislabeled as the following drug:\t PANTOPRAZOLE SODIUM DR, Tablet, 20 mg, NDC 64679043304, Pedigree: AD70690_4, EXP: 5/29/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('dr', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix-Up: FDA tested samples of API from Medisca, labeled as to contain L-Citrulline, and results revealed no L-Citrulline was present. Levels of N-acetyl-leucine were found instead.\n",
"top 10 keywords: [('l-citrulline', 2), ('api', 1), ('levels', 1), ('found', 1), ('labeled', 1), ('tested', 1), ('revealed', 1), ('contain', 1), ('samples', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Firm mistakenly released quarantined, non conforming material that failed sterility testing.\n",
"top 10 keywords: [('sterility', 2), ('released', 1), ('mistakenly', 1), ('lack', 1), ('assurance', 1), ('quarantined', 1), ('firm', 1), ('non', 1), ('failed', 1), ('conforming', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: A single visible particulate was observed and confirmed in a sample bottle during retain inspection.\n",
"top 10 keywords: [('particulate', 2), ('confirmed', 1), ('visible', 1), ('bottle', 1), ('retain', 1), ('inspection', 1), ('observed', 1), ('sample', 1), ('presence', 1), ('single', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; hydrALAZINE HCl Tablet, 50 mg may be potentially mislabeled as CapsuleTOPRIL, Tablet, 12.5 mg, NDC 00143117101, Pedigree: AD52778_16, EXP: 5/20/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('pedigree', 1), ('hydralazine', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('capsuletopril', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Out of specification for impurities.\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('specification', 1), ('impurities', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; Immediate product pouches may not be properly sealed.\n",
"top 10 keywords: [('sealed', 1), ('properly', 1), ('lack', 1), ('assurance', 1), ('product', 1), ('pouches', 1), ('may', 1), ('immediate', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; NEOMYCIN SULFATE, Tablet, 500 mg may be potentially mislabeled as IMIPRAMINE HCL, Tablet, 25 mg, NDC 00781176401, Pedigree: AD49448_10, EXP: 5/17/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('neomycin', 1), ('ad49448_10', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('pedigree', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Tablet Thickness: Potential for some tablets not conforming to weight specifications (under and over weight)\n",
"top 10 keywords: [('weight', 2), ('specifications', 1), ('tablets', 1), ('tablet', 1), ('thickness', 1), ('conforming', 1), ('potential', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect instructions; an error in section 5.11 of the patient insert that results in incorrect medical advice. Specifically, the labeling should read \"If a severely depressed HDL-C level is detected, fibrate therapy should be withdrawn, and the HDL-C level monitored until it has returned to baseline, and fibrate therapy should not be re-initiated.\" The labeling for the recalled lots \n",
"top 10 keywords: [('labeling', 3), ('therapy', 2), ('level', 2), ('incorrect', 2), ('hdl-c', 2), ('fibrate', 2), ('error', 1), ('insert', 1), ('advice', 1), ('lots', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: Potential tablet defect of broken tablets and/or equatorial splitting of the bilayer tablets into the two drug components. \n",
"top 10 keywords: [('tablets', 2), ('defect', 1), ('tablet', 1), ('drug', 1), ('broken', 1), ('equatorial', 1), ('bilayer', 1), ('potential', 1), ('two', 1), ('specifications', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications. Above out of specification for dissolution rate observed at the 10 hour testing point. \n",
"top 10 keywords: [('dissolution', 2), ('specifications', 1), ('failed', 1), ('point', 1), ('hour', 1), ('rate', 1), ('specification', 1), ('testing', 1), ('observed', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Exp Date: Lorazepam Lot # L-04009 \n",
"top 10 keywords: [('lot', 2), ('l-04009', 1), ('incorrect', 1), ('lorazepam', 1), ('missing', 1), ('exp', 1), ('date', 1), ('and/or', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter\n",
"top 10 keywords: [('presence', 1), ('particulate', 1), ('matter', 1)]\n",
"---\n",
"reason_for_recall : Subpotent. drug\n",
"top 10 keywords: [('subpotent', 1), ('drug', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: DRONEDARONE HCL, Tablet, 400 mg may be potentially as the following drug: METHYLERGONOVINE MALEATE, Tablet, 0.2 mg, NDC 43386014028, Pedigree: AD52778_40, EXP: 5/20/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Failed Tablet/Capsule Specifications: Split tablets were found in the 12-month stability samples.\n",
"top 10 keywords: [('tablets', 1), ('failed', 1), ('found', 1), ('tablet/capsule', 1), ('split', 1), ('12-month', 1), ('samples', 1), ('specifications', 1), ('stability', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Failure of dissolution test observed at three month time point.\n",
"top 10 keywords: [('dissolution', 2), ('three', 1), ('specifications', 1), ('failed', 1), ('point', 1), ('time', 1), ('test', 1), ('month', 1), ('observed', 1), ('failure', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; CALCIUM CITRATE, Tablet, 200 mg Elemental Calcium may be potentially mislabeled as TRIAMTERENE/HCTZ, Tablet, 37.5 mg/25 mg, NDC 00378135201, Pedigree: AD28333_4, EXP: 5/6/2014.\n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('calcium', 2), ('mislabeled', 1), ('pedigree', 1), ('mg/25', 1), ('mixup', 1), ('elemental', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Impurities/Degradation Products: High Out-of-specification results were obtained for both known and unknown impurities.\n",
"top 10 keywords: [('results', 1), ('out-of-specification', 1), ('high', 1), ('impurities', 1), ('impurities/degradation', 1), ('obtained', 1), ('known', 1), ('products', 1), ('unknown', 1)]\n",
"---\n",
"reason_for_recall : Subpotent Drug: Salicylic acid is subpotent.\n",
"top 10 keywords: [('subpotent', 2), ('salicylic', 1), ('acid', 1), ('drug', 1)]\n",
"---\n",
"reason_for_recall : Failed PH specification: The lots of Carboplatin Injection were manufactured from Carboplatin API lots which trended out of specification low pH.\n",
"top 10 keywords: [('carboplatin', 2), ('ph', 2), ('specification', 2), ('lots', 2), ('api', 1), ('low', 1), ('failed', 1), ('trended', 1), ('injection', 1), ('manufactured', 1)]\n",
"---\n",
"reason_for_recall : Chemical Contamination: The recall has been initiated based on multiple complaints received from pharmacists and consumers reporting that they detected an off-odor, described as moldy, musty or fishy in nature which has been identified as trace levels of Tribromoanisole (TBA) and Trichloroanisole (TCA).\n",
"top 10 keywords: [('recall', 1), ('consumers', 1), ('tca', 1), ('initiated', 1), ('trichloroanisole', 1), ('chemical', 1), ('pharmacists', 1), ('tba', 1), ('nature', 1), ('trace', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurity/Degradation Specification; out of specification for trans-calcitriol degradant at the 9 month stability time point\n",
"top 10 keywords: [('specification', 2), ('trans-calcitriol', 1), ('failed', 1), ('degradant', 1), ('time', 1), ('impurity/degradation', 1), ('month', 1), ('point', 1), ('stability', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Product did not meet specification requirements for dissolution.\n",
"top 10 keywords: [('dissolution', 2), ('specifications', 1), ('failed', 1), ('requirements', 1), ('product', 1), ('specification', 1), ('meet', 1)]\n",
"---\n",
"reason_for_recall : Non-Sterility: Hartley Medical Center Pharmacy, Inc. is recalling Prolotherapy with Phenol due to non-sterility concerns.\n",
"top 10 keywords: [('non-sterility', 2), ('hartley', 1), ('phenol', 1), ('medical', 1), ('center', 1), ('pharmacy', 1), ('prolotherapy', 1), ('recalling', 1), ('inc.', 1), ('due', 1)]\n",
"---\n",
"reason_for_recall : Defective Container: Vials may be missing stoppers.\n",
"top 10 keywords: [('defective', 1), ('may', 1), ('vials', 1), ('container', 1), ('missing', 1), ('stoppers', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: A single visible particulate was observed in a retention sample bottles identified as stainless steel\n",
"top 10 keywords: [('particulate', 2), ('presence', 1), ('bottles', 1), ('observed', 1), ('steel', 1), ('retention', 1), ('visible', 1), ('single', 1), ('stainless', 1), ('sample', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; METOPROLOL TARTRATE, Tablet, 25 mg may be potentially mislabeled as ASCORBIC ACID, Tablet, 250 mg, NDC 00904052260, Pedigree: W003826, EXP: 6/27/2014; amLODIPine BESYLATE, Tablet, 5 mg, NDC 00093716798, Pedigree: W002840, EXP: 6/7/2014. \n",
"top 10 keywords: [('tablet', 3), ('mg', 3), ('pedigree', 2), ('exp', 2), ('ndc', 2), ('mislabeled', 1), ('tartrate', 1), ('w003826', 1), ('mixup', 1), ('besylate', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Package Insert: An outdated version of a patient outsert was used when packaged.\n",
"top 10 keywords: [('insert', 1), ('package', 1), ('version', 1), ('incorrect', 1), ('packaged', 1), ('outdated', 1), ('outsert', 1), ('used', 1), ('patient', 1), ('missing', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Wrong barcode. An incorrect bar code was noted on the vial label of Hectorol 2 mcg/1mL vial.\n",
"top 10 keywords: [('vial', 2), ('wrong', 1), ('incorrect', 1), ('mcg/1ml', 1), ('label', 1), ('hectorol', 1), ('bar', 1), ('barcode', 1), ('code', 1), ('noted', 1)]\n",
"---\n",
"reason_for_recall : Lack of sterility assurance;All lots of sterile products compounded by the pharmacy that are within expiry were recalled due to concerns associated with quality control procedures that present a potential risk to sterility assurance that were observed during a recent FDA inspection.\n",
"top 10 keywords: [('sterility', 2), ('assurance', 2), ('due', 1), ('recent', 1), ('control', 1), ('inspection', 1), ('observed', 1), ('potential', 1), ('recalled', 1), ('risk', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Tablets/Capsules:179 doses of Valacyclovir HCl 500 mg tablets were repacked in unit dose packslabeled as Atorvastatin Calcium \n",
"top 10 keywords: [('tablets', 1), ('valacyclovir', 1), ('atorvastatin', 1), ('hcl', 1), ('unit', 1), ('mg', 1), ('calcium', 1), ('presence', 1), ('foreign', 1), ('packslabeled', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: There is the potential for the solution to leak from the seal of the fill tube to the bag.\n",
"top 10 keywords: [('bag', 1), ('fill', 1), ('lack', 1), ('assurance', 1), ('tube', 1), ('sterility', 1), ('leak', 1), ('potential', 1), ('seal', 1), ('solution', 1)]\n",
"---\n",
"reason_for_recall : Labeling; Correct labeled product miscart/mispack: Some Physician sample cartons were incorrectly labeled as Kombiglyze XR 2.5mg/1000mg on the external package carton, whereas the contents were Kombiglyze XR 5 mg/500 mg blister packaged tablets. The individual blister units are labeled correctly.\n",
"top 10 keywords: [('labeled', 3), ('blister', 2), ('xr', 2), ('kombiglyze', 2), ('incorrectly', 1), ('package', 1), ('mg/500', 1), ('whereas', 1), ('labeling', 1), ('physician', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: MULTIVITAMIN/MULTIMINERAL, CHEW Tablet, 0 mg may have potentially been mislabeled as one of the following drugs: MELATONIN, Tablet, 1 mg, NDC 74312002832, Pedigree: W003717, EXP: 6/26/2014; PYRIDOXINE HCL, Tablet, 50 mg, NDC 51645090901, Pedigree: AD46257_25, EXP: 5/15/2014; CHOLECALCIFEROL, Capsule, 2000 units, NDC 00536379001, Pedigree: AD73521_7, EXP: 5/30/2014. \n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('tablet', 3), ('mg', 3), ('ndc', 3), ('multivitamin/multimineral', 1), ('may', 1), ('labeling', 1), ('pyridoxine', 1), ('ad46257_25', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Error on Declared Strength; The outer light protective bags, where the ephedrine sulfate injection syringes are stored, were mislabeled with 25 mg/mL in big font and 5 mg/mL in small font, however, the actual syringes were correctly labeled as 25 mg/5 mL.\n",
"top 10 keywords: [('syringes', 2), ('font', 2), ('mg/ml', 2), ('error', 1), ('however', 1), ('injection', 1), ('labeled', 1), ('bags', 1), ('sulfate', 1), ('mg/5', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA: Product was found to contain undeclared active pharmaceutical ingredient: Phenolphthalein.\n",
"top 10 keywords: [('marketed', 1), ('phenolphthalein', 1), ('found', 1), ('approved', 1), ('without', 1), ('nda/anda', 1), ('contain', 1), ('pharmaceutical', 1), ('undeclared', 1), ('ingredient', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Exp Date\n",
"top 10 keywords: [('incorrect', 1), ('missing', 1), ('exp', 1), ('date', 1), ('and/or', 1), ('lot', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Superpotent; benzocaine\n",
"top 10 keywords: [('benzocaine', 1), ('superpotent', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications : Out-of-specification result for an unidentified impurity at the 12 month stability test point.\n",
"top 10 keywords: [('out-of-specification', 1), ('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('stability', 1), ('test', 1), ('result', 1), ('unidentified', 1), ('month', 1), ('impurity', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance(s); Perrigo has been notified of a recall by the manufacturer of this product, West-Ward Pharmaceuticals. This is a sub-recall due to tablets contaminated with trace amounts of food-grade lubricant, as well as stainless steel inclusions\n",
"top 10 keywords: [('inclusions', 1), ('presence', 1), ('pharmaceuticals', 1), ('steel', 1), ('foreign', 1), ('notified', 1), ('lubricant', 1), ('product', 1), ('stainless', 1), ('contaminated', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications: Out of specification results for impurities testing was obtained at the 6 and 9 month time points.\n",
"top 10 keywords: [('results', 1), ('specifications', 1), ('failed', 1), ('impurities/degradation', 1), ('obtained', 1), ('time', 1), ('points', 1), ('specification', 1), ('impurities', 1), ('month', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: VALSARTAN, Tablet, 320 mg may have potentially been mislabeled as the following drug: CILOSTAZOL, Tablet, 100 mg, NDC 60505252201, Pedigree: AD65475_4, EXP: 5/28/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('cilostazol', 1), ('valsartan', 1), ('mixup', 1), ('potentially', 1), ('may', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Lot and/or Exp Date - Product is missing or has illegible lot and expiry codes, as well as defective or cracked caps.\n",
"top 10 keywords: [('missing', 2), ('lot', 2), ('cracked', 1), ('illegible', 1), ('exp', 1), ('caps', 1), ('labeling', 1), ('incorrect', 1), ('defective', 1), ('date', 1)]\n",
"---\n",
"reason_for_recall : Failed Impurities/Degradation Specifications.\n",
"top 10 keywords: [('specifications', 1), ('failed', 1), ('impurities/degradation', 1)]\n",
"---\n",
"reason_for_recall : Presence of Particulate Matter: particulate matter was found during the manufacturing process.\n",
"top 10 keywords: [('particulate', 2), ('matter', 2), ('process', 1), ('presence', 1), ('found', 1), ('manufacturing', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: Aluminum crimps do not fully seal the rubber stopper to the vials.\n",
"top 10 keywords: [('vials', 1), ('crimps', 1), ('lack', 1), ('assurance', 1), ('seal', 1), ('stopper', 1), ('rubber', 1), ('aluminum', 1), ('fully', 1), ('sterility', 1)]\n",
"---\n",
"reason_for_recall : Labeling:Label Mixup; VITAMIN B COMPLEX W/C Capsule may be potentially mislabeled as SODIUM CHLORIDE, Tablet, 1 mg, NDC 00223176001, Pedigree: AD39560_1, EXP: 5/13/2014.\n",
"top 10 keywords: [('mislabeled', 1), ('pedigree', 1), ('chloride', 1), ('tablet', 1), ('exp', 1), ('mixup', 1), ('b', 1), ('vitamin', 1), ('mg', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Presence of Precipitate; white substance confirmed as Guaifenesin, an active ingredient was observed in some bottles. If the product is shaken or warmed the white particles goes into the solution.\n",
"top 10 keywords: [('white', 2), ('goes', 1), ('substance', 1), ('presence', 1), ('bottles', 1), ('active', 1), ('observed', 1), ('confirmed', 1), ('shaken', 1), ('solution', 1)]\n",
"---\n",
"reason_for_recall : Failed Content Uniformity Specifications; at the 18 month time point. \n",
"top 10 keywords: [('specifications', 1), ('content', 1), ('time', 1), ('failed', 1), ('month', 1), ('point', 1), ('uniformity', 1)]\n",
"---\n",
"reason_for_recall : Miscalibrated and/or Defective Delivery System: Genentech has received complaints for Nutropin AQ NuSpin 10 & 20 reporting that the dose knob spun slowly and the injection took longer than usual (slow dose delivery).\n",
"top 10 keywords: [('dose', 2), ('delivery', 2), ('received', 1), ('spun', 1), ('reporting', 1), ('usual', 1), ('longer', 1), ('slowly', 1), ('genentech', 1), ('knob', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Test Requirements: During analysis of long term stability studies at 3 months time point, an OOS was reported for Quetiapine Fumarate Tablets, 25 mg.\n",
"top 10 keywords: [('studies', 1), ('months', 1), ('analysis', 1), ('requirements', 1), ('oos', 1), ('test', 1), ('mg', 1), ('reported', 1), ('tablets', 1), ('fumarate', 1)]\n",
"---\n",
"reason_for_recall : Incorrect Expiration Date: The \"11/06\" expiration date printed on the tray (secondary packaging) is incorrect (it should be 11/2016)\n",
"top 10 keywords: [('incorrect', 2), ('expiration', 2), ('date', 2), ('secondary', 1), ('tray', 1), ('packaging', 1), ('printed', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/1,100 mg may be potentially mislabeled as CYANOCOBALAMIN, Tablet, 1000 mcg, NDC 00536355601, Pedigree: W003788, EXP: 6/27/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 00904404360, Pedigree: W003870, EXP: 6/27/2014. \n",
"top 10 keywords: [('pedigree', 2), ('exp', 2), ('mg', 2), ('capsule', 2), ('ndc', 2), ('bicarbonate', 1), ('omega-3', 1), ('mixup', 1), ('mcg', 1), ('mg/1,100', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: chlorproMAZINE HCl, Tablet, 50 mg may have potentially been mislabeled as the following drug: ACAMPROSATE CALCIUM DR, Tablet, 333 mg, NDC 00456333001, Pedigree: AD32973_1, EXP: 5/9/2014. \n",
"top 10 keywords: [('tablet', 2), ('mg', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('chlorpromazine', 1), ('potentially', 1)]\n",
"---\n",
"reason_for_recall : Presence of Foreign Substance, Sandoz is recalling certain lots of Amoxicillin Capsules, USP 500 mg due to potential contamination with fragments of stainless steel wire mesh.\n",
"top 10 keywords: [('substance', 1), ('presence', 1), ('wire', 1), ('amoxicillin', 1), ('fragments', 1), ('mg', 1), ('due', 1), ('certain', 1), ('lots', 1), ('foreign', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility: FDA inspection findings resulted in concerns regarding quality control processes.\n",
"top 10 keywords: [('control', 1), ('lack', 1), ('assurance', 1), ('inspection', 1), ('regarding', 1), ('processes', 1), ('sterility', 1), ('resulted', 1), ('quality', 1), ('concerns', 1)]\n",
"---\n",
"reason_for_recall : Penicillin Cross Contamination: All lots of all products repackaged between 01/05/12 through 02/12/15 are being recalled because they were repackaged in a facility with penicillin products without adequate separation which could introduce the potential for cross contamination with penicillin.\n",
"top 10 keywords: [('penicillin', 3), ('products', 2), ('cross', 2), ('contamination', 2), ('repackaged', 2), ('could', 1), ('without', 1), ('adequate', 1), ('potential', 1), ('recalled', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specification: One lot of product did not meet the first stage dissolution specification limits. \n",
"top 10 keywords: [('specification', 2), ('dissolution', 2), ('first', 1), ('limits', 1), ('failed', 1), ('stage', 1), ('product', 1), ('meet', 1), ('one', 1), ('lot', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix-up: This recall was initiated after identifying that the label statement on the blister strip regarding the maximum number of capsules/caplets that should be taken within a 24-hour period, does not match the statement on the carton. \n",
"top 10 keywords: [('statement', 2), ('label', 2), ('taken', 1), ('recall', 1), ('mix-up', 1), ('24-hour', 1), ('initiated', 1), ('period', 1), ('match', 1), ('regarding', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without An Approved NDA/ANDA: Product is sold over the counter whose labeling indicates it is to be used for parenteral injection.\n",
"top 10 keywords: [('marketed', 1), ('counter', 1), ('sold', 1), ('approved', 1), ('without', 1), ('nda/anda', 1), ('indicates', 1), ('labeling', 1), ('parenteral', 1), ('injection', 1)]\n",
"---\n",
"reason_for_recall : Failed Stability Specifications: Low Out of Specification results for alcohol content.\n",
"top 10 keywords: [('results', 1), ('low', 1), ('specifications', 1), ('failed', 1), ('stability', 1), ('alcohol', 1), ('specification', 1), ('content', 1)]\n",
"---\n",
"reason_for_recall : Lack of Assurance of Sterility; possible loose crimp applied to fliptop vial\n",
"top 10 keywords: [('vial', 1), ('applied', 1), ('possible', 1), ('assurance', 1), ('crimp', 1), ('fliptop', 1), ('sterility', 1), ('loose', 1), ('lack', 1)]\n",
"---\n",
"reason_for_recall : Defective Container: Stability samples of both products were noted to have some white solid product residue, identified as dried active ingredients along with the preservative, on the exterior of the bottles. \n",
"top 10 keywords: [('dried', 1), ('bottles', 1), ('exterior', 1), ('active', 1), ('products', 1), ('container', 1), ('along', 1), ('samples', 1), ('preservative', 1), ('defective', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Error on Declared Strength; Firm states that erroneous potency information was found on the label.\n",
"top 10 keywords: [('label', 2), ('error', 1), ('strength', 1), ('erroneous', 1), ('found', 1), ('states', 1), ('potency', 1), ('firm', 1), ('information', 1), ('declared', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup; MELATONIN, Tablet, 3 mg may be potentially mislabeled as VITAMIN B COMPLEX, Capsule, NDC 00536478701, Pedigree: AD32757_4, EXP: 5/13/2014; MULTIVITAMIN/ MULTIMINERAL/ LUTEIN, Capsule, NDC 24208063210, Pedigree: W003025, EXP: 6/12/2014; LACTASE ENZYME, Tablet, 3000 units, NDC 24385014976, Pedigree: W003721, EXP: 6/26/2014; GLUCOSAMINE/CHONDROITIN DS, Capsule, 500 mg/400\n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('capsule', 3), ('ndc', 3), ('tablet', 2), ('may', 1), ('labeling', 1), ('enzyme', 1), ('multimineral/', 1), ('ad32757_4', 1)]\n",
"---\n",
"reason_for_recall : Marketed Without an Approved NDA/ANDA; products have been found to contain tadalafil, the active ingredient in an FDA approved product used to treat erectile dysfunction, making this product an unapproved drug\n",
"top 10 keywords: [('approved', 2), ('product', 2), ('marketed', 1), ('drug', 1), ('tadalafil', 1), ('found', 1), ('products', 1), ('without', 1), ('nda/anda', 1), ('contain', 1)]\n",
"---\n",
"reason_for_recall : Failed Dissolution Specifications: Routine stability testing at the 12-month interval yielded an out-of-specification (OOS) result for dissolution testing.\n",
"top 10 keywords: [('testing', 2), ('dissolution', 2), ('out-of-specification', 1), ('interval', 1), ('12-month', 1), ('result', 1), ('yielded', 1), ('specifications', 1), ('failed', 1), ('routine', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Incorrect or Missing Package Insert; The back of the Medication Guide attached to the Package Insert for Ritalin Tablets was printed with information related to Ritalin SR (Sustained Release) Tablets. Both products, Ritalin Tablets and Ritalin SR Tablets utilize a combined Package Insert. The individual Medication Guides are attached to the Package Insert via a perforation. Although t\n",
"top 10 keywords: [('insert', 4), ('ritalin', 4), ('package', 4), ('tablets', 4), ('medication', 2), ('sr', 2), ('attached', 2), ('guide', 1), ('sustained', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: MINOCYCLINE HCL, Capsule, 100 mg may have potentially been mislabeled as the following drug: PROGESTERONE, Capsule, 100 mg, NDC 00591396401, Pedigree: AD73611_4, EXP: 5/30/2014. \n",
"top 10 keywords: [('mg', 2), ('capsule', 2), ('mislabeled', 1), ('drug', 1), ('pedigree', 1), ('exp', 1), ('mixup', 1), ('hcl', 1), ('potentially', 1), ('ad73611_4', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: FENOFIBRATE, Tablet, 54 mg may have potentially been mislabeled as one of the following drugs: LUBIPROSTONE, Capsule, 24 MCG, NDC 64764024060, Pedigree: AD21790_46, EXP: 5/1/2014; aMILoride HCl, Tablet, 5 mg, NDC 64980015101, Pedigree: AD60272_55, EXP: 5/22/2014; PROPRANOLOL HCL, Tablet, 10 mg, NDC 23155011001, Pedigree: W002732, EXP: 6/6/2014. \n",
"top 10 keywords: [('exp', 3), ('pedigree', 3), ('tablet', 3), ('mg', 3), ('ndc', 3), ('hcl', 2), ('mixup', 1), ('mcg', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Subpotent; phenylephrine HCl\n",
"top 10 keywords: [('subpotent', 1), ('hcl', 1), ('phenylephrine', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Not Elsewhere Classified: Pentrexcilina Tablets and Pentrexcilina Liquid are being recalled because the product labels are misleading because they may be confused with Pentrexyl, a prescription antibiotic used to treat respiratory illnesses in Mexico.\n",
"top 10 keywords: [('pentrexcilina', 2), ('misleading', 1), ('tablets', 1), ('classified', 1), ('elsewhere', 1), ('pentrexyl', 1), ('illnesses', 1), ('respiratory', 1), ('may', 1), ('labeling', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mixup: carBAMazepine ER, Tablet, 100 mg may have potentially been mislabeled as one of the following drugs: ISOSORBIDE DINITRATE ER, Tablet, 40 mg, NDC 57664060088, Pedigree: AD23082_4, EXP: 5/3/2014; SIROLIMUS, Tablet, 1 mg, NDC 00008104105, Pedigree: W003329, EXP: 6/18/2014. \n",
"top 10 keywords: [('mg', 3), ('tablet', 3), ('pedigree', 2), ('ndc', 2), ('exp', 2), ('er', 2), ('mislabeled', 1), ('dinitrate', 1), ('carbamazepine', 1), ('isosorbide', 1)]\n",
"---\n",
"reason_for_recall : Presence of particulate matter: characterized as thin colorless flakes that are visually and chemically consistent with glass delamination observed in reserve sample vials\n",
"top 10 keywords: [('presence', 1), ('reserve', 1), ('vials', 1), ('observed', 1), ('flakes', 1), ('particulate', 1), ('characterized', 1), ('chemically', 1), ('visually', 1), ('thin', 1)]\n",
"---\n",
"reason_for_recall : Labeling: Label Mix Up- Incorrect back label applied to the product.\n",
"top 10 keywords: [('label', 2), ('incorrect', 1), ('mix', 1), ('up-', 1), ('back', 1), ('applied', 1), ('product', 1), ('labeling', 1)]\n",
"---"
]
}
],
"source": [
"for category in set(data['reason_for_recall']):\n",
" print('reason_for_recall :', category)\n",
" print('top 10 keywords:', keywords(category))\n",
" print('---')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Looking at these lists, we can formulate some hypotheses:\n",
"\n",
"- the sport category deals with the champions' league, the footbal season and NFL\n",
"- some tech articles refer to Google\n",
"- the business news seem to be highly correlated with US politics and Donald Trump (this mainly originates from us press)\n",
"\n",
"Extracting the top 10 most frequent words per each category is straightforward and can point to important keywords. \n",
"\n",
"However, although we did preprocess the descriptions and remove the stop words before, we still end up with words that are very generic (e.g: today, world, year, first) and don't carry a specific meaning that may describe a topic.\n",
"\n",
"As a first approach to prevent this, we'll use tf-idf"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Text processing : tf-idf\n",
"[[ go back to the top ]](#Table-of-contents)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"tf-idf stands for term frequencey-inverse document frequency. It's a numerical statistic intended to reflect how important a word is to a document or a corpus (i.e a collection of documents). \n",
"\n",
"To relate to this post, words correpond to tokens and documents correpond to descriptions. A corpus is therefore a collection of descriptions.\n",
"\n",
"The tf-idf a of a term t in a document d is proportional to the number of times the word t appears in the document d but is also offset by the frequency of the term t in the collection of the documents of the corpus. This helps adjusting the fact that some words appear more frequently in general and don't especially carry a meaning.\n",
"\n",
"tf-idf acts therefore as a weighting scheme to extract relevant words in a document.\n",
"\n",
"$$tfidf(t,d) = tf(t,d) . idf(t) $$\n",
"\n",
"$tf(t,d)$ is the term frequency of t in the document d (i.e. how many times the token t appears in the description d)\n",
"\n",
"$idf(t)$ is the inverse document frequency of the term t. it's computed by this formula:\n",
"\n",
"$$idf(t) = log(1 + \\frac{1 + n_d}{1 + df(d,t)}) $$\n",
"\n",
"- $n_d$ is the number of documents\n",
"- $df(d,t)$ is the number of documents (or descriptions) containing the term t\n",
"\n",
"Computing the tfidf matrix is done using the TfidfVectorizer method from scikit-learn. Let's see how to do this:"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"from sklearn.feature_extraction.text import TfidfVectorizer\n",
"\n",
"# min_df is minimum number of documents that contain a term t\n",
"# max_features is maximum number of unique tokens (across documents) that we'd consider\n",
"# TfidfVectorizer preprocesses the descriptions using the tokenizer we defined above\n",
"\n",
"vectorizer = TfidfVectorizer(min_df=10, max_features=10000, tokenizer=tokenizer, ngram_range=(1, 2))\n",
"vz = vectorizer.fit_transform(list(data['reason_for_recall']))"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"(2067, 669)"
]
},
"execution_count": 24,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"vz.shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"vz is a tfidf matrix. \n",
"\n",
"- its number of rows is the total number of documents (descriptions) \n",
"- its number of columns is the total number of unique terms (tokens) across the documents (descriptions)\n",
"\n",
"$x_{dt} = tfidf(t,d)$ where $x_{dt}$ is the element at the index (d,t) in the matrix."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's create a dictionary mapping the tokens to their tfidf values "
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"tfidf = dict(zip(vectorizer.get_feature_names(), vectorizer.idf_))\n",
"tfidf = pd.DataFrame(columns=['tfidf']).from_dict(dict(tfidf), orient='index')\n",
"tfidf.columns = ['tfidf']"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We can visualize the distribution of the tfidf scores through an histogram"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"<matplotlib.axes._subplots.AxesSubplot at 0x2bcb33dd8d0>"
]
},
"execution_count": 26,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAA2oAAAGfCAYAAAAu6yGIAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAGn1JREFUeJzt3XGsXvdZH/DvQ9yKEEPS0u4qcqq5ElVRV6stucpAndB1\nQ1HBiOSPqirqqgQF+Y9BF0YmMEgTQhqS+SNApU3TIsqwNODShVaJGlqIQrwJaQ3YbZlpQ9US3BEv\nTYAlAXcRneHZH37TmeD4vvb7vvf9+X0/H8m655z3nHuec/3Y1te/c36nujsAAACM4+uWXQAAAAB/\nn6AGAAAwGEENAABgMIIaAADAYAQ1AACAwQhqAAAAgxHUAAAABiOoAQAADEZQAwAAGMye3TzZa17z\nmt6/f//Cz/OVr3wl11133cLPA7tNb7OK9DWrSF+zqvT27E6ePPkX3f3anfabKqhV1b9K8kNJOsmp\nJD+Y5MYk20m+OcnJJO/v7q9e6vvs378/J06cmOaUMzl+/Hi2trYWfh7YbXqbVaSvWUX6mlWlt2dX\nVV+aZr8db32sqn1J/mWSze5+c5Jrkrw3yc8l+YXu/pYkzya568rLBQAA4EXTPqO2J8m1VbUnyTck\neSrJO5LcP/n8WJLb518eAADA+qnu3nmnqruT/GySF5L8TpK7k3xyMpqWqnpdko9PRtxeeuzhJIeT\nZGNj4+bt7e35Vf8yzp49m7179y78PLDb9DarSF+zivQ1q0pvz+7gwYMnu3tzp/12fEatql6V5LYk\nr0/yXJL/kuRd0xbS3fcluS9JNjc3ezfuaXXvLKtKb7OK9DWrSF+zqvT27pnm1sfvSvKn3f3n3f1/\nk3wkyduT3DC5FTJJbkpyZkE1AgAArJVpgtr/TPLtVfUNVVVJbk3yuSSPJnn3ZJ87kjywmBIBAADW\ny45Brbsfy/lJQz6V81Pzf13O38r4E0l+rKq+mPNT9H9ogXUCAACsjaneo9bdP53kp1+y+Ykkt8y9\nIgAAgDU37fT8AAAA7BJBDQAAYDCCGgAAwGAENQAAgMEIagAAAIMR1AAAAAYjqAEAAAxGUAMAABjM\nVC+8BgAA1tP+Iw99bfmeA+dy5wXrOzl99NAiSloLRtQAAAAGI6gBAAAMRlADAAAYjKAGAAAwGEEN\nAABgMIIaAADAYAQ1AACAwQhqAAAAgxHUAAAABiOoAQAADEZQAwAAGIygBgAAMBhBDQAAYDCCGgAA\n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\n",
"text/plain": [
"<matplotlib.figure.Figure at 0x2bcb3253860>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"tfidf.tfidf.hist(bins=50, figsize=(15,7))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's display the 30 tokens that have the lowest tfidf scores "
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>tfidf</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>labeling</th>\n",
" <td>2.063454</td>\n",
" </tr>\n",
" <tr>\n",
" <th>may</th>\n",
" <td>2.133048</td>\n",
" </tr>\n",
" <tr>\n",
" <th>label</th>\n",
" <td>2.172869</td>\n",
" </tr>\n",
" <tr>\n",
" <th>mg</th>\n",
" <td>2.232420</td>\n",
" </tr>\n",
" <tr>\n",
" <th>labeling label</th>\n",
" <td>2.240746</td>\n",
" </tr>\n",
" <tr>\n",
" <th>exp</th>\n",
" <td>2.292216</td>\n",
" </tr>\n",
" <tr>\n",
" <th>tablet</th>\n",
" <td>2.293978</td>\n",
" </tr>\n",
" <tr>\n",
" <th>potentially</th>\n",
" <td>2.317173</td>\n",
" </tr>\n",
" <tr>\n",
" <th>mixup</th>\n",
" <td>2.342768</td>\n",
" </tr>\n",
" <tr>\n",
" <th>label mixup</th>\n",
" <td>2.342768</td>\n",
" </tr>\n",
" <tr>\n",
" <th>ndc</th>\n",
" <td>2.342768</td>\n",
" </tr>\n",
" <tr>\n",
" <th>may potentially</th>\n",
" <td>2.348339</td>\n",
" </tr>\n",
" <tr>\n",
" <th>pedigree</th>\n",
" <td>2.348339</td>\n",
" </tr>\n",
" <tr>\n",
" <th>ndc pedigree</th>\n",
" <td>2.350203</td>\n",
" </tr>\n",
" <tr>\n",
" <th>mislabeled</th>\n",
" <td>2.361460</td>\n",
" </tr>\n",
" <tr>\n",
" <th>potentially mislabeled</th>\n",
" <td>2.388230</td>\n",
" </tr>\n",
" <tr>\n",
" <th>tablet mg</th>\n",
" <td>2.419729</td>\n",
" </tr>\n",
" <tr>\n",
" <th>mg ndc</th>\n",
" <td>2.446073</td>\n",
" </tr>\n",
" <tr>\n",
" <th>mg may</th>\n",
" <td>2.511844</td>\n",
" </tr>\n",
" <tr>\n",
" <th>product</th>\n",
" <td>2.613314</td>\n",
" </tr>\n",
" <tr>\n",
" <th>drug</th>\n",
" <td>2.799526</td>\n",
" </tr>\n",
" <tr>\n",
" <th>failed</th>\n",
" <td>2.829202</td>\n",
" </tr>\n",
" <tr>\n",
" <th>capsule</th>\n",
" <td>2.927227</td>\n",
" </tr>\n",
" <tr>\n",
" <th>following</th>\n",
" <td>3.043350</td>\n",
" </tr>\n",
" <tr>\n",
" <th>specifications</th>\n",
" <td>3.062183</td>\n",
" </tr>\n",
" <tr>\n",
" <th>presence</th>\n",
" <td>3.065993</td>\n",
" </tr>\n",
" <tr>\n",
" <th>hcl</th>\n",
" <td>3.124949</td>\n",
" </tr>\n",
" <tr>\n",
" <th>specification</th>\n",
" <td>3.149540</td>\n",
" </tr>\n",
" <tr>\n",
" <th>capsule mg</th>\n",
" <td>3.204992</td>\n",
" </tr>\n",
" <tr>\n",
" <th>due</th>\n",
" <td>3.316217</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" tfidf\n",
"labeling 2.063454\n",
"may 2.133048\n",
"label 2.172869\n",
"mg 2.232420\n",
"labeling label 2.240746\n",
"exp 2.292216\n",
"tablet 2.293978\n",
"potentially 2.317173\n",
"mixup 2.342768\n",
"label mixup 2.342768\n",
"ndc 2.342768\n",
"may potentially 2.348339\n",
"pedigree 2.348339\n",
"ndc pedigree 2.350203\n",
"mislabeled 2.361460\n",
"potentially mislabeled 2.388230\n",
"tablet mg 2.419729\n",
"mg ndc 2.446073\n",
"mg may 2.511844\n",
"product 2.613314\n",
"drug 2.799526\n",
"failed 2.829202\n",
"capsule 2.927227\n",
"following 3.043350\n",
"specifications 3.062183\n",
"presence 3.065993\n",
"hcl 3.124949\n",
"specification 3.149540\n",
"capsule mg 3.204992\n",
"due 3.316217"
]
},
"execution_count": 28,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"tfidf.sort_values(by=['tfidf'], ascending=True).head(30)"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>tfidf</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>containing</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>product meet</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>incorrectly labeled</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>stability test</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>subpotent single</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>manufacture</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>inc. recalling</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>data support</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>metal</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>related compound</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>tested</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>acidophilus</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>out-of-specification results</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>tacrolimus capsule</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>exp calcium</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>control procedures</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>actually</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>phosphate</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>exp levothyroxine</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>usp units</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>penicillin cross</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>presence undeclared</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>affected</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>acetate tablet</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>impurity/degradation specification</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>fda laboratory</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>mg tablet</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>penicillin</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>stability data</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" <tr>\n",
" <th>discolored</th>\n",
" <td>6.236442</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" tfidf\n",
"containing 6.236442\n",
"product meet 6.236442\n",
"incorrectly labeled 6.236442\n",
"stability test 6.236442\n",
"subpotent single 6.236442\n",
"manufacture 6.236442\n",
"inc. recalling 6.236442\n",
"data support 6.236442\n",
"metal 6.236442\n",
"related compound 6.236442\n",
"tested 6.236442\n",
"acidophilus 6.236442\n",
"out-of-specification results 6.236442\n",
"tacrolimus capsule 6.236442\n",
"exp calcium 6.236442\n",
"control procedures 6.236442\n",
"actually 6.236442\n",
"phosphate 6.236442\n",
"exp levothyroxine 6.236442\n",
"usp units 6.236442\n",
"penicillin cross 6.236442\n",
"presence undeclared 6.236442\n",
"affected 6.236442\n",
"acetate tablet 6.236442\n",
"impurity/degradation specification 6.236442\n",
"fda laboratory 6.236442\n",
"mg tablet 6.236442\n",
"penicillin 6.236442\n",
"stability data 6.236442\n",
"discolored 6.236442"
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"tfidf.sort_values(by=['tfidf'], ascending=False).head(30)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We end up with less common words. These words naturally carry more meaning for the given description and may outline the underlying topic."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"As you've noticed, the documents have more than 4000 features (see the vz shape). put differently, each document has more than 4000 dimensions.\n",
"\n",
"If we want to plot them like we usually do with geometric objects, we need to reduce their dimension to 2 or 3 depending on whether we want to display on a 2D plane or on a 3D space. This is what we call dimensionality reduction.\n",
"\n",
"To perform this task, we'll be using a combination of two popular techniques: Singular Value Decomposition (SVD) to reduce the dimension to 50 and then t-SNE to reduce the dimension from 50 to 2. t-SNE is more suitable for dimensionality reduction to 2 or 3.\n",
"\n",
"Let's start reducing the dimension of each vector to 50 by SVD."
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"from sklearn.decomposition import TruncatedSVD\n",
"svd = TruncatedSVD(n_components=50, random_state=0)\n",
"svd_tfidf = svd.fit_transform(vz)"
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"(2067, 50)"
]
},
"execution_count": 30,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"svd_tfidf.shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Bingo. Now let's do better. From 50 to 2!"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[t-SNE] Computing pairwise distances...\n",
"[t-SNE] Computing 91 nearest neighbors...\n",
"[t-SNE] Computed conditional probabilities for sample 1000 / 2067\n",
"[t-SNE] Computed conditional probabilities for sample 2000 / 2067\n",
"[t-SNE] Computed conditional probabilities for sample 2067 / 2067\n",
"[t-SNE] Mean sigma: 0.209879\n",
"[t-SNE] KL divergence after 100 iterations with early exaggeration: 0.926147\n",
"[t-SNE] Error after 275 iterations: 0.926147\n"
]
}
],
"source": [
"from sklearn.manifold import TSNE\n",
"\n",
"tsne_model = TSNE(n_components=2, verbose=1, random_state=0)\n",
"tsne_tfidf = tsne_model.fit_transform(svd_tfidf)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's check the size."
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"(2067, 2)"
]
},
"execution_count": 32,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"tsne_tfidf.shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Each description is now modeled by a two dimensional vector. \n",
"\n",
"Let's see what tsne_idf looks like."
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"array([[ 4.80597892, -15.30646165],\n",
" [ -5.43228421, 5.17716947],\n",
" [ -3.29478211, -5.28430408],\n",
" ..., \n",
" [-14.57378715, 4.72937416],\n",
" [ -4.1213616 , 3.65900702],\n",
" [ 0.40697127, -9.73243275]])"
]
},
"execution_count": 33,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"tsne_tfidf"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We're having two float numbers per discription. This is not interpretable at first sight. \n",
"\n",
"What we need to do is find a way to display these points on a plot and also attribute the corresponding description to each point.\n",
"\n",
"matplotlib is a very good python visualization libaray. However, we cannot easily use it to display our data since we need interactivity on the objects. One other solution could be d3.js that provides huge capabilities in this field. \n",
"\n",
"Right now I'm choosing to stick to python so I found a tradeoff : it's called Bokeh.\n",
"\n",
"\"Bokeh is a Python interactive visualization library that targets modern web browsers for presentation. Its goal is to provide elegant, concise construction of novel graphics in the style of D3.js, and to extend this capability with high-performance interactivity over very large or streaming datasets. Bokeh can help anyone who would like to quickly and easily create interactive plots, dashboards, and data applications.\" To know more, please refer to this <a href=\"http://bokeh.pydata.org/en/latest/\"> link </a>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's start by importing bokeh packages and initializing the plot figure."
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"import bokeh.plotting as bp\n",
"from bokeh.models import HoverTool, BoxSelectTool\n",
"from bokeh.plotting import figure, show, output_notebook"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
" <div class=\"bk-root\">\n",
" <a href=\"http://bokeh.pydata.org\" target=\"_blank\" class=\"bk-logo bk-logo-small bk-logo-notebook\"></a>\n",
" <span id=\"c81e404c-da66-4529-a462-39f6fae6a650\">Loading BokehJS ...</span>\n",
" </div>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/javascript": [
"\n",
"(function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
"\n",
" var force = true;\n",
"\n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force === true) {\n",
" window._bokeh_onload_callbacks = [];\n",
" window._bokeh_is_loading = undefined;\n",
" }\n",
"\n",
"\n",
" \n",
" if (typeof (window._bokeh_timeout) === \"undefined\" || force === true) {\n",
" window._bokeh_timeout = Date.now() + 5000;\n",
" window._bokeh_failed_load = false;\n",
" }\n",
"\n",
" var NB_LOAD_WARNING = {'data': {'text/html':\n",
" \"<div style='background-color: #fdd'>\\n\"+\n",
" \"<p>\\n\"+\n",
" \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n",
" \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n",
" \"</p>\\n\"+\n",
" \"<ul>\\n\"+\n",
" \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n",
" \"<li>use INLINE resources instead, as so:</li>\\n\"+\n",
" \"</ul>\\n\"+\n",
" \"<code>\\n\"+\n",
" \"from bokeh.resources import INLINE\\n\"+\n",
" \"output_notebook(resources=INLINE)\\n\"+\n",
" \"</code>\\n\"+\n",
" \"</div>\"}};\n",
"\n",
" function display_loaded() {\n",
" if (window.Bokeh !== undefined) {\n",
" document.getElementById(\"c81e404c-da66-4529-a462-39f6fae6a650\").textContent = \"BokehJS successfully loaded.\";\n",
" } else if (Date.now() < window._bokeh_timeout) {\n",
" setTimeout(display_loaded, 100)\n",
" }\n",
" }\n",
"\n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
"\n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
" return null;\n",
" }\n",
" if (js_urls == null || js_urls.length === 0) {\n",
" run_callbacks();\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"c81e404c-da66-4529-a462-39f6fae6a650\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'c81e404c-da66-4529-a462-39f6fae6a650' but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-0.12.4.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.4.min.js\"];\n",
"\n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.set_log_level(\"info\");\n",
" },\n",
" \n",
" function(Bokeh) {\n",
" \n",
" document.getElementById(\"c81e404c-da66-4529-a462-39f6fae6a650\").textContent = \"BokehJS is loading...\";\n",
" },\n",
" function(Bokeh) {\n",
" console.log(\"Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-0.12.4.min.css\");\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh/release/bokeh-0.12.4.min.css\");\n",
" console.log(\"Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.4.min.css\");\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.4.min.css\");\n",
" }\n",
" ];\n",
"\n",
" function run_inline_js() {\n",
" \n",
" if ((window.Bokeh !== undefined) || (force === true)) {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }if (force === true) {\n",
" display_loaded();\n",
" }} else if (Date.now() < window._bokeh_timeout) {\n",
" setTimeout(run_inline_js, 100);\n",
" } else if (!window._bokeh_failed_load) {\n",
" console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
" window._bokeh_failed_load = true;\n",
" } else if (force !== true) {\n",
" var cell = $(document.getElementById(\"c81e404c-da66-4529-a462-39f6fae6a650\")).parents('.cell').data().cell;\n",
" cell.output_area.append_execute_result(NB_LOAD_WARNING)\n",
" }\n",
"\n",
" }\n",
"\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
"}(this));"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"output_notebook()\n",
"plot_tfidf = bp.figure(plot_width=700, plot_height=600, title=\"tf-idf clustering of the news\",\n",
" tools=\"pan,wheel_zoom,box_zoom,reset,hover,previewsave\",\n",
" x_axis_type=None, y_axis_type=None, min_border=1)"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"tfidf_df = pd.DataFrame(tsne_tfidf, columns=['x', 'y'])\n",
"tfidf_df['recalling_firm'] = data['recalling_firm']\n",
"tfidf_df['reason_for_recall'] = data['reason_for_recall']"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": false
},
"source": [
"Bokeh need a pandas dataframe to be passed as a source data. this is a very elegant way to read data."
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"bk-root\">\n",
" <div class=\"bk-plotdiv\" id=\"c63a22d7-83f7-4133-a029-18697eb66453\"></div>\n",
" </div>\n",
"<script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" var force = false;\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force === true) {\n",
" window._bokeh_onload_callbacks = [];\n",
" window._bokeh_is_loading = undefined;\n",
" }\n",
" \n",
" \n",
" \n",
" if (typeof (window._bokeh_timeout) === \"undefined\" || force === true) {\n",
" window._bokeh_timeout = Date.now() + 0;\n",
" window._bokeh_failed_load = false;\n",
" }\n",
" \n",
" var NB_LOAD_WARNING = {'data': {'text/html':\n",
" \"<div style='background-color: #fdd'>\\n\"+\n",
" \"<p>\\n\"+\n",
" \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n",
" \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n",
" \"</p>\\n\"+\n",
" \"<ul>\\n\"+\n",
" \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n",
" \"<li>use INLINE resources instead, as so:</li>\\n\"+\n",
" \"</ul>\\n\"+\n",
" \"<code>\\n\"+\n",
" \"from bokeh.resources import INLINE\\n\"+\n",
" \"output_notebook(resources=INLINE)\\n\"+\n",
" \"</code>\\n\"+\n",
" \"</div>\"}};\n",
" \n",
" function display_loaded() {\n",
" if (window.Bokeh !== undefined) {\n",
" document.getElementById(\"c63a22d7-83f7-4133-a029-18697eb66453\").textContent = \"BokehJS successfully loaded.\";\n",
" } else if (Date.now() < window._bokeh_timeout) {\n",
" setTimeout(display_loaded, 100)\n",
" }\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
" return null;\n",
" }\n",
" if (js_urls == null || js_urls.length === 0) {\n",
" run_callbacks();\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"c63a22d7-83f7-4133-a029-18697eb66453\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'c63a22d7-83f7-4133-a029-18697eb66453' but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
" \n",
" var js_urls = [];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" (function() {\n",
" var fn = function() {\n",
" var docs_json = {\"1d072a08-68f3-43c2-b0ff-1f46ee973a54\":{\"roots\":{\"references\":[{\"attributes\":{\"data_source\":{\"id\":\"1fb81236-9379-446e-afce-d6ff3e2b51d2\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"0c6f11cf-992e-4c8a-b3aa-003ef6835939\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"1f9463b9-e809-498c-9903-747149e9838b\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"bcab3778-2bd2-4b14-8cca-9dd52c79b7c7\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"index\",\"y\",\"x\",\"recalling_firm\",\"reason_for_recall\"],\"data\":{\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066],\"reason_for_recall\":[\"Defective Container; damaged blister units \",\"Superpotent (Single Ingredient) Drug: Above specification assay results for percentage of magnesium sulfate.\",\"Labeling: Label mix-up; Bottles labeled to contain Morphine Sulfate IR may contain Morphine Sulfate ER and vice-versa. \",\"Presence of Particulate Matter: Lots identified in this recall notification may contain small particulates. \",\"Adulterated Presence of Foreign Tablets: Dr. Reddy's Laboratories has received complaints of mislabeled bottles of Amlodipine Besylate and Benazepril Hydrochloride Capsules and Ciprofloxacin Tablets.\",\"CGMP Deviations: This product is being recalled because expired flavoring was used in the manufacturing of these lots.\",\"Lack of Assurance of Sterility: Franck's Lab Inc. initiated a recall of all Sterile Human Drugs distributed between 11/21/2011 and 05/21/2012 because FDA environmental sampling revealed the presence of microorganisms and fungal growth in the clean room where sterile products were prepared. \",\"NaN\",\"Lack of Assurance of Sterility: Franck's Lab Inc. initiated a recall of all Sterile Human Drugs distributed between 11/21/2011 and 05/21/2012. FDA environmental sampling revealed the presence of microorganisms and fungal growth in the clean room where sterile products were prepared. \",\"NaN\",\"Presence of Particulate Matter: In the course of inspecting retention samples visual particles were observed.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\" Lack of Assurance of Sterility: Franck's Lab Inc. initiated a recall of all Sterile Human Drugs distributed between 11/21/2011 and 05/21/2012. FDA environmental sampling revealed the presence of microorganisms and fungal growth in the clean room where sterile products were prepared. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Chemical Contamination: This product is being recalled because trace amounts of a plasticizer (Di-Octyl Phthalate) may be present in the product.\",\"Defective container; lidding deformity allows the contained product to transpire causing potential viscosity and assay failures. The viscosity and assay failures were due to the loss of moisture. The loss of moisture caused the viscosity to increase and assay to increase relative to the sample volume. \",\"Presence of Foreign Substance: Recall is being initiated due to the presence of a foreign particle identified from a customer complaint.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility \",\"Superpotent (Single Ingredient) Drug: Some of the prefilled cartridge units have been found to be overfilled and contain more than the 1 mL labeled fill volume.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mix-Up: A typographical error in the product form on the carton label incorrectly lists the configuration as 30 \\\"Capsules\\\" (3 x 10) rather than \\\"Tablets\\\". \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\" CGMP Deviations: The pressure gages, vacuum gages, and thermometer had surpassed the calibration expiry period, which may have resulted in overfill/underfill of oxygen cylinders.\",\"Subpotent (Single Ingredient Drug): Low assay at the 9-month test interval.\",\"Subpotent (Single Ingredient Drug): out-of-specification result for coal tar content assay.\",\"Impurities/Degradation Products: Out of specificiation results for impurities at the 18-month room temperature time point.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Subpotent; fluocinolone acetonide\",\"Microbial contamination of Non Sterile Product; contamination with Burkholderia cepacia (manufacturer) \",\"NaN\",\"Marketed Without an Approved ANDA/NDA: presence of sibutramine\",\"CGMP Deviations; no identity or purity testing on incoming oxygen gas, and lack of documentation\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Tablet Thickness: Recall was initiated due to the presence of one slightly oversized tablet in a bottle of the identified lot.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: Franck's Lab Inc. initiated a recall of all Sterile Human Drugs distributed between 11/21/2011 and 05/21/2012 because FDA environmental sampling revealed the presence of microorganisms and fungal growth in the clean room where sterile products were prepared. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed PH specification: The lots of Carboplatin Injection were manufactured from Carboplatin API lots which trended out of specification low pH.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Impurities/Degradation Specifications\",\"NaN\",\"Marketed Without an Approved ANDA/NDA: presence of sildenafil. \",\"Label Mix up; side panel of sticker label applied by Dispensing Solutions Inc. incorrectly indicates product name as Ventolin HFA 90 mcg instead of correctly as Atrovent HFA 12.9 grams Inhalation Aerosol \",\"Labeling Illegible: Missing Label; The voluntary recall of the aforementioned batch of product is being initiated due to two bottles missing container labels.\",\"Labeling: Presence of Undeclared Color Additive; The product is being recalled because several inactive ingredients were not included in the labeling for this product: Undeclared D&C Red #33, FD&C Blue #1, Titanium Dioxide Suspension, Purified Water USP. \",\"Miscalibrated and/or Defective Delivery System: Out of Specification results for mechanical peel force and/or the z-statistic value which relates to the patient's ability to remove the release liner from the patch adhesive prior to administration.\",\"Cross Contamination With Other Products: The firm recalled Zovia, Lutera, Necon, and Zenchent, because certain lots could potentially be contaminated with trace amounts of Hydrochlorothiazide (HCTZ).\",\"Microbial Contamination of Non-Sterile Products: Product is being recalled due to possible microbial contamination by C. difficile discovered in the raw material.\",\"NaN\",\"Subpotent (Single ingredient) drug : This is a sub recall of Teva's Enjuvia due to low Out of Specification (OOS) assay results.\",\"NaN\",\"CGMP Deviations: Eloxatin was manufactured by Ben Venue Laboratories, a contract manufacturer, which was recently inspected by the agency and revealed significant issues in Good Manufacturing Practices.\",\"Labeling: Incorrect or Missing Package Insert: An outdated version of a patient outsert was used when packaged.\",\"Microbial Contamination of Non-Sterile Products; The affected lots were found to be contaminated with bacterium, Burkholderia cepacia complex. \",\"CGMP Deviations: There is potential that Abbott's third party manufacturer, Hospira, may have applied a foreign (incorrect) stopper to vials in a specific lot of Zemplar Injection.\",\"Presence of Particulate Matter\",\"Labeling: Label Mix-Up: Bryant Ranch received Tevas venlafaxine hydrochloride extended-release tablets for repackaging, but labeled it incorrectly as the immediate release formulation. \",\"Adulterated Presence of Foreign Tablets: Dr. Reddy's Laboratories has received complaints of mislabeled bottles of Amlodipine Besylate and Benazepril Hydrochloride Capsules and Ciprofloxacin Tablets\",\"Labeling; labeled with incorrect EXP Date; Incorrect expiration date printed on the outer packaging. Package incorrectly states 5/2014 should correctly state 4/2014\",\"Short Fill: The product is being recalled due to a potential underfill of the affected vials.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mix-up: The product is being recalled because active ingredient in the Drug Facts box incorrectly states &quot;Active Ingredients per dose&quot; Senna Leaf powder 140 mg. It should correctly be stated as &quot;Active ingredient (in each capsule)&quot; Senna Leaf Powder 140 mg.It should correctly be stated as Active ingredient (in each capsule) Senna Leaf Powder 140 mg.\",\"Impurities/Degradation Products: exceeded specification at 3 month stability testing \",\"NaN\",\"GMP deviation; Sr-82 levels exceeded alert limit specification \",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Presence of Undeclared Additive: Medicated lotion soap produced and distributed by the recalling firm contains the unapproved ingredient, Red Dye #15. This dye is not approved for use in food, drugs or cosmetics. \",\"Chemical Contamination: Complaints of an uncharacteristic odor identified as 2,4,6 tribromoanisole. \",\"Subpotent (Single Ingredient Drug): Low assay at the 6-month test interval.\",\"Failed USP Dissolution Test Requirements: Out of Specification dissolution result at 18 month time point \",\"The affected lots of Carboplatin Injection, Cytarabine Injection, Methotrexate Injection, USP, and Paclitaxel Injection are beig recalled due to visible particles embedded in the glass located at the neck of the vial. There may be the potential for product to come into contact with the embedded particles and the particles may become dislodged into the solution.\",\"Lack of Assurance of Sterility: A customer complaint reported some units had incomplete seals (open seals) on the Individual unit packaging.\",\"Labeling Illegible: Some bottles labels have incomplete NDC numbers and missing strength.\",\"NaN\",\"NaN\",\"Tablet Thickness: Product is being recalled due to the potential of being underweight or overweight.\",\"NaN\",\"Failed USP Dissolution Test Requirements: The recalled lots do not meet the specification for dissolution.\",\"Impurities/Degradation Products: The product was found to contain a slightly out of specification level of bromides, exceeding the bromides limit for USP Sodium Chloride. \",\"Misbranded\",\"Subpotent (Single Ingredient Drug): Distribution of product that did not meet specifications. \",\"Superpotent; benzocaine\",\"Presence of Foreign Substance(s): A product complaint was received from a pharmacist who discovered that several tablets displayed brown specks. The same complainant also reported that metal shaving like material was observed on the surface of one tablet. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"The affected lots of Carboplatin Injection, Cytarabine Injection, Methotrexate Injection, USP, and Paclitaxel Injection are being recalled due to visible particles embedded in the glass located at the neck of the vial. There may be the potential for product to come into contact with the embedded particles and the particles may become dislodged into the solution.\",\"Impurities/Degradation Products: An out of specification result for a known impurity of the product occurred during 12 month stability testing.\",\"Labeling: Label Mix-Up; Some bottles of Tizanidine 4mg Tablets, had the incorrect manufacturer (Actavis) printed on the label.\",\"Presence of Particulate Matter: This product is being recalled due to the discovery of particles in the stability samples and retain samples.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Contraceptive Tablets Out of Sequence: This recall has been initiated due to the potential that some regimen packages may not contain placebo tablets.\",\"Impurities/Degradation: This recall is being carried out due to the potential for some lots not meeting impurity specifications.\",\"Tablet Thickness: Potential for some tablets not conforming to weight specifications (under and over weight)\",\"Presence of Particulate Matter: The firm initiated the recall due to visible presence of particulate matter.\",\"Cross Contamination w/Other Products: This active pharmaceutical ingredient is being recalled due to cross contamination with another product.\",\"Tablet Separation: The manufacturer of Arthrotec had recalled the lots that were used to re-package this product because they may contain broken tablets.\",\"Impurities/Degradation Products: High Out of Specification levels for carbostyril, a known degradation product of diazepam.\",\"Subpotent (Single Ingredient Drug): The firm is recalling the product because the product is subpotent and does not meet the labeled 0.25% zinc pyrithione level.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Microbial Contamination of Non Sterile Product; mold\",\"Subpotent (Single Ingredient) Drug: This product is being recalled because of sub-potency of the sennosides.\",\"Presence of Particulate Matter; potential for charcoal particulates\",\"Microbial Contamination of Non-Sterile Products: Laboratory findings of high total plate count above specification.\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility; the firm's medical trays contain Hospira's 0.9% Sodium Chloride bags which were subject to recall due to leaking bags.\",\"NaN\",\"NaN\",\"Does Not Deliver Proper Metered Dose: Potential content of albuterol per dose is below specification.\",\"Labeling: Correct Labeled Product Miscart/Mispack: The shipper label displayed \\\"5 mL x 50,\\\" instead of \\\"10 mL x 50,\\\"\",\"Labeling: Correct Labeled Product Miscart/Mispack: labels on outer containers do not match labels on vials (the correct label)\",\"NaN\",\"Chemical Contamination: Potential for contamination of the products with an aromatic hydrocarbon resin.\",\"Labeling: Not elsewhere classified - count on the label was incorrect.\",\"Defective Container: Excess lidding material accumulation between the seal and the cup resulting in the lid not properly adhering and allowing leakage. \",\"NaN\",\"Chemical Contamination: The IV solutions were packaged in AVIVA containers which may contain trace levels of cumene hydroperoxide (CHP).\",\"NaN\",\"Subpotent; some patches may not contain fentanyl gel \",\"Impurities/Degradation Products: High Out of Specification results for a known impurity resulted at the 12-month room temperature time point.\",\"NaN\",\"Defective container; lidding deformity allows the contained product to transpire causing potential viscosity and assay failures. The viscosity and assay failures were due to the loss of moisture. The loss of moisture caused the viscosity to increase and assay to increase relative to the sample volume\",\"cGMP Deviations; does not meet in process specification requirements\",\"NaN\",\"Subpotent; 9-month stability interval\",\"Lack of Assurance of Sterility\",\"NaN\",\"Presence of Foreign Substance: Uncharacteristic black spots identified as a food grade lubricant with trace amounts of foreign particulates and stainless steel inclusions have been found in the tablets.\",\"Lack of Assurance of Sterility:All sterile products compounded, repackaged, and distributed by this compounding pharmacy due to lack of sterility assurance and concerns associated with the quality control processes. \",\"Tablets/Capsules Imprinted With Wrong ID: Pharmaceuticals are imprinted with an incorrect identifier code on the embossed tablets..\",\"NaN\",\"NaN\",\"Labeling: Label Mix-up: This recall was initiated after identifying that the label statement on the blister strip regarding the maximum number of capsules/caplets that should be taken within a 24-hour period, does not match the statement on the carton. \",\"NaN\",\"Presence of Particulate Matter: visible crystalline particulates and the discovery of crystalline particulate in a retain sample.\",\"Impurities/Degradation Products: Recalled lots do not meet room temperature stability specification for unknown degradant. \",\"Paddock Laboratories, LLC are recalling one lot (2012028142) of Moexipril HCl Tablets 7.5mg (expiration 1/2014) because of a non-conformity dissolution failure result found during routine stability testing at the 6 month test interval.\",\"Presence of Foreign Substance(s); Perrigo has been notified of a recall by the manufacturer of this product, West-Ward Pharmaceuticals. This is a sub-recall due to tablets contaminated with trace amounts of food-grade lubricant, as well as stainless steel inclusions\",\"Defective container; damaged bottles could allow moisture to get into the bottle and thus may impair the quality of the product\",\"Failed USP Content Uniformity Requirements: OOS result reported on retained samples.\",\"NaN\",\"Microbial Contamination of Non-Sterile Products: The product may be contaminated with bacteria. \",\"NaN\",\"Impurities/Degradation Products; Product is being recalled due to the potential of not meeting the Impurity C specification through the product shelf life \",\"NaN\",\"Lack of Assurance of Sterility; Product recalled due to displacement of the aluminum crimp cap during product usage.\",\"NaN\",\"Failed Content Uniformity Specifications\",\"NaN\",\"Labeling: Label Mix-up: The affected units were labeled incorrectly describing the product as \\\"ointment\\\" instead of \\\"solution.\\\"\",\"NaN\",\"Presence of Particulate Matter: Certain batches of Atorvastatin tablets 10 mg, 20 mg and 40 mg may contain small glass particulates.\",\"NaN\",\"Labeling: Label mix-up -outer carton incorrectly labeled as aspirin chewable tablets. \",\"NaN\",\"Impurities/Degradation Products: High Out-of-specification results were obtained for both known and unknown impurities.\",\"Subpotent (Multiple Ingredient) Drug: Low out of specification assay results for the hydrocodone bitartrate ingredient was found.\",\"NaN\",\"NaN\",\"NaN\",\"Miscalibrated/Defective Delivery System; exceeded the specification for both mechanical peel force (MPF) and/or the z-statistic value\",\"Superpotent; Cartridges labeled to contain 1 mL found to contain 2.2 mL\",\"Presence of Foreign Substance: Product complaint for the presence of foreign matter identified as silicone within the tablet.\",\"NaN\",\"Adulterated Presence of Foreign Tablets: Customer complaint that some Endocet 10 mg/325 mg tablets were found mixed in a bottle with Endocet 10 mg/650 mg tablets.\",\"Short Fill: These products are being recalled because there is potential that vials with low fill volume were released into distribution.\",\"Marketed Without an Approved NDA/ANDA: Products tested positive for Sildenafil and analogs of Sildenafil.\",\"Subpotent (Single Ingredient) Drug: This product was found to be subpotent for the benzoyl peroxide active ingredient. Additionally, this product is mislabeled because the label either omits or erroneously added inactive ingredients to the label. \",\"NaN\",\"NaN\",\"NaN\",\"Cross Contamination w/Other Products: During stability testing chromatographic review revealed extraneous peaks identified as acetaminophen and codeine. \",\"NaN\",\"Subpotent (Single Ingredient) Drug: This product was found to be subpotent for the salicylic acid ingredient. Additionally, this product is mislabeled because the label either omits or erroneously added inactive ingredients to the label. \",\"Lack of Assurance of Sterility: Procedure kits contain a balanced salt solution that may be contaminated with endotoxins. \",\"Adulterated Presence of Foreign Tablets: A product complaint was received by a pharmacist who discovered an Atorvastatin 20 mg tablet inside a sealed bottle of 90-count Atorvastatin 10 mg.\",\"Superpotent (Multiple Ingredient) Drug: Confirmed customer complaints of oversized tablets resulting in superpotent assays of both the hydrocodone and acetaminophen components. \",\"NaN\",\"NaN\",\"Non-Sterility\",\"Stability data does not support expiration date: Stability data indicates the Carbamide Peroxide will degrade below acceptable levels within the 24-month expiration date printed on the packaging.\",\"Presence of Foreign Substance: Reports of gray smudges identified as minute stainless steel particulates were found in the recalled tablets.\",\"Marketed Without An Approved NDA/ANDA: This product is being recalled because FDA issued a final rule establishing that all over-the-counter (OTC) drug products containing colloidal silver ingredients or silver salts for internal or external use are not generally recognized as safe and effective and are misbranded.\",\"NaN\",\"Labeling; Correct labeled product miscart/mispack: Some Physician sample cartons were incorrectly labeled as Kombiglyze XR 2.5mg/1000mg on the external package carton, whereas the contents were Kombiglyze XR 5 mg/500 mg blister packaged tablets. The individual blister units are labeled correctly.\",\"NaN\",\"NaN\",\"NaN\",\"GMP Deviations\",\"NaN\",\"GMP deficiencies \",\"NaN\",\"NaN\",\"NaN\",\"Subpotent (Single Ingredient) Drug: This product was found to be subpotent for the salicyclic acid active ingredient.\",\"Labeling: Label Mix-up: Product was incorrectly labeled,\\\"Tabs\\\" instead of \\\"Capsules.\\\"\\u001d\",\"Subpotent; 15 month stability\",\"NaN\",\"NaN\",\"Product Lacks Stability: Out-of-specification (OOS) results were observed for assay and description in retain samples.\",\"NaN\",\"Crystallization: Presence of crystals of Nimodipine within the capsule solution.\",\"Marketed Without an Approved ANDA/NDA: presence of sildenafil\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"CGMP Deviations: The products were manufactured with raw material which contain unknown particles believed to be water and dirt.\",\"CGMP Deviations: Product was made with an incorrect ingredient, Laureth-9 was mistakenly substituted for PEG.\",\"Short Fill: some bottles contained less than 120-count per labeled claim.\",\"Impurities/Degradation Products: Out-of-specification results were obtained for a known impurities.\",\"Marketed Without an Approved NDA/ANDA: product tested positive for PDE-5 Sildenafil and PDE-5 Hydroxythiohomosildenafil. Hydroxythiohomosildenafil is an analog of sildenafil, an FDA approved prescription drug for Erectile Dysfunction (ED). \",\"Lack of Assurance of Sterility; the firm's medical trays contain Hospira's 0.9% Sodium Chloride bags which were subject to recall due to leaking bags\",\"Failed USP Dissolution Test Requirements: This sub-recall is in response to Prometheus Laboratories Inc. recall for Mercaptopurine USP 50mg because the lot does not meet the specification for dissolution.\",\"Microbial Contamination of a Non-Sterile Products: Three product lots are contaminated with Burkholderia cepacia.\",\"NaN\",\"Impurity/Degradation; exceeded impurity specification at the 8 and 15 month time points (betacyclodextrin ester 1&amp;2)\",\"NaN\",\"Impurities/Degradation Products: Out of specification results for Related Compound during routine stability testing.\",\"Lack of Assurance of Sterility: Firm mistakenly released quarantined, non conforming material that failed sterility testing.\",\"Adulterated Presence of Foreign Tablets: This product is being recalled becaiuse 30 valacyclovir hydrochloride tablets USP 500 mg were discovered in a bottle labeled Zolpidem Tartrate tables USP 10 mg \",\"NaN\",\"Chemical contamination: Firm's inspection discovered the presence of 2-phenylphenol in the product due to migration from the cardboard cartons in which the product is packaged.\",\"Labeling: Label Mix-Up: Incorrect back labeling of the immediate container of eye drops (unit carton and front label are correct) which do not list three active ingredients: Dextran 70, PEG 400, and povidone. \",\"Defective Container: This recall is being carried out due to the potential for improperly sealed bottles.\",\"Failed USP Dissolution Test Requirements: Out-of-specification dissolution results at the 8 hour stability testing point.\",\"Failed Dissolution Specifications; 36 month stability timepoint\",\"Chemical Contamination: The recall has been initiated based on multiple complaints received from pharmacists and consumers reporting that they detected an off-odor, described as moldy, musty or fishy in nature which has been identified as trace levels of Tribromoanisole (TBA) and Trichloroanisole (TCA).\",\"Failed Impurity/Degradation Specifications due to moisture ingress in individual bottles\",\"Presence of Foreign Substance: Uncharacteristic blacks spots on tablets.\",\"Failed Impurities/Degradation Specifications: 3 month stability testing. \",\"Lack of Assurance of Sterility: Loose crimp applied to the fliptop vial.\",\"Failed Tablet/Capsule Specifications: Product exceeds specification for tablet weight and tablet thickness.\",\"Crystallization: Product is being recalled due to visible particulates identified during a retain sample inspection. Findings have identified the particles as Carboplatin crystals.\",\"Labeling: Not Elsewhere Classified: This product is misbranded because the product is not sterile and the labeling is misleading in relation to sterility claims. \",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: all sterile products compounded, repackaged, and distributed by this compounding pharmacy due to lack of sterility assurance and concerns associated with the quality control processes.\",\"NaN\",\"Marketed Without an Approved NDA/ANDA: product may contain undeclared sildenafil, tadalafil and analogues of these FDA approved active ingredients, making them unapproved drugs\",\"NaN\",\"NaN\",\"Labeling Illegible: Portions of the product labeling in the area of the dosing directions, the warnings & other information sections is obscured.\",\"Miscalibrated and/or Defective Delivery System: Genentech has received complaints for Nutropin AQ NuSpin 10 & 20 reporting that the dose knob spun slowly and the injection took longer than usual (slow dose delivery).\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Defective Container: Product lacks tamper evident breakaway band on cap.\",\"Marketed Without an Approved NDA/ANDA: The products are unapproved drugs\",\"NaN\",\"NaN\",\"Marketed Without An Approved NDA/ANDA: Samples tested by FDA were found to contain sulfoaildenafil, an analogue of sildenafil, an FDA approved drug used in the treatment of male erectile dysfunction, making these products unapproved new drugs. \",\"Subpotent; fluocinolone acetonide. \",\"Microbial Contamination of Non-Sterile Products; Product was found to be contaminated with Sphingomonas paucimobilis bacteria.\",\"NaN\",\"Lack of Assurance of Sterility: Bausch & Lomb, Inc. is recalling 7 Lots of Murocel Methylcellulose Lubricant Opthalmic Solution 1% (15 mL). Product was found to be OOS for Antimicrobial Effectiveness testing (AET) at the 12 month stability time point. \",\"Impurities/Degradation Products: Out Of Specification levels of nitrogen dioxide.\",\"Presence of Particulate Matter: glass delamination\",\"Superpotent (Single Ingredient Drug): salicylic acid \",\"NaN\",\"NaN\",\"Superpotent (Single Ingredient) Drug: All BiCNU lots within expiration which contain carmustine vial lots manufactured by BenVenue Laboratories (BVL) are being recalled because of an overfilled vial discovered during stability testing for a single carmustine lot. \",\"Superpotent (Single Ingredient) Drug: The prefilled cartridge unit has been found to be overfilled and contain more than the 1 mL labeled fill volume.\",\"Lack of assurance of sterility\",\"Failed USP Dissolution Test Requirements: During analysis of long term stability studies at 3 months time point, an OOS was reported for Quetiapine Fumarate Tablets, 25 mg. \",\"NaN\",\"Lack of Assurance of Sterility: Complains of a loose crimp applied to the fliptop vial; and a missing stopper and flip cap were received and therefore sterility cannot be assured.\",\"Failed USP Dissolution Test Requirements: Possible out-of-specification dissolution results at the 8 hour stability testing point.\",\"Lack of Assurance of Sterility; container closure issues with the bulk batch. \",\"NaN\",\"NaN\",\"NaN\",\"Lack of Sterility Assurance\",\"Labeling: Not Elsewhere Classified: Pentrexcilina Tablets and Pentrexcilina Liquid are being recalled because the product labels are misleading because they may be confused with Pentrexyl, a prescription antibiotic used to treat respiratory illnesses in Mexico.\",\"NaN\",\"NaN\",\"cGMP Deviations: Oral products were not manufactured in accordance with Good Manufacturing Practices.\",\"Labeling: Label lacks warning or Rx legend; Certain information was inadvertently excluded from the product carton label.\",\"Failed Dissolution Specifications: The affected lots may not meet the specifications for dissolution over the product shelf life. \",\"Presence of Precipitate; white substance confirmed as Guaifenesin, an active ingredient was observed in some bottles. If the product is shaken or warmed the white particles goes into the solution.\",\"Marketed without an approved NDA/ANDA: Samantha Lynn Inc. is recalling Reumofan Plus Tablets because it contains undeclared drug ingredients making it an unapproved drug. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Presence of Foreign Substance: Uncharacteristic spots identified as steel corrosion, degraded tablet material and hydrocarbon oil with trace amounts of iron were found in tablets.\",\"Chemical Contamination: Uncharacteristic moldy odor due to presence of 2,4,6-tribromoanisole (TBA).\",\"NaN\",\"Lack of Assurance of Sterility: The product is being recalled because the product label does not state sterile in accordance with 21 CFR Part 200.50(a)(1), Ophthalmic Preparations and Dispensers, and it is not in compliance with 21 CFR Part 349, Ophthalmic Drug Products for Over-The-Counter Use.\",\"Presence of Particulate Matter; fibers identified as cellulose and polyvinyl\",\"Presence of Foreign Substance: Reports of gray smudges identified as minute stainless steel particulates were found in the recalled tablets by the manufacturer\",\"Chemical contamination: emission of strong odor after package was opened.\",\"Non-Sterility: One confirmed customer report that product contained spore-like particulates, consistent with mold.\",\"Presence of Foreign Substance: Product is being recalled due to receiving an elevated number of patient complaints related to a visible presence of medical grade silicone oil essential to the functionality of the syringe and plunger stopper system.\",\"Chemical contamination: emission of strong odor after package was opened..\",\"NaN\",\"Chemical contamination: emission of strong odor after package was opened\",\"NaN\",\"NaN\",\"Presence of Particulates; may contain glass particles\",\"NaN\",\"Failed Tablet/Capsule Specifications: This recall is being carried out due to an out of specification result for appearance.\",\"Discoloration; Product may not meet specifications for color description once reconstituted.\",\"NaN\",\"NaN\",\"Marketed without an Approved NDA/ANDA; product found to contain sulfoaildenafil, an analogue of sildenafil, the active ingredient in a FDA approved product used for erectile dysfunction, making it an unapproved new drug\",\"Microbial Contamination of a Non-Sterile Products: 12-Hour Sinus Nasal Spray under various labeling are being recalled due to microbial contamination identified during testing.\",\"Presence of Particulate Matter: One lot of Bacteriostatic Water for Injection, USP diluent vials that were packed with Trastuzumab Kits for investigational use has the potential to contain glass particulates. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Non-Sterility: Green Valley Drugs received positive sterility results from their testing lab on two lots of Methylprednisolone Preservative Free 40 mg/mL injectable suspension and one lot of Cyanocobalamin 1000 mcg/mL injection, 30 mL MDV.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Chemical Contamination: Gabapentin Sodium tablets is recalled due to complaints related to an off - odor described as moldy, musty or fishy in nature.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Marketed Without An Approved NDA/ANDA: This dietary supplement has been found to contain sildenafil, an FDA approved drug for the treatment of male erectile dysfunction making this an unapproved new drug.\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility; possible loose crimp applied to fliptop vial\",\"NaN\",\"Microbial Contamination of Non-Sterile Product(s): The product has the potential to be contaminated with Bulkholderia gladioli.\",\"Failed Impurities/Degradation Specifications: Watson Laboratories Inc. is recalling meprobamate because an out of specification result for an impurity diphenyl sulfone .\",\"Subpotent Drug: The products were below specification for potency at the expiry stability point.\",\"cGMP deviations; After quality review of stability failures in previous lots, there is insufficient data to determine that other lots are not affected.\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: FDA inspection findings resulted in concerns regarding quality control processes.\",\"NaN\",\"Labeling: Incorrect or Missing Lot and/or Exp Date: Bottled product is labeled with an expiration date of Apr 2015. The correct expiration is Apr 2013. \",\"Defective Delivery System: Out of Specification (OOS) results for the z-statistic value, which relates to the patients and caregiver ability to remove the release liner from the patch adhesive prior to administration, were obtained.\",\"Crystallization: Recall is due to a non-characteristic gritty/sandy texture to the product which is likely due to some crystallization of the product.\",\"Subpotent Drug\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Chemical Contamination: QS Plus wipes were found to be contaminated with different substance (7820, Graffiti Remover).\",\"NaN\",\"Tablet Separation: Possibility of cracked or split coating on the tablets.\",\"NaN\",\"NaN\",\"Impurities/Degradation Products: This lot of product will not meet the impurity specification over shelf life\",\"Labeling: Label Error On Declared Strength; Some bottles of product were missing the color-coded strength on the primary display panel of the label.\",\"Impurities/Degradation Products: Potential for drug related impurities to exceed the specification limits. \",\"Adulterated Presence of Foreign Tablets: A customer complaint was received that a bottle of Tramadol HCl Tablets USP 50 mg contained some tablets of Metoprolol Tartrate Tablets USP, 50 mg.\",\"Superpotent (Multiple Ingredient) Drug: There is the potential for oversized and superpotent tablets.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Presence of Foreign Substance: A complaint was received for black specks identified as stainless steel inclusions and cellulose with trace amounts of aluminum and iron-rich inclusions.\",\"NaN\",\"Lack of Assurance of Sterility: There is the potential for solution to leak from the administrative port to the fill tube seal.\",\"NaN\",\"Cross Contamination with Other Products: Product was mixed with another type of mouth wash. \",\"Marketed Without an Approved NDA/ANDA: The product is an unapproved new drug.\",\"Labeling: Missing label\",\"Labeling: Incorrect or Missing Lot and/or Exp Date. The lot number and/or expiration date may be illegible.\",\"NaN\",\"Marketed Without an Approved NDA/ANDA: Product tested positive for Sibutramine, an appetite suppressant that was withdrawn from the U.S. market in October 2010 for safety reasons, making this product an unapproved new drug.\",\"Tablet/Capsule Imprinted with Wrong ID; a portion of the tablets could contain the incorrect debossing on one side of the tablet U2 instead of U3.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Chemical Contamination: The product is being recalled due to complaints reporting a strong garlic odor or strong chemical smell.\",\"NaN\",\"Presence of Foreign Substance(s): A complaint was received for a rubber-like material in a 500 mg Ciprofloxacin tablet.\",\"NaN\",\"Presence of Foreign Substance(s): There is a potential for foreign particulate matter in the API.\",\"Subpotent; 12 month stability timepoint\",\"Failed Tablet/Capsule Specifications: Pharmacist complaint of an excessive amount of broken and/or chipped tablets in the bottle. \",\"Labeling: Label Mix-up: Units of Lot 201131320087 are packaged in cartons labelled for Needle-Free Head B, but contaiin Needle-Free Head A\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Tablet/Capsule Specification; tablet breakage while pushing through the blister pack (dispenser) .\",\"CGMP Deviations: Shipment of product not approved for release.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Presence of Foreign Substance, Sandoz is recalling certain lots of Amoxicillin Capsules, USP 500 mg due to potential contamination with fragments of stainless steel wire mesh.\",\"NaN\",\"NaN\",\"NaN\",\"Subpotent Drug: The product/lot is out-of-specification (OOS) for the assay of acetic acid at the 18-month test station.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Impurity/Degradation Specification; an impurity identified as N-Butyl-Benzene Sulfonamide (NBBS) detected during impurity testing \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Error on Declared Strength-The recalled product has a misprint on the Amoldipine 10 mg label, 5 mg is listed in the USP description. Tablet strength is 10 mg.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: all sterile products compounded, repackaged, and distributed by this compounding pharmacy due to lack of sterility assurance and concerns associated with the quality control processes..\",\"Marketed Without an Approved NDA/ANDA: The products were found to contain FDA approved ingredients and analogues of FDA approved ingredients used to treat male erectile dysfunction, making them unapproved new drugs.\",\"NaN\",\"Does Not Meet Monograph: Budesonide may be slightly above or below the specification range.\",\"NaN\",\"NaN\",\"Marketed without an Approved NDA/ANDA: Brower Enterprises Inc., is recalling its WOW Health Enterprises Dietary Supplement, because it contains undeclared drug ingredients making it an unapproved drug. FDA sample analysis has found the product to contain methocarbamol, dexamethasone, and diclofenac.\",\"NaN\",\"NaN\",\"NaN\",\"CGMP Deviations: Pharmaceutical for injection was not manufactured according to Good Manufacturing Procedures.\",\"Non-Sterility: Confirmed customer complaint of product contaminated with mold.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Marketed Without an Approved NDA/ANDA: These products found to contain undeclared tadalafil. Tadalafil is an FDA-approved drug for the treatment of male Erectile Dysfunction (ED), making these products unapproved new drugs.\",\"Chemical Contamination: Topiramate Tablets is being recalled due to complaints related to an off - odor. described as moldy, musty or fishy in nature.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Subpotent; Cetylpyridinum Chloride\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility; reports of adverse events after injection\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: The product is being recall due to the product lot being incorrectly released without meeting product specifications. There is the potential for the solution to leak from the administrative port to the fill tube seal.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Presence of Foreign Tablets/Capsules: Recall is being conducted due to a foreign capsule found in one bottle.\",\"Labeling: Not elsewhere classified: On 12/12/11, DEA published a final rule in the Federal Register making this product a schedule IV (C-IV)controlled substance. This product is being recalled because this controlled product was not relabeled with the required \\\"C-IV\\\" imprint on the label for products distributed after the 06/11/12 deadline.\",\"Superpotent (Multiple Ingredient) Drug: Oversized tablets resulting in superpotent assays of both the hydrocodone and acetaminophen components.\",\"NaN\",\"Presence of Foreign Tablets/Capsules: One bottle of Percocet 10/325 mg was found to contain a tablet of Endocet 10/25 mg, the generic form.\",\"NaN\",\"CGMP Deviations: this product is being recalled because an FDA inspection revealed that it was not manufactured under current good manufacturing practices.\",\"Lack of Assurance of Sterility: Loose crimp applied to the fliptop vial\",\"Subpotent Drug: Product did not conform to the 18-month stability test specification for active Free Benzocaine.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Chemical Contamination: Pravastatin Sodium Tablets isbeing recalled due to complaints related to an off-odor described as moldy, musty or fishy in nature.\",\"NaN\",\"NaN\",\"Failed Stability Specifications: The active sunscreen ingredient, avobenzone 3%, may not be stable over the shelf life, the sunscreen effectiveness may be less than labeled.\",\"NaN\",\"Subpotent Drug: OOS (out of specification) assay result at the 12 month stability time point. \",\"Marketed Without An Approved NDA/ANDA: FDA analysis found the product to contain hydroxythiohomosildenafil, an analogue of sildenafil which is an ingredient in an FDA-approved drug for the treatment of male erectile dysfunction, making this an unapproved new drug.\",\"NaN\",\"NaN\",\"Presence of Particulate Matter: Particulate matter was found in some vials of Vistide (cidofovir injection).\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Impurity/Degradation Specification; an impurity identified as N-Butyl-Benzene Sulfonamide (NBBS) was detected during impurity testing \",\"NaN\",\"NaN\",\"NaN\",\"Failed Impurities/Degradation Specifications: Ketoconazole Cream 2% is the subject of a voluntary drug recall by Fougera due to an Out Of Specification result for an unknown degradant product\",\"Lack of Assurance of Sterility; FDA inspectional findings resulted in concerns associated with quality control procedures that impacted sterility assurance\",\"Lack of Assurance of Sterility: Park Compounding is recalling Methylcobalamin 5 mg/mL, Multitrace-5 Concentrate, and Testosterone Cypionate (sesame oil) for injection due to lack of sterility assurance.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: The product lots are being recalled due to laboratory results indicating microbial contamination. The FDA was concerned test results obtained from the recalling firm's contract testing lab may not be reliable.\",\"Failed Tablet/Capsule Specifications: One oversized tablet was found in a sealed 100 count bottle of Glimepiride at the retail level.\",\"Failed Dissolution Test Requirements\",\"Marketed Without an Approved NDA/ANDA: All lots of the dietary supplement Slimdia Revolution are being recalled because they contain sibutramine, a previously approved FDA drug removed from the U.S. marketplace for safety reasons, making it an unapproved new drug.\",\"Subpotent; 24 month stability test station\",\"Presence of Particulate Matter: Firm is recalling a small number of vials with very small reflective flakes consistent with delamination of the glass vial.\",\"Lack of Assurance of Sterility; Lack of Assurance of Sterility; product not manufactured under sterile conditions as required for ophthalmic drug products\",\"Subpotent; Beta carotene (Vitamin A)\",\"NaN\",\"NaN\",\"Failed Tablet/Capsule Specification: Teva is recalling certain lots of Propanolol HCl Tablets, 10 mg due to the potential of some tablets not conforming to weight specification.\",\"Lack of Assurance of Sterility: There is the potential for the solution to leak from the administrative port to the fill tube seal.\",\"NaN\",\"NaN\",\"Labeling: Incorrect or Missing Lot and/or Expiration date; The Lot and/or Expiration date on the tube may not be legible in this lot.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Dissolution Specifications: Routine stability testing at the 12-month interval yielded an out-of-specification (OOS) result for dissolution testing.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Impurities/Degradation Specifications: The recall is being initiated due to an out-of-specification result in the degradation product testing detected during stability monitoring. \",\"Defective Container: Pump head detaching from the canister unit upon removal of the overcap.\",\"Presence of Foreign Substance: Tablets are being recalled due to gray defects identified in the tablets.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Content Uniformity Specifications: Recall is being carried out due to an out-of-specification result for content uniformity.\",\"Subpotent Drug: Out Of Specification results for assay at the stability time-point of 24 months.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Impurity/Degradation Specifications; an impurity identified as N-Butyl-Benzene Sulfonamide (NBBS) detected during impurity testing \",\"Microbial Contamination of Non-Sterile Products: Lot in question had an elevated microbial count outside of specifications and E. Coli contamination.\",\"Lack of Assurance of Sterility: Avella Specialty Pharmacy is recalling bevacizumab and vancomycin due to concerns of sterility assurance with the specialty pharmacy's independent testing laboratory.\",\"Failed Stability Specifications: Pyridostigmine Bromide tablets, is being recalled due to an out of specification test result during stablity testing.\",\"Lack of Assurance of Sterility: FDA inspection findings resulted in concerns regarding quality control processes\",\"NaN\",\"CGMP Deviations: Products are underdosed or have an incorrect dosage regime. \",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: Sterility could not be assured for compounded sterile renal nutritional prescriptions.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Subpotent; 15 month stability (by mfr)\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Dissolution Specifications; 8-hours for the 18-month stability testing point.\",\"Subpotent; bupivacaine\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Error on Declared Strength- Unopened bottles of Ropinirole USP 3 mg tablets was found to be incorrectly labeled as Ropinirole USP 4 mg tablets..\",\"NaN\",\"NaN\",\"NaN\",\"Presence of Foreign Substance: Uncharacteristic blacks spots were found in tablets.\",\"Lack of Assurance of Sterility: There is a potential for the solution to leak from the administration port of the primary container.\",\"Discoloration: Ethambutol Tablets USP 400 mg have tablets cores that may be discolored.\",\"CGMP Deviations: A drum of Abilify 30 mg Tablets rejected during the compression stage was not segregated from the other portion of the lot and was inadvertently shipped, packaged and distributed.\",\"Failed Dissolution Specification: This product recall is due to the product lot # 50077231 exceeding dissolution specifications. All other test specifications were met. \",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility; FDA inspectional findings resulted in concerns associated with quality control procedures that impacted sterility assurance.\",\"NaN\",\"LABELING: Label Mix-up: 30 count Effervescent Potassium/Chloride Tablets, may be labeled as 30 count K Effervescent Tablets.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: Specific lot numbers of these products have been identified for potential administration port leakage. The potential for leakage is the result of a manufacturing issue which occurred during the sealing of the closure assembly at the administration port. \",\"NaN\",\"Discoloration: Ethambutol HCl Tablets 400 mg is being recalled due to a Out of Specification result for description testing for a surface defect of ink.\",\"Presence of Particulate Matter: Found during examination of retention samples.\",\"Labeling: Label Mix-up; some cartons labeled as Clobetasol Propionate Cream USP contain tubes labeled as Clobetasol Propionate Gel USP. The actual product in the tube is Clobetasol Propionate Cream USP\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: The product lots are being recalled due to laboratory results (from a contract lab) indicating microbial contamination. The FDA was concerned test results obtained from the recalling firm's contract testing lab may not be reliable. Hence the sterility of the products cannot be assured. \",\"Lack of Assurance of Sterility: The pharmacy is recalling one lot of Hydroxocobalamin MDV 5mg/mL due to failed sterility results by a third party contract testing lab. Hence the sterility of the product cannot be assured. \",\"NaN\",\"NaN\",\"NaN\",\"Marketed without an Approved NDA/ANDA; product contains sildenafil, an active ingredient in a FDA approved product for the treatment of Erectile Dysfunction\",\"NaN\",\"Superpotent (Multiple Ingredient) Drug: Complaint received of oversized tablets.\",\"Presence of Particulate; lot being recalled as a precaution due to the discovery of 2 particles found in a lot which preceded the recalled lot\",\"NaN\",\"NaN\",\"NaN\",\"CGMP Deviations: The first aid kits that are subject to the voluntary recall is being initiated due to failure in stability testing of the active ingredient Benzalkonium Chloride.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"cGMP Deviations; during the production process, CLENZIderm M.D. Daily Foam Cleanser was filled into some bottles labeled as CLENZIderm M.D. Pore Therapy\",\"Failed Stability Specifications: Tagitol V Barium Sulfate Lot #65846 sampled at 10 months exhibited results above the upper specification for viscosity.\",\"Labeling: Incorrect Package Insert; product packaged with outdated version of the insert\",\"Failed Dissolution Specifications: This recall is an extension of the recall initiated on 07/31/2013 for Bupropion HCl Extended-Release Tablets (XL) 300 mg, because another lot was shown to have similar failing results for dissolution at the 8-hour timepoint.\",\"Presence of particulate matter: characterized as thin colorless flakes that are visually and chemically consistent with glass delamination.\",\"NaN\",\"Microbial Contamination of Non-Sterile Products: Product may be contaminated with Burkholderia cepacia.\",\"Failed Dissolution Specification: Out of a specification result occurred during the 3-month stability testing. Dissolution result at the 4-hour time point was 41% (specification: 20-40%). \",\"Labeling: Incorrect or missing lot and/or expiration date. The product was mistakenly labeled with an expiration date of 10/16 instead of 01/16.\",\"Labeling: Not Elsewhere Classified: This unit dose product is being recalled because the product's name includes the word \\\"Children's\\\" which is misleading since the 650 mg dose of acetaminophen contained within it, is an adult dose.\",\"NaN\",\"Lack of Assurance of Sterility: There is the potential for the solution to leak from the seal of the fill tube to the bag.\",\"Presence of Precipitate; white substance confirmed as Guaifenesin, an active ingredient was observed in some bottles. If the product is shaken or warmed the white particles goes into the solution.\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: Hospira, Inc is voluntarily recalling the products due to possible leaking bags.\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Incorrect or Missing Lot and/or Expiration date; The Lot and/or Expiration date on the tube may not be legible in this lot..\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"CGMP Deviations: Products are underdosed or have an incorrect dosage regime. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Subpotent; 12 month time point for the active ingredient Phenylephrine HCl.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Dissolution Specifications: Pfizer Inc. is recalling PREMPRO (conjugated estrogens/medroxyprogesterone acetate tablets) because certain lots for this product may not meet the dissolution specification for conjugated estrogens.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Unit Dose Mispackaging: This recall event is due to a random undetected packaging issue which could increase the potential for a small number of individual unit dose blisters to be packed with more than one tablet.\",\"NaN\",\"Presence of Foreign Substance: black specks comprised of degraded organic material found on tablets\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Subpotent; 22 month stability timepoint\",\"NaN\",\"NaN\",\"NaN\",\"Failed Impurites/Degradation Specifications: Test failure of single largest peak at 18 months.\",\"Labeling: Incorrect Or Missing Lot and/or Exp Date: The lot number and/or expiration date may be illegible on the outer plastic bottle packaging.\",\"Crystallization: Active pharmaceutical ingredient is precipitating in product solution.\",\"Labeling: Label Mix-Up: A complaint from a pharmacist was received that the entire contents of 1 bottle labeled as Rugby label Enteric Coated Aspirin 81 mg Tablets actually contained Acetaminophen 500 mg Tablets.\",\"Presence of Particulate Matter; product may contain fibrous material\",\"Lack of Assurance of Sterility; product linked to adverse event reports of endophthalimitis eye infections and FDA inspection findings resulted in concerns regarding quality control processes\",\"NaN\",\"Lack of Assurance of Sterilty: Specific lot numbers of these products have been identified for potential administration port leakage. The potential for leakage is the result of a manufacturing issue which occurred during the sealing of the closure assembly at the administration port. \",\"NaN\",\"NaN\",\"Presence of Particulate Matter: visible particles were identified floating in the primary container.\",\"Labeling -label error on declared strength: unopened, sealed bottle of Terazosin Hydrochloride (HCl) 10mg Capsules contained Terazosin HCl 5 mg Capsules\",\"Failed Tablet/Capsule Specifications: A product complaint was received from a pharmacist who discovered that 3 tablets in a 1000-count bottle were oversized.\",\"NaN\",\"NaN\",\"NaN\",\"Failed Stability Specifications: Out of specification results for particle size were obtained at the 60 month test point.\",\"Presence of Foreign Substance: raw material recalled due to stainless steel and other contamination.\",\"NaN\",\"NaN\",\"NaN\",\"Defective Container; Small micro fracture observed in the 2-Liter bottle at the fill line resulting in a small leak when patient reconstitutes the bulk powder\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Incorrect or Missing Lot and/or Expiration Date; This recall is being initiated because the lot number and expiration date on the tube may not be legible.\",\"Labeling; Label Mixup; bottles of Ferrous Sulfate actually contains Meclizine HCl (indicated for motion sickness)\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: Failed at expiry for Preservative Effectiveness Test (PET), therefore the product may be susceptible to microbial growth before the expiry date.\",\"Failed Dissolution Specifications: Product is being recalled due to out of specification dissolution results obtained during routine stability testing.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Marketed Without an Approved NDA/ANDA: product contains sibutramine, a previously approved FDA drug removed from the U.S. marketplace for safety reasons, making it an unapproved new drug.\",\"Failed Dissolution Specification; during stability testing\",\"Marketed Without an Approved NDA/ANDA; product contains analogues of sildenafil and tadalafil which are active pharmaceutical ingredients in FDA-approved drugs used to treat erectile dysfunction (ED) making this product an unapproved new drug. \",\"NaN\",\"NaN\",\"Discoloration: This recall is being carried out due to an orange to brown discolored Amoxicillin powder on the inner foil seal of the bottles. This is an expansion of RES 65050.\",\"NaN\",\"Failed impurities/degradation specifications: Purity readings for oxygen were out of specification.\",\"NaN\",\"NaN\",\"CGMP Deviations: Products are underdosed or have an incorrect dosage regime. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: Sterility could not be assured for compounded sterile renal nutritional prescriptions\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling Illegible: There is a possibility that the bottle labels do not contain the strength of the product as well as other printing details. \",\"NaN\",\"Microbial Contamination of Non-Sterile Products: This product is being recalled because a stability sample was found to be contaminated with Burkholderia contaminans.\",\"Lack of Assurance of Sterility; potential for mold contamination\",\"Presence of Foreign Substance: This recall is being conducted due to the potential for extrinsic foreign particles in the API used to manufacture SPIRIVA Handihaler\",\"Failed Dissolution Specifications: Pfizer Inc. (Pfizer) is recalling PREMPRO (conjugated estrogens/medroxyprogesterone acetate tablets) because certain lots for this product may not meet the specification for conjugated estrogens dissolution.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Presence of Particulate Matter: Confirmed customer report of visible particulate in the form of an orange or rust colored ring embedded in between the plastic layers of the plastic vial.\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: Pharmacy Creations is recalling Lidocaine 1% PF Sterile Injection and EDTA disodium 150 mg/mL due to lack of assurance of sterility.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Crystallization; crystallized nimodipine\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Impurity/Degradation Specifications; out of specification value for impurity Nitrophenylpuridine Derivative (NPP-D)\",\"NaN\",\"Labeling: Incorrect or Missing Lot and/or Exp Date: The lot number and/or expiration date may be illegible on the outer plastic bottle packaging.\",\"NaN\",\"NaN\",\"NaN\",\"Marketed Without An Approved NDA/ANDA: FDA analysis found this product contained undeclared sibutramine and phenolphthalein, two active ingredients that were once marketed in the U.S. but removed due to safety reasons, making this product an unapproved new drug. \",\"Presence of Particulate Matter: Glass particulate matter was observed in a retention sample during an annual review.\",\"Lack of Assurance of Sterility; Astellas Pharma US, Inc. is performing a voluntary recall on certain lots of AmBisome because the manufacturer has notified Astellas that during a routine simulation of the manufacturing of AmBisome, a bacterial contamination was detected in the media fills.\",\"Lack of Assurance of Sterility: Product did not meet the criteria for container closure integrity testing during routine 24 month stability testing.\",\"Defective container: products are packaged in pouches which may not have been fully sealed\",\"Marketed Without An Approved NDA/ANDA: Lightning Rod capsules are being recalled because FDA analysis found it to contain an undeclared analogue of sildenafil. Sildenafil is the active ingredient in an FDA-approved product indicated for the treatment of male erectile dysfunction (ED), making this product an unapproved new drug.\",\"Lack of Assurance of Sterility: University Compounding Pharmacy is voluntarily recalling certain pharmacy products due to lack of assurance of sterility concerns.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Subpotent Drug: The active ingredient, fluocinolone acetonide, was found to be subpotent during the firm's routine testing.\",\"Failed Dissolution Specifications: Out of Specification (OOS) test results for Hour-4 at the 32 month CRT Stability Level.\",\"The firm received seven reports of adverse reactions in the form of skin abscesses potentially linked to compounded preservative-free methylprednisolone 80mg/ml 10 ml vials. \",\"NaN\",\"NaN\",\"NaN\",\"cGMP Deviation\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: Park Compounding is voluntarily recalling two lots of Methylcobalamin 5mg/ml and Multitrace-5 Concentrate, and one lot of Testosterone Cypionate (sesame oil) for injection due lack of sterility assurance.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility; All lots of sterile products compounded by the pharmacy within expiry are subject to this recall. This recall is initiated due to concerns associated with quality control procedures observed during a recent FDA inspection. \",\"Labeling: Label Mixup; LACTOBACILLUS Tablet may be potentially mislabeled as MULTIVITAMIN/MULTIMINERAL, Tablet, NDC 65162066850, Pedigree: AD62979_1, EXP: 5/23/2014; CALCIUM ACETATE, Capsule, 667 mg, NDC 00054008826, Pedigree: AD62986_1, EXP: 5/23/2014; LITHIUM CARBONATE ER, Tablet, 225 mg (1/2 of 450 mg), NDC 00054002025, Pedigree: AD21790_25, EXP: 5/1/2014; OMEGA-3 FATTY ACID, Capsule, 100\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Contraceptive Tablets out of Sequence: A placebo tablet was found in a row of active tablets.\",\"Lack of Sterility Assurance; During a routine simulation of the manufacturing of AmBisome, a bacterial contamination was detected in some media fill units. No contaminated batches have actually been identified in the finished product, but there is a possibility of contamination.\",\"Subpotent Drug: Avobenzone 3%, one of the active sunscreen ingredients may be subpotent and sunscreen effectiveness may be less than labeled\",\"Lack of Assurance of Sterility: The product lots are being recalled due to laboratory results (from a contract lab) indicating microbial contamination. The FDA was concerned test results obtained from the recalling firm's contract testing lab may not be reliable. Hence the sterility of the products cannot be assured.\",\"Lack of Assurance of Sterility: Leiter Pharmacy is recalling due bacterial contamination found after investigation at contract testing laboratory discovered that OOS results were reported to customers as passing. Hence the sterility of these products cannot be assured. \",\"Labeling: Incorrect or missing lot and/or exp date- This product is being recalled due to an incorrect expiration date of 05/2017. The correct expiration date is 10/2016.\",\"Subpotent Drug: During review of retain samples, the manufacturer observed low fill in some capsules, which was related to an issue detected with the encapsulating equipment.\",\"NaN\",\"Failed Stability Specifications; out of specification results at the 9 month stability time point for color, dissolution and related compounds. \",\"NaN\",\"NaN\",\"NaN\",\"Failed Impurities/Degradation Specification\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lack of assurance of sterility: ineffective crimp on fliptop vials that may result in leaking at the neck of the vials.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: Walgreens Specialty Pharmacy is recalling one lot of Progesterone in Ethyl Oleate sterile injection due to concerns of sterility assurance with the specialty pharmacy's independent testing laboratory.\",\"Labeling: Label Mixup: HYOSCYAMINE SULFATE ODT, Tablet, 0.125 mg may have potentially been mislabeled as the following drug: FLUoxetine HCl, Capsule, 10 mg, NDC 16714035103, Pedigree: W003613, EXP: 6/25/2014. \",\"Labeling: Label Mixup: ISONIAZID, Tablet, 300 mg may have potentially been mislabeled as one of the following drugs: hydrOXYzine PAMOATE, Capsule, 100 mg, NDC 00555032402, Pedigree: W003690, EXP: 6/26/2014; CETIRIZINE HCL, Tablet, 5 mg, NDC 00378363501, Pedigree: AD32757_13, EXP: 5/13/2014; RANOLAZINE ER, Tablet, 500 mg, NDC 61958100301, Pedigree: AD32757_47, EXP: 5/13/2014; DULoxetine HCl DR,\",\"Presence of Foreign Substance: The products are being recalled because they may contain foreign substances.\",\"Labeling: Label Mixup: ASCORBIC ACID, CHEW Tablet, 500 mg may have potentially been mislabeled as the following drug: PHENOL, LOZENGE, 29 mg, NDC 00068021918, Pedigree: AD60428_4, EXP: 5/22/2014. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Stability Specifications: Unable to meet shelf life expiry.\",\"Lack of Assurance of Sterility: The product has the potential for solution to leak at or near the administrative port of the primary container.\",\"Failed Dissolution Specification\",\"Marketed without an approved NDA/ANDA: INK-EEZE Tattoo Numbing Spray contains 5% Lidocaine and is being marketed without an approved NDA/ANDA. Lidocaine 5% is an ingredient in many FDA approved products, making Ink-Eeze an unapproved new drug.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: Sandoz Inc is recalling Cefazolin for Injection, USP 1 gm vials, lot DB2208, due to a customer complaint for broken/cracked vials which was confirmed through review of retained samples.\",\"Subpotent drug: Avobenzone 3%, one of the active sunscreen ingredients may be subpotent and sunscreen effectiveness may be less than labeled\",\"Lack of Assurance of Sterility: Leiter Pharmacy is recalling due bacterial contamination found after investigation at contract testing laboratory discovered that OOS/failed results were reported to customers as passing. Hence the sterility of these products cannot be assured. \",\"Lack of Assurance of Sterility: The required reduction of endotoxin was not met during the annual revalidation of the vial washer.\",\"NaN\",\"NaN\",\"Glutathione 100 mg/mL injectable human drug is recalled due to Out Of Specification results or potential bacterial contamination and it was reported as passing by a contract laboratory. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Presence of Precipitate; potential for incomplete constitution upon addition of diluent. \",\"Failed Impurities/Degradation Specifications: Out of Specification results for Individual Other Unknown Related Compounds were obtained at the 48 month time-point.\",\"Marketed without an approved NDA/ANDA: Product may contain undeclared active pharmaceutical ingredients Diclofenac Sodium, Dexamethasone, and Methocarbamol.\",\"NaN\",\"NaN\",\"Failed Dissolution Test Requirements: During analysis of long term stability studies at 3 months time point, an OOS was reported for Quetiapine Fumarate Tablets, 25 mg.\",\"NaN\",\"Presence of Foreign Substance: Belladonna Alkaloids with Phenobarbital Tablets with black specks comprised of degraded organic material on tablets. \",\"Marketed Without an Approved NDA/ANDA; products have been found to contain tadalafil, the active ingredient in an FDA approved product used to treat erectile dysfunction, making this product an unapproved drug\",\"NaN\",\"Labeling:Label Mixup; RANOLAZINE ER Tablet, 500 mg may be potentially mislabeled as MELATONIN, Tablet, 3 mg, NDC 51991001406, Pedigree: AD25452_16, EXP: 5/3/2014; DULoxetine HCl DR, Capsule, 20 mg, NDC 00002323560, Pedigree: AD70585_16, EXP: 5/29/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 00904404360, Pedigree: W002852, EXP: 6/7/2014; VALSARTAN, Tablet, 80 mg, NDC 00078035834, Pedigree:\",\"Lack of Assurance of Sterility: All unexpired sterile compounded human and veterinary products are being recalled because they were compounded in the same environment and under the same practices as another product found to be non-sterile and therefore sterility cannot be assured.\",\"Labeling: Label Mixup; LORATADINE Tablet, 10 mg may be potentially mislabeled as GLYCOPYRROLATE, Tablet, 2 mg, NDC 00603318121, Pedigree: W002650, EXP: 6/5/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 05445800022, Pedigree: AD21858_4, EXP: 5/1/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 00904404360, Pedigree: W003217, EXP: 6/14/2014. \",\"Labeling:Label Mixup; guaiFENesin ER, Tablet, 600 mg may be potentially mislabeled as PRENATAL MULTIVITAMIN/ MULTIMINERAL, Tablet, NDC 51991056601, Pedigree: AD62829_18, EXP: 5/24/2014; guaiFENesin ER, Tablet, 600 mg, NDC 63824000834, Pedigree: AD62834_4, EXP: 5/24/2014; diphenhydrAMINE HCl, Tablet, 25 mg, NDC 00904555159, Pedigree: W003513, EXP: 6/21/2014; DOCUSATE SODIUM, Capsule, 250 mg, \",\"Labeling: Label Mixup; HYDRALAZINE HCL Tablet, 25 mg may be potentially mislabeled as DOCUSATE CALCIUM, Capsule, 240 mg, NDC 00536375501, Pedigree: AD49582_16, EXP: 5/16/2014.\",\"Labeling:Label Mixup; BENAZEPRIL HCL Tablet, 5 mg may be potentially mislabeled as ZINC SULFATE, Capsule, 220 mg, NDC 60258013101, Pedigree: AD52993_34, EXP: 5/20/2014.\",\"Labeling:Label Mixup; amLODIPine BESYLATE, Tablet, 10 mg may be potentially mislabeled as FINASTERIDE, Tablet, 5 mg, NDC 16714052201, Pedigree: AD62846_1, EXP: 2/28/2014.\",\"NaN\",\"Labeling:Label Mixup; ATENOLOL, Tablet, 12.5 mg (1/2 of 25 mg) may be potentially mislabeled as VITAMIN B COMPLEX WITH C/FOLIC ACID, Tablet, NDC 60258016001, Pedigree: AD73652_19, EXP: 5/30/2014; PIROXICAM, Capsule, 10 mg, NDC 00093075601, Pedigree: AD21836_1, EXP: 3/31/2014. \",\"Labeling: Label Mixup; QUETIAPINE FUMARATE Tablet, 12.5 mg (1/2 of 25 mg) may be potentially mislabeled as SIMVASTATIN, Tablet, 40 mg, NDC 00093715598, Pedigree: AD22845_4, EXP: 5/2/2014.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"CGMP Deviations: product was not manufactured under current good manufacturing practices which contributed to Failed Impurities/Degradation Specifications as a high out of specification impurity result was detected during routine quality testing of stability samples.\",\"NaN\",\"Superpotent: Drug product active ingredients were formulated incorrectly (too high) with respect to the label strength.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"The product lots are being recalled due to laboratory results indicating microbial contamination. The FDA was concerned test results obtained from the recalling firm's contract testing lab may not be reliable.\",\"NaN\",\"NaN\",\"NaN\",\"Cross contamination with other products: Belladonna Alkaloids with Phenobarbital Tablets contained a trace amount of Methocarbamol.\",\"Presence of Particulate Matter; particulate found in retain samples\",\"Non-Sterility; mold contamination\",\"Lack of Assurance of Sterility: Leiter Pharmacy is recalling due bacterial contamination found after investigation at contract testing laboratory discovered that OOS/failed results were reported to customers as passing. Hence the sterility of the products cannot be assured. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Presence of Particulate Matter; Glass particulates observed in vials\",\"Labeling: Label Mixup: ISOSORBIDE DINITRATE, Tablet, 5 mg may have potentially been mislabeled as one of the following drugs: CILOSTAZOL, Tablet, 100 mg, NDC 00054004421, Pedigree: W003470, EXP: 6/20/2014; PERPHENAZINE, Tablet, 8 mg, NDC 00630506221, Pedigree: AD54605_1, EXP: 4/30/2014. \",\"Labeling: Label Mixup: PHENobarbital, Tablet, 97.2 mg may have potentially been mislabeled as the following drug: EFAVIRENZ, Capsule, 200 mg, NDC 00056047492, Pedigree: AD46312_31, EXP: 5/16/2014. \",\"Labeling: Label Mixup: chlorproMAZINE HCl, Tablet, 100 mg may have potentially been mislabeled as one of the following drugs: ACYCLOVIR, Tablet, 800 mg, NDC 00093894701, Pedigree: AD70629_1, EXP: 5/29/2014; TRIMETHOBENZAMIDE HCL, Capsule, 300 mg, NDC 53489037601, Pedigree: AD70625_1, EXP: 5/29/2014. \",\"Labeling: Label Mixup: PHENOL, LOZENGE, 29 mg may have potentially been mislabeled as one of the following drugs: ATORVASTATIN CALCIUM, Tablet, 20 mg, NDC 00378201777, Pedigree: AD49582_10, EXP: 5/16/2014; VITAMIN B COMPLEX W/C, Tablet, 0 mg, NDC 00904026013, Pedigree: AD60240_48, EXP: 5/22/2014. \",\"Labeling: Label Mixup: DOCUSATE SODIUM, Capsule, 250 mg may have potentially been mislabeled as one of the following drugs: PIOGLITAZONE, Tablet, 15 mg, NDC 00591320530, Pedigree: AD25452_10, EXP: 4/30/2014; PHOSPHORUS, Tablet, 250 mg, NDC 64980010401, Pedigree: AD54498_1, EXP: 5/20/2014; LACTOBACILLUS GG, Capsule, 0, NDC 49100036374, Pedigree: AD65457_16, EXP: 5/24/2014; guaiFENesin ER, Table\",\"Labeling: Label Mixup: FLUVASTATIN SODIUM, Capsule, 20 mg may have potentially been mislabeled as the following drug: VALSARTAN, Tablet, 80 mg, NDC 00078035834, Pedigree: AD73597_1, EXP: 5/31/2014. \",\"Labeling: Label Mixup: CHLORTHALIDONE, Tablet, 12.5 mg (1/2 of 25 mg) may have potentially been mislabeled as the following drug: PROPRANOLOL HCL, Tablet, 5 mg (1/2 of 10 mg), NDC 23155011001, Pedigree: AD73525_25, EXP: 5/30/2014.\",\"Labeling: Label Mixup: CYANOCOBALAMIN, Tablet, 100 mcg may have potentially been mislabeled as the following drug: guaiFENesin ER, Tablet, 600 mg, NDC 63824000834, Pedigree: AD62834_7, EXP: 5/24/2014. \",\"Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 112 mcg may have potentially been mislabeled as the following drug: RALTEGRAVIR, Tablet, 400 mg, NDC 00006022761, Pedigree: AD60272_19, EXP: 5/22/2014. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Incorrect/ Undeclared Excipients: NyQuil Liquid Original bottles were inadvertently overwrapped with NyQuil Liquid Cherry information as a result the outer wrap does not correctly identify color additives, particularly FD&C Yellow No. 6 and FD&C Yellow 10.\",\"NaN\",\"NaN\",\"NaN\",\"Subpotent Drug; Two lots of Lidocaine 2% with Epinephrine 1:100,000 Injectable, distributed under the names: Octocaine 100, and 2% Xylocaine Dental, may be subpotent for the epinephrine component.\",\"Presence of Foriegn Substance:The manufacturer, West-ward Pharmaceutical, recalled product because of the presence of black spots on tablets. In response, the repackager initiated its own recall.\",\"Labeling: Incorrect instructions; an error in section 5.11 of the patient insert that results in incorrect medical advice. Specifically, the labeling should read \\\"If a severely depressed HDL-C level is detected, fibrate therapy should be withdrawn, and the HDL-C level monitored until it has returned to baseline, and fibrate therapy should not be re-initiated.\\\" The labeling for the recalled lots \",\"NaN\",\"Labeling: Label Mixup; WARFARIN SODIUM Tablet, 0.5 mg (1/2 of 1 mg) may be potentially mislabeled as SODIUM CHLORIDE, Tablet, 1 mg, NDC 00223176001, Pedigree: AD70636_1, EXP: 5/29/2014.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup: BROMOCRIPTINE MESYLATE, Tablet, 2.5 mg may have potentially been mislabeled as one of the following drugs: BENAZEPRIL HCL, Tablet, 40 mg, NDC 65162075410, Pedigree: AD68010_1, EXP: 5/28/2014; THIORIDAZINE HCL, Tablet, 50 mg, NDC 00378061601, Pedigree: AD73525_28, EXP: 5/30/2014. \",\"Labeling: Label Mixup: ISOSORBIDE DINITRATE, Tablet, 10 mg may have potentially been mislabeled as one of the following drugs: SODIUM CHLORIDE, Tablet, 1 mg, NDC 00223176001, Pedigree: AD22845_10, EXP: 5/2/2014; CALCITRIOL, Capsule, 0.5 mcg, NDC 63304024001, Pedigree: AD32757_10, EXP: 5/14/2014. \",\"Labeling: Label Mixup: THIORIDAZINE HCL, Tablet, 50 mg may have potentially been mislabeled as the following drug: guanFACINE HCl, Tablet, 1 mg, NDC 00591044401, Pedigree: AD73525_13, EXP: 4/30/2014.\",\"Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 12.5 mcg (1/2 of 25 mcg) may have potentially been mislabeled as one of the following drugs: CALCIUM ACETATE, Capsule, 667 mg, NDC 00054008826, Pedigree: AD30180_1, EXP: 5/8/2014; carBAMazepine ER, Capsule, 200 mg, NDC 66993040832, Pedigree: AD32764_14, EXP: 5/14/2014; CHLORTHALIDONE, Tablet, 12.5 mg (1/2 of 25 mg), NDC 00378022201, Pedigree:\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Tablet/Capsule Specifications: Some tablets had the potential to not conform to weight specifications.\",\"NaN\",\"NaN\",\"Discoloration: This recall is being carried out due to a yellow to brown discolored Amoxicillin powder on the inner foil seal of the bottles.\",\"Failed Dissolution Specifications: Dissolution test results at 8 hour time-point were above approved specification limits.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling:Label Mixup; SEVELAMER HCl Tablet, 800 mg may be potentially mislabeled as RANOLAZINE ER, Tablet, 500 mg, NDC 61958100301, Pedigree: W002857, EXP: 6/7/2014.\",\"Labeling: Label Mixup; traZODone HCl Tablet, 50 mg may be potentially mislabeled as DEXAMETHASONE, Tablet, 1 mg, NDC 00054418125, Pedigree: AD37088_1, EXP: 5/9/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375701, Pedigree: AD54498_4, EXP: 5/20/2014; guanFACINE HCl, Tablet, 1 mg, NDC 00591044401, Pedigree: AD39611_1, EXP: 4/30/2014. \",\"Labeling: Label Mixup; CRANBERRY EXTRACT/VITAMIN C Capsule, 450 mg/125 mg may be potentially mislabeled as MULTIVITAMIN/MULTIMINERAL, Tablet, NDC 00536406001, Pedigree: W002653, EXP: 6/5/2014; MODAFINIL, Tablet, 200 mg, NDC 00603466216, Pedigree: W003779, EXP: 6/26/2014; NIACIN ER, Tablet, 500 mg, NDC 00074307490, Pedigree: W003739, EXP: 6/26/2014; GLUCOSAMINE/CHONDROITIN, Capsule, 500 mg/40\",\"Labeling: Label Mixup; MELATONIN, Tablet, 1 mg may be potentially mislabeled as QUETIAPINE FUMARATE, Tablet, 12.5 MG (1/2 of 25 MG), NDC 47335090288, Pedigree: AD21790_79, EXP: 5/1/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375710, Pedigree: AD73521_13, EXP: 5/30/2014. \",\"Labeling: Label Mixup; DESIPRAMINE HCL Tablet, 50 mg may be potentially mislabeled as clomiPRAMINE HCl, Capsule, 50 mg, NDC 51672401205, Pedigree: AD30140_4, EXP: 5/7/2014.\",\"Labeling: Label Mixup; PRENATAL MULTIVITAMIN/MULTIMINERAL, Tablet may be potentially mislabeled as RILUZOLE, Tablet, 50 mg, NDC 00075770060, Pedigree: AD62992_11, EXP: 5/23/2014; ASPIRIN, Chew Tablet, 81 mg, NDC 00536329736, Pedigree: W003093, EXP: 6/13/2014; NIACIN TR, Capsule, 250 mg, NDC 00904062960, Pedigree: W003478, EXP: 6/20/2014; PRENATAL MULTIVITAMIN/MULTIMINERAL, Tablet, NDC 009045\",\"Labeling: Label Mixup; MELATONIN Tablet, 1 mg may be potentially mislabeled as CRANBERRY EXTRACT/VITAMIN C, Capsule, 450 mg/125 mg, NDC 31604014271, Pedigree: W002692, EXP: 6/5/2014; GLYCOPYRROLATE, Tablet, 2 mg, NDC 00603318121, Pedigree: W003252, EXP: 6/17/2014. \",\"Labeling: Label Mixup; MAGNESIUM GLUCONATE Tablet, 500 mg (27 mg Elem Mg) may be potentially mislabeled as FLUVASTATIN, Capsule, 20 mg, NDC 00378802077, Pedigree: W002655, EXP: 6/4/2014.\",\"Labeling:Label Mixup; guaiFENesin ER, Tablet, 600 mg may be potentially mislabeled as MISOPROSTOL, Tablet, 200 mcg, NDC 59762500801, Pedigree: AD21965_13, EXP: 5/1/2014; TACROLIMUS, Capsule, 1 mg, NDC 00781210301, Pedigree: AD56917_7, EXP: 5/21/2014; LACTOBACILLUS GG, Capsule, NDC 49100036374, Pedigree: AD73627_17, EXP: 5/30/2014; LACTOBACILLUS GG, Capsule, NDC 49100036374, Pedigree: W003216\",\"Labeling:Label Mixup; ISOSORBIDE MONONITRATE Tablet, 10 mg may be potentially mislabeled as ASCORBIC ACID, Tablet, 250 mg, NDC 00904052260, Pedigree: AD28322_10, EXP: 5/6/2014.\",\"NaN\",\"NaN\",\"Labeling Wrong Barcode; It may display wrong product code reflecting 0.9% Sodium Chloride Injection , USP 100 mL in MINI-BAG Plus container instead of 50 mL.\",\"NaN\",\"NaN\",\"NaN\",\"Presence of Particulate Matter: reports of small grey/brown particles found in the primary container identified as brass particulates\",\"NaN\",\"Presence of foreign substance: One lot of the product may contain black foreign particles \",\"Non-Sterility: one or more components of the kit have been found to be contaminated with yeast.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Defective Container; This action is being taken as a precautionary measure due to the product being re-packaged in the U.S. using a filler material that (removes or blocks) less moisture than what is approved in the application.\",\"Chemical Contamination: Novartis Pharmaceuticals Corporation has recalled physician sample bottles of Diovan, Exforge, Exforge HCT,Lescol XL, Stalevo, Tekturna and Tekturna HCT Tablets due to contamination with Darocur 1173 a photocuring agent used in inks on shrink-wrap sleeves.\",\"Labeling: Label Error on Declared Strength; the label states that the product contains 62% ethyl alcohol, but the ethyl alcohol content is 20%.\",\"NaN\",\"NaN\",\"NaN\",\"Failed Impurity/Degradation Specification; \\\"Related Compound C\\\" \",\"Presence of Foreign Substance; metal particulates were visually observed in the tablets.\",\"NaN\",\"Labeling: Label Mixup; NICOTINE POLACRILEX Gum, 2 mg may be potentially mislabeled as SACCHAROMYCES BOULARDII LYO, Capsule, 250 mg, NDC 00414200007, Pedigree: AD54586_4, EXP: 5/21/2014.\",\"Labeling: Label Mixup; guaiFENesin ER, Tablet, 600 mg may be potentially mislabeled as FENOFIBRATE, Tablet, 54 mg, NDC 00378710077, Pedigree: AD21790_52, EXP: 5/1/2014; FENOFIBRATE, Tablet, 54 mg, NDC 00378710077, Pedigree: W002733, EXP: 6/6/2014; glyBURIDE, Tablet, 2.5 mg, NDC 00093834301, Pedigree: W003688, EXP: 5/31/2014; glyBURIDE, Tablet, 2.5 mg, NDC 00093834301, Pedigree: AD30140_34, E\",\"Labeling:Label Mixup; MISOPROSTOL Tablet, 200 mcg may be potentially mislabeled as PROPRANOLOL HCL, Tablet, 10 mg, NDC 23155011001, Pedigree: AD21790_34, EXP: 5/1/2014; SODIUM CHLORIDE, Tablet, 1 mg, NDC 00223176001, Pedigree: W003115, EXP: 6/13/2014. \",\"Labeling: Label Mixup; FEBUXOSTAT Tablet, 40 mg may be potentially mislabeled as methylPREDNISolone, Tablet, 4 mg, NDC 59746000103, Pedigree: AD21811_17, EXP: 5/1/2014; tiZANidine HCl, Tablet, 2 mg, NDC 55111017915, Pedigree: W002663, EXP: 6/5/2014; SODIUM CHLORIDE, Tablet, 1000 mg, NDC 00527111610, Pedigree: W003926, EXP: 7/1/2014. \",\"NaN\",\"Labeling: Label Mixup: LIOTHYRONINE SODIUM, Tablet, 5 mcg may have potentially been mislabeled as one of the following drugs: LIOTHYRONINE SODIUM, Tablet, 25 mcg, NDC 00574022201, Pedigree: W003152, EXP: 4/30/2014. \",\"Labeling: Label Mixup: VALSARTAN, Tablet, 40 mg may have potentially been mislabeled as one of the following drugs: VALSARTAN, Tablet, 80 mg, NDC 00078035834, Pedigree: AD52372_4, EXP: 5/17/2014; ZINC SULFATE, Capsule, 50 mg, NDC 00904533260, Pedigree: AD30994_8, EXP: 5/9/2014. \",\"Labeling: Label Mixup: PYRIDOXINE HCL, Tablet, 50 mg may have potentially been mislabeled as one of the following drugs: MELATONIN, Tablet, 1 mg, NDC 04746900466, Pedigree: AD21846_17, EXP: 5/1/2014; METHOCARBAMOL, Tablet, 500 mg, NDC 00143129001, Pedigree: AD46312_28, EXP: 5/16/2014; LEVOTHYROXINE SODIUM, Tablet, 112 mcg, NDC 00074929690, Pedigree: AD22865_16, EXP: 5/2/2014; RILUZOLE, Tablet,\",\"Labeling: Label Mixup: CETIRIZINE HCL, Tablet, 5 mg may have potentially been mislabeled as the following drug: LITHIUM CARBONATE ER, Tablet, 300 mg, NDC 00054002125, Pedigree: AD39564_1, EXP: 5/13/2014.\",\"Labeling: Label Mixup: LITHIUM CARBONATE ER, Tablet, 300 mg may be potentially mislabled as the following drug: VITAMIN B COMPLEX PROLONGED RELEASE, Tablet, 50 mg, NDC 40985022251, Pedigree: AD39588_10, EXP: 5/13/2014. \",\"Labeling: Label Mixup: PREGABALIN, Capsule, 200 mg may have potentially been mislabeled as one of the following drugs: LOSARTAN POTASSIUM, Tablet, 50 mg, NDC 00781570192, Pedigree: AD21965_10, EXP: 5/1/2014; CYANOCOBALAMIN, Tablet, 500 mcg, NDC 00536355101, Pedigree: AD30180_25, EXP: 5/9/2014; clonazePAM, Tablet, 0.25 mg (1/2 of 0.5 mg), NDC 00093083201, Pedigree: AD73518_1, EXP: 5/31/2014; OM\",\"Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 175 mcg may have potentially been mislabeled as the following drug: PRAMIPEXOLE DI-HCL, Tablet, 1 mg, NDC 16714058701, Pedigree: W003150, EXP: 6/13/2014.\",\"Labeling: Label Mixup: DUTASTERIDE, Capsule, 0.5 mg may have potentially been mislabeled as one of the following drugs: DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375701, Pedigree: AD65457_19, EXP: 5/24/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00904789159, Pedigree: AD56924_1, EXP: 5/21/2014; PYRIDOXINE HCL, Tablet, 50 mg, NDC 00904052060, Pedigree: W003257, EXP: 6/17/2014. \",\"Labeling: Label Mixup: MERCapsuleTOPURINE, Tablet, 50 mg may have potentially been mislabeled as the following drug: ASCORBIC ACID, Tablet, 500 mg, NDC 00904052380, Pedigree: AD54576_4, EXP: 5/20/2014. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Impurities/Degradation Specifications: This product is being recalled due to an out of specification result for an impurity.\",\"NaN\",\"Defective Container: A lidding deformity allowed for the product to have out of specification results for assay and viscosity at the12 month stability timepoint.\",\"NaN\",\"NaN\",\"Labeling: Label Mixup; VENLAFAXINE HCL Tablet, 50 mg may be potentially mislabeled as sulfaSALAzine, Tablet, 500 mg, NDC 00603580121, Pedigree: AD65475_19, EXP: 5/28/2014.\",\"Labeling: Label Mixup; TORSEMIDE, Tablet, 10 mg may be potentially mislabeled as PYRIDOXINE HCL, Tablet, 50 mg, NDC 00536440801, Pedigree: AD30197_22, EXP: 5/9/2014.\",\"Labeling: Label Mixup; TRIMETHOBENZAMIDE HCl, Capsule, 300 mg may be potentially mislabeled as GABAPENTIN, Tablet, 600 mg, NDC 00228263611, Pedigree: AD21965_7, EXP: 5/1/2014; CHOLECALCIFEROL, Capsule, 5000 units, NDC 00904598660, Pedigree: AD70629_19, EXP: 5/29/2014; SODIUM BICARBONATE, Tablet, 650 mg, NDC 64980018210, Pedigree: W002970, EXP: 6/11/2014. \",\"Labeling: Label Mixup; OMEGA-3 FATTY ACID, Capsule, 1000 mg may be potentially mislabeled as NORTRIPTYLINE HCL, Capsule, 50 mg, NDC 00093081201, Pedigree: AD21790_70, EXP: 5/1/2014.\",\"Labeling: Label Mixup; LACTOBACILLUS GG Capsule may be potentially mislabeled as VITAMIN B COMPLEX W/C, Capsule, NDC 54629008001, Pedigree: AD39560_4, EXP: 5/13/2014; DOCUSATE SODIUM, Capsule, 50 mg, NDC 67618010060, Pedigree: AD65457_13, EXP: 5/24/2014; VITAMIN B COMPLEX WITH C/FOLIC ACID, Tablet, NDC 60258016001, Pedigree: AD70655_17, EXP: 5/28/2014; TACROLIMUS, Capsule, 1 mg, NDC 00781210\",\"Labeling: Label Mixup; SERTRALINE HCL Tablet, 50 mg may be potentially mislabeled as NORTRIPTYLINE HCL, Capsule, 10 mg, NDC 00093081001, Pedigree: AD70585_4, EXP: 5/29/2014; guaiFENesin ER, Tablet, 600 mg, NDC 63824000834, Pedigree: W003574, EXP: 6/24/2014; OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/1,110 mg, NDC 11523726503, Pedigree: AD46300_17, EXP: 5/15/2014; CHOLECALCIFEROL, Tablet, \",\"NaN\",\"Labeling:Label Mixup; PANTOPRAZOLE SODIUM DR, Tablet, 20 mg may be potentially mislabeled as DRONEDARONE HCL, Tablet, 400 mg, NDC 00024414260, Pedigree: AD52778_52, EXP: 5/20/2014.\",\"Labeling: Label Mixup; OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/1,100 mg may be potentially mislabeled as CYANOCOBALAMIN, Tablet, 1000 mcg, NDC 00536355601, Pedigree: W003788, EXP: 6/27/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 00904404360, Pedigree: W003870, EXP: 6/27/2014. \",\"Labeling:Label Mixup; ATORVASTATIN CALCIUM, Tablet, 80 mg may be potentially mislabeled as LACTOBACILLUS GG, Capsule, 10 Billion Cells, NDC 49100036374, Pedigree: AD21965_19, EXP: 5/1/2014.\",\"Labeling: Label Mixup: LITHIUM CARBONATE ER, Tablet, 225 mg (1/2 of 450 mg) may be potentially mislabled as one of the following drugs: CYCLOBENZAPRINE HCL, Tablet, 5 mg, NDC 00591325601, Pedigree: AD73525_7, EXP: 5/30/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375710, Pedigree: AD21846_11, EXP: 5/1/2014. \",\"NaN\",\"Labeling: Label Mixup: NICOTINE POLACRILEX, LOZENGE, 2 mg may have potentially been mislabeled as one of the following drugs: ESTRADIOL, Tablet, 0.5 mg, NDC 00555089902, Pedigree: AD30993_11, EXP: 5/9/2014; ACAMPROSATE CALCIUM DR, Tablet, 333 mg, NDC 00456333001, Pedigree: W002973, EXP: 6/11/2014; CALCITRIOL, Capsule, 0.5 mcg, NDC 63304024001, Pedigree: W003730, EXP: 6/26/2014; ESZOPICLONE, T\",\"Labeling: Label Mixup: GABAPENTIN, Tablet, 600 mg may have potentially been mislabeled as the following drug: ARIPiprazole, Tablet, 15 mg, NDC 59148000913, Pedigree: AD21965_1, EXP: 5/1/2014.\",\"Labeling: Label Mixup: ASCORBIC ACID, Tablet, 500 mg may have potentially been mislabeled as the following drug: VENLAFAXINE HCL, Tablet, 100 mg, NDC 00093738301, Pedigree: AD42566_1, EXP: 5/14/2014. \",\"Labeling: Label Mixup: MEXILETINE HCL, Capsule, 200 mg may have potentially been mislabeled as the following drug: ISOSORBIDE DINITRATE, Tablet, 10 mg, NDC 00781155601, Pedigree: AD25264_1, EXP: 5/3/2014. \",\"Labeling: Label Mixup: THIAMINE HCL, Tablet, 100 mg may have potentially been mislabeled as one of the following drugs: SIMVASTATIN, Tablet, 5 mg, NDC 00093715298, Pedigree: AD65323_13, EXP: 5/29/2014; CALCIUM CARBONATE +D3, Tablet, 600 mg/400 units, NDC 00904323392, Pedigree: AD54576_1, EXP: 5/20/2014; BUPRENORPHINE HCL SL, Tablet, 2 mg, NDC 00054017613, Pedigree: AD54478_1, EXP: 5/20/2014; P\",\"Labeling: Label Mixup: ACARBOSE, Tablet, 25 mg may be potentially mislabeled as one of the following drugs: ZINC GLUCONATE, Tablet, 50 mg, NDC 00904319160, Pedigree: AD60240_57, EXP: 5/22/2014; TOLTERODINE TARTRATE ER, Capsule, 2 mg, NDC 00009519001, Pedigree: W002724, EXP: 6/6/2014; SILDENAFIL CITRATE, Tablet, 25 mg, NDC 00069420030, Pedigree: W003646, EXP: 6/25/2014; SEVELAMER CARBONATE, Tab\",\"Labeling: Label Mixup: SACCHAROMYCES BOULARDII LYO, Capsule, 250 mg may have potentially been mislabeled as one of the following drugs: PREGABALIN, Capsule, 200 mg, NDC 00071101768, Pedigree: AD21787_1, EXP: 5/1/2014; HYOSCYAMINE SULFATE SL, Tablet, 0.125 mg, NDC 76439030910, Pedigree: AD54501_1, EXP: 5/21/2014; VARENICLINE, Tablet, 0.5 mg, NDC 00069046856, Pedigree: W003083, EXP: 6/12/2014; L\",\"Labeling: Label Mixup: PROGESTERONE, Capsule, 100 mg may be potentially mislabeled as the following drug: LEVOTHYROXINE SODIUM, Tablet, 12.5 mcg (1/2 of 25 mcg), NDC 00527134101, Pedigree: AD46265_40, EXP: 5/15/2014. \",\"NaN\",\"NaN\",\"NaN\",\"Microbial Contamination of Non-Sterile Products: A lot of raw material used in the manufacture of Ranitidine was positive for Pseudomonas sp. \",\"NaN\",\"Microbial Contamination of a Non-Sterile Products: Product was found to be contaminated with the bacteria, Sarcina Lutea.\",\"NaN\",\"Labeling: Not Elsewhere Classified; foil label on immediate blister pack indicates active ingredient as Chlorpheniramine rather than Diphenhydramine \",\"Subpotent Drug: the active ingredient, fluocinolone acetonide, was found to be subpotent during the firm's routine testing.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Unit Dose Mispackaging: Product packaging defect which could result in code date smearing, incomplete blister card cuts, and missing or incorrectly placed liquicaps within the blisters.\",\"Labeling: Label Mixup: TACROLIMUS, Capsule, 0.5 mg may have potentially been mislabeled as one of the following drugs: CINACALCET HCL, Tablet, 30 mg, NDC 55513007330, Pedigree: W003168, EXP: 6/13/2014; ISOSORBIDE MONONITRATE ER, Tablet, 30 mg, NDC 62175012837, Pedigree: W003350, EXP: 6/18/2014. \",\"Labeling: Label Mixup: ASPIRIN EC, Tablet, 325 mg may have potentially been mislabeled as one of the following drugs: MULTIVITAMIN/MULTIMINERAL, CHEW Tablet, 0 mg, NDC 58914001460, Pedigree: AD30180_10, EXP: 5/9/2014; DILTIAZEM HCL ER, Capsule, 240 mg, NDC 49884083109, Pedigree: AD52375_1, EXP: 5/17/2014; ASPIRIN, Tablet, 325 mg, NDC 00536330501, Pedigree: W003355, EXP: 6/19/2014; ASPIRIN, Tab\",\"Labeling: Label Mixup: MYCOPHENOLATE MOFETIL, Capsule, 250 mg may have potentially been mislabeled as one of the following drugs: ATORVASTATIN CALCIUM, Tablet, 80 mg, NDC 00378212277, Pedigree: W003213, EXP: 6/14/2014; PROPRANOLOL HCL, Tablet, 10 mg, NDC 23155011010, Pedigree: AD65317_1, EXP: 5/24/2014. \",\"Labeling: Label Mixup: FLUCONAZOLE, Tablet, 200 mg may have potentially been mislabeled as one of the following drugs: VALSARTAN, Tablet, 80 mg, NDC 00078035834, Pedigree: AD65475_10, EXP: 5/28/2014; FLUCONAZOLE, Tablet, 100 mg, NDC 68462010230, Pedigree: W003064, EXP: 6/12/2014. \",\"Labeling: Label Mixup: MODAFINIL, Tablet, 200 mg may have potentially been mislabeled as one of the following drugs: OMEGA-3-ACID ETHYL ESTERS, Capsule, 1000 mg, NDC 00173078302, Pedigree: W003692, EXP: 6/26/2014. \",\"Labeling:Label Mixup; VERAPAMIL HCL ER, Tablet, 240 mg may be potentially mislabeled as TRIFLUOPERAZINE HCL, Tablet, 1 mg, NDC 00781103001, Pedigree: AD52778_91, EXP: 5/21/2014.\",\"NaN\",\"Labeling: Label Mixup; CYANOCOBALAMIN, Tablet, 1000 mcg may be potentially mislabeled as VITAMIN B COMPLEX W/C, Tablet, NDC 00904026013, Pedigree: AD21846_43, EXP: 5/1/2014; NIACIN TR, Capsule, 500 mg, NDC 00904063160, Pedigree: AD46257_22, EXP: 5/15/2014; chlorproMAZINE HCl, Tablet, 50 mg, NDC 00832030200, Pedigree: AD32973_4, EXP: 5/9/2014; PRENATAL MULTIVITAMIN/MULTIMINERAL, Tablet, NDC \",\"NaN\",\"Labeling: Label Mixup; ACETAMINOPHEN/ ASPIRIN/ CAFFEINE, Tablet, 250 mg/250 mg/65 mg may be potentially mislabeled as MULTIVITAMIN/MULTIMINERAL, Chew Tablet, NDC 00536344308, Pedigree: W003714, EXP: 6/26/2014.\",\"Labeling:Label Mixup; ZINC SULFATE Capsule, 220 mg may be potentially mislabeled as CALCIUM ACETATE, Capsule, 667 mg, NDC 00054008826, Pedigree: AD52778_10, EXP: 5/20/2014; CALCITRIOL, Capsule, 0.25 mcg, NDC 00054000725, Pedigree: W003638, EXP: 6/25/2014. \",\"Labeling:Label Mixup; CYPROHEPTADINE HCL Tablet, 4 mg may be potentially mislabeled as ACARBOSE, Tablet, 25 mg, NDC 00054014025, Pedigree: W003673, EXP: 6/25/2014; AMANTADINE HCL, Capsule, 100 mg, NDC 00781204801, Pedigree: W003323, EXP: 6/18/2014. \",\"Labeling:Label Mixup; CINACALCET HCL, Tablet, 30 mg may be potentially mislabeled as ACETAMINOPHEN, Chew Tablet, 80 mg, NDC 00536323307, Pedigree: W003113, EXP: 6/13/2014; FERROUS SULFATE, Tablet, 325 mg (65 mg Elemental Iron), NDC 00904759160, Pedigree: AD54553_1, EXP: 5/20/2014; OMEGA-3-ACID ETHYL ESTERS, Capsule, 1000 mg, NDC 00173078302, Pedigree: AD32757_40, EXP: 5/14/2014; COLCHICINE, \",\"Labeling: Label Mixup; NIFEDIPINE Capsule, 10 mg may be potentially mislabeled as MULTIVITAMIN/MULTIMINERAL W/FLUORIDE, Chew Tablet, 1 mg (F), NDC 64376081501, Pedigree: AD22609_7, EXP: 5/2/2014; NIFEDIPINE, Capsule, 10 mg, NDC 43386044024, Pedigree: AD23082_7, EXP: 9/23/2013. \",\"Labeling: Label Mixup; HYDROCORTISONE Tablet, 5 mg may be potentially mislabeled as ORPHENADRINE CITRATE ER, Tablet, 100 mg, NDC 43386048024, Pedigree: W002962, EXP: 6/11/2014; CALCIUM ACETATE, Capsule, 667 mg, NDC 00054008826, Pedigree: W003045, EXP: 6/12/2014. \",\"Subpotent drug: Two lots of Oxycodone and Acetaminophen Capsules, USP 5/500 mg are being recalled due to low out of specification (OOS) assay result obtained at expiry (24 months) for the oxycodone portion of the product.\",\"Defective Container: Defective bottles may not have tamper evident seals properly seated, and therefore it may be difficult to determine if the product had been opened or tampered with. \",\"NaN\",\"Failed Impurities/Degradation Specifications: unspecified degradation product\",\"NaN\",\"Defective Delivery System: There is a remote potential that cartons of product could be co-packaged with an oral dosing syringe without dose markings. \",\"Labeling: Label Mixup: EFAVIRENZ, Tablet, 600 mg may have potentially been mislabeled as the following drug: NIACIN ER, Tablet, 500 mg, NDC 00074307490, Pedigree: AD73637_1, EXP: 5/30/2014. \",\"Labeling: Label Mixup: TRIAMTERENE/HCTZ, Tablet, 37.5 mg/25 mg may have potentially been mislabeled as the following drug: CAFFEINE, Tablet, 100 mg (1/2 of 200 mg), NDC 24385060173, Pedigree: AD30028_31, EXP: 5/8/2014.\",\"Labeling: Label Mixup: CYCLOBENZAPRINE HCL, Tablet, 5 mg may have potentially been mislabeled as one of the following drugs: ASCORBIC ACID, Tablet, 250 mg, NDC 00904052260, Pedigree: AD46257_62, EXP: 5/15/2014; ATENOLOL, Tablet, 12.5 mg (1/2 of 25 mg), NDC 63304062101, Pedigree: AD73525_1, EXP: 5/30/2014. \",\"Labeling: Label Mixup: TACROLIMUS, Capsule, 1 mg may have potentially been mislabeled as one of the following drugs: BISOPROLOL FUMARATE, Tablet, 5 mg, NDC 29300012601, Pedigree: AD34934_7, EXP: 5/10/2014; SEVELAMER CARBONATE, Tablet, 800 mg, NDC 58468013001, Pedigree: AD56917_4, EXP: 5/21/2014; SEVELAMER CARBONATE, Tablet, 800 mg, NDC 58468013001, Pedigree: AD73627_11, EXP: 5/30/2014; ATOMOXE\",\"NaN\",\"NaN\",\"Labeling: Label Mixup; aMILoride HCl Tablet, 5 mg may be potentially mislabeled as PROPRANOLOL HCL, Tablet, 10 mg, NDC 23155011001, Pedigree: AD60272_37, EXP: 5/22/2014; FAMOTIDINE, Tablet, 20 mg, NDC 16714036104, Pedigree: W003764, EXP: 6/26/2014. \",\"Labeling: Label Mixup; ALLOPURINOL Tablet, 300 mg may be potentially mislabeled as CHOLECALCIFEROL, Tablet, 400 units, NDC 00904582360, Pedigree: AD52993_25, EXP: 5/20/2014.\",\"Failed Impurities/Degradation:Specifications:Unknown degradant found during stability testing\",\"Labeling: Label Mixup; PROPRANOLOL HCL, Tablet, 10 mg may be potentially mislabeled as PIOGLITAZONE HCL, Tablet, 15 mg, NDC 00093204856, Pedigree: AD52778_70, EXP: 5/21/2014.\",\"Labeling: Label Mixup; MELATONIN Tablet, 3 mg may be potentially mislabeled as DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375701, Pedigree: AD25452_13, EXP: 5/3/2014; PIOGLITAZONE, Tablet, 15 mg, NDC 00591320530, Pedigree: AD28322_4, EXP: 4/30/2014; COENZYME Q-10, Capsule, 100 mg, NDC 37205055065, Pedigree: AD70655_11, EXP: 5/28/2014; COENZYME Q-10, Capsule, 100 mg, NDC 37205055065, Pedigree\",\"Labeling: Label Mixup; CALCIUM CITRATE, Tablet, 950 mg (200 mg Elemental Calcium) may be potentially mislabeled as LITHIUM CARBONATE ER, Tablet, 450 mg, NDC 00054002025, Pedigree: AD46265_10, EXP: 5/15/2014.\",\"Labeling:Label Mixup; MULTIVITAMIN/MULTIMINERAL Tablet may be potentially mislabeled as OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 00904404360, Pedigree: AD62865_13, EXP: 5/23/2014; guaiFENesin ER, Tablet, 600 mg, NDC 63824000834, Pedigree: W003514, EXP: 6/21/2014. \",\"Labeling:Label Mixup; SEVELAMER CARBONATE Tablet, 800 mg may be potentially mislabeled as tiZANidine HCl, Tablet, 2 mg, NDC 55111017915, Pedigree: AD46265_16, EXP: 5/15/2014; LEVOTHYROXINE SODIUM, Tablet, 88 mcg, NDC 00781518392, Pedigree: AD70629_13, EXP: 5/29/2014; QUEtiapine FUMARATE, Tablet, 100 mg, NDC 60505313301, Pedigree: W002777, EXP: 6/6/2014; VALSARTAN, Tablet, 160 mg, NDC 0007803\",\"Labeling: Label Mixup; FEXOFENADINE HCL Tablet, 60 mg may be potentially mislabeled as PYRIDOXINE HCL, Tablet, 50 mg, NDC 51645090901, Pedigree: W003019, EXP: 6/12/2014; NIACIN TR, Capsule, 500 mg, NDC 00904063160, Pedigree: AD60240_17, EXP: 5/22/2014; CRANBERRY EXTRACT/VITAMIN C, Capsule, 450 mg/125 mg, NDC 31604014271, Pedigree: AD46257_13, EXP: 5/15/2014. \",\"Presence of Particulate Matter: Confirmed customer complaint of particulate matter, identified as a human hair, visible in the injection port and primary container.\",\"Labeling: Label Mixup; ZINC SULFATE, Capsule, 50 mg may be potentially mislabeled as SERTRALINE HCL, Tablet, 50 mg, NDC 16714061204, Pedigree: AD30993_14, EXP: 5/9/2014.\",\"Labeling: Label Mixup; NITROFURANTOIN MACROCRYSTALS Capsule, 50 mg may be potentially mislabeled as PHYTONADIONE, Tablet, 5 mg, NDC 25010040515, Pedigree: AD25452_1, EXP: 4/30/2014.\",\"Labeling:Label Mixup; MULTIVITAMIN/MULTIMINERAL W/FLUORIDE, Chew Tablet, 1 mg (F) may be potentially mislabeled as ISOMETHEPTENE MUCATE/ DICHLORALPHENAZONE/APAP, Capsule, 65 mg/100 mg/325 mg, NDC 44183044001, Pedigree: AD22858_1, EXP: 3/31/2014.\",\"Labeling: Label Mixup; SIMVASTATIN Tablet, 20 mg may be potentially mislabeled as VITAMIN B COMPLEX WITH C/FOLIC ACID, Tablet, NDC 60258016001, Pedigree: W003591, EXP: 6/24/2014.\",\"NaN\",\"Labeling:Label Mixup; PROMETHAZINE HCL, Tablet, 25 mg may be potentially mislabeled as CHOLECALCIFEROL, Tablet, 400 units, NDC 00904582360, Pedigree: W002574, EXP: 6/3/2014.\",\"Labeling: Label Mixup; CAFFEINE Tablet, 200 mg may be potentially mislabeled as CALCIUM CITRATE, Tablet, 950 mg (200 mg ELEMENTAL Ca), NDC 00904506260, Pedigree: AD21846_24, EXP: 5/1/2014; CHOLECALCIFEROL, Capsule, 2000 units, NDC 00536379001, Pedigree: AD60240_4, EXP: 5/22/2014; FEXOFENADINE HCL, Tablet, 60 mg, NDC 45802042578, Pedigree: W003020, EXP: 6/12/2014; MELATONIN, Tablet, 3 mg, ND\",\"Labeling:Label Mixup; QUINAPRIL HCL Tablet, 10 mg may be potentially mislabeled as PROPRANOLOL HCL, Tablet, 80 mg, NDC 23155011401, Pedigree: AD42566_4, EXP: 5/14/2014.\",\"Labeling: Label Mixup: ACYCLOVIR, Capsule, 200 mg may have potentially been mislabeled as one of the following drugs: CYANOCOBALAMIN, Tablet, 1000 mcg, NDC 00904421713, Pedigree: AD60240_51, EXP: 5/22/2014; METOPROLOL TARTRATE, Tablet, 25 mg, NDC 57664050652, Pedigree: W002841, EXP: 6/7/2014; METOPROLOL TARTRATE, Tablet, 50 mg, NDC 00093073301, Pedigree: W003900, EXP: 6/27/2014; acetaZOLAMIDE\",\"Labeling: Label Mixup: RALOXIFENE HCL, Tablet, 60 mg may be potentially mis-labeled as following drug: ISOSORBIDE MONONITRATE, Tablet, 20 mg, NDC 62175010701; Pedigree: W002656, EXP: 6/4/2014. \",\"Labeling: Label Mixup: ATORVASTATIN CALCIUM, Tablet, 10 mg may have potentially been mislabeled as one of the following drugs: PANCRELIPASE DR, Capsule, 12000 /38000 /60000 USP units, NDC 00032121201, Pedigree: AD30180_4, EXP: 5/8/2014; OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/1,110 mg, NDC 11523726503, Pedigree: AD49399_4, EXP: 5/16/2014; ASPIRIN, CHEW Tablet, 81 mg, NDC 00536329736, Pedi\",\"Labeling: Label Mixup: HYDROCORTISONE, Tablet, 5 mg may have potentially been mislabeled as one of the following drugs: carBAMazepine ER, Tablet, 200 mg, NDC 51672412401, Pedigree: AD60272_7, EXP: 5/22/2014; guanFACINE HCl, Tablet, 1 mg, NDC 00591044401, Pedigree: W002728, EXP: 4/30/2014; glyBURIDE, Tablet, 1.25 mg, NDC 00093834201, Pedigree: AD21790_10, EXP: 2/28/2014; ACARBOSE, Tablet, 25 mg\",\"Labeling: Label Mixup: ATORVASTATIN CALCIUM, Tablet, 40 mg may have potentially been mislabeled as one of the following drugs: ATORVASTATIN CALCIUM, Tablet, 10 mg, NDC 00378201577, Pedigree: AD33897_4, EXP: 5/9/2014; FINASTERIDE, Tablet, 5 mg, NDC 16714052201, Pedigree: W003031, EXP: 2/28/2014. \",\"Labeling: Label Mixup: ATORVASTATIN CALCIUM, Tablet, 20 mg may have potentially been mislabeled as one of the following drugs: COENZYME Q-10, Capsule, 100 mg, NDC 37205055065, Pedigree: AD32325_4, EXP: 5/9/2014; ATORVASTATIN CALCIUM, Tablet, 10 mg, NDC 00378201577, Pedigree: AD49582_7, EXP: 5/16/2014. \",\"Labeling: Label Mixup: DESLORATADINE, Tablet, 5 mg may have potentially been mislabeled as the following drug: ASCORBIC ACID, Tablet, 250 mg, NDC 00904052260, Pedigree: AD30180_28, EXP: 5/9/2014. \",\"Labeling: Label Mixup:quiNIDine SULFATE, Tablet, 200 mg may have potentially been mislabeled as the following drug: QUINAPRIL, Tablet, 40 mg, NDC 31722027090, Pedigree: AD52778_76, EXP: 5/21/2014. \",\"Labeling: Label Mixup: METOPROLOL TARTRATE, Tablet, 25 mg may have potentially been mislabeled as the following drug: DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375710, Pedigree: AD76675_1, EXP: 6/3/2014.\",\"Labeling: Label Mixup: BROMOCRIPTINE MESYLATE, Tablet, 2.5 mg may have potentially been mislabeled as the following drug: CYANOCOBALAMIN, Tablet, 1000 mcg, NDC 00904421713, Pedigree: AD32582_3, EXP: 5/9/2014. \",\"CGMP Deviations: Pharmaceuticals were produced and distributed with active ingredients not manufactured according to Good Manufacturing Practices.\",\"Labeling: Label Mixup: LIOTHYRONINE SODIUM, Tablet, 25 mcg may have potentially been mislabeled as one of the following drugs: LEVOTHYROXINE SODIUM, Tablet, 175 mcg, NDC 00378181701, Pedigree: W003151, EXP: 6/13/2014; HYOSCYAMINE SULFATE SL, Tablet, 0.125 mg, NDC 00574025001, Pedigree: W003000, EXP: 6/11/2014. \",\"Labeling: Label Mixup: FENOFIBRATE, Tablet, 54 mg may have potentially been mislabeled as the following drug:\\t FAMCICLOVIR, Tablet, 500 mg, NDC 00093811956, Pedigree: AD49448_4, EXP: 5/17/2014. \",\"NaN\",\"Labeling: Label Mixup:PROGESTERONE, Capsule, 100 mg may have potentially been mislabeled as the following drug: ASCORBIC ACID, Tablet, 250 mg, NDC 00904052260, Pedigree: AD73623_10, EXP: 5/30/2014. \",\"Labeling: Label Mixup: METHOCARBAMOL, Tablet, 500 mg may have potentially been mislabeled as the following drug: LOSARTAN POTASSIUM, Tablet, 25 mg, NDC 00093736498, Pedigree: AD46312_16, EXP: 5/16/2014.\",\"Good Manufacturing Practices Deviations: The product has an Active Pharmaceutical Ingredient from an unapproved source.\",\"Labeling: Label Mixup: ESTRADIOL, Tablet, 0.5 mg may have potentially been mislabeled as the following drug: NICOTINE POLACRILEX, GUM, 2 mg, NDC 00536302923, Pedigree: AD33897_28, EXP: 2/28/2014. \",\"Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 112 mcg may have potentially been mislabeled as the following drug: MULTIVITAMIN/MULTIMINERAL, Tablet, 0 mg, NDC 00536406001, Pedigree: AD22865_13, EXP: 5/2/2014. \",\"Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 175 mcg may have potentially been mislabeled as one of the following drugs: LEVOTHYROXINE SODIUM, Tablet, 88 mcg, NDC 00781518392, Pedigree: AD46265_34, EXP: 5/15/2014; hydrOXYzine PAMOATE, Capsule, 100 mg, NDC 00555032402, Pedigree: W003008, EXP: 6/11/2014. \",\"Labeling:Label Mixup; RASAGILINE MESYLATE, Tablet, 0.5 mg may be potentially mislabeled as OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 40985022921, Pedigree: W002690, EXP: 6/5/2014.\",\"NaN\",\"NaN\",\"Labeling:Label Mixup; OXcarbazepine Tablet, 600 mg may be potentially mislabeled as LACTASE ENZYME, Tablet, 3000 units, NDC 24385014976, Pedigree: AD30028_25, EXP: 5/7/2014.\",\"Labeling: Label Mixup; VITAMIN B COMPLEX Tablet may be potentially mislabeled as OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/1,100 mg, NDC 11523726503, Pedigree: W003789, EXP: 6/27/2014; prednisoLONE, Tablet, 5 mg, NDC 16477050501, Pedigree: W003627, EXP: 6/25/2014. \",\"Labeling: Label Mixup; BISOPROLOL FUMARATE Tablet, 5 mg may be potentially mislabeled as: ESTROPIPATE, Tablet, 0.75 mg, NDC 00591041401, Pedigree: AD34934_4, EXP: 5/10/2014.\",\"Labeling: Label Mixup; ASPIRIN EC DR Tablet, 81 mg may be potentially mislabeled as MELATONIN, Tablet, 3 mg, NDC 51991001406, Pedigree: AD28322_7, EXP: 5/6/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00904789159, Pedigree: W003671, EXP: 6/25/2014. \",\"Labeling: Label Mixup; VENLAFAXINE Tablet, 25 mg may be potentially mislabeled as OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/1,110 mg, NDC 11523726503, Pedigree: AD65457_22, EXP: 5/24/2014.\",\"Labeling: Label Mixup; traZODone HCl Tablet, 150 mg may be potentially mislabeled as NICOTINE POLACRILEX, Lozenge, 2 mg, NDC 00135051001, Pedigree: AD21858_1, EXP: 5/1/2014; SENNOSIDES, Tablet, 8.6 mg, NDC 00182109301, Pedigree: W003256, EXP: 6/17/2014. \",\"Labeling: Label Mixup; HYOSCYAMINE SULFATE ER Tablet, 0.375 mg may be potentially mislabeled as SERTRALINE HCL, Tablet, 50 mg, NDC 16714061204, Pedigree: W003575, EXP: 6/24/2014.\",\"Labeling: Label Mixup: EXEMESTANE, Tablet, 25 mg may be potentially mislabeled as the following drug: OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 00904404360, Pedigree: W003473, EXP: 6/20/2014. \",\"Labeling: Label Mixup: LOXAPINE, Capsule, 5 mg may have potentially been mislabeled as the following drug: SERTRALINE HCL, Tablet, 50 mg, NDC 16714061204, Pedigree: AD46426_1, EXP: 5/15/2014. \",\"Labeling: Label Mixup: PIROXICAM, Capsule, 10 mg may have potentially been mislabeled as the following drug: HYOSCYAMINE SULFATE SL, Tablet, 0.125 mg, NDC 00574025001, Pedigree: AD30140_10, EXP: 5/7/2014. \",\"Labeling: Label Mixup: VENLAFAXINE HCL, Tablet, 75 mg may have potentially been mislabeled as the following drug: TACROLIMUS, Capsule, 1 mg, NDC 00781210301, Pedigree: W002508, EXP: 6/3/2014. \",\"Labeling: Label Mixup: CALCIUM ACETATE, Tablet, 667 mg may have potentially been mislabeled as one of the following drugs: ASCORBIC ACID, Tablet, 250 mg, NDC 00904052260, Pedigree: AD30028_34, EXP: 5/7/2014; HYOSCYAMINE SULFATE ODT, Tablet, 0.125 mg, NDC 00574024701, Pedigree: W003614, EXP: 6/25/2014. \",\"Labeling: Label Mixup: tiZANidine HCl, Tablet, 2 mg may have potentially been mislabeled as the following drug: NIACIN TR, Tablet, 500 mg, NDC 00904434260, Pedigree: W002969, EXP: 6/11/2014.\",\"Labeling: Label Mixup: HYOSCYAMINE SULFATE SL, Tablet, 0.125 mg may have potentially been mislabeled as one of the following drugs: guanFACINE HCl, Tablet, 2 mg, NDC 65162071310, Pedigree: AD21790_13, EXP: 5/1/2014; CYCLOBENZAPRINE HCL, Tablet, 5 mg, NDC 00591325601, Pedigree: AD46265_4, EXP: 5/15/2014; guanFACINE HCl, Tablet, 2 mg, NDC 65162071310, Pedigree: W003678, EXP: 6/25/2014; guanFACIN\",\"Labeling: Label Mixup: POTASSIUM ACID PHOSPHATE, Tablet, 500 mg may have potentially been mislabeled as the following drug: predniSONE, Tablet, 20 mg, NDC 00591544301, Pedigree: AD56879_5, EXP: 5/21/2014. \",\"Labeling: Label Mixup: PYRIDOXINE HCL, Tablet, 100 mg may have potentially been mislabeled as one of the following drugs: CYANOCOBALAMIN, Tablet, 1000 mcg, NDC 00536355601, Pedigree: AD73627_29, EXP: 5/30/2014; COENZYME Q-10, Capsule, 100 mg, NDC 37205055065, Pedigree: W003871, EXP: 6/27/2014; VITAMIN B COMPLEX PROLONGED RELEASE, Tablet, 0 mg, NDC 40985022251, Pedigree: AD76686_1, EXP: 5/31/201\",\"Labeling: Label Mixup: METHAZOLAMIDE, Tablet, 50 mg may have potentially been mislabeled as the following drug: BUPRENORPHINE HCL SL, Tablet, 2 mg, NDC 00054017613, Pedigree: AD39573_1, EXP: 5/13/2014. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Failed Stability Specification; product viscosity and or pH are below specification.\",\"Marketed without an Approved NDA/ANDA: This recall is being initiated because of changes to the dissolution profile in distributed lots resulting from a manufacturing site change. There is currently no approved application supporting the alternate manufacturing site.\",\"NaN\",\"Labeling: Label Mixup: MEXILETINE HCL, Capsule, 150 mg may have potentially been mislabeled as the following drug: CALCIUM ACETATE, Capsule, 667 mg, NDC 00054008826, Pedigree: AD62865_4, EXP: 5/23/2014.\",\"Labeling: Label Mixup: ASPIRIN/ER DIPYRIDAMOLE, Capsule, 25 mg/200 mg may have potentially been mislabeled as the following drug: THIAMINE HCL, Tablet, 100 mg, NDC 00904054460, Pedigree: AD70639_1, EXP: 5/29/2014; LEVOTHYROXINE SODIUM, Tablet, 88 mcg, NDC 00781518392, Pedigree: W003439, EXP: 6/20/2014; ZINC SULFATE, Capsule, 220 mg, NDC 60258013101, Pedigree: W003641, EXP: 6/25/2014. \",\"Labeling: Label Mixup:TRIHEXYPHENIDYL HCL, Tablet, 1 mg (1/2 of 2 mg) may have potentially been mislabeled as the following drug: PERPHENAZINE, Tablet, 16 mg, NDC 00781104901, Pedigree: AD73525_22, EXP: 5/30/2014. \",\"Labeling: Label Mixup: ENTECAVIR, Tablet, 0.5 mg may be potentially mis-labeled as one of the following drugs: ARIPiprazole, Tablet, 2 mg, NDC 59148000613, Pedigree: AD30140_25, EXP: 5/7/2014; aMILoride HCl, Tablet, 5 mg, NDC 64980015101, Pedigree: W003686, EXP: 6/26/2014; ATOMOXETINE HCL, Capsule, 80 mg, NDC 00002325030, Pedigree: AD60272_49, EXP: 5/22/2014. \",\"Labeling: Label Mixup: amLODIPine BESYLATE, Tablet, 5 mg may have potentially been mislabeled as the following drug: CYANOCOBALAMIN, Tablet, 1000 mcg, NDC 00904421713, Pedigree: W002839, EXP: 6/7/2014. \",\"Labeling: Label Mixup: TERBUTALINE SULFATE, Tablet, 2.5 mg may have potentially been mislabeled as the following drug:\\t SOTALOL HCL, Tablet, 80 mg, NDC 00093106101, Pedigree: AD52778_85, EXP: 5/21/2014. \",\"Labeling: Label Mixup: LOSARTAN POTASSIUM, Tablet, 50 mg may have potentially been mislabeled as the following drug: MIDODRINE HCL, Tablet, 2.5 mg, NDC 00185004001, Pedigree: W003265, EXP: 6/17/2014. \",\"Labeling: Label Mixup: VERAPAMIL HCL ER, Capsule, 240 mg may have potentially been mislabeled as the following drug: FEBUXOSTAT, Tablet, 40 mg, NDC 64764091830, Pedigree: W002664, EXP: 6/5/2014.\",\"Labeling: Label Mixup: DISOPYRAMIDE PHOSPHATE, Capsule, 150 mg may have potentially been mislabeled as the following drug: THYROID, Tablet, 30 mg, NDC 00456045801, Pedigree: AD65323_1, EXP: 5/29/2014.\",\"Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 137 mcg may have potentially been mislabeled as the following drug: ISONIAZID, Tablet, 300 mg, NDC 00555007102, Pedigree: AD60272_70, EXP: 5/22/2014. \",\"Labeling:Label Mixup; rifAXIMin Tablet, 200 mg may be potentially mislabeled as CapsuleTOPRIL, Tablet, 25 mg, NDC 00143117201, Pedigree: AD52778_19, EXP: 5/20/2014.\",\"Labeling: Label Mixup; WARFARIN SODIUM, Tablet, 0.5 mg (1/2 of 1 mg) may be potentially mislabeled as SODIUM CHLORIDE, Tablet, 1 mg, NDC 00223176001, Pedigree: AD70636_1, EXP: 5/29/2014.\",\"Labeling:Label Mixup; tiZANidine HCL Tablet, 2 mg may be potentially mislabeled as NICOTINE POLACRILEX, Lozenge, 2 mg, NDC 37205098769, Pedigree: AD70700_4, EXP: 5/29/2014; NIFEdipine ER, Tablet, 60 mg, NDC 00591319401, Pedigree: W003729, EXP: 6/26/2014. \",\"Labeling:Label Mixup; guanFACINE HCl Tablet, 2 mg may be potentially mislabeled as buPROPion HCl ER, Tablet, 200 mg, NDC 47335073886, Pedigree: AD21790_4, EXP: 5/1/2014; AMANTADINE HCL, Capsule, 100 mg, NDC 00781204801, Pedigree: W002997, EXP: 6/11/2014; glyBURIDE, Tablet, 1.25 mg, NDC 00093834201, Pedigree: W003677, EXP: 2/28/2014; ACYCLOVIR, Capsule, 200 mg, NDC 00093894001, Pedigree: AD60\",\"Failed Impurities/Degradation:Specifications:Unknown degradant found during stability testing.\",\"Labeling:Label Mixup; OLANZAPINE, Tablet 7.5 mg may be potentially mislabeled as NORTRIPTYLINE HCL, Capsule, 75 mg, NDC 00093081301, Pedigree: AD21790_73, EXP: 5/1/2014.\",\"Labeling: Label Mixup; prednisoLONE, Tablet, 5 mg may be potentially mislabeled as ASPIRIN/ER DIPYRIDAMOLE, Capsule, 25 mg/200 mg, NDC 00597000160, Pedigree: W003644, EXP: 8/24/2013.\",\"Labeling: Label Mixup; SOLIFENACIN SUCCINATE Tablet, 5 mg may be potentially mislabeled as BROMOCRIPTINE MESYLATE, Tablet, 2.5 mg, NDC 00574010601, Pedigree: W003754, EXP: 6/26/2014.\",\"Labeling:Label Mixup; ARIPiprazole Tablet, 2 mg may be potentially mislabeled as tiZANidine HCl, Tablet, 2 mg, NDC 55111017915, Pedigree: AD21790_40, EXP: 5/1/2014; ATOMOXETINE HCL, Capsule, 80 mg, NDC 00002325030, Pedigree: AD30140_19, EXP: 5/7/2014; OLANZapine, Tablet, 7.5 mg, NDC 55111016530, Pedigree: AD46265_46, EXP: 5/15/2014; REPAGLINIDE, Tablet, 2 mg, NDC 00169008481, Pedigree: AD464\",\"NaN\",\"Labeling: Label Mixup: NIACIN TR, Tablet, 1000 mg may have potentially been mislabeled as the following drug: NIACIN TR, Tablet, 750 mg, NDC 00536703301, Pedigree: AD46414_56, EXP: 5/16/2014. \",\"Labeling: Label Mixup: DICYCLOMINE HCL, Tablet, 20 mg may have potentially been mislabeled as the following drug: RAMIPRIL, Capsule, 2.5 mg, NDC 68180058901, Pedigree: AD76639_1, EXP: 5/31/2014. \",\"Labeling: Label Mixup: SODIUM CHLORIDE, Tablet, 1000 mg may have potentially been mislabeled as the following drug: REPAGLINIDE, Tablet, 2 mg, NDC 00169008481, Pedigree: W003925, EXP: 7/1/2014. \",\"Labeling: Label Mixup: DRONEDARONE HCL, Tablet, 400 mg may be potentially as the following drug: METHYLERGONOVINE MALEATE, Tablet, 0.2 mg, NDC 43386014028, Pedigree: AD52778_40, EXP: 5/20/2014. \",\"Labeling: Label Mixup: PROPAFENONE HCL, Tablet, 150 mg may have potentially been mislabeled as the following drug: FOSINOPRIL SODIUM, Tablet, 10 mg, NDC 00185004109, Pedigree: AD54549_7, EXP: 5/20/2014. \",\"Labeling: Label Mixup: OXYBUTYNIN CHLORIDE, Tablet, 2.5 mg (1/2 of 5 mg) may have potentially been mislabeled as the following drug: PIMOZIDE, Tablet, 1 mg (1/2 of 2 mg), NDC 57844018701, Pedigree: AD73525_61, EXP: 5/30/2014. \",\"Labeling: Label Mixup: NORTRIPTYLINE HCL, Capsule, 50 mg may have potentially been mislabeled as one of the following drugs: ROSUVASTATIN CALCIUM, Tablet, 5 mg, NDC 00310075590, Pedigree: AD21811_10, EXP: 5/2/2014; LIOTHYRONINE SODIUM, Tablet, 5 mcg, NDC 42794001802, Pedigree: AD46414_38, EXP: 5/16/2014. \",\"Labeling: Label Mixup: VENLAFAXINE HCL, Tablet, 100 mg may have potentially was mislabeled as tiZANidine HCl, Tablet, 2 mg, NDC 55111017915, Pedigree: AD73525_31, EXP: 5/30/2014; and may have potentially been mislabeled as one of the following drugs: methylPREDNISolone, Tablet, 4 mg, NDC 00603459321, Pedigree: AD32764_11, EXP: 3/31/2014; PROPRANOLOL HCL, Tablet, 10 mg, NDC 23155011001, Pedigree:\",\"Labeling: Label Mixup: VITAMIN B COMPLEX W/C, Tablet, 0 mg may have potentially been mislabeled as one of the following drugs: MULTIVITAMIN/ MULTIMINERAL/ LUTEIN, Capsule, 0 mg, NDC 24208063210, Pedigree: AD21846_40, EXP: 5/2/2014; CALCIUM CARBONATE/CHOLECALCIFEROL, Tablet, 600 mg/800 units, NDC 00005550924, Pedigree: AD52993_1, EXP: 5/17/2014; MULTIVITAMIN/ MULTIMINERAL/ LUTEIN, Capsule, 0, ND\",\"Labeling: Label Mixup: ESCITALOPRAM, Tablet, 5 mgmay have potentially been mislabeled as the following drug: SODIUM CHLORIDE, Tablet, 1 gm, NDC 00223176001, Pedigree: W003707, EXP: 6/25/2014. \",\"NaN\",\"Labeling:Label Mixup; MIRTAZAPINE Tablet, 7.5 mg may be potentially mislabeled as ISONIAZID, Tablet, 300 mg, NDC 00555007102, Pedigree: W003691, EXP: 6/26/2014.\",\"Labeling: Label Mixup; NIACIN TR, Tablet, 250 mg may be potentially mislabeled as SOLIFENACIN SUCCINATE, Tablet, 5 mg, NDC 51248015001, Pedigree: W003755, EXP: 6/26/2014.\",\"CGMP Deviations: The Active Pharmaceutical Ingredient was not manufactured according to current good manufacturing practices.\",\"Labeling: Label Mixup; CHOLECALCIFEROL Capsule, 50000 units may be potentially mislabeled as FENOFIBRATE, Tablet, 54 mg, NDC 00378710077, Pedigree: AD60272_64, EXP: 5/22/2014.\",\"Labeling: Label Mixup; ZINC GLUCONATE, Tablet, 50 mg may be potentially mis-labeled as ASCORBIC ACID, Chew Tablet, 500 mg, NDC 00904052660, Pedigree: AD60240_54, EXP: 5/22/2014 and ASCORBIC ACID, Chew Tablet, 250 mg, NDC 00904052260, Pedigree: W003027, EXP: 6/12/2014. \",\"NaN\",\"Labeling: Label Mixup; FERROUS SULFATE, Tablet, 325 mg (65 mg Elem Fe) may be potentially mislabeled as COENZYME Q-10, Capsule, 100 mg, NDC 37205055065, Pedigree: W002711, EXP: 6/6/2014; VENLAFAXINE HCL, Tablet, 25 mg, NDC 00093019901, Pedigree: W002825, EXP: 12/31/2013; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375710, Pedigree: AD60236_1, EXP: 5/22/2014. \",\"Labeling:Label Mixup; CILOSTAZOL Tablet, 100 mg may be potentially mislabeled as DUTASTERIDE, Capsule, 0.5 mg, NDC 00173071204, Pedigree: AD65475_1, EXP: 5/28/2014.\",\"Labeling: Label Mixup; ZOLPIDEM TARTRATE Tablet, 2.5 mg (1/2 of 5 mg) may be potentially mislabeled as TEMAZEPAM, Capsule, 7.5 mg, NDC 00378311001, Pedigree: AD22861_7, EXP: 5/8/2014.\",\"NaN\",\"NaN\",\"Labeling: Label Mixup; MISOPROSTOL Tablet, 100 mcg may be potentially mislabeled as QUINAPRIL HCL, Tablet, 10 mg, NDC 59762502001, Pedigree: AD42611_4, EXP: 5/14/2014.\",\"Labeling:Label Mixup; ASCORBIC ACID Tablet, 500 mg may be potentially mislabeled as FEBUXOSTAT, Tablet, 40 mg, NDC 64764091830, Pedigree: AD23082_16, EXP: 11/1/2013.\",\"Labeling: Incorrect or Missing Lot and/or Exp Date: Greenstone LLC is recalling Nifedipine Extended Release tablets (90mg). The expiration date on the package is 48 months instead of 36 months. \",\"Labeling:Label Mixup; ATORVASTATIN CALCIUM Tablet, 20 mg may be potentially mislabeled as guaiFENesin ER, Tablet, 600 mg, NDC 63824000834, Pedigree: W003850, EXP: 6/27/2014.\",\"Labeling: Label Mixup; FLUoxetine HCl, Capsule, 10 mg may be potentially mislabeled as PANCRELIPASE DR, Capsule, 24000 /76000 /120000 USP units, NDC 00032122401, Pedigree: AD70585_10, EXP: 5/29/2014.\",\"Labeling: Label Mixup; LUBIPROSTONE Capsule, 24 mcg may be potentially mislabeled as ARIPiprazole, Tablet, 2 mg, NDC 59148000613, Pedigree: AD21790_43, EXP: 5/1/2014; CYANOCOBALAMIN, Tablet, 1000 mcg, NDC 00904421713, Pedigree: AD21846_46, EXP: 5/1/2014; VALSARTAN, Tablet, 160 mg, NDC 00078035934, Pedigree: AD39858_1, EXP: 5/16/2014. \",\"Labeling: Label Mixup; COENZYME Q-10 Capsule, 100 mg may be potentially mislabeled as ASPIRIN EC, Tablet, 325 mg, NDC 00904201360, Pedigree: AD30180_13, EXP: 5/9/2014; ASPIRIN, Chew Tablet, 81 mg, NDC 00536329736, Pedigree: AD33897_1, EXP: 5/9/2014; TACROLIMUS, Capsule, 1 mg, NDC 00781210301, Pedigree: AD37056_1, EXP: 5/10/2014; METOPROLOL TARTRATE, Tablet, 12.5 mg (1/2 of 25 mg), NDC 576640\",\"Labeling: Label Mixup; FIDAXOMICIN Tablet, 200 mg may be potentially mislabeled as BENAZEPRIL HCL, Tablet, 40 mg, NDC 65162075410, Pedigree: W003918, EXP: 6/28/2014.\",\"Labeling: Label Mixup: NIACIN, Tablet, 500 mg may have potentially been mislabeled as one of the following drugs: NAPROXEN, Tablet, 500 mg, NDC 53746019001, Pedigree: AD54516_1, EXP: 5/20/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00904789159, Pedigree: W002920, EXP: 6/10/2014. \",\"Labeling: Label Mixup: CLINDAMYCIN HCL, Capsule, 300 mg may have potentially been mislabeled as the following drug: MELATONIN, Tablet, 3 mg, NDC 51991001406, Pedigree: AD68019_7, EXP: 5/28/2014. \",\"Labeling: Label Mixup: MESALAMINE DR, Capsule, 400 mg may have potentially been mislabeled as the following drug: CHLOROPHYLLIN COPPER COMPLEX, Tablet, 100 mg, NDC 11868000901, Pedigree: AD34928_1, EXP: 5/9/2014. \",\"Labeling: Label Mixup: PYRIDOXINE HCL, Tablet, 25 mg may have potentially been mislabeled as the following drug: TORSEMIDE, Tablet, 10 mg, NDC 50111091601, Pedigree: AD30197_25, EXP: 5/9/2014. \",\"Lack of Assurance of Sterility: The recall is being initiated due to a lack of sterility assurance and concerns associated with the quality control processes identified during an FDA inspection.\",\"Presence of Particulate Matter: Potential vendor glass issue - glass spiticules (glass strands) were identified during site inspection of the vials.\",\"NaN\",\"Marketed Without An Approved NDA/ANDA: FDA analysis found the product to contain sulfoaildenafil, an analogue of sildenafil which is an ingredient in an FDA-approved drug for the treatment of male erectile dysfunction, making this an unapproved new drug.\",\"NaN\",\"Short Fill: Due to an error in the manufacturing process, cylinders in this lot may be empty and contain no medical oxygen.\",\"Labeling: Label Mixup: THIOTHIXENE, Capsule, 1 mg may have potentially been mislabeled as the following drug: OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 40985022921, Pedigree: AD46257_1, EXP: 5/15/2014.\",\"Labeling: Label Mixup: CARBIDOPA/LEVODOPA, Tablet, 25 mg/250 mg may have potentially been mislabeled as the following drug: DIGOXIN, Tablet, 0.125 mg, NDC 00115981101, Pedigree: AD46426_22, EXP: 5/15/2014. \",\"Labeling: Label Mixup: NIFEdipine ER, Tablet, 60 mg may have potentially been mislabeled as the following drug: NICOTINE POLACRILEX, LOZENGE, 2 mg, NDC 00135051001, Pedigree: W003749, EXP: 6/26/2014. \",\"Labeling: Label Mixup: ESTROPIPATE, Tablet, 0.75 mg may have potentially been mislabeled as the following drug: MESALAMINE DR, Capsule, 400 mg, NDC 00430075327, Pedigree: AD34934_1, EXP: 1/31/2014.\",\"Labeling: Label Mixup: BUMETANIDE, Tablet, 1 mg may have potentially been mislabeled as the following drug: guaiFENesin ER, Tablet, 600 mg, NDC 63824000815, Pedigree: W003218, EXP: 6/17/2014.\",\"Labeling: Label Mixup: CILOSTAZOL, Tablet, 100 mg may have potentially been mislabeled as the following drug: TRIAMTERENE/ HYDROCHLOROTHIAZIDE, Tablet, 37.5 mg/25 mg, NDC 00591042401, Pedigree: W002900, EXP: 6/10/2014.\",\"Labeling: Label Mixup: HYDROCHLOROTHIAZIDE, Tablet, 12.5 mg may have potentially been mislabeled as one of the following drugs: hydrALAZINE HCl, Tablet, 100 mg, NDC 23155000401, Pedigree: AD73652_4, EXP: 5/29/2014; CLINDAMYCIN HCL, Capsule, 300 mg, NDC 00591312001, Pedigree: AD67989_1, EXP: 5/28/2014. \",\"Labeling: Label Mixup: TRIFLUOPERAZINE HCL, Tablet, 1 mg may have potentially been mislabeled as the following drug: TERBUTALINE SULFATE, Tablet, 2.5 mg, NDC 00115261101, Pedigree: AD52778_88, EXP: 5/21/2014. \",\"Lack of Assurance of Sterility: The Mentholatum Company has recalled Rohto Arctic, Rohto Ice, Rohto Hydra, Rohto Relief and Rohto Cool eye drops, due to concerns related to the quality assurance of sterility controls. \",\"NaN\",\"Labeling:Label Mixup; BENZOCAINE/MENTHOL Lozenge, 15 mg/2.6 mg may be potentially mislabeled as CHOLECALCIFEROL/ CALCIUM/ PHOSPHORUS, Tablet, 120 units/105 mg/81 mg, NDC 64980015001, Pedigree: AD32345_1, EXP: 5/14/2014.\",\"Labeling: Label Mixup; PROPRANOLOL HCL Tablet, 5 mg (1/2 of 10 mg) may be potentially mislabeled as LITHIUM CARBONATE ER, Tablet, 225 mg (1/2 of 450 mg), NDC 00054002025, Pedigree: AD73525_16, EXP: 5/30/2014.\",\"NaN\",\"Labeling:Label Mixup; PRAMIPEXOLE DI-HCL, Tablet, 1.5 mg may be potentially mislabeled as LIOTHYRONINE SODIUM, Tablet, 25 mcg, NDC 42794001902, Pedigree: AD68010_11, EXP: 5/28/2014.\",\"Labeling:Label Mixup; METOPROLOL TARTRATE, Tablet, 25 mg may be potentially mislabeled as ASCORBIC ACID, Tablet, 250 mg, NDC 00904052260, Pedigree: W003826, EXP: 6/27/2014; amLODIPine BESYLATE, Tablet, 5 mg, NDC 00093716798, Pedigree: W002840, EXP: 6/7/2014. \",\"Labeling:Label Mixup; LACTOBACILLUS ACIDOPHILUS Capsule may be potentially mislabeled as CHOLECALCIFEROL, Tablet, 2000 units, NDC 00904615760, Pedigree: AD65311_1, EXP: 5/24/2014; PANCRELIPASE DR, Capsule, 24000 /76000 /120000 USP units, NDC 00032122401, Pedigree: AD65457_4, EXP: 5/24/2014. \",\"Labeling:Label Mixup; GLIMEPIRIDE, Tablet, 1 mg may be potentially mislabeled as clomiPRAMINE HCl, Capsule, 50 mg, NDC 51672401205, Pedigree: AD73525_4, EXP: 5/30/2014.\",\"Labeling: Label Mixup; MESALAMINE CR, Capsule, 250 mg may be potentially mislabeled as ASPIRIN EC, Tablet, 325 mg, NDC 00904201360, Pedigree: AD52378_1, EXP: 5/17/2014.\",\"Labeling:Label Mixup; PHENobarbital/ HYOSCYAMINE/ ATROPINE/ SCOPOLAMINE, Tablet, 16.2 mg/0.1037 mg/0.0194 mg/0.0065 mg may be potentially mislabeled as VALSARTAN, Tablet, 160 mg, NDC 00078035934, Pedigree: W003639, EXP: 6/25/2014.\",\"Labeling:Label Mixup; ISOSORBIDE MONONITRATE Tablet, 20 mg may be potentially mislabeled as COLCHICINE, Tablet, 0.6 mg, NDC 64764011907, Pedigree: AD52778_22, EXP: 5/20/2014; LOSARTAN POTASSIUM, Tablet, 25 mg, NDC 16714058102, Pedigree: AD67989_7, EXP: 5/28/2014; SODIUM CHLORIDE, Tablet, 1 mg, NDC 00223176001, Pedigree: W002611, EXP: 6/4/2014. \",\"Labeling: Label Mixup: glyBURIDE, Tablet, 2.5 mg may have potentially been mislabeled as one of the following drugs: sulfaSALAzine, Tablet, 500 mg, NDC 59762500001, Pedigree: AD46265_13, EXP: 5/15/2014; ENTECAVIR, Tablet, 0.5 mg, NDC 00003161112, Pedigree: W003687, EXP: 6/26/2014; RALTEGRAVIR, Tablet, 400 mg, NDC 00006022761, Pedigree: AD21790_22, EXP: 5/1/2014; carBAMazepine ER, Tablet, 100 m\",\"Labeling: Label Mixup: MIDODRINE HCL, Tablet, 2.5 mg may have potentially been mislabeled as the following drug: PIOGLITAZONE HCL, Tablet, 15 mg, NDC 00093204856, Pedigree: W003264, EXP: 6/17/2014.\\t\",\"Labeling: Label Mixup: MYCOPHENOLATE MOFETIL, Capsule, 250 mg may have potentially been mislabeled as the following drug: PRAMIPEXOLE DI-HCL, Tablet, 0.25 mg, NDC 16714058501, Pedigree: W003761, EXP: 6/26/2014. \",\"Failed Tablet/Capsule Specifications; Product contains broken tablets.\",\"Marketed Without An Approved NDA/ANDA: All lots of Volcano Liquid and Volcano Capsules, marketed as dietary supplements, are being recalled because they were found to contain undeclared active pharmaceutical ingredients, making them unapproved new drugs.\",\"NaN\",\"NaN\",\"Marketed Without An Approved NDA/ANDA: FDA analysis of this product found it to contain undeclared steroids and steroid-like substances making this an unapproved new drug.\",\"NaN\",\"Labeling:Label Mixup; DOCUSATE SODIUM, Capsule, 50 mg may be potentially mislabeled as LEVOTHYROXINE SODIUM, Tablet, 112 mcg, NDC 00378181101, Pedigree: AD60211_1, EXP: 5/21/2014; MEXILETINE HCL, Capsule, 150 mg, NDC 00093873901, Pedigree: AD62865_7, EXP: 5/23/2014; CHOLECALCIFEROL, Tablet, 5000 units, NDC 00761017840, Pedigree: AD65457_10, EXP: 5/24/2014. \",\"Marketed without an Approved NDA/ANDA: Laboratory analysis conducted by the FDA has determined that J.R. Jack Rabbit Male Enhancement product was found to contain two undeclared active pharmaceutical ingredients: sildenafil and tadalafil.\",\"Presence of Particulate Matter: Product from lot KF2199, may contain tablets with pieces of nitrile rubber glove embedded within the tablets.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup: DOXAZOSIN MESYLATE, Tablet, 1 mg may have potentially been mislabeled as the following drug: PYRIDOXINE HCL, Tablet, 100 mg, NDC 00536440901, Pedigree: W003872, EXP: 6/27/2014. \",\"NaN\",\"Labeling: Label Mixup: SOTALOL HCL, Tablet, 80 mg may have potentially been mislabeled as one of the following drugs: DILTIAZEM HCL, Tablet, 120 mg, NDC 00093032101, Pedigree: AD30197_1, EXP: 5/9/2014; PROPRANOLOL HCL ER, Capsule, 60 mg, NDC 00228277811, Pedigree: AD54605_4, EXP: 5/20/2014. \",\"Labeling: Label Mixup: CYANOCOBALAMIN, Tablet, 1000 mcg may have potentially been mislabeled as one of the following drugs: VITAMIN B COMPLEX PROLONGED RELEASE, Tablet, 50 mg, NDC 40985022251, Pedigree: AD30180_19, EXP: 5/9/2014; COENZYME Q-10, Capsule, 100 mg, NDC 37205055065, Pedigree: AD37056_4, EXP: 5/10/2014. VITAMIN B COMPLEX PROLONGED RELEASE, Tablet, 0, NDC 40985022251, Pedigree: AD7362\",\"Labeling: Label Mixup: chlorproMAZINE HCl, Tablet, 50 mg may have potentially been mislabeled as the following drug: ACAMPROSATE CALCIUM DR, Tablet, 333 mg, NDC 00456333001, Pedigree: AD32973_1, EXP: 5/9/2014. \",\"Labeling: Label Mixup: THYROID, Tablet, 60 mg may have potentially been mislabeled as the following drug: THYROID, Tablet, 30 mg, NDC 00456045801, Pedigree: W002847, EXP: 6/7/2014.\",\"Labeling: Label Mixup:predniSONE, Tablet, 20 mg may have potentially been mislabeled as the following drug: methylPREDNISolone, Tablet, 4 mg, NDC 00781502201, Pedigree: AD54587_7, EXP: 5/21/2014.\",\"Labeling: Label Mixup: MONTELUKAST SODIUM, CHEW Tablet, 4 mg may be potentially mislabeled as the following drug: DICYCLOMINE HCL, Tablet, 20 mg, NDC 00591079501, Pedigree: AD76639_4, EXP: 5/31/2014. \",\"Labeling: Label Mixup: MULTIVITAMIN/MULTIMINERAL W/IRON, CHEW Tablet, 0 mg may have potentially been mislabeled as the following drug: CHOLECALCIFEROL, Capsule, 2000 units, NDC 00536379001, Pedigree: W003017, EXP: 6/12/2014. \",\"Labeling: Label Mixup: PERPHENAZINE, Tablet, 16 mg may have potentially been mislabeled as one of the following drugs: MELATONIN, Tablet, 1 mg, NDC 47469000466, Pedigree: AD46257_19, EXP: 5/15/2014; LITHIUM CARBONATE ER, Tablet, 450 mg, NDC 00054002025, Pedigree: AD60272_25, EXP: 5/22/2014; MONTELUKAST SODIUM, CHEW Tablet, 4 mg, NDC 00006071131, Pedigree: AD76639_11, EXP: 5/31/2014. \",\"Labeling: Label Mixup; CHOLECALCIFEROL, Tablet, 2000 units may be potentially mislabeled as PYRIDOXINE HCL, Tablet, 50 mg, NDC 00904052060, Pedigree: AD46312_34, EXP: 5/16/2014; PRENATAL MULTIVITAMIN/MULTIMINERAL, Tablet, NDC 13811051410, Pedigree: AD65314_1, EXP: 5/24/2014; RANOLAZINE ER, Tablet, 500 mg, NDC 61958100301, Pedigree: W003538, EXP: 6/21/2014; LEVOTHYROXINE SODIUM, Tablet, 175 \",\"Labeling: Label Mixup; OMEGA-3 FATTY ACID, Capsule, 1000 mg may be potentially mislabeled as tiZANidine HCL, Tablet, 2 mg, NDC 57664050289, Pedigree: AD70700_10, EXP: 5/29/2014.\",\"Labeling:Label Mixup; METOPROLOL TARTRATE Tablet, 12.5 mg (1/2 of 25 mg) may be potentially mislabeled as DOCUSATE SODIUM, Capsule, 250 mg, NDC 00904789159, Pedigree: AD68022_1, EXP: 5/28/2014; METOPROLOL TARTRATE, Tablet, 12.5 mg (1/2 of 25 mg), NDC 57664050652, Pedigree: AD68010_14, EXP: 5/28/2014. \",\"Failed Tablet/Capsule Specifications; partial tablet erosion resulting in tablet weights below specification in some tablets\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup: VALSARTAN, Tablet, 160 mg may have potentially been mislabeled as one of the following drugs: PROGESTERONE, Capsule, 100 mg, NDC 00032170801, Pedigree: AD46320_1, EXP: 5/15/2014; CapsuleTOPRIL, Tablet, 6.25 mg (1/2 of 12.5 mg), NDC 00143117101, Pedigree: AD46312_4, EXP: 5/16/2014; MYCOPHENOLATE MOFETIL, Tablet, 500 mg, NDC 00004026001, Pedigree: AD49414_4, EXP: 5/17/2014;\",\"Labeling: Label Mixup: AMANTADINE HCL, Capsule, 100 mg may have potentially been mislabeled as one of the following drugs: ACARBOSE, Tablet, 25 mg, NDC 00054014025, Pedigree: W002725, EXP: 6/6/2014; clomiPRAMINE HCl, Capsule, 50 mg, NDC 51672401205, Pedigree: W002998, EXP: 6/11/2014; ASPIRIN EC DR, Tablet, 81 mg, NDC 49348098015, Pedigree: W003672, EXP: 2/28/2014; NIACIN TR, Capsule, 500 mg, N\",\"Labeling: Label Mixup:NICOTINE POLACRILEX, GUM, 2 mg may have potentially been mislabeled as one of the following drugs: FOLIC ACID, Tablet, 1 mg, NDC 65162036110, Pedigree: AD33897_22, EXP: 5/9/2014; QUEtiapine FUMARATE, Tablet, 25 mg, NDC 60505313001, Pedigree: W003099, EXP: 6/13/2014. \",\"Labeling: Label Mixup: CHLORTHALIDONE, Tablet, 50 mg may have potentially been mislabeled as the following drug: SENNOSIDES, Tablet, 8.6 mg, NDC 00182109301, Pedigree: W002979, EXP: 6/11/2014.\",\"Labeling: Label Mixup: PANCRELIPASE DR, Capsule, 24000 /76000 /120000 USP units may be potentially mislabeled as one of the following drugs: SERTRALINE HCL, Tablet, 50 mg, NDC 16714061204, Pedigree: AD70585_7, EXP: 5/29/2014; THYROID, Tablet, 60 mg, NDC 00456045901, Pedigree: W002848, EXP: 6/7/2014; CHOLECALCIFEROL, Tablet, 2000 units, NDC 00904615760, Pedigree: W003744, EXP: 6/26/2014; amLOD\",\"Labeling: Label Mixup: guanFACINE HC, Tablet, 1 mg may have potentially been mislabeled as one of the following drugs: glyBURIDE, Tablet, 2.5 mg, NDC 00093834301, Pedigree: AD46265_22, EXP: 5/15/2014; FOSINOPRIL SODIUM, Tablet, 10 mg, NDC 60505251002, Pedigree: AD46414_19, EXP: 5/16/2014; chlorproMAZINE HCl, Tablet, 100 mg, NDC 00832030300, Pedigree: AD70629_4, EXP: 5/29/2014; guanFACINE HCl, \",\"Labeling: Label Mixup: SIMVASTATIN, Tablet, 5 mg may have potentially been mislabeled as the following drug: LOSARTAN POTASSIUM, Tablet, 25 mg, NDC 13668011390, Pedigree: AD65323_10, EXP: 5/29/2014. \",\"NaN\",\"Labeling: Label Mixup: PIOGLITAZONE HCL, Tablet, 15 mg may have potentially been mislabeled as one of the following drugs: DOXYCYCLINE MONOHYDRATE, Capsule, 100 mg, NDC 49884072703, Pedigree: AD52778_25, EXP: 5/20/2014; LOVASTATIN, Tablet, 20 mg, NDC 00185007201, Pedigree: W003263, EXP: 6/17/2014. \",\"Labeling: Label Mixup: ATOMOXETINE HCL, Capsule, 40 mg may be potentially mis-labeled as OLANZAPINE, Tablet, 7.5 mg, NDC 60505311203, Pedigree: AD21790_76, EXP: 5/1/2014; ARIPiprazole, Tablet, 2 mg, NDC 59148000613, Pedigree: AD46265_19, EXP: 5/15/2014; OLANZapine, Tablet, 7.5 mg, NDC 55111016530, Pedigree: AD60272_79, EXP: 5/22/2014; OLANZapine, Tablet, 7.5 mg, NDC 55111016530, Pedigree: AD73\",\"Labeling: Label Mixup; GALANTAMINE HBR ER, Capsule, 24 mg may be potentially mislabeled as ESCITALOPRAM, Tablet, 5 mg, NDC 00093585001, Pedigree: W003733, EXP: 6/26/2014.\",\"Labeling:Label Mixup; CALCITRIOL, Capsule, 0.5 mcg may be potentially mislabeled as NIACIN TR, Tablet, 250 mg, NDC 10939043533, Pedigree: W003756, EXP: 5/31/2014; ISONIAZID, Tablet, 300 mg, NDC 00555007102, Pedigree: AD32757_28, EXP: 5/13/2014. \",\"Labeling:Label Mixup; MODAFINIL Tablet, 50 mg (1/2 of 100 mg Tablet) may be potentially mislabeled as SACCHAROMYCES BOULARDII LYO, Capsule, 250 mg, NDC 00414200007, Pedigree: AD21859_1, EXP: 10/31/2013.\",\"Labeling: Label Mixup; METHYLERGONOVINE MALEATE Tablet, 0.2 mg may be potentially mislabeled as ISOSORBIDE MONONITRATE, Tablet, 20 mg, NDC 62175010701, Pedigree: AD52778_31, EXP: 5/20/2014; LEVOTHYROXINE SODIUM, Tablet, 88 mcg, NDC 00378180701, Pedigree: W003476, EXP: 6/20/2014. \",\"NaN\",\"Labeling: Label Mixup; LEVOTHYROXINE/ LIOTHYRONINE Tablet, 19 mcg/4.5 mcg may be potentially mislabeled as MAGNESIUM GLUCONATE DIHYDRATE, Tablet, 500 mg (27 mg Elemental Magnesium), NDC 60258017201, Pedigree: AD30197_16, EXP: 5/9/2014.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup; diphenhydrAMINE HCl, Tablet, 25 mg may be potentially mislabeled as ATORVASTATIN CALCIUM, Tablet, 40 mg, NDC 00378212177, Pedigree: AD33897_10, EXP: 5/9/2014; ATORVASTATIN CALCIUM, Tablet, 10 mg, NDC 00378201577, Pedigree: W002774, EXP: 6/6/2014; PRENATAL MULTIVITAMIN/ MULTIMINERAL, Tablet, NDC 51991056601, Pedigree: W003511, EXP: 6/21/2014; VENLAFAXINE, Tablet, 25 mg\",\"Labeling: Label Mixup; NEOMYCIN SULFATE, Tablet, 500 mg may be potentially mislabeled as IMIPRAMINE HCL, Tablet, 25 mg, NDC 00781176401, Pedigree: AD49448_10, EXP: 5/17/2014.\",\"Labeling: Label Mixup; SODIUM BICARBONATE Tablet, 650 mg may be potentially mislabeled as NICOTINE POLACRILEX, Lozenge, 2 mg, NDC 00135051001, Pedigree: W002974, EXP: 6/11/2014.\",\"Labeling: Label Mixup; PRAMIPEXOLE DI-HCL, Tablet, 0.25 mg may be potentially mislabeled as TACROLIMUS, Capsule, 1 mg, NDC 00781210301, Pedigree: W003704, EXP: 6/26/2014.\",\"Labeling: Label Mixup; LACTOBACILLUS ACIDOPHILUS, Capsule, 500 Million CFU may be potentially mislabeled as DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375710, Pedigree: W002694, EXP: 6/5/2014\",\"NaN\",\"Labeling: Label Mixup; GALANTAMINE HBr ER, Capsule, 8 mg may be potentially mislabeled as FAMOTIDINE, Tablet, 20 mg, NDC 16714036104, Pedigree: W003508, EXP: 6/21/2014.\",\"NaN\",\"NaN\",\"NaN\",\"Failed Content Uniformity Specifications; at the 18 month time point. \",\"Failed impurities/degradation specifications; out of specification for the known impurity 4-chlorobenzophenone. \",\"Failed Tablet/Capsule Specifications: There is a potential for broken tablets.\",\"Failed Dissolution Specification:12 hour time point at 18 months of product shelf life.\",\"NaN\",\"NaN\",\"Failed Moisture Limit; Out of Specification (OOS) results were obtained for moisture content during stability testing at the 12 month time point, controlled room temperature conditions.\",\"Marketed Without An Approved NDA/ANDA: Products were found to contain undeclared sibutramine, the active ingredient in a previously approved FDA product indicated for weight loss but removed from the market for safety reasons, making these products unapproved new drugs.\",\"Marketed Without An Approved NDA/ANDA: New York State Department of Health analysis of this product found it to contain undeclared steroid-like substances making it an unapproved new drug.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling:Label Mixup; METOPROLOL TARTRATE, Tablet, 12.5 mg (1/2 of 25 mg) may be potentially mislabeled as PIOGLITAZONE, Tablet, 15 mg, NDC 00591320530, Pedigree: AD22845_1, EXP: 4/30/2014; LEVOTHYROXINE SODIUM, Tablet, 12.5 mcg (1/2 of 25 mcg), NDC 00527134101, Pedigree: AD73525_49, EXP: 5/30/2014. \",\"Labeling: Label Mixup; CHOLECALCIFEROL, Capsule, 5000 units may be potentially mislabeled as SEVELAMER CARBONATE, Tablet, 800 mg, NDC 58468013001, Pedigree: AD70629_16, EXP: 5/29/2014; CHOLECALCIFEROL, Tablet, 400 units, NDC 00904582360, Pedigree: W003540, EXP: 6/21/2014; THIAMINE HCL, Tablet, 100 mg, NDC 00904054460, Pedigree: AD52993_16, EXP: 5/20/2014. \",\"Labeling:Label Mixup; FLUCONAZOLE, Tablet, 50 mg may be potentially mislabeled as FLUCONAZOLE, Tablet, 200 mg, NDC 00172541360, Pedigree: W003065, EXP: 6/12/2014. \",\"Labeling:Label Mixup; COLESTIPOL HCL MICRONIZED Tablet, 1 g may be potentially mislabeled as rifAXIMin, Tablet, 200 mg, NDC 65649030103, Pedigree: AD54587_10, EXP: 4/30/2014.\",\"Labeling: Label Mixup; VITAMIN B COMPLEX PROLONGED RELEASE Tablet may be potentially mislabeled as guaiFENesin ER, Tablet, 600 mg, NDC 63824000815, Pedigree: AD73627_23, EXP: 5/30/2014; TOLTERODINE TARTRATE ER, Capsule, 4 mg, NDC 00009519101, Pedigree: AD73686_1, EXP: 5/31/2014. \",\"Labeling: Label Mixup; PRENATAL MULTIVITAMIN/ MULTIMINERAL, Tablet may be potentially mislabeled as COLCHICINE, Tablet, 0.6 mg, NDC 64764011907, Pedigree: AD65457_1, EXP: 5/23/2014; GALANTAMINE HBr ER, Capsule, 8 mg, NDC 10147089103, Pedigree: W003509, EXP: 6/21/2014; BROMOCRIPTINE MESYLATE, Tablet, 2.5 mg, NDC 00781532531, Pedigree: AD32579_7, EXP: 5/9/2014; CINACALCET HCL, Tablet, 30 mg, N\",\"NaN\",\"Labeling: Label Mixup; CHOLECALCIFEROL, Tablet, 400 units may be potentially mislabeled as CYANOCOBALAMIN, Tablet, 500 mcg, NDC 00536355101, Pedigree: AD37056_10, EXP: 5/10/2014; ROSUVASTATIN CALCIUM, Tablet, 5 mg, NDC 00310075590, Pedigree: W002567, EXP: 6/3/2014; PYRIDOXINE HCL, Tablet, 100 mg, NDC 00536440901, Pedigree: AD76686_4, EXP: 5/31/2014; CYANOCOBALAMIN, Tablet, 500 mcg, NDC 0053\",\"Labeling: Label Mixup; CALCIUM CITRATE, Tablet, 950 mg (200 MG ELEMENTAL Ca) may be potentially mislabeled as TRIMETHOBENZAMIDE HCL, Capsule, 300 mg, NDC 53489037601, Pedigree: AD21858_10, EXP: 5/1/2014.\",\"NaN\",\"Labeling: Label Mixup; NAPROXEN, Tablet, 500 mg may be potentially mislabeled as THIOTHIXENE, Capsule, 1 mg, NDC 00378100101, Pedigree: AD54549_22, EXP: 5/20/2014; HYDROCHLOROTHIAZIDE, Tablet, 12.5 mg, NDC 00228282011, Pedigree: AD67989_13, EXP: 5/28/2014. \",\"Labeling: Wrong Bar Code; Bar code scans as 0.15% Potassium Chloride in 0.9% Sodium Chloride (20 mEq K/liter).\",\"Labeling:Label Mixup; MIRTAZAPINE Tablet, 7.5 mg may be potentially mislabeled as BROMOCRIPTINE MESYLATE, Tablet, 2.5 mg, NDC 00574010603, Pedigree: AD73525_40, EXP: 5/30/2014; DULoxetine HCl DR, Capsule, 20 mg, NDC 00002323560, Pedigree: W003005, EXP: 6/11/2014; carBAMazepine ER, Tablet, 100 mg, NDC 00078051005, Pedigree: W003330, EXP: 6/18/2014. \",\"Labeling:Label Mixup; GLUCOSAMINE/CHONDROITIN Capsule, 500 mg/400 mg may be potentially mislabeled as FEXOFENADINE HCL, Tablet, 60 mg, NDC 45802042578, Pedigree: AD60240_30, EXP: 5/22/2014.\",\"Labeling:Label Mixup; QUINAPRIL HCL, Tablet, 20 mg may be potentially mislabeled as MULTIVITAMIN/MULTIMINERAL, Tablet, NDC 65162066850, Pedigree: W003553, EXP: 6/24/2014.\",\"Labeling:Label Mixup; tiZANidine HCl Tablet, 2 mg may be potentially mislabeled as RIBAVIRIN, Capsule, 200 mg, NDC 68382026007, Pedigree: AD21790_37, EXP: 4/30/2014; CYANOCOBALAMIN, Tablet, 1000 mcg, NDC 00904421713, Pedigree: AD46257_59, EXP: 5/15/2014; NIACIN, Tablet, 100 mg, NDC 00904227160, Pedigree: W002661, EXP: 6/5/2014; PANTOPRAZOLE SODIUM DR, Tablet, 20 mg, NDC 00008060601, Pedigree\",\"Labeling: Label Mixup; BISACODYL EC, Tablet, 5 mg may be potentially mislabeled as CHOLECALCIFEROL, Tablet, 400 units, NDC 00904582360, Pedigree: AD37056_13, EXP: 5/10/2014.\",\"Labeling: Label Mixup; NITROFURANTOIN MONOHYDRATE/ MACROCRYSTALS, Capsule, 100 mg may be potentially mislabeled as MINOCYCLINE HCL, Capsule, 50 mg, NDC 00591569401, Pedigree: AD52778_46, EXP: 5/20/2014.\",\"Labeling:Label Mixup; OLANZapine, Tablet, 7.5 mg may be potentially mislabeled as LEVOTHYROXINE SODIUM, Tablet, 175 mcg, NDC 00527135001, Pedigree: AD46265_37, EXP: 5/15/2014; LEVOTHYROXINE SODIUM, Tablet, 88 mcg, NDC 00781518392, Pedigree: AD60272_73, EXP: 5/22/2014; MIRTAZAPINE, Tablet, 7.5 mg, NDC 59762141503, Pedigree: AD73525_55, EXP: 5/30/2014. \",\"Labeling:Label Mixup; FOSINOPRIL SODIUM Tablet, 10 mg may be potentially mislabeled as CALCITRIOL, Capsule, 0.25 mcg, NDC 00054000725, Pedigree: AD46414_10, EXP: 5/16/2014.\",\"Labeling:Label Mixup; ESTERIFIED ESTROGENS, Tablet, 0.625 mg may be potentially mislabeled as ETODOLAC, Tablet, 400 mg, NDC 51672401801, Pedigree: W003734, EXP: 6/26/2014.\",\"Labeling: Label Mixup; LIOTHYRONINE SODIUM Tablet, 5 mcg may be potentially mislabeled as HYDROCHLOROTHIAZIDE, Tablet, 12.5 mg, NDC 16729018201, Pedigree: AD46414_25, EXP: 5/16/2014.\",\"Labeling:Label Mixup; FLUCONAZOLE, Tablet, 100 mg may be potentially mislabeled as PRENATAL MULTIVITAMIN/ MULTIMINERAL, Tablet, NDC 51991056601, Pedigree: W003086, EXP: 6/12/2014.\",\"Labeling: Label Mixup; PHYTONADIONE Tablet, 5 mg may be potentially mislabeled as medroxyPROGESTERone ACETATE, Tablet, 10 mg, NDC 59762374202, Pedigree: AD46312_19, EXP: 5/16/2014; HYDROCORTISONE, Tablet, 5 mg, NDC 00603389919, Pedigree: W003060, EXP: 6/12/2014; GALANTAMINE HBR ER, Capsule, 24 mg, NDC 47335083783, Pedigree: W003735, EXP: 5/31/2014; TORSEMIDE, Tablet, 10 mg, NDC 31722053001, \",\"NaN\",\"Labeling: Label Mixup; DILTIAZEM HCL ER Capsule, 240 mg may be potentially mislabeled as NICOTINE POLACRILEX, Lozenge, 2 mg, NDC 37205098769, Pedigree: AD52433_4, EXP: 5/17/2014; PARoxetine HCl, Tablet, 10 mg, NDC 13107015430, Pedigree: AD52778_67, EXP: 5/20/2014. \",\"Labeling: Label Mixup; COLCHICINE Tablet, 0.6 mg may be potentially mislabeled as CHOLECALCIFEROL, Tablet, 2000 units, NDC 00904615760, Pedigree: AD46312_37, EXP: 5/16/2014; PSEUDOEPHEDRINE HCL, Tablet, 30 mg, NDC 00904505360, Pedigree: AD52993_37, EXP: 5/20/2014; SENNOSIDES, Tablet, 8.6 mg, NDC 00182109301, Pedigree: AD62992_14, EXP: 5/23/2014; CHOLECALCIFEROL, Tablet, 1000 units, NDC 00904\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup: SENNOSIDES, Tablet, 8.6 mg may have potentially been mislabeled as one of the following drugs: FEXOFENADINE HCL, Tablet, 180 mg, NDC 41167412003, Pedigree: AD62834_1, EXP: 5/23/2014; TRIMETHOBENZAMIDE HCL, Capsule, 300 mg, NDC 53489037601, Pedigree: W002976, EXP: 6/11/2014; LORATADINE, Tablet, 10 mg, NDC 45802065078, Pedigree: W003253, EXP: 6/17/2014. \",\"Labeling: Label Mixup: VITAMIN B COMPLEX, Capsule, 0 mg may have potentially been mislabeled as the following drug: ACARBOSE, Tablet, 25 mg, NDC 23155014701, Pedigree: AD32757_1, EXP: 5/13/2014. \",\"Labeling: Label Mixup: PROPRANOLOL HCL, Tablet, 10 mg may have potentially been mislabeled as one of the following drugs: LORazepam, Tablet, 0.25 mg (1/2 of 0.5 mg), NDC 00591024001, Pedigree: AD60243_1, EXP: 5/22/2014; PROPRANOLOL HCL, Tablet, 10 mg, NDC 23155011001, Pedigree: W003068, EXP: 6/12/2014. \",\"Labeling: Label Mixup: OMEGA-3-ACID ETHYL ESTERS, Capsule, 1000 mg may have potentially been mislabeled as one of the following drugs: SEVELAMER CARBONATE, Tablet, 800 mg, NDC 58468013001, Pedigree: AD39858_4, EXP: 5/15/2014; hydrOXYzine PAMOATE, Capsule, 100 mg, NDC 00555032402, Pedigree: W002735, EXP: 6/6/2014; PROPRANOLOL HCL, Tablet, 10 mg, NDC 23155011001, Pedigree: W003229, EXP: 6/17/2014\",\"NaN\",\"NaN\",\"Labeling: Label Mixup: GLYCOPYRROLATE, Tablet, 2 mg may have potentially been mislabeled as one of the following drugs: PARICALCITOL, Capsule, 1 mcg, NDC 00074431730, Pedigree: W002667, EXP: 6/5/2014; guaiFENesin ER, Tablet, 600 mg, NDC 63824000850, Pedigree: W003244, EXP: 6/17/2014; LACTOBACILLUS, Tablet, 0, NDC 64980012950, Pedigree: AD22865_1, EXP: 5/2/2014. \",\"Labeling: Label Mixup: DILTIAZEM HCL, Tablet, 120 mg, may have potentially been mislabeled as the following drug: NICOTINE POLACRILEX, LOZENGE, 2 mg, NDC 00135051001, Pedigree: AD329737, EXP: 5/9/2014. \",\"Labeling: Label Mixup: TRIAMTERENE/ HYDROCHLOROTHIAZIDE, Tablet, 37.5 mg/25 mg may have potentially been mislabeled as the following drug: SEVELAMER HCL, Tablet\\t800 mg, NDC 58468002101, Pedigree: W002858, EXP: 6/7/2014.\",\"Presence of Particulate Matter: Failed the appearance test for the presence of visible particles.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup: NEFAZODONE HCL, Tablet, 200 mg may have potentially been mislabeled as the following drug: NEFAZODONE HCL, Tablet, 150 mg, NDC 00093711306, Pedigree: AD46414_41, EXP: 5/16/2014.\",\"Labeling: Label Mixup: BROMOCRIPTINE MESYLATE, Tablet, 2.5 mg may have potentially been mislabeled as the following drug: CAFFEINE, Tablet, 200 mg, NDC 24385060173, Pedigree: W003725, EXP: 6/26/2014. \",\"Labeling: Label Mixup: MYCOPHENOLATE MOFETIL, Tablet, 500 mg may be potentially mis-labeled as the following drug: MYCOPHENOLATE MOFETIL, Capsule, 250 mg, NDC 00004025901, Pedigree: AD49414_1, EXP: 5/17/2014. \",\"Labeling: Label Mixup: EFAVIRENZ, Capsule, 200 mg may have potentially been mislabeled as the following drug: metFORMIN HCl, Tablet\\t500 mg, NDC 23155010201, Pedigree: AD46312_25, EXP: 5/16/2014. \",\"Labeling: Label Mixup: CALCIUM ACETATE, Capsule, 667 mg may be potentially mislabeled as one of the following drugs: ZOLPIDEM TARTRATE, Tablet, 2.5 mg (1/2 of 5 mg), NDC 64679071401, Pedigree: AD28355_1, EXP: 5/8/2014; acetaZOLAMIDE, Tablet, 250 mg, NDC 51672402301, Pedigree: AD62865_1, EXP: 5/23/2014; ZINC GLUCONATE, Tablet, 50 mg, NDC 00904319160, Pedigree: W003028, EXP: 6/12/2014; PROPRANO\",\"Labeling: Label Mixup: NORTRIPTYLINE HCL, Capsule, 75 mg may have potentially been mislabeled as one of the following drugs: guaiFENesin ER, Tablet, 600 mg, NDC 45802049878, Pedigree: AD21790_58, EXP: 5/1/2014; MIRTAZAPINE, Tablet, 7.5 mg, NDC 59762141509, Pedigree: W003693, EXP: 4/30/2014. \",\"Labeling: Label Mixup: NABUMETONE, Tablet, 500 mg may have potentially been mislabeled as the following drug: guaiFENesin ER, Tablet, 600 mg, NDC 63824000834, Pedigree: AD46429_1, EXP: 5/15/2014.\",\"NaN\",\"Labeling: Label Mixup: DUTASTERIDE, Capsule, 0.5 mg may have potentially been mislabeled as one of the following drugs: PHENOL, LOZENGE, 29 mg, NDC 00068021918, Pedigree: AD49582_13, EXP: 5/16/2014; REPAGLINIDE, Tablet, 2 mg, NDC 00169008481, Pedigree: AD70639_13, EXP: 5/29/2014; CHOLECALCIFEROL, Capsule, 5000 units, NDC 00904598660, Pedigree: AD52993_22, EXP: 5/20/2014. \",\"Labeling: Label Mixup: MULTIVITAMIN/MULTIMINERAL, CHEW Tablet, 0 mg may have potentially been mislabeled as one of the following drugs: MELATONIN, Tablet, 1 mg, NDC 74312002832, Pedigree: W003717, EXP: 6/26/2014; PYRIDOXINE HCL, Tablet, 50 mg, NDC 51645090901, Pedigree: AD46257_25, EXP: 5/15/2014; CHOLECALCIFEROL, Capsule, 2000 units, NDC 00536379001, Pedigree: AD73521_7, EXP: 5/30/2014. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 175 mcg may have potentially been mislabeled as the following drug: CINACALCET HCL, Tablet, 60 mg, NDC 55513007430, Pedigree: W003742, EXP: 6/26/2014. \",\"Labeling: Label Mixup: BISMUTH SUBSALICYLATE, CHEW Tablet, 262 mg may have potentially been mislabeled as the following drug: IRBESARTAN, Tablet, 150 mg, NDC 00093746556, Pedigree: AD42592_7, EXP: 5/14/2014. \",\"Labeling: Label Mixup: PANTOPRAZOLE SODIUM DR, Tablet, 20 mg may be potentially mislabeled as one of the following drugs: HYOSCYAMINE SULFATE SL, Tablet, 0.125 mg, NDC 00574025001, Pedigree: AD60272_16, EXP: 5/22/2014; MULTIVITAMIN/MULTIMINERAL, Tablet, 0 mg, NDC 65162066810, Pedigree: AD73646_13, EXP: 5/30/2014. \",\"Labeling: Label Mixup: PROPRANOLOL HCL ER, Capsule, 60 mg may have potentially been mislabeled as the following drug: CINACALCET HCL, Tablet, 30 mg, NDC 55513007330, Pedigree: AD52778_82, EXP: 5/21/2014.\",\"Labeling: Label Mixup: VALSARTAN, Tablet, 320 mg may have potentially been mislabeled as the following drug: CILOSTAZOL, Tablet, 100 mg, NDC 60505252201, Pedigree: AD65475_4, EXP: 5/28/2014. \",\"Presence of Particulate Matter: Particulate matter consistent with delamination of the glass vial container.\",\"Labeling: Label Mixup: ACETAMINOPHEN, CHEW Tablet, 80 mg may have potentially been mislabeled as one of the following drugs: BENAZEPRIL HCL, Tablet, 40 mg, NDC 65162075410, Pedigree: AD49423_1, EXP: 5/16/2014; ASCORBIC ACID, Tablet, 250 mg, NDC 00904052260, Pedigree: W003101, EXP: 6/13/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 40985022921, Pedigree: AD30028_1, EXP: 5/8/2014; TACROLIMUS, \",\"Labeling: Label Mixup: PANCRELIPASE DR, Capsule, 12000 /38000 /60000 USP units may be potentially mislabeled as one of the following drugs: ASCORBIC ACID, Tablet, 250 mg, NDC 00904052260, Pedigree: W003726, EXP: 6/26/2014; LANTHANUM CARBONATE, CHEW Tablet, 500 mg, NDC 54092025290, Pedigree: W002790, EXP: 6/6/2014; CITALOPRAM, Tablet, 10 mg, NDC 57664050788, Pedigree: W002844, EXP: 6/7/2014; AT\",\"Labeling: Label Mixup: PERPHENAZINE, Tablet, 16 mg may have potentially been mislabeled as one of the following drugs: LITHIUM CARBONATE ER, Tablet, 450 mg, NDC 00054002025, Pedigree: AD21790_28, EXP: 5/1/2014; LITHIUM CARBONATE ER, Tablet, 450 mg, NDC 00054002025, Pedigree: W002730, EXP: 6/6/2014; RALTEGRAVIR, Tablet, 400 mg, NDC 00006022761, Pedigree: W003680, EXP: 6/25/2014; VENLAFAXINE HCL\",\"NaN\",\"NaN\",\"NaN\",\"Non-Sterility: Customer complaints of mold in the product after use and handling due to the fact that the preservative used in the lots of Carboxymethylcellulose Sodium 0.5% Ophthalmic Solution may not be effective through expiry. \",\"NaN\",\"Superpotent Drug: a recent review of the USP revealed that an incorrect calculation was used to determine the amount of irinotecan to use in formulation which will result in an assay higher than the labeled claim.\",\"NaN\",\"Labeling: Incorrect or Missing Lot and/or Exp Date: This recall is being carried out due to an incorrect expiration date assigned to a lot of physicians samples.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup; FAMOTIDINE Tablet, 20 mg may be potentially mislabeled as CARVEDILOL PHOSPHATE ER, Capsule, 20 mg, NDC 00007337113, Pedigree: W003225, EXP: 6/17/2014; DULoxetine HCl DR, Capsule, 20 mg, NDC 00002323560, Pedigree: W003506, EXP: 6/21/2014; FAMOTIDINE, Tablet, 20 mg, NDC 16714036104, Pedigree: W003507, EXP: 6/21/2014; MYCOPHENOLATE MOFETIL, Capsule, 250 mg, NDC 0037822500\",\"Labeling: Label Mixup; MELATONIN, Tablet, 1 mg may be potentially mislabeled as hydrOXYzine PAMOATE, Capsule, 100 mg, NDC 00555032402, Pedigree: AD46265_28, EXP: 5/15/2014; GLUCOSAMINE/CHONDROITIN DS, Tablet, 500 mg/400 mg, NDC 00904559293, Pedigree: AD60211_17, EXP: 5/22/2014. \",\"Labeling: Label Mixup; NICOTINE POLACRILEX Lozenge, 2 mg may be potentially mislabeled as VITAMIN B COMPLEX WITH C/FOLIC ACID, Tablet, NDC 60258016001, Pedigree: W003361, EXP: 6/19/2014.\",\"Labeling: Label Mixup; PARoxetine HCl, Tablet, 10 mg may be potentially mislabeled as PANTOPRAZOLE SODIUM DR, Tablet, 20 mg, NDC 62175018046, Pedigree: AD52778_64, EXP: 5/20/2014.\",\"Labeling:Label Mixup; FOSINOPRIL SODIUM, Tablet, 20 mg may be potentially mislabeled as TOLTERODINE TARTRATE ER, Capsule, 2 mg, NDC 00009519001, Pedigree: AD65478_1, EXP: 5/29/2014.\",\"Labeling:Label Mixup; QUEtiapine FUMARATE Tablet, 100 mg may be potentially mislabeled as DOCUSATE CALCIUM, Capsule, 240 mg, NDC 00536375501, Pedigree: W002776, EXP: 6/6/2014; NICOTINE POLACRILEX, Lozenge, 2 mg, NDC 37205098769, Pedigree: W003823, EXP: 6/27/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375710, Pedigree: AD60578_5, EXP: 5/29/2014. \",\"NaN\",\"Labeling:Label Mixup; PANTOPRAZOLE SODIUM DR Tablet, 40 mg may be potentially mislabeled as SENNOSIDES, Tablet, 8.6 mg, NDC 60258095001, Pedigree: AD37063_17, EXP: 5/13/2014.\",\"Labeling: Label Mixup; OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/1110 mg may be potentially mislabeled as LACTOBACILLUS GG, Capsule, NDC 49100036374, Pedigree: AD70655_8, EXP: 5/29/2014; PYRIDOXINE HCL, Tablet, 100 mg, NDC 00536440901, Pedigree: AD73627_32, EXP: 5/30/2014. \",\"NaN\",\"Labeling:Label Mixup; SELEGILINE HCL, Capsule, 5 mg may be potentially mislabeled as ITRACONAZOLE, Capsule, 100 mg, NDC 10147170003, Pedigree: AD54549_10, EXP: 5/20/2014.\",\"Labeling: Label Mixup; CHOLECALCIFEROL/CALCIUM/PHOSPHORUS Tablet, 120 units/105 mg/81 mg may be potentially mislabeled as PROMETHAZINE HCL, Tablet, 25 mg, NDC 65162052110, Pedigree: W002578, EXP: 6/3/2014; VALSARTAN, Tablet, 40 mg, NDC 00078042315, Pedigree: AD32579_1, EXP: 5/9/2014. \",\"Labeling: Label Mixup; DOXEPIN HCL Capsule, 150 mg may be potentially mislabeled as VALSARTAN, Tablet, 160 mg, NDC 00078035934, Pedigree: AD46312_7, EXP: 5/16/2014.\",\"Labeling: Label Mixup; PROPRANOLOL HCL Tablet, 80 mg may be potentially mislabeled as LACTOBACILLUS GG, Capsule, NDC 49100036374, Pedigree: AD42584_12, EXP: 5/14/2014.\",\"Labeling: Label Mixup; FERROUS SULFATE, Tablet, 325 mg (65 mg Elemental Iron) may be potentially mislabeled as RAMIPRIL, Capsule, 2.5 mg, NDC 68180058901, Pedigree: AD54549_16, EXP: 5/20/2014.\",\"NaN\",\"Labeling: Label Mixup: TOLTERODINE TARTRATE ER, Capsule, 4 mg may be potentially mislabeled as one of the following drugs: HYDRALAZINE HCL, Tablet, 25 mg, NDC 50111032701, Pedigree: AD49610_4, EXP: 5/16/2014; PRENATAL MULTIVITAMIN/ MULTIMINERAL, Tablet, 0 mg, NDC 51991056601, Pedigree: AD73597_1, EXP: 5/31/2014. \",\"Labeling: Label Mixup: METOPROLOL TARTRATE, Tablet, 50 mg may have potentially been mislabeled as one of the following drugs: METOPROLOL TARTRATE, Tablet, 25 mg, NDC 57664050652, Pedigree: W003843, EXP: 6/27/2014; ATORVASTATIN CALCIUM, Tablet, 20 mg, NDC 60505257909, Pedigree: W003846, EXP: 6/27/2014; OXYBUTYNIN CHLORIDE, Tablet, 5 mg, NDC 00603497521, Pedigree: W003898, EXP: 6/27/2014. \",\"Labeling: Label Mixup: NIACIN TR, Capsule, 250 mg may have potentially been mislabeled as the following drug: METHYLERGONOVINE MALEATE, Tablet, 0.2 mg, NDC 43386014028, Pedigree: W003477, EXP: 6/20/2014. \",\"Labeling:Label Mixup; ARIPiprazole, Tablet, 15 mg may be potentially mislabeled as ATOMOXETINE HCL, Capsule, 40 mg, NDC 00002322930, Pedigree: AD21790_82, EXP: 5/1/2014; PRAMIPEXOLE DI-HCL, Tablet, 0.125 mg, NDC 13668009190, Pedigree: AD25264_10, EXP: 5/3/2014. \",\"NaN\",\"Labeling: Label Mixup; FEXOFENADINE HCL Tablet, 180 mg may be potentially mislabeled as MULTIVITAMIN/MULTIMINERAL, Tablet, NDC 00536406001, Pedigree: AD62992_8, EXP: 5/23/2014.\",\"Labeling: Label Mixup; hydrALAZINE HCl Tablet, 50 mg may be potentially mislabeled as CapsuleTOPRIL, Tablet, 12.5 mg, NDC 00143117101, Pedigree: AD52778_16, EXP: 5/20/2014.\",\"Labeling:Label Mixup; guaiFENesin ER Tablet, 600 mg may be potentially mislabeled as OMEGA-3-ACID ETHYL ESTERS, Capsule, 1000 mg, NDC 00173078302, Pedigree: W003243, EXP: 6/17/2014.\",\"Labeling: Label Mixup; PROPRANOLOL HCL Tablet, 10 mg may be potentially mislabeled as LACTOBACILLUS ACIDOPHILUS, Capsule, NDC 54629011101, Pedigree: AD65311_4, EXP: 5/24/2014.\",\"Labeling:Label Mixup; QUEtiapine FUMARATE, Tablet, 25 mg may be potentially mislabeled as chlordiazePOXIDE HCl, Capsule, 25 mg, NDC 00555015902, Pedigree: AD49426_1, EXP: 5/16/2014.\",\"Labeling: Label Mixup; NIACIN TR, Tablet, 500 mg may be potentially mislabeled as LACTOBACILLUS GG, Capsule, NDC 49100036374, Pedigree: W002968, EXP: 6/11/2014.\",\"Labeling: Label Mixup; VITAMIN B COMPLEX PROLONGED RELEASE, Tablet, 50 mg may be potentially mislabeled as COENZYME Q-10, Capsule, 100 mg, NDC 37205055065, Pedigree: AD30180_16, EXP: 5/9/2014; DOCUSATE SODIUM, Capsule, 50 mg, NDC 67618010060, Pedigree: AD60211_8, EXP: 5/21/2014; ASPIRIN EC, Tablet, 325 mg, NDC 00904201360, Pedigree: AD39588_1, EXP: 5/13/2014. \",\"Labeling: Label Mixup; DOXYCYCLINE MONOHYDRATE Capsule, 100 mg may be potentially mislabeled as diphenhydrAMINE HCl, Tablet, 25 mg, NDC 00904555159, Pedigree: AD67992_4, EXP: 5/28/2014; DUTASTERIDE, Capsule, 0.5 mg, NDC 00173071215, Pedigree: AD52778_4, EXP: 5/20/2014. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Marketed Without An Approved NDA/ANDA: FDA analysis found Rhino 5 which is marketed as a dietary supplement to contain undeclared desmethyl carbondenafil and dapoxetine. Desmethyl carbondenafil is a phosphodiesterase (PDE)-5 inhibitors which is a class of drugs used to treat male erectile dysfunction, making this product an unapproved new drug. Dapoxetine is an active ingredient not approved by \",\"Failed Impurities/Degradation Specifications: Out-of-Specification degradant results. \",\"Labeling: Incorrect or Missing Package Insert- Missing text on the product insert in the \\\"Clinical Studies\\\" and \\\"Specific Adverse Events\\\" sections.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lack of Assurance of Sterility: Confirmed customer report of leakage of vial contents due to the breaking of the vial neck. \",\"NaN\",\"Labeling: Label Mixup: CHOLECALCIFEROL, Tablet, 5000 units may have potentially been mislabeled as one of the following drugs: LACTOBACILLUS ACIDOPHILUS, Capsule, 0 mg, NDC 54629011101, Pedigree: AD65311_7, EXP: 5/24/2014; QUINAPRIL HCL, Tablet, 20 mg, NDC 68180055809, Pedigree: W003556, EXP: 6/24/2014; POTASSIUM ACID PHOSPHATE, Tablet, 500 mg, NDC 00486111101, Pedigree: AD52778_34, EXP: 5/20/2\",\"Labeling: Label Mixup: TRI-BUFFERED ASPIRIN, Tablet, 325 mg may have potentially been mislabeled as the following drug: ISOMETHEPTENE MUCATE/ DICHLORALPHENAZONE/APAP, Capsule, 65 mg/100 mg/325 mg, NDC 44183044001, Pedigree: W003596, EXP: 5/31/2014. \",\"NaN\",\"NaN\",\"NaN\",\"Subpotent. drug\",\"NaN\",\"Marketed Without An Approved NDA/ANDA: FDA analysis detected the presence of sibutramine, N-Desmethylsibutramine and phenolphthalein. Sibutramine and phenolphthalein were previously available drug products but were removed from the U.S. market making these products unapproved new drugs.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup: SIROLIMUS, Tablet, 1 mg may be potentially mislabeled as one of the following drugs: PROPRANOLOL HCL, Tablet, 10 mg, NDC 23155011001, Pedigree: AD60272_34, EXP: 5/22/2014; HYDROCORTISONE, Tablet, 5 mg, NDC 00603389919, Pedigree: W003325, EXP: 6/18/2014. \",\"Labeling: Label Mixup: LITHIUM CARBONATE ER, Tablet, 450 mg may be potentially mislabled as one of the following drugs: HYOSCYAMINE SULFATE SL, Tablet, 0.125 mg, NDC 00574025001, Pedigree: AD21790_19, EXP: 5/1/2014; LACTOBACILLUS ACIDOPHILUS, Capsule, 500 MILLION CFU, NDC 43292050022, Pedigree: AD46257_28, EXP: 5/15/2014; HYDROCORTISONE, Tablet, 5 mg, NDC 00603389919, Pedigree: W002729, EXP: 6\",\"Labeling: Label Mixup: NIACIN ER, Tablet, 500 mg may have potentially been mislabeled as one of the following drugs: CHOLECALCIFEROL, Capsule, 50000 units, NDC 53191036201, Pedigree: AD60268_4, EXP: 5/22/2014; METAXALONE, Tablet, 800 mg, NDC 64720032110, Pedigree: W003738, EXP: 6/26/2014; CRANBERRY EXTRACT/VITAMIN C, Capsule, 450 mg/125 mg, NDC 31604014271, Pedigree: W003716, EXP: 6/26/2014; C\",\"Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 88 mcg may have potentially been mislabeled as one of the following drugs: clomiPRAMINE HCl, Capsule, 50 mg, NDC 51672401205, Pedigree: AD46265_1, EXP: 5/15/2014; HYDROXYCHLOROQUINE SULFATE, Tablet, 200 mg, NDC 63304029601, Pedigree: AD70629_10, EXP: 5/29/2014; HYOSCYAMINE SULFATE SL, Tablet, 0.125 mg, NDC 76439030910, Pedigree: W003438, EXP:\",\"Labeling: Label Mixup: ATROPINE SULFATE/DIPHENOXYLATE HCL, Tablet, 0.025 mg/2.5 mg may have potentially been mislabeled as the following drug: CYANOCOBALAMIN, Tablet, 1000 mcg, NDC 00536355601, Pedigree: AD65475_25, EXP: 5/28/2014. TRI-BUFFERED ASPIRIN, Tablet, 325 mg, NDC 00904201559, Pedigree: W003581, EXP: 6/24/2014. \",\"Labeling: Label Mixup: methylPREDNISolone, Tablet, 4 mg may have potentially been mislabeled as the following drug: OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/110 mg, NDC 11523726503, Pedigree: AD42584_15, EXP: 5/14/2014. \",\"Labeling: Label Mixup: CALCIUM CARBONATE/CHOLECALCIFEROL, Tablet, 600 mg/800 units may be potentially mis-labeled as the following drug: REPAGLINIDE, Tablet, 1 mg, NDC 00169008281, Pedigree: AD52387_1, EXP: 5/17/2014. \",\"Labeling: Label Mixup: LOSARTAN POTASSIUM, Tablet, 50 mg may have potentially been mislabeled as the following drug: ATORVASTATIN CALCIUM, Tablet, 80 mg, NDC 60505267109, Pedigree: AD21965_4, EXP: 5/1/2014. \",\"Labeling: Label Mixup: NIACIN TR, Tablet, 750 mg may have potentially been mislabeled as the following drug: NORTRIPTYLINE HCL, Capsule, 50 mg, NDC 00093081201, Pedigree: AD46414_47, EXP: 5/16/2014. \",\"Labeling: Label Mixup: ALBUTEROL SULFATE ER, Tablet, 4 mg may have potentially been mislabeled as one of the following drugs: SIMVASTATIN, Tablet, 20 mg, NDC 16714068303, Pedigree: W003580, EXP: 6/24/2014.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup; FINASTERIDE, Tablet, 5 mg may be potentially mislabeled as DIGOXIN, Tablet, 0.125 mg, NDC 00115981101, Pedigree: AD62829_8, EXP: 5/23/2014; PHYTONADIONE, Tablet, 5 mg, NDC 25010040515, Pedigree: W003061, EXP: 5/31/2014. \",\"Labeling: Label Mixup; HYDROCHLOROTHIAZIDE Tablet, 12.5 mg may be potentially mislabeled as chlordiazePOXIDE HCl, Capsule, 25 mg, NDC 00555015902, Pedigree: AD46333_4, EXP: 5/16/2014.\",\"Labeling: Label Mixup; PRENATAL MULTIVITAMIN/MULTIMINERAL, Tablet may be potentially mislabeled as CYANOCOBALAMIN, Tablet, 100 mcg, NDC 00536354201, Pedigree: AD62840_1, EXP: 5/24/2014.\",\"Labeling: Label Mixup; LOSARTAN POTASSIUM, Tablet, 25 mg may be potentially mislabeled as DISOPYRAMIDE PHOSPHATE, Capsule, 150 mg, NDC 00093312901, Pedigree: AD65323_4, EXP: 5/29/2014.\",\"NaN\",\"Labeling: Label Mixup; LISINOPRIL Tablet, 2.5 mg may be potentially mislabeled as RANOLAZINE ER, Tablet, 500 mg, NDC 61958100301, Pedigree: AD23087_1, EXP: 5/2/2014; DOCUSATE SODIUM, Capsule, 250 mg, NDC 00536375701, Pedigree: W003358, EXP: 6/19/2014. \",\"Labeling:Label Mixup; SENNOSIDES Tablet, 8.6 mg may be potentially mislabeled as SACCHAROMYCES BOULARDII LYO, Capsule, 250 mg, NDC 00414200007, Pedigree: AD37063_7, EXP: 5/13/2014.\",\"Labeling: Label Mixup; carBAMazepine ER Tablet, 200 mg may be potentially mislabeled as ACARBOSE, Tablet, 25 mg, NDC 00054014025, Pedigree: AD60272_1, EXP: 5/22/2014.\",\"Labeling: Label Mixup; COENZYME Q-10, Capsule, 30 mg may be potentially mislabeled as PANCRELIPASE DR, Capsule, 12000 /38000 /60000 USP units, NDC 00032121201, Pedigree: W002819, EXP: 6/7/2014.\",\"Labeling: Label Mixup: glyBURIDE, Tablet, 1.25 mg may have potentially been mislabeled as one of the following drugs: CYPROHEPTADINE HCL, Tablet, 4 mg, NDC 60258085001, Pedigree: W003676, EXP: 6/25/2014; AMANTADINE HCL, Capsule, 100 mg, NDC 00781204801, Pedigree: AD21790_1, EXP: 5/1/2014. \",\"Labeling: Label Mixup: LEVOTHYROXINE SODIUM, Tablet, 137 mcg may have potentially been mislabeled as the following drug: OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 40985022921, Pedigree: AD21846_1, EXP: 5/1/2014.\",\"Labeling: Label Mixup: DOCUSATE CALCIUM, Capsule, 240 mg may have potentially been mislabeled as one of the following drugs: diphenhydrAMINE HCl, Tablet, 25 mg, NDC 00904555159, Pedigree: AD33897_13, EXP: 5/9/2014; DUTASTERIDE, Capsule, 0.5 mg, NDC 00173071215, Pedigree: AD49610_1, EXP: 5/16/2014; diphenhydrAMINE HCl, Tablet, 25 mg, NDC 00904555159, Pedigree: W002775, EXP: 6/6/2014; VITAMIN B \",\"Labeling: Label Mixup: FOSINOPRIL SODIUM, Tablet, 10 mg may have potentially been mislabeled as the following drug: MERCapsuleTOPURINE, Tablet, 50 mg, NDC 00054458111, Pedigree: AD54549_1, EXP: 5/20/2014.\",\"Labeling: Label Mixup: NORTRIPTYLINE HCL, Capsule, 10 mg may have potentially been mislabeled as the following drug: VALSARTAN, Tablet, 80 mg, NDC 00078035834, Pedigree: AD70585_1, EXP: 5/29/2014.\",\"Labeling: Label Mixup: LOSARTAN POTASSIUM, Tablet, 25 mg may have potentially been mislabeled as the following drug: PHYTONADIONE, Tablet, 5 mg, NDC 25010040515, Pedigree: AD46312_22, EXP: 4/30/2014. \",\"Labeling: Label Mixup: VALSARTAN, Tablet, 80 mg may have potentially been mislabeled as one of the following drugs: TEMAZEPAM, Capsule, 7.5 mg, NDC 00378311001, Pedigree: AD49418_1, EXP: 5/17/2014; VALSARTAN, Tablet, 320 mg, NDC 00078036034, Pedigree: AD65475_7, EXP: 5/28/2014; ISOSORBIDE MONONITRATE, Tablet, 20 mg, NDC 62175010701, Pedigree: AD67989_10, EXP: 5/28/2014; CHOLECALCIFEROL, Tablet\",\"Labeling: Label Mixup: MINOCYCLINE HCL, Capsule, 50 mg may have potentially been mislabeled as the following drug: MINOXIDIL, Tablet, 2.5 mg, NDC 00591564201, Pedigree: AD52778_49, EXP: 5/20/2014. \",\"Labeling: Label Mixup: TOLTERODINE TARTRATE ER, Capsule, 2 mg may be potentially mislabeled as one of the following drugs: RANOLAZINE ER\\t, Tablet, 500 mg, NDC 61958100301, Pedigree: AD62995_7, EXP: 5/29/2014; FERROUS SULFATE, Tablet, 325 mg (65 mg Elem Fe), NDC 00904759160, Pedigree: W002717, EXP: 6/6/2014. \",\"Labeling: Label Mixup: FLUVASTATIN, Capsule, 20 mg may have potentially been mislabeled as the following drug: ACETAMINOPHEN/ BUTALBITAL/ CAFFEINE, Tablet, 325 mg/50 mg/40 mg, NDC 00603254421, Pedigree: W002654, EXP: 6/4/2014. \",\"Labeling:Label Mixup; LETROZOLE Tablet, 2.5 mg may be potentially mislabeled as METOPROLOL TARTRATE, Tablet, 50 mg, NDC 00093073301, Pedigree: W003848, EXP: 6/27/2014.\",\"NaN\",\"Labeling: Label Mixup; PANTOPRAZOLE SODIUM DR, Tablet, 20 mg may be potentially mislabel as NORTRIPTYLINE HCL, Capsule, 75 mg, NDC 00093081301, Pedigree: W003694, EXP: 6/26/2014.\",\"Failed Impurities/Degradation Specifications: During stability testing an unknown impurity was found to be above the specification limit at 36 month test interval\",\"NaN\",\"Labeling:Label Mixup; IBUPROFEN, Tablet, 400 mg may be potentially mislabeled as ASPIRIN, Tablet, 325 mg, NDC 00536330501, Pedigree: W002573, EXP: 6/3/2014.\",\"NaN\",\"Labeling: Label Mixup; CALCIUM CITRATE, Tablet, 950 mg (200 mg Elem Ca) may be potentially mislabeled as VALSARTAN, Tablet, 160 mg, NDC 00078035934, Pedigree: W002767, EXP: 6/6/2014; LACTOBACILLUS ACIDOPHILUS, Capsule, 500 MILLION CFU, NDC 43292050022, Pedigree: AD60240_20, EXP: 5/22/2014; PYRIDOXINE HCL, Tablet, 50 mg, NDC 51645090901, Pedigree: AD73521_25, EXP: 5/30/2014. \",\"Labeling: Label Mixup; GLUCOSAMINE/CHONDROITIN DS, Capsule, 500 mg/400 mg may be potentially mislabeled as GLYCOPYRROLATE, Tablet, 2 mg, NDC 00603318121, Pedigree: AD22865_4, EXP: 5/2/2014; PREGABALIN, Capsule, 25 mg, NDC 00071101268, Pedigree: W003121, EXP: 6/13/2014; MULTIVITAMIN/MULTIMINERAL, Chew Tablet, NDC 00536344308, Pedigree: AD73521_10, EXP: 5/30/2014. \",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup: CALCIUM POLYCARBOPHIL, Tablet, 625 mg may have potentially been mislabeled as the following drug: CAFFEINE, Tablet, 100 mg (1/2 of 200 mg), NDC 24385060173, Pedigree: ADWA00002146, EXP: 5/31/2014. \",\"Labeling: Label Mixup: ASPIRIN, CHEW Tablet, 81 mg may have potentially been mislabeled as one of the following drugs: OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 40985022921, Pedigree: AD30028_4, EXP: 5/8/2014; MODAFINIL, Tablet, 200 mg, NDC 00603466216, Pedigree: W002760, EXP: 6/6/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 40985022921, Pedigree: W003015, EXP: 6/12/2014; VITAMIN B COMPLEX \",\"Labeling: Label Mixup: NIACIN, Tablet, 100 mg may have potentially been mislabeled as the following drug: guaiFENesin ER, Tablet, 600 mg, NDC 63824000815, Pedigree: W002660, EXP: 6/5/2014. \",\"Labeling: Label Mixup: NIACIN TR, Capsule, 500 mg may have potentially been mislabeled as one of the following drugs: PERPHENAZINE, Tablet, 16 mg, NDC 00603506321, Pedigree: AD46265_49, EXP: 5/15/2014; MELATONIN, Tablet, 1 mg, NDC 47469000466, Pedigree: AD60240_14, EXP: 5/22/2014; CRANBERRY EXTRACT/VITAMIN C, Capsule, 450 mg/125 mg, NDC 31604014271, Pedigree: W002693, EXP: 6/5/2014; GLUCOSAMIN\",\"Labeling: Label Mixup: MYCOPHENOLIC ACID DR, Tablet, 180 mg may have potentially been mislabeled as the following drug: METHAZOLAMIDE, Tablet, 50 mg, NDC 00781107101, Pedigree: AD37072_11, EXP: 5/13/2014. \",\"Labeling: Label Mixup: SOTALOL HCL, Tablet, 120 mg may have potentially been mislabeled as the following drug: NEOMYCIN SULFATE, Tablet, 500 mg, NDC 51991073801, Pedigree: AD49448_17, EXP: 5/17/2014.\",\"Labeling: Label Mixup: carBAMazepine ER, Tablet, 100 mg may have potentially been mislabeled as one of the following drugs: ISOSORBIDE DINITRATE ER, Tablet, 40 mg, NDC 57664060088, Pedigree: AD23082_4, EXP: 5/3/2014; SIROLIMUS, Tablet, 1 mg, NDC 00008104105, Pedigree: W003329, EXP: 6/18/2014. \",\"Labeling: Label Mixup: guanFACINE HCl, Tablet, 1 mg may have potentially been mislabeled as one of the following drugs: buPROPion HCl ER, Tablet, 200 mg, NDC 47335073886, Pedigree: W002727, EXP: 6/6/2014; OMEGA-3 FATTY ACID, Capsule, 1000 mg, NDC 00904404360, Pedigree: AD39588_7, EXP: 5/13/2014; OMEPRAZOLE/SODIUM BICARBONATE, Capsule, 20 mg/1,100 mg, NDC 11523726503, Pedigree: W003873, EXP: 6/2\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Chemical Contamination: Novartis Pharmaceuticals Corporation has recalled physician sample bottles of Diovan, Exforge, Exforge HCT,Lescol XL, Stalevo, Tekturna and Tekturna HCT Tablets due to contamination with Darocur 1173 a photo curing agent used in inks on shrink-wrap sleeves.\",\"NaN\",\"Marketed without an Approved NDA/ANDA: product found to contain undeclared sildenafil and tadalafil\",\"Labeling: Not Elsewhere Classified; Due to an error in the manufacturing procedure, a cylinder in liquid withdrawal service was not marked \\u001cSyphon Tube\\u001d indicating liquid withdrawal and shipped as a gas withdrawal cylinder.\",\"NaN\",\"NaN\",\"Labeling:Label Mixup; CINACALCET HCL Tablet, 60 mg may be potentially mislabeled as RANOLAZINE ER, Tablet, 500 mg, NDC 61958100301, Pedigree: W003741, EXP: 6/26/2014.\",\"Labeling: Label Mixup; ACARBOSE Tablet, 25 mg may be potentially mislabeled as LACTOBACILLUS GG, Capsule, NDC 49100036374, Pedigree: AD39588_4, EXP: 5/13/2014.\",\"Labeling: Label Mixup; RIVAROXABAN Tablet, 20 mg may be potentially mislabeled as VENLAFAXINE HCL, Tablet, 100 mg, NDC 00093738301, Pedigree: W002619, EXP: 6/4/2014.\",\"Labeling: Label Mixup; DOCUSATE SODIUM, Capsule, 250 mg may be potentially mislabeled as ATROPINE SULFATE/DIPHENOXYLATE HCL, Tablet, 0.025 mg/2.5 mg, NDC 00378041501, Pedigree: AD65475_13, EXP: 5/28/2014; VALSARTAN, Tablet, 80 mg, NDC 00078035834, Pedigree: AD68025_1, EXP: 5/28/2014; PANTOPRAZOLE SODIUM DR, Tablet, 40 mg, NDC 64679043402, Pedigree: AD37063_10, EXP: 5/13/2014; DOCUSATE SODIUM\",\"Labeling:Label Mixup; CITALOPRAM Tablet, 10 mg may be potentially mislabeled as OXYBUTYNIN CHLORIDE, Tablet, 5 mg, NDC 00603497521, Pedigree: AD52778_61, EXP: 5/20/2014; COENZYME Q-10, Capsule, 30 mg, NDC 00904501546, Pedigree: W002814, EXP: 6/7/2014. \",\"Labeling: Label Mixup; DOXYCYCLINE HYCLATE, Tablet, 100 mg may be potentially mislabeled as DESLORATADINE, Tablet, 5 mg, NDC 00085126401, Pedigree: AD30993_5, EXP: 2/28/2014.\",\"Labeling: Label Mixup; ACETAMINOPHEN/ ASPIRIN/ CAFFEINE, Tablet, 250 mg/250 mg/65 mg may be potentially mislabeled as NAPROXEN, Tablet, 500 mg, NDC 53746019001, Pedigree: AD68025_8, EXP: 5/28/2014.\",\"Labeling: Label Mixup; PSEUDOEPHEDRINE HCL, Tablet, 60 mg may be potentially mislabeled as REPAGLINIDE, Tablet, 1 mg, NDC 00169008281, Pedigree: W002855, EXP: 6/7/2014.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup:CYANOCOBALAMIN, Tablet, 500 mcg was mislabled as SEVELAMER CARBONATE, Tablet, 800 mg, NDC 58468013001, Pedigree: W002859, EXP: 6/7/2014. and may have potentially been mislabeled as one of the following drugs: VITAMIN B COMPLEX W/C, Tablet, 0, NDC 00536730001, Pedigree: AD52993_7, EXP: 5/20/2014; CYANOCOBALAMIN, Tablet, 1000 mcg, NDC 00536355601, Pedigree: AD30180_22, EXP: \",\"Labeling: Label Mixup: ACYCLOVIR, Tablet, 800 mg may have potentially been mislabeled as the following drug:\\t PANTOPRAZOLE SODIUM DR, Tablet, 20 mg, NDC 64679043304, Pedigree: AD70690_4, EXP: 5/29/2014. \",\"Labeling: Label Mixup: glyBURIDE MICRONIZED, Tablet, 3 mg may have potentially been mislabeled as the following drug: DIGOXIN, Tablet, 0.125 mg, NDC 00115981101, Pedigree: W003154, EXP: 6/13/2014. \",\"Labeling: Label Mixup: ATOMOXETINE HCL, Capsule, 80 mg may be potentially mis-labeled as one of the following drugs: ATOMOXETINE HCL, Capsule, 18 mg, NDC 00002323830, Pedigree: AD30140_16, EXP: 5/7/2014; PRENATAL MULTIVITAMIN/MULTIMINERAL, Tablet, 0 mg, NDC 00904531360, Pedigree: W003706, EXP: 6/25/2014; RANOLAZINE ER, Tablet, 500 mg, NDC 61958100301, Pedigree: AD60272_40, EXP: 5/22/2014; PRO\",\"NaN\",\"Labeling: Label Mixup: REPAGLINIDE, Tablet, 2 mg may have potentially been mislabeled as one of the following drugs: COLCHICINE, Tablet, 0.6 mg, NDC 64764011907, Pedigree: AD46419_1, EXP: 5/16/2014; PANCRELIPASE DR, Capsule, 12000 /38000 /60000 USP units, NDC 00032121207, Pedigree: AD70639_7, EXP: 5/29/2014; DARUNAVIR, Tablet, 800 mg, NDC 59676056630, Pedigree: W003929, EXP: 7/1/2014. \",\"NaN\",\"Labeling: Label Mixup: NEBIVOLOL HCL, Tablet, 5 mg may have potentially been mislabeled as one of the following drugs: THYROID, Tablet, 30 mg, NDC 00456045801, Pedigree: AD73611_1, EXP: 5/30/2014; RASAGILINE MESYLATE, Tablet, 0.5 mg, NDC 68546014256, Pedigree: W002929, EXP: 6/10/2014. \",\"Lack of Assurance of Sterility; potential leakage from administrative port.\",\"NaN\",\"Marketed Without An Approved NDA/ANDA: FDA analysis found eXtenZone which is marketed as a dietary supplement to contain undeclared desmethyl carbondenafil and dapoxetine. Desmethyl carbondenafil is a phosphodiesterase (PDE)-5 inhibitors which is a class of drugs used to treat male erectile dysfunction, making this product an unapproved new drug. Dapoxetine is an active ingredient not approved b\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup; GUAIFENESIN, Tablet, 200 mg may be potentially mislabeled as PANCRELIPASE DR, Capsule, 24000 /76000 /120000 USP units, NDC 00032122401, Pedigree: W002850, EXP: 6/7/2014.\",\"Lack of Assurance of Sterility: Sigma-Tau PharmaSource, Inc. is conducting a voluntary recall of five lots of Oncaspar Injection, because of a crack under the crimp seal which caused a leak. \",\"Failed Tablet Specifications: Broken Tablets Present.\",\"Microbial Contamination of Non-Sterile Products: Fusion Pharmaceuticals is recalling the Dicopanol FusePaq Kit due to Total Yeasts and Molds Count above USP limits.\",\"Defective Container: Stability samples of both products were noted to have some white solid product residue, identified as dried active ingredients along with the preservative, on the exterior of the bottles. \",\"Subpotent Drug: During routine stability testing one tablet was found with tablet weight below specification.\",\"Marketed without an Approved NDA/ANDA; product found to contain dimethazine which is a steroid and/or steroid-like drug ingredient, making it an unapproved new drug\",\"Lack of Sterility Assurance: All lots of sterile products compounded by the pharmacy that are not expired due to concerns associated with quality control procedures that present a potential risk to sterility assurance that were observed during a recent FDA inspection.\",\"Labeling: Label Mixup: RILUZOLE, Tablet, 50 mg may have potentially been mislabeled as the following drug: LACTOBACILLUS, Tablet, 0 mg, NDC 64980012950, Pedigree: AD62986_10, EXP: 5/23/2014. \",\"Labeling: Label Mixup: DEXAMETHASONE, Tablet, 1 mg may have potentially been mislabeled as the following drug: VENLAFAXINE HCL ER, Capsule, 150 mg, NDC 00093738656, Pedigree: AD30993_20, EXP: 5/9/2014. \",\"Labeling: Label Mixup: PREGABALIN, Capsule, 25 mg may have potentially been mislabeled as one of the following drugs: CHOLECALCIFEROL, Capsule, 2000 units, NDC 00536379001, Pedigree: W003713, EXP: 6/26/2014; glyBURIDE MICRONIZED, Tablet, 3 mg, NDC 00093803501, Pedigree: W003155, EXP: 6/13/2014. \",\"Labeling: Label Mixup: PYRIDOXINE HCL, Tablet, 50 mg may have potentially been mislabeled as one of the following drugs: LACTOBACILLUS GG, Capsule, 15 Billion Cells, NDC 49100036374, Pedigree: W003787, EXP: 6/27/2014; LEVOTHYROXINE/ LIOTHYRONINE, Tablet, 19 mcg/4.5 mcg, NDC 42192032901, Pedigree: AD30197_19, EXP: 3/31/2014; CALCIUM/ CHOLECALCIFEROL/ SODIUM, Tablet, 600 mg/400 units/5 mg, NDC 00\",\"Labeling: Label Mixup: ASPIRIN, Tablet, 325 mg may have potentially been mislabeled as one of the following drugs: PANCRELIPASE DR, Capsule, 0 mg, NDC 42865010302, Pedigree: W003354, EXP: 6/19/2014; acetaZOLAMIDE, Tablet, 250 mg, NDC 51672402301, Pedigree: W003524, EXP: 6/21/2014; METOPROLOL TARTRATE, Tablet, 25 mg, NDC 00378001801, Pedigree: W002535, EXP: 6/3/2014; RIVAROXABAN, Tablet, 20 mg,\",\"Labeling: Label Mixup: RALTEGRAVIR, Tablet, 400 mg may be potentially mis-labeled as one of the following drugs: HYDROCORTISONE, Tablet, 5 mg, NDC00603389919, Pedigree: AD60272_13, EXP: 5/22/2014; HYOSCYAMINE SULFATE SL, Tablet, 0.125 mg, NDC 00574025001, Pedigree: W003679, EXP: 6/25/2014; HYDROCORTISONE, Tablet, 5 mg, NDC 00603389919, Pedigree: AD21790_16, EXP: 5/1/2014. \",\"Failed Stability Specifications: this product is below specification for preservative content.\",\"Labeling: Label Mixup: OXYBUTYNIN CHLORIDE, Tablet, 5 mg may have potentially been mislabeled as one of the following drugs: FLECAINIDE ACETATE, Tablet, 100 mg, NDC 00054001125, Pedigree: AD56847_4, EXP: 5/21/2014; SODIUM CHLORIDE, Tablet, 1 gm, NDC 00223176001, Pedigree: W003792, EXP: 6/27/2014; VARENICLINE, Tablet, 0.5 mg, NDC 00069046856, Pedigree: AD22616_1, EXP: 5/2/2014. \",\"Labeling: Label Mixup: VITAMIN B COMPLEX W/C, Tablet, 0 mg may have potentially been mislabeled as the following drug: CINACALCET HCL, Tablet, 30 mg, NDC 55513007330, Pedigree: AD54516_4, EXP: 5/20/2014.\",\"Labeling: Label Mixup: CapsuleTOPRIL, Tablet, 25 mg may have potentially been mislabeled as the following drug: DULoxetine HCl DR, Capsule, 20 mg, NDC 00002323560, Pedigree AD54587_4, EXP: 5/21/2014. \",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Labeling: Label Mixup: MINOCYCLINE HCL, Capsule, 100 mg may have potentially been mislabeled as the following drug: PROGESTERONE, Capsule, 100 mg, NDC 00591396401, Pedigree: AD73611_4, EXP: 5/30/2014. \",\"Labeling: Label Mixup: LACTOBACILLUS ACIDOPHILUS, Tablet, 35 MILLION may have potentially been mislabeled as the following drug: REPAGLINIDE, Tablet, 1 mg, NDC 00169008281, Pedigree: W003924, EXP: 6/28/2014. \",\"Labeling: Label Mixup: IMIPRAMINE HCL, Tablet, 25 mg may have potentially been mislabeled as the following drug: FENOFIBRATE, Tablet, 54 mg, NDC 00115551110, Pedigree: AD49448_7, EXP: 5/17/2014. \",\"Labeling: Label Mixup: CHOLECALCIFEROL, Capsule, 2000 units may have potentially been mislabeled as one of the following drugs: DOXYCYCLINE HYCLATE, Tablet, 100 mg, NDC 53489012002, Pedigree: AD30993_8, EXP: 5/9/2014; VITAMIN B COMPLEX PROLONGED RELEASE, Tablet, 50 mg, NDC 40985022251, Pedigree: AD60211_20, EXP: 5/21/2014; lamoTRIgine, Tablet, 50 mg (1/2 of 100 mg), NDC 13668004701, Pedigree: A\",\"Labeling: Label Mixup: chlordiazePOXIDE HCl, Capsule, 25 mg may have potentially been mislabeled as one of the following drugs: FLECAINIDE ACETATE, Tablet, 50 mg, NDC 65162064110, Pedigree: AD46414_16, EXP: 5/16/2014; CALCIUM ACETATE, Capsule, 667 mg, NDC 00054008826, Pedigree: AD49463_1, EXP: 5/16/2014; LACTOBACILLUS GG, Capsule, 0 mg, NDC 49100036374, Pedigree: W003173, EXP: 6/13/2014. \",\"Labeling: Label Mixup: CapsuleTOPRIL, Tablet, 6.25 mg (1/2 of 12.5 mg) may have potentially been mislabeled as the following drug:, LUBIPROSTONE, Capsule, 24 mcg, NDC 64764024060, Pedigree: AD46312_1, EXP: 5/16/2014. \",\"NaN\",\"Labeling: Label Mixup: sitaGLIPtin PHOSPHATE, Tablet, 50 mg may be potentially mis-labeled as one of the following drugs: LACTOBACILLUS, Tablet, 0 mg, NDC 64980012950, Pedigree: AD62992_1, EXP: 5/23/2014; CYANOCOBALAMIN, Tablet, 500 mcg, NDC 00536355101, Pedigree: W002860, EXP: 6/7/2014. \",\"Labeling: Label Mixup: ATOMOXETINE HCL, Capsule, 18 mg, may be potentially mis-labeled as the following drug: LOVASTATIN, Tablet, 20 mg, NDC 00185007201, Pedigree: AD28369_1, EXP: 5/7/2014. \",\"Labeling: Label Mixup: methylPREDNISolone, Tablet, 4 mg may have potentially been mislabeled as one of the following drugs: LEVOTHYROXINE SODIUM, Tablet, 112 mcg, NDC 00378181101, Pedigree: AD52778_37, EXP: 5/20/2014; NABUMETONE, Tablet, 500 mg, NDC 00185014501, Pedigree: AD46426_4, EXP: 5/15/2014; CHOLECALCIFEROL, Tablet, 2000 units, NDC 00904615760, Pedigree: AD54586_10, EXP: 5/21/2014. \",\"NaN\",\"Microbial Contamination of Non-Sterile Products; Selected lots of Badger Baby and Kids Sunscreen Lotion were recalled due to microbial contamination.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Marketed Without An Approved NDA/ANDA: FDA analyses detected the presence of phenolphthalein, N-di-Desmethylsibutramine, and trace amounts of sibutramine and N-Desmethylsibutramine. Sibutramine and phenolphthalein were previously available drug products but were removed from the U.S. market making these products unapproved new drugs.\",\"Labeling: Label Mixup: MYCOPHENOLATE MOFETIL, Capsule, 250 mg may be potentially mis-labeled as the following drug: CALCIUM ACETATE, Capsule, 667 mg, NDC 00054008826, Pedigree: AD52412_11, EXP: 5/17/2014. \",\"Labeling: Label Mixup: TEMAZEPAM, Capsule, 7.5 mg may have potentially been mislabeled as one of the following drugs: CALCIUM CITRATE, Tablet, 200 mg Elemental Calcium, NDC 00904506260, Pedigree: AD28333_1, EXP: 5/8/2014; VALSARTAN, Tablet, 160 mg, NDC 00078035934, Pedigree: AD49414_7, EXP: 5/17/2014. \",\"Labeling: Label Mixup: VENLAFAXINE HCL ER, Capsule, 150 mg may have potentially been mislabeled as one of the following drugs: SOTALOL HCL, Tablet, 80 mg, NDC 00093106101, Pedigree: AD30993_17, EXP: 5/9/2014; CYANOCOBALAMIN, Tablet, 1000 mcg, NDC 00904421713, Pedigree: W003075, EXP: 6/12/2014; LANTHANUM CARBONATE, CHEW Tablet, 500 mg, NDC 4092025290, Pedigree: W003410, EXP: 6/19/2014. \",\"Labeling: Label Mixup: azaTHIOprine, Tablet, 50 mg may have potentially been mislabeled as the following drug: SELENIUM, Tablet, 50 mcg, NDC 00904316260, Pedigree: AD56939_1, EXP: 5/21/2014. \",\"Labeling: Label Mixup: CALCITRIOL, Capsule, 0.25 mcg may be potentially as one of the following drugs: ANAGRELIDE HCL, Capsule, 0.5 mg, NDC 00172524160, Pedigree: AD46414_7, EXP: 5/16/2014; BENAZEPRIL HCL, Tablet, 5 mg, NDC 65162075110, Pedigree: AD52778_7, EXP: 5/20/2014; CINACALCET HCL, Tablet, 30 mg, NDC 55513007330, Pedigree: W003615, EXP: 6/25/2014. \"],\"recalling_firm\":[\"Mcneil Consumer Healthcare, Div Of Mcneil-ppc, Inc.\",\"Hospira, Inc.\",\"Physicians Total Care, Inc\",\"Apotex Inc.\",\"Dr. Reddy's Laboratories, Inc.\",\"Mallinckrodt Inc.\",\"Franck's Lab Inc., d.b.a. Franck's Compounding Lab\",\"NaN\",\"Franck's Lab Inc., d.b.a. Franck's Compounding Lab\",\"NaN\",\"Luitpold Pharmaceuticals, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Franck's Lab Inc., d.b.a. Franck's Compounding Lab\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Fougera Pharmaceuticals, Inc.\",\"VistaPharm, Inc.\",\"Teva Pharmaceuticals USA, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Nephron Pharmaceuticals Corp.\",\"Hospira Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"American Health Packaging\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Linde Gas LLC\",\"Lloyd Inc\",\"Ranbaxy Inc.\",\"Vintage Pharmaceuticals LLC DBA Qualitest Pharmaceuticals\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Hill Dermaceuticals, Inc.\",\"Dukal Corp.\",\"NaN\",\"www.vitaminbestbuy.com\",\"Oklahoma Respiratory Care Inc\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Apotex Corp.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Franck's Lab Inc., d.b.a. Franck's Compounding Lab\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Hospira Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Impax Laboratories, Inc.\",\"NaN\",\"www.vitaminbestbuy.com\",\"Dispensing Solutions, Inc\",\"Pack Pharmaceuticals\",\"Meda Pharmaceuticals Inc.\",\"Noven Pharmaceuticals, Inc.\",\"Watson Laboratories Inc\",\"Raritan Pharmaceuticals, Inc.\",\"NaN\",\"Physicians Total Care, Inc.\",\"NaN\",\"sanofi-aventis US, Inc.\",\"Watson Laboratories Inc\",\"Kimberly-Clark Corporation\",\"Abbott Laboratories\",\"Akorn, Inc.\",\"Bryant Ranch Prepack Inc.\",\"Dr. Reddy's Laboratories, Inc.\",\"Axcentria Pharmaceuticals LLC\",\"Bracco Diagnostics Inc\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Health Plus Incorporated\",\"VistaPharm, Inc.\",\"NaN\",\"Bracco Diagnostics Inc\",\"NaN\",\"NaN\",\"NaN\",\"Kutol Products Co Inc\",\"Physicians Total Care, Inc.\",\"Lloyd Inc\",\"Shionogi Inc.\",\"Hospira Inc.\",\"Carefusion 213, Llc\",\"Apace KY LLC\",\"NaN\",\"NaN\",\"Teva Pharmaceuticals USA, Inc.\",\"NaN\",\"Prometheus Laboratories Inc.\",\"Morton Salt Co.\",\"Victus, Inc.\",\"Apotex Corp.\",\"Grandpa Brands Co\",\"Zydus Pharmaceuticals USA Inc\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Hospira Inc.\",\"Sandoz Incorporated\",\"Stat Rx USA\",\"West-ward Pharmaceutical Corp.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Teva Pharmaceuticals USA, Inc.\",\"Teva Pharmaceuticals USA, Inc.\",\"Teva Pharmaceuticals USA, Inc.\",\"Cadence Pharmaceuticals\",\"Bayer HealthCare Pharmaceuticals Inc.\",\"Physicians Total Care, Inc.\",\"Meridian Medical Technologies a Pfizer Company\",\"Quadrant Chemical Corporation\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Island Kinetics dba Covalence\",\"Medtech Products, Inc.\",\"Bracco Diagnostic Inc\",\"DermaCare, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"Custom Medical Specialties, Inc.\",\"NaN\",\"NaN\",\"GlaxoSmithKline Inc\",\"VistaPharm, Inc.\",\"Mallinckrodt Inc\",\"NaN\",\"Hospira Inc.\",\"A-S Medication Solutions LLC.\",\"VistaPharm, Inc.\",\"NaN\",\"Baxter Healthcare Corp.\",\"NaN\",\"Actavis\",\"Vintage Pharmaceuticals LLC DBA Qualitest Pharmaceuticals\",\"NaN\",\"VistaPharm, Inc.\",\"Lloyd Inc. of Iowa\",\"NaN\",\"Lloyd Inc. of Iowa\",\"New England Compounding Center\",\"NaN\",\"West-ward Pharmaceutical Corp.\",\"Axium Healthcare Pharmacy dba Balanced Solutions Compounding\",\"Mylan Pharmaceuticals Inc.\",\"NaN\",\"NaN\",\"Bayer Healthcare, LLC\",\"NaN\",\"Ben Venue Laboratories Inc\",\"Actavis Mid Atlantic LLC\",\"Paddock Laboratories, LLC\",\"L. Perrigo Co.\",\"Boehringer Ingelheim Roxane Inc\",\"Mylan LLC.\",\"NaN\",\"Hillyard GMP\",\"NaN\",\"Physicians Total Care, Inc.\",\"NaN\",\"Bracco Diagnostics Inc\",\"NaN\",\"AbbVie Inc.\",\"NaN\",\"Stat Rx USA\",\"NaN\",\"Ranbaxy Inc.\",\"NaN\",\"Mckesson Packaging Services\",\"NaN\",\"Watson Laboratories Inc\",\"Mallinckrodt Inc.\",\"NaN\",\"NaN\",\"NaN\",\"Noven Pharmaceuticals, Inc.\",\"Hospira Inc.\",\"Torrent Pharmaceuticals Limited\",\"NaN\",\"Endo Pharmaceuticals, Inc.\",\"Ben Venue Laboratories Inc\",\"Coral Rock Man, Inc.\",\"Valeant Pharmaceuticals\",\"NaN\",\"NaN\",\"NaN\",\"Mylan Pharmaceuticals Inc.\",\"NaN\",\"Valeant Pharmaceuticals\",\"Merit Medical Systems, Inc\",\"Ranbaxy Inc.\",\"Vintage Pharmaceuticals LLC DBA Qualitest Pharmaceuticals\",\"NaN\",\"NaN\",\"New England Compounding Center\",\"Axcentria Pharmaceuticals LLC\",\"West-ward Pharmaceutical Corp.\",\"Earthborn Products, Inc.\",\"NaN\",\"Bristol-myers Squibb Company\",\"NaN\",\"NaN\",\"NaN\",\"New England Compounding Center\",\"NaN\",\"Ameridose LLC\",\"NaN\",\"NaN\",\"NaN\",\"Valeant Pharmaceuticals\",\"Stat Rx USA\",\"Alara Pharmaceutical Co\",\"NaN\",\"NaN\",\"Taro Pharmaceuticals U.S.A., Inc.\",\"NaN\",\"Caraco Pharmaceutical Laboratories Ltd.\",\"www.vitaminbestbuy.com\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"ITW Dymon\",\"Church & Dwight Inc\",\"Genentech, Inc.\",\"Watson Laboratories Inc\",\"XRock Industries, LLC\",\"Custom Medical Specialties, Inc.\",\"American Health Packaging\",\"Natural Essentials Inc\",\"NaN\",\"Sandoz Incorporated\",\"NaN\",\"Mylan Pharmaceuticals Inc.\",\"Carefusion 213, Llc\",\"Aurobindo Pharma LTD\",\"NaN\",\"Warner Chilcott Company LLC\",\"K C Pharmaceuticals Inc\",\"Teva Pharmaceuticals USA, Inc.\",\"Actavis South Atlantic LLC\",\"West-ward Pharmaceutical Corp.\",\"Glenmark Generics Inc., USA\",\"Warner Chilcott Company LLC\",\"West-ward Pharmaceutical Corp.\",\"L. Perrigo Co.\",\"Hospira Inc.\",\"Mylan Pharmaceuticals Inc.\",\"Hospira Inc.\",\"CareFusion 213, LLC\",\"NaN\",\"NaN\",\"FVS Holdings, Inc. dba. Green Valley Drugs\",\"NaN\",\"Performance Plus Marketing, Inc.\",\"NaN\",\"NaN\",\"Procter & Gamble Co\",\"Genentech Inc\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Belmora LLC\",\"Palmer Natural Products\",\"NaN\",\"NaN\",\"The Menz Club, LLC\",\"Galderma Laboratories, L.P.\",\"Capco Custom Packaging Inc\",\"NaN\",\"Bausch & Lomb, Inc.\",\"Airgas Inc\",\"Physicians Total Care, Inc.\",\"Johnson & Johnson\",\"NaN\",\"NaN\",\"Bristol-myers Squibb Company\",\"Hospira Inc.\",\"Ameridose LLC\",\"Dr. Reddy's Laboratories, Inc.\",\"NaN\",\"Hospira, Inc.\",\"McKesson Packaging Services\",\"F. Hoffmann-LaRoche Ltd.\",\"NaN\",\"NaN\",\"NaN\",\"Axium Healthcare Pharmacy dba Balanced Solutions Compounding\",\"OPMX, LLC\",\"NaN\",\"NaN\",\"Jubilant Cadista Pharmaceuticals Inc.\",\"Bayer Healthcare, LLC\",\"Amedra Pharmaceuticals LLC\",\"Aaron Industries Inc\",\"Samantha Lynn, Inc\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"West-ward Pharmaceutical Corp.\",\"Physicians Total Care, Inc.\",\"NaN\",\"James G. Cole, Inc.\",\"Bracco Diagnostic Inc\",\"Gsms\",\"Pfizer Inc.\",\"Hospira Inc.\",\"Teva Pharmaceuticals USA, Inc.\",\"Pfizer Inc.\",\"NaN\",\"Pfizer Inc.\",\"NaN\",\"NaN\",\"Hospira Inc.\",\"NaN\",\"Teva Pharmaceuticals USA, Inc.\",\"Lupin Pharmaceuticals Inc.\",\"NaN\",\"NaN\",\"The Menz Club, LLC\",\"Lee Pharmaceuticals, Inc\",\"Genentech Inc\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Green Valley Drugs\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Glenmark Generics Inc., USA\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"D& S Herbals, LLC\",\"NaN\",\"NaN\",\"NaN\",\"Hospira, Inc.\",\"NaN\",\"Humco Holding Group, Inc\",\"Watson Laboratories Inc\",\"King Legacy, a wholly owned subsidiary of Pfizer\",\"Lloyd Inc. of Iowa\",\"NaN\",\"NaN\",\"NaN\",\"Nora Apothecary and Alternative Therapies, Inc.\",\"NaN\",\"West-ward Pharmaceutical Corp.\",\"Noven Pharmaceuticals, Inc.\",\"Ranbaxy Inc.\",\"West-ward Pharmaceutical Corp.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Abc Compounding Company Inc\",\"NaN\",\"Vintage Pharmaceuticals LLC DBA Qualitest Pharmaceuticals\",\"NaN\",\"NaN\",\"Teva Pharmaceuticals USA, Inc.\",\"Upsher Smith Laboratories, Inc.\",\"GlaxoSmithKline, LLC.\",\"Caraco Pharmaceutical Laboratories, Ltd.\",\"Watson Laboratories Inc\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"West-ward Pharmaceutical Corp.\",\"NaN\",\"Hospira Inc.\",\"NaN\",\"Procter & Gamble Hair Care Llc\",\"A B Nutrition, Inc.\",\"Fresenius Kabi USA LLC (FK USA)\",\"Novartis Consumer Health\",\"NaN\",\"Globe All Wellness, LLC\",\"Sandoz Incorporated\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Dr. Reddy's Laboratories, Inc.\",\"NaN\",\"West-ward Pharmaceutical Corp.\",\"NaN\",\"Physicians Total Care, Inc.\",\"Hill Dermaceuticals, Inc.\",\"Zydus Pharmaceuticals USA Inc\",\"Ferring Pharmaceuticals Inc\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Watson Laboratories Inc\",\"Hospira, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Sandoz Incorporated\",\"NaN\",\"NaN\",\"NaN\",\"Hi-Tech Pharmacal Co., Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Teva Pharmaceuticals USA, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Legacy Pharmaceutical Packaging LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"FVS Holdings, Inc. dba. Green Valley Drugs\",\"Evol Nutrition\",\"NaN\",\"AstraZeneca LP\",\"NaN\",\"NaN\",\"Brower Enterprises Inc\",\"NaN\",\"NaN\",\"NaN\",\"RX South LLC DBA RX3 Pharmacy\",\"Hospira Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"InSo-Independent Contractor for West Coast Nutritionals,LTD\",\"Glenmark Generics Inc., USA\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Hi-Tech Pharmacal Co., Inc.\",\"NaN\",\"NaN\",\"NuVision Pharmacy, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"Hospira Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Teva Pharmaceuticals USA, Inc.\",\"West-ward Pharmaceutical Corp.\",\"Mylan Institutional, Inc. (d.b.a. UDL Laboratories)\",\"NaN\",\"Physicians Total Care, Inc.\",\"NaN\",\"Carib Import & Export, Inc.\",\"Hospira Inc.\",\"Reckitt Benckiser Inc\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Glenmark Generics Inc., USA\",\"NaN\",\"NaN\",\"Estee Lauder Inc\",\"NaN\",\"Actelion Pharmaceuticals U.S., Inc.\",\"Consumer Concepts, Inc.\",\"NaN\",\"NaN\",\"Gilead Sciences, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Physicians Total Care, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"Fougera Pharmaceuticals Inc.\",\"Beacon Hill Medical Pharmacy, P.C.\",\"South Coast Specialty Compounding, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Wellness Pharmacy, Inc.\",\"Qualitest Pharmaceuticals\",\"Upsher Smith Laboratories, Inc.\",\"P & J Trading Co\",\"Hi-Tech Pharmacal Co., Inc.\",\"Pharmacia & Upjohn LLC\",\"Earthlabs, Inc. DBA Wise Woman Herbals\",\"Stayma Consulting Service, LLC.\",\"NaN\",\"NaN\",\"Teva Pharmaceuticals USA, Inc.\",\"Hospira Inc.\",\"NaN\",\"NaN\",\"Novartis Consumer Health\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Mylan Institutional, Inc. (d.b.a. UDL Laboratories)\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Schering-Plough Products, LLC\",\"Ascend Therapeutics Inc\",\"West-ward Pharmaceutical Corp.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Teva Pharmaceuticals USA, Inc.\",\"West-ward Pharmaceutical Corp.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Teva Pharmaceuticals USA, Inc.\",\"Tarmac Products, Inc. d.b.a. Axara Pharmaceuticals\",\"Avella of Deer Valley, Inc.\",\"Core Pharma Llc\",\"THE COMPOUNDING SHOP, INC.\",\"NaN\",\"TG United, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"Pentec Health\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Physicians Total Care, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Actavis Pharmaceuticals\",\"Pacira Pharmaceuticals, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"Mylan Pharmaceuticals Inc.\",\"NaN\",\"NaN\",\"NaN\",\"West-ward Pharmaceutical Corp.\",\"Hospira Inc.\",\"West-ward Pharmaceutical Corp.\",\"Bristol Myers Squibb Manufacturing Company\",\"Actavis Elizabeth LLC\",\"NaN\",\"NaN\",\"Beacon Hill Medical Pharmacy, P.C.\",\"NaN\",\"Qualitest Pharmaceuticals\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Baxter Healthcare Corp.\",\"NaN\",\"West-Ward Pharmaceutical Corp.\",\"Sandoz Incorporated\",\"Hi-Tech Pharmacal Co., Inc.\",\"NaN\",\"NaN\",\"JCB Labs LLC\",\"Northern New England Compounding Pharmacy LLC\",\"NaN\",\"NaN\",\"NaN\",\"Body Basics Inc\",\"NaN\",\"Vintage Pharmaceuticals LLC DBA Qualitest Pharmaceuticals\",\"Hospira, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"Total Resources Intl\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Medicis Pharmaceutical Corp\",\"Bracco Diagnostics Inc\",\"AbbVie Inc.\",\"Actavis South Atlantic LLC\",\"Nexus Pharmaceuticals Inc\",\"NaN\",\"Matrixx Initiatives Inc\",\"Watson Pharmaceuticals\",\"Stat Rx USA\",\"Precision Dose Inc.\",\"NaN\",\"Hospira Inc.\",\"Aaron Industries Inc\",\"NaN\",\"NaN\",\"Hospira Inc.\",\"NaN\",\"NaN\",\"NaN\",\"Novartis Consumer Health\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"TG United, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"L. Perrigo Co.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Pfizer Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"American Health Packaging\",\"NaN\",\"West-Ward Pharmaceutical Corp.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Hill Dermaceuticals, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"VistaPharm, Inc.\",\"Novartis Consumer Health\",\"Fresenius Kabi USA LLC (FK USA)\",\"Advance Pharmaceutical Inc\",\"Hospira Inc.\",\"Clinical Specialties Compounding Pharmacy\",\"NaN\",\"Baxter Healthcare Corp.\",\"NaN\",\"NaN\",\"Hospira Inc.\",\"Teva Pharmaceuticals USA, Inc.\",\"Zydus Pharmaceuticals USA Inc\",\"NaN\",\"NaN\",\"NaN\",\"Bayer HealthCare Pharmaceuticals Inc.\",\"Church & Dwight Inc\",\"NaN\",\"NaN\",\"NaN\",\"Braintree Laboratories Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Physicians Total Care, Inc.\",\"Advance Pharmaceutical Inc\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Apotex Inc\",\"Teva Pharmaceuticals USA, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"OLAAX International\",\"Teva Pharmaceuticals USA, Inc.\",\"Green Planet Inc\",\"NaN\",\"NaN\",\"Teva Pharmaceuticals USA, Inc.\",\"NaN\",\"Oklahoma Respiratory Care Inc\",\"NaN\",\"NaN\",\"TG United, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Pentec Health\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Dr. Reddy'S Laboratories\",\"NaN\",\"Vi-Jon, Inc.\",\"Med Prep Consulting, Inc.\",\"Boehringer Ingelheim Roxane Inc\",\"Pfizer Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Hospira Inc.\",\"NaN\",\"NaN\",\"Pharmacy Creations\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Sun Pharmaceutical Industries Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"West-ward Pharmaceutical Corp.\",\"NaN\",\"Novartis Consumer Health\",\"NaN\",\"NaN\",\"NaN\",\"Bethel Nutritional Consulting, Inc\",\"Fresenius Kabi USA, LLC\",\"Astellas Pharma US Inc\",\"Alkermes, Inc.\",\"Novartis Consumer Health\",\"Chang Kwung Products\",\"University Compounding Pharmacy\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Hill Dermaceuticals, Inc.\",\"Amedra Pharmaceuticals LLC\",\"Main Street Family Pharmacy, LLC\",\"NaN\",\"NaN\",\"NaN\",\"Petnet Solution Inc\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"South Coast Specialty Compounding, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Compounding Centre At Blue Ridge\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Sandoz Incorporated\",\"Gilead Sciences, Inc.\",\"Max Huber Research Labs, Inc.\",\"Medaus, Inc.\",\"Leiter's Pharmacy\",\"Dr. Reddy's Laboratories, Inc.\",\"Sanofi-Synthelabo\",\"NaN\",\"American Health Packaging\",\"NaN\",\"NaN\",\"NaN\",\"Fresenius Kabi USA, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Hospira Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Walgreens Co\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Novartis Consumer Health\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Faria Limited LLC dba Sheffield Pharmaceuticals\",\"Hospira Inc.\",\"Pfizer Inc\",\"Indelicare LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Sandoz Incorporated\",\"Max Huber Research Labs, Inc.\",\"Leiter's Pharmacy\",\"Teva Pharmaceuticals USA, Inc.\",\"NaN\",\"NaN\",\"Creative Compounds\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"AstraZeneca Pharmaceuticals LP\",\"West-Ward Pharmaceutical Corp.\",\"Reumofan Plus USA\",\"NaN\",\"NaN\",\"American Health Packaging\",\"NaN\",\"West-Ward Pharmaceutical Corp.\",\"Beamonstar Products\",\"NaN\",\"Aidapak Services, LLC\",\"Specialty Medicine Compounding Pharmacy\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Sagent Pharmaceuticals Inc\",\"NaN\",\"Mission Pharmacal Co\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Wellness Pharmacy, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"West-Ward Pharmaceutical Corp.\",\"Pharmalucence, Inc.\",\"Med Prep Consulting, Inc.\",\"Leiter's Pharmacy\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Cubist Pharmaceuticals, Inc.\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Procter & Gamble Co\",\"NaN\",\"NaN\",\"NaN\",\"Novocol Pharmaceutical of Canada\",\"Physicians Total Care, Inc.\",\"Mutual Pharmaceutical Company, Inc.\",\"NaN\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Physicians Total Care, Inc.\",\"NaN\",\"NaN\",\"Teva Pharmaceuticals USA, Inc.\",\"Actavis Inc\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"Baxter Healthcare Corp.\",\"NaN\",\"NaN\",\"NaN\",\"Hospira Inc.\",\"NaN\",\"Bracco Diagnostics Inc\",\"Mobius Therapeutics LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Torrent Pharma Inc\",\"Novartis Pharmaceuticals Corp.\",\"Tween Brands Inc\",\"NaN\",\"NaN\",\"NaN\",\"Actavis South Atlantic LLC\",\"Watson Laboratories Inc\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Lupin Pharmaceuticals Inc.\",\"NaN\",\"VistaPharm, Inc.\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"Dr. Reddy's Laboratories, Inc.\",\"NaN\",\"Showline Automotive Products, Inc. dba US Soaps Mfg. Company\",\"NaN\",\"Kareway Product Inc\",\"Hill Dermaceuticals, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Procter & Gamble Co\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Watson Laboratories Inc\",\"Watson Laboratories Inc\",\"NaN\",\"Warner Chilcott US LLC\",\"NaN\",\"L. Perrigo Co.\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Novartis Consumer Health\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Hospira Inc.\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Mylan Pharmaceuticals Inc.\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"KVK-Tech, Inc.\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Hi-Tech Pharmacal Co., Inc.\",\"Greenstone Llc\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Novartis Consumer Health\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Betachem, Inc.\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Greenstone Llc\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NuVision Pharmacy, Inc.\",\"Hospira Inc.\",\"NaN\",\"Affirm XL, Inc.\",\"NaN\",\"Airgas Medical Services\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"The Mentholatum Co.\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Watson Laboratories Inc\",\"Myson Corporation, Inc.\",\"NaN\",\"NaN\",\"Healthy Life Chemistry Inc dba Purity First\",\"NaN\",\"Aidapak Services, LLC\",\"Jack Rabbit, Inc\",\"Apotex Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Actavis Elizabeth LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"G & W Laboratories Inc\",\"Qualitest Pharmaceuticals\",\"Teva Pharmaceuticals USA\",\"Osmotica Pharmaceutical Corp\",\"NaN\",\"NaN\",\"Sandoz Inc\",\"Zi Xiu Tang Success, LLC\",\"Healthy Life Chemistry Inc dba Purity First\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"B. Braun Medical Inc\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Alexion Pharmaceuticals, Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Fresenius Kabi USA, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"Altaire Pharmaceuticals, Inc.\",\"NaN\",\"West-Ward Pharmaceutical Corp.\",\"NaN\",\"Valeant Pharmaceuticals North Am\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"SS Wholesale Inc. dba Jobbers Wholesale\",\"Fougera Pharmaceuticals Inc.\",\"Fresenius Kabi USA, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Hospira, Inc.\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"Taro Pharmaceuticals U.S.A., Inc.\",\"NaN\",\"Bethel Nutritional Consulting, Inc\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Lupin Pharmaceuticals Inc.\",\"NaN\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Novartis Pharmaceuticals Corp.\",\"NaN\",\"Fabscout Entertainment, Inc\",\"Airgas Medical Services\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Hospira Inc.\",\"NaN\",\"SS Wholesale Inc. dba Jobbers Wholesale\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Sigma-Tau Pharmaceuticals, Inc.\",\"Caraco Pharmaceutical Laboratories Ltd.\",\"Fusion Pharmaceuticals, LLC\",\"PACK Pharmaceuticals, LLC\",\"Actavis Elizabeth LLC\",\"Mira Health Products Ltd.\",\"Natures Pharmacy & Compounding Center\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Teva Pharmaceuticals USA, Inc.\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"NaN\",\"W.S. Badger Company Inc.\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"NaN\",\"Bethel Nutritional Consulting, Inc\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\",\"Aidapak Services, LLC\"],\"x\":[4.805978916366063,-5.43228420896192,-3.294782109918352,8.688929942808763,-7.487680146530999,-9.636251865405576,-14.61066228867094,-14.610662223355492,11.055117360212845,-14.610662333843475,-19.394896225932133,4.64550774132759,-1.1703338906567564,-15.797157019833822,-5.684851195123822,-4.876241398975319,-9.04284578339038,-6.047529292105063,-6.051253421019675,-1.8366760642310815,-16.923929130111357,-10.25142110903671,-6.469047476356071,-9.026417916460028,-3.3122388068832103,-14.61066243967777,4.580535732098525,6.739100279696862,-5.8737043868674155,-3.8916252956057504,-6.105893065261656,-2.746498838288177,-12.727906918049158,-5.850681724971171,-11.415342468714055,-5.880037615902937,-10.21273943037173,4.474240431584174,-10.848227747388611,-8.780909897051904,12.066250331559267,-4.939453799758223,-7.487677193948288,2.8187329188452317,0.1889816368060062,-2.784710787736035,8.928287890248699,-0.30467102170686133,-2.686861890704223,-19.596229670020822,-6.047594171542632,-6.5461350559523295,-0.7331379388852899,-13.275827312856409,-5.917158323436217,0.2552651205326878,-3.3070069354154286,-0.522953103870871,-1.5001813044747139,-6.293829220870623,-4.76898416226141,-1.6804087314012157,-0.7331331796696082,8.904915953990978,-5.1418643180824635,9.140411502715235,-3.983444357033354,4.9171770157041195,2.6846061922360955,10.021206140695044,-5.74548801490521,-1.8710903890447101,1.4784602779327298,-6.475418542511099,-10.187215402881872,-6.337935537312339,12.307375460736596,-11.009661990981241,-12.563526604869262,-0.9777739910847634,-3.436409209012366,-3.3954875287727853,-19.441503174911926,-11.55128241266844,4.791400473044778,-19.18203203820494,-15.837694990318191,-1.842068400988795,4.645507736646139,-8.952002008097814,-15.636179530037127,-15.778172749882891,-2.227314294140632,-15.204299416797204,-4.78847658476166,-4.915304064808238,11.245780417197683,1.020472964453095,-1.017576795100698,-1.995720607570252,4.777748042947228,2.7840569442194556,-10.59391745266137,0.4448524013190128,-16.119249794328947,2.799643388981338,-4.108836065493407,8.46823425794732,-4.756708317364335,2.0060628196065178,-5.996834917134223,-12.776118605416746,-1.713618867363716,-1.3446271573245214,-7.461436259906754,-0.7043939861760088,-4.934948240053358,-6.519806827246363,-5.949819018695775,-6.490583741922151,-14.785374559059663,-7.640374803369711,-4.815176992136886,0.26395756640256035,2.7821562955398367,-2.346956033442144,-4.664681867312525,-3.4366671004194447,-8.689587415230688,-1.4997845862521306,-6.476206519171651,-4.146984835273664,-15.259252880990738,1.6739144531936199,-1.7965224883617381,-5.873704751734717,-8.986653540352997,-9.268742169108064,-3.0820972217930542,1.9971997440705733,-3.888143811085866,-12.625061982429445,-3.2809433445198,-10.733646297488486,-8.985667945994098,7.456227116436851,-14.741356803528005,-7.440373027239929,-19.459306152055767,-5.01680949986939,4.696647425742635,-5.637389464481694,-6.7671905755730135,-19.7160089967583,3.347231504804696,-2.2982636134615126,9.345415637010662,-14.939212802462972,15.373981957481194,-1.2437087399677933,-11.579698457367773,-15.204299259275812,-2.876747211571149,-4.110806586692409,-12.860901671462804,4.813676405267264,-4.618593041474519,-1.8726196216289164,-16.92408885193237,-10.436947280370003,-9.80583078532031,1.5310502606703424,11.89915338827131,-5.507997559152624,-5.537069937018843,-5.664122136323048,-15.803146553793999,-6.545715851260763,-14.705699698083786,-5.5606424775064935,-16.2120893748255,-14.932240288245685,-11.572432572013287,-10.321046241612022,-4.20686745971078,-3.357608680252775,-2.6273933033241743,-3.9205214734236153,-2.223041207650854,-19.63759475058882,-15.910878614053692,11.996697440337039,-2.3372402602668014,-19.539088241198176,0.39725403633613005,-1.6011712803273146,-19.539088240989386,-19.536885418848904,-1.4167019957537896,14.966484395816314,0.3664471402659413,-1.6777998842940753,-11.526369886993965,11.727000257144857,0.33331448045603823,-19.946397099421908,-1.8229604804929145,-14.941211481521222,-10.033416668456486,8.240534888382943,-15.592774390344292,-8.635090221387747,-15.502546344496368,2.578866719039256,-12.68054031413225,-3.0179540926778845,-17.211513862497828,-19.38187021591699,-7.061301273051164,1.3461365489041404,15.97533206922796,1.567812142244264,-7.353373032523998,-4.948810271830461,-1.8783442189107626,-10.872587066084614,-5.895452442949479,-3.31421374199144,-5.972697772609692,2.196426199510092,-2.865926849262796,-5.02098773674431,-19.850652092091615,-1.4786280117836306,-1.1297368923927733,-15.264794783584549,14.662669805079705,-4.7216888164375295,15.36820936446536,-9.21439031073618,-1.4813288117729797,-15.464473676445524,3.4677934679764215,15.936971197221872,-15.167857909623784,-1.8901844073097092,4.0801245464414055,-2.300522843496678,-10.286061431963065,0.4088416596140737,-1.857149874214242,-19.930550477535657,-16.39445689790214,-14.6940098513349,-10.49665031923679,-8.569050238997619,-11.582483187630457,-4.928270168225623,-8.604562897243314,-10.15115891265725,-14.941211261877697,-15.731074304998186,-19.97337391673443,5.7703321919468085,-10.957126966439006,-1.7913243281290756,11.332290251151601,3.4726504092235033,8.200896698551317,-15.33329400689106,-13.485096101147855,-10.604966737803014,14.650257307397577,-4.026258754884699,-2.9873247384379837,-15.279722468621772,10.787879935883124,-15.948167988926752,-16.23705695314323,13.152271067016493,-10.856822548495993,2.253648617211336,-5.9826622726026315,5.82867785323731,4.816143299623236,-2.835789964675805,2.794594672733697,-14.58213294825927,3.487571557076145,-11.143674144155574,-13.340340873126314,6.787649207468874,-15.504091610321671,-9.098777341397552,-14.581158772831678,-15.260535464006145,-5.865535603791902,-16.92368616262395,15.046256585062892,-2.3331545393740383,-10.829425235587667,-6.963298851317394,-9.385776748893758,-3.264800410303352,-15.314657895336373,-5.57931232210969,-10.637139529295304,-1.0002878210632968,10.958989676156087,-3.6143257682025287,-10.633100638042418,-11.458712458681179,-2.895504924249131,-4.857515198040018,0.5381678082349911,-7.527789653664868,-8.947181177561205,6.476937219343207,4.474859630686636,-3.211556591249736,11.920982259696704,-10.601813209639865,-5.082333684650418,2.5740467944567365,-11.531873519050466,-10.911355812292046,-2.628535237638098,-13.26654891518118,2.3180752015961352,-9.098778444919757,-10.747598754153136,-3.256073803231383,-1.4695332361994045,-2.245526000096382,-15.264500260610463,2.442242310508281,2.2155545986191765,-2.7256809888287714,-5.759854844946141,8.693601227262818,-15.646656443180749,-10.453148476511455,9.1300581019333,15.815523919402187,14.525776210386127,6.657290915741562,-1.8784479334408923,4.7204417963464715,2.2686996284147,-4.444776255693458,-15.247047467871594,-5.89954277989909,-3.1810410268693032,-5.767838814028595,-2.712228800063981,-3.1207606269986874,7.172772347043318,-9.102034400290576,-14.573251513636533,-3.9776349695695408,-10.539848811812508,-11.422808817074959,-1.3893200974414244,-3.229583741428465,9.316684245919832,-13.573059580831963,-1.891373435511127,3.496561393977237,2.2195535022451085,-2.5494000426825862,11.843877476673326,-12.51825515981481,-15.035664763579643,4.792857379273138,-1.769013930834641,-13.54394570236643,-16.553158763318027,-4.788104783440701,-1.6257471992681334,-8.85370419845385,-13.163680900462372,-15.35633808256168,-1.1258279357764187,-7.071987517605696,-11.480735735896168,-16.688818048362876,-10.619429077167373,-10.883839613366685,2.8774178796071497,-15.522966832342558,-7.842635049201408,7.648841496575183,-13.90858534600077,-13.11835757268619,10.534669750888327,15.232817399443727,-2.090810987897679,7.297204800238082,5.836941672513148,-10.779716699707912,-4.5149720786383085,-4.270839884667013,-13.361728719711659,-16.688540947455948,-10.940914565964066,-15.241183719680295,0.9826253990271373,-0.8105014607163336,6.46086269646712,1.1493360208820087,-6.546612738190424,-2.6132381357096803,-1.8232543882268781,-0.9102072947790109,-14.941579185556309,-1.6216986885221494,4.05936298728014,1.442463943051991,1.3588650102287863,3.98394592049858,5.96282501320306,4.940877201095477,-9.847467750528036,-4.681208873276151,-10.444971394710507,-5.874718947818256,10.983843182983987,0.20653285650988573,-10.939531846148812,11.340342458939467,16.381891541023293,9.751345492483408,15.385575435965697,15.365488656131946,13.668389211719717,9.312233797056827,7.969573114730045,11.938036873011546,14.10967165033116,-1.7513126398042116,-16.520481820399375,-1.991378292382319,-4.48109283838742,6.158306516454209,16.91216864520518,14.659446503105782,8.780559948868797,14.548763852597862,14.723068790676024,-3.16284019660378,-4.228733760784403,0.8340298822623948,1.5548922674348162,4.262831722114069,5.2493619933662305,1.0523670737793558,5.231556771896174,3.542959337195485,3.7883342742954103,6.4647616345597365,6.5111878290445455,-5.429790748776946,9.140949643376088,-2.1989049454280107,-0.009466354136874869,4.737819339179831,-19.758984817078982,15.992576661274686,3.3391406687570786,-2.148824607007804,4.2052071143497125,3.552449288693299,11.732393421062312,2.777509980625864,14.18813587792526,14.43270997490663,13.811533832990307,7.771938124833358,6.141472050086418,14.500177187398718,14.117747166530059,12.969480146728845,7.074433931363142,9.147206685223551,4.657141420449482,0.8106168187053192,0.7982436782001323,7.3607922422797305,-1.8806655722326782,6.397328275099379,1.8527201444168502,1.5880110581643618,-1.6249828310800358,6.16307851894642,13.689603365515977,14.492011208030103,5.703499890973455,8.02972416025213,10.58925263862225,16.753316207152167,14.487362615376638,13.939850886556101,14.242172880451891,-11.042439503571067,-10.402065268363714,-11.555045656724062,-16.43472044675789,-4.101933495887935,14.87613589929723,14.606342367199435,15.241374122829527,16.32906317498527,14.104309002964838,0.6723251108002318,12.409784120963897,6.303474213027267,5.905842659219284,1.2760089422916592,2.386472591352789,4.557280177867942,4.045109139949756,-14.707015180456352,4.81393453965711,6.894955959004764,-12.879844698592976,5.301534267394586,5.827887504343586,16.854046800914883,14.500611397625049,0.22482859347909315,9.258162258519786,8.866411696210745,0.04649073596074365,5.161217579140047,5.524988712552781,-1.1779405091287267,11.802148336532875,1.4822553913003442,8.70721221723959,1.3381567009801438,2.941945708612562,5.667603545204107,6.87240481724635,9.2133328612641,2.5155700288802687,0.09122476855299876,14.547321664415362,8.161338420135179,12.242800385278764,16.786209627466143,15.616788242582937,14.583775500415253,7.138211845159038,5.897235271321892,8.934736207685454,11.982823635348748,-10.547003803538159,14.18130812979715,5.690371505584857,8.145531599879897,5.931643308319762,-11.002014640077908,6.414632888937901,14.093563032608623,14.210512376814833,-1.66026613708458,9.238633234382167,6.065613343868798,4.49693793108862,5.2375392195784505,5.675766447015799,2.002392535385439,1.0936886953219613,-1.9622672430063348,10.97832048143152,9.15965583885685,10.815883981370893,15.912341789162973,8.088365487952142,16.962644655678552,6.324280892526504,14.017111199375478,7.603774446833322,5.137382669610048,-5.422437702086405,9.99747362131997,14.466233370272406,8.139184088315771,15.364663621756765,11.986200952579473,8.205901926316555,7.943056792245383,10.385563868747322,9.666060887409426,14.109676148426345,3.984328632148663,6.275199564322591,2.0367073317930062,1.4525342414783882,8.862963186622075,1.6625169430480693,2.9477149246056515,4.467553918315905,1.8197392968404646,6.44665741658036,10.942578031302327,4.804302144090818,8.329345841533575,8.190800519214449,5.127469324632217,14.374555457599158,17.010952762376103,12.288493361975718,4.503868743329584,3.9730448183028977,4.635642694587818,-10.83864315308511,9.06974369173685,6.667197447818944,5.057040446910796,2.9418675423448333,3.9080727791422785,11.991486379379289,6.507569378845956,2.163863635155897,5.409762510024703,9.134065531750108,12.777932482772203,4.38591633765462,0.7411703774453278,13.701826934738529,10.49928460466166,9.58324448583531,8.250413632348994,-15.29304079169021,11.278235730702528,-1.798251844836703,-1.4081777105169722,-1.9942403148825794,5.685131337110918,6.388045623539087,9.690884791423272,5.267500047800651,5.694590865593232,15.376149731459439,8.205904482433496,-13.605870193133553,4.371051250996988,1.8343509114771501,13.315717532215922,6.353270525008203,9.25044101571436,1.6552985675697605,3.967905404726429,4.526835881371917,3.7293138083038717,16.40076234313426,8.764215367673653,9.751346841934987,14.704716114242638,-0.9013981663571544,-1.4038688035497235,14.42102990510115,0.7550911350774351,8.449144063383612,8.175745678461832,15.870061188846693,12.745362482827813,8.105275574187484,5.703486233003211,5.8099708042716145,8.120661389499263,9.409139327076181,16.089628789514517,12.210737267707763,-1.6932807109824801,5.374890879908298,14.927885014923413,14.416752615811085,13.374429028410944,15.642085719625376,5.7035009365735965,9.573094629458751,16.885229836452073,5.931643309299023,15.225663171301793,2.6007997056938925,3.3565079200175343,5.063298032971701,3.9553540532130755,13.177569831747396,5.806440229778603,2.848189554728019,0.8229831776394377,5.871465381715552,3.8021078761894187,5.634259805337613,3.350310257617903,2.7860997918523216,7.599180630604471,14.672622349955466,-6.615336719092414,-9.610836392341918,-2.0371055168953425,-1.374342173149713,13.218970638370694,9.317922293936354,3.984160274063034,1.157472162143365,6.578466151417101,2.406322855544041,12.456873744243175,3.812333466669163,3.2993621012363077,-5.472605780579074,3.093165389518011,1.018822389787819,1.4902717088249193,11.552922904086097,9.246872814815507,2.113486321093653,13.548022064477777,13.315144216255378,3.9843312663981005,13.30592656517069,4.698818152705805,3.362724495042632,1.3009995378302923,9.313238446662362,15.358448964540639,8.783665640964525,16.98272925560398,14.881716471133792,14.490152966298725,8.130293101027574,8.294993461337626,11.256202871315564,8.701776710831941,6.086961938955075,9.563472362581452,10.942558921160623,14.351588354483495,14.617613038611058,5.288339170546824,12.220312450629946,12.521601898967663,14.100372949173963,5.956217279658554,15.911572267938714,11.13824186527818,5.890280655818839,11.840830114730196,-1.1786888680597984,12.546649127228074,15.52889834112682,0.3143935819675146,-4.818828409096852,2.2647364762895137,4.973250163063912,3.5784675187221193,6.938019419138892,1.6736084700609164,4.504184791337624,5.370005192458149,5.23602796160025,0.851140697117075,2.116334756089889,1.5783638927332435,1.8398767637221207,0.5786890075166207,4.108281200076573,14.893173464948296,16.073256448918688,9.504477836841302,2.2501723836489815,1.3150619870035125,0.747032496636914,3.605617802863584,0.5704499190467238,3.3715404957831616,6.202237363841411,5.360525038073025,1.6534187573332515,-1.8099361877965354,6.4864278623887355,4.472135777704847,-13.364334903913782,12.528485699525095,9.524897860396846,-17.211512367702415,-3.10641845643027,16.86970653758789,15.28304334622199,12.403737628259297,14.301116630816873,12.028794526725623,8.761706011713844,6.518945778683223,6.1670163904768405,10.469541561167159,15.729698433230334,3.8051958669500676,1.6625171402863645,12.706489025879648,4.3121207492702585,4.96297258633214,2.933093816121269,4.637935236351947,9.169843968767905,15.375934767555123,14.690009060343593,14.925153327297112,5.134266435635098,10.510589377878132,5.928844653535752,14.351044921627464,10.668233213971895,14.807626778320362,9.547694244256913,4.944613096742494,4.061293500911721,8.795074840467352,4.138961822987716,2.479281326588345,4.299765470463133,5.8160178094742925,-1.5538067428830789,5.304435571732945,14.021868314291526,6.134319938279496,8.210352313523426,15.711780582135882,-0.96830931985976,-19.74934109386327,0.47832881169797253,-11.533500733434778,0.8291841125877409,6.143325532365334,0.8097663891477599,5.394008715477866,3.429062491276073,3.984327789753548,4.571916368941106,0.747032496884957,12.882380225102764,5.214455909796508,5.703486273464867,14.007162752347563,12.421894315615818,16.839740147833222,-11.206826026181412,-1.807036623042258,9.222122267877273,-12.64292004957374,2.7782787226032224,-11.363209415813806,4.7417018880344735,-14.947676290637316,-1.353167277025171,-15.38005705928203,5.7739274230828705,10.4216423730461,12.167904841135227,14.034713499411769,14.446967034317872,16.17434050503654,5.970567386302422,16.23829066387585,8.024765214955288,10.395322472954163,10.086039194049219,6.356516537743205,8.271211666384863,12.96452067956904,13.220870075805266,11.616234933621199,13.900089460241277,10.60011622617989,13.19031146151669,-11.534327507150206,-3.1297423349626476,9.852401343616117,14.438365535937223,14.166193541114987,11.969528249016385,15.578380568016408,8.271113541872014,6.063262245219019,5.4176076347765525,12.817352836965492,0.6620892377025075,-1.241146124502743,3.8742590667073213,0.797035169762833,2.2559548065286013,3.340273598522591,2.7599047724544827,5.703501119915497,15.138268814372877,9.751346836618564,16.476099817098017,9.503458281586983,14.923886507276166,5.8125738632025366,9.619261810745233,14.224610399993534,2.28322086063533,0.5231464686388154,-16.533606218575784,-15.32100215369705,14.348928036463771,-11.014574457204079,-5.801911547746027,0.8646220914155373,9.988044611836864,6.700928555949845,16.341331771732907,13.630385593311743,5.396046589401908,13.202627309710968,9.751367841443603,16.83406554748342,16.639313761716945,-16.92408880795529,12.14587311132629,11.965279969345321,13.527135322276783,10.682964458218619,9.33787128867628,11.755338116486385,7.887195183266205,15.140272977860196,16.31794555536613,4.64295955735747,5.022626824100979,3.2580472254686734,0.9730472265118665,13.294027969245736,-1.5508432287740272,13.949371975927617,16.783254405532144,16.781241096507195,14.163102311246293,13.905257006091597,14.097530499820113,6.069364604810529,10.571784807716313,12.314551403184629,9.254412975760985,6.036616770927406,4.0974848396791606,5.194615093889132,6.810824600757817,9.520262312756694,10.942599514386753,13.116425428116107,15.025133147294548,5.957287536182256,14.071943727754734,-1.7089759207834574,16.281913287833444,5.7035157826363845,-1.8054837705051958,8.803976097092601,6.1312808271952655,1.3877915586188985,13.435979794528562,9.272178693896715,10.361044225210701,-19.75160427612294,-2.8517501557605485,-13.625749495926918,-6.822275710131169,-5.913802456106547,-4.531572003578376,-2.304088023098293,-6.976308050181093,11.923870401303258,8.623177899571902,14.095759395332816,-1.6548050149905211,13.775858161827303,-10.054573115245846,-4.296756166390476,-2.6643167659107783,1.9036783778324737,6.735623063752486,-11.328880376516187,1.9404106944196176,0.11808093194681316,5.303844857886213,4.2395548482584005,2.5354994075544415,8.28124392083211,7.074509168514802,7.4492827426557655,9.433067495214106,13.671249320629393,-4.639163731564195,-16.83353944083608,10.584969752197747,-7.815076023775517,-4.749305415370189,0.16827268232216375,4.650741575500976,-3.1200636431249746,-5.591474042695215,-0.1810846058375261,-3.0755547184467376,0.48419644402994444,11.399528414267524,-5.3344831201097715,-1.6763234849468283,1.5464447363201133,2.635642299733152,1.1189972639374288,9.260215517205094,5.362947378764349,0.7470324992628266,4.79915516682569,-1.7083051248300982,14.544137275162644,5.719679687631309,11.92481831522334,-3.1012427628630204,-11.817012430699718,-0.42476805353757396,-15.329394208456574,-2.4768066247767195,-11.512677084784821,-2.42704346595068,-13.649757646417177,-2.5367997607236905,-15.362585371823837,6.692144093813197,11.773747489226208,-4.735150362936603,-11.009422585956479,-0.1810847018602413,0.23259162345843026,1.649715249899759,5.000203896988394,4.796848875355194,2.0876977302633692,6.489251035084,5.436506748436886,3.984979695915057,3.8202672777956037,2.935545881273722,4.347574094084101,1.8846951343689105,-1.5405063181915393,9.25816225778458,4.274458646005238,7.9180592326344525,9.833976972396185,-10.633100689672155,-9.45017056650325,-12.876689494823282,-1.58723876550669,11.703043412669357,12.653128051161541,0.8100988084582071,5.214995082204613,13.61885144662275,-6.25242807934473,-16.756266806862964,-3.27564016526859,-3.412261168296643,-4.6521780720449035,4.879112342599598,1.20686211076301,1.2008212566028245,-14.447760332252438,-14.237310256449858,-6.186019350842283,-15.295530413155708,-12.795898801501483,-13.665709345305459,-1.4164542966403768,-8.34617602325954,-5.281115542282869,-11.019755673967568,-4.030630152664976,2.231244206790764,2.9418838759520662,0.8441164165781054,7.247518839458852,2.0659190233025724,13.21755425912628,1.835605784085155,5.895278207959266,4.277945392214356,-1.6507933119234297,-1.4240652558273836,-1.798311293010257,1.9459793132012968,0.8997027637816519,-10.81277823394062,-2.6844186135607284,2.5258522154204948,-2.273747022840721,9.258104802429443,9.431716671139835,-19.744873454946106,2.797285744086208,4.474891150650375,-3.2906337812617497,-11.002014604537925,13.487210051163943,4.776600585505261,-5.887752843209144,-12.94149262236331,3.9326015594572428,10.360731571742207,-9.272359353550724,-3.7801559371255333,3.4264704094115577,2.7812992516132184,-7.84243588297411,0.6101895569503527,4.474644381066627,-1.307768651050482,15.729304954108503,-1.6390828995888314,-2.639377608930102,-12.85047820206967,-3.1645095379331303,-4.362545939880798,-5.875885961752694,-8.898550050116066,-1.8785781368493641,-6.9996491487188575,1.393792858934355,2.1163347610519376,12.528892435687478,7.3356458542980425,12.97933490033072,4.639028344009873,4.749747854946169,9.223653371002886,-10.229670413517187,13.445245762505714,-7.463647928672074,-7.617706835575064,-6.288198189003479,-0.6634719414530917,16.044749221414815,9.565668407361004,-12.406511105854529,10.692725760677646,14.99851765791798,-17.23480633937783,9.833735158927375,7.630774022710483,0.4916767867614107,4.75574349677896,-3.844710486942692,15.801258346797482,4.5904001858607675,0.032177389262097796,-12.655685450236893,-5.915956248987548,-1.3452370309289572,-5.645492711837216,-7.761476513556202,7.419909548177035,2.1521591957818966,-10.730101596010247,-10.996447699601102,-14.928892982033389,-3.988077251982476,15.030862188775734,-6.9953251145551905,-8.878466014965436,-15.297281341451379,0.30415743011508706,-14.440552518159604,-8.965401460317011,-10.22867548299891,5.67397885358784,5.1911569105495206,9.31325924179465,11.994164176716152,3.367617241112718,0.7470324975169949,4.554527321263569,1.934194473627383,-6.488220099104518,-7.663945615531327,0.09664385480495358,-1.5305951559771096,15.97012165084877,-9.031834834961662,9.270980513770585,-8.43505024513892,0.6601967720854902,0.6790068461799154,13.36341525118065,10.435266062200714,-16.265705536921303,-3.5543781442860656,2.7817287996733984,-2.6402035728774584,2.800483179249749,-3.208474454688775,-2.6658514174139194,-11.053992082965795,-3.2513783212857588,9.388335541432335,10.263180293572873,-6.83928073347846,-5.8707931440438585,9.815760980079483,-5.747141773480873,10.027985949212137,-8.377315448578681,-2.9898943540918634,-3.7373842312310064,-10.734538855983638,4.474451642349417,0.1724411494554639,-3.074511509933956,0.2261066471910398,-5.891985915069942,-6.208465555022656,11.2910579992827,-15.035735910145112,6.746207404483047,-3.6727814447190226,0.3693872653881977,1.2397723260087241,6.084400023191844,3.984327781666578,1.662532242843679,5.46964634225533,-10.706840557347336,15.976140779629647,-5.687346326131826,-6.230219200041737,-6.379106559192348,-17.2323074051436,-2.1210598613696448,7.739360241315717,-12.65256687664892,10.351882542936174,11.411652728479474,-11.965046406918596,-13.606451437597213,-1.8247868568567323,1.2377977795510606,-4.44393912005433,-6.792960440102122,7.5935291984393345,4.474441569526923,-5.922984558420877,15.843822044489265,-3.072778700402542,10.706322512795126,11.917347577624653,-7.000260966816672,-12.190601063655727,-3.0966074708252243,-11.569667937388667,9.929554181783223,-6.663222700427772,-4.490601852908875,-6.227043425974278,-8.9385852053726,-4.168647746151937,9.162379913630687,13.472536971439627,-3.2462258988482064,0.6567295549506565,-5.889569679599732,5.936332276268704,-3.958816216274885,6.570377065271988,4.777284870902574,-0.4961706257994577,3.4287865162811144,-7.025344673825046,-10.719680637791864,-5.991004614458885,-1.6725687423078242,14.438307304383947,-3.101198185691852,-3.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment